2017-05-28 04:17:53 +00:00
using System ;
using System.Collections.Generic ;
using System.Linq ;
using static PKHeX . Core . LegalityCheckStrings ;
using static PKHeX . Core . LegalityAnalysis ;
namespace PKHeX.Core
{
public static class VerifyRelearnMoves
{
2017-06-18 01:37:19 +00:00
public static CheckResult [ ] VerifyRelearn ( PKM pkm , LegalInfo info )
2017-05-28 04:17:53 +00:00
{
2017-09-04 02:51:29 +00:00
if ( info . Generation < 6 | | pkm . VC1 )
2017-06-18 01:37:19 +00:00
return VerifyRelearnNone ( pkm , info ) ;
2017-05-28 04:17:53 +00:00
if ( info . EncounterMatch is EncounterLink l )
2017-06-18 01:37:19 +00:00
return VerifyRelearnSpecifiedMoveset ( pkm , info , l . RelearnMoves ) ;
2017-05-28 04:17:53 +00:00
if ( info . EncounterMatch is MysteryGift g )
2017-06-18 01:37:19 +00:00
return VerifyRelearnSpecifiedMoveset ( pkm , info , g . RelearnMoves ) ;
2017-05-29 22:21:39 +00:00
if ( info . EncounterMatch is EncounterStatic s )
2017-06-18 01:37:19 +00:00
return VerifyRelearnSpecifiedMoveset ( pkm , info , s . Relearn ) ;
2017-05-28 04:17:53 +00:00
if ( info . EncounterMatch is EncounterEgg e )
2017-06-18 01:37:19 +00:00
return VerifyRelearnEggBase ( pkm , info , e ) ;
2017-05-28 04:17:53 +00:00
2017-06-18 01:37:19 +00:00
if ( pkm . RelearnMove1 ! = 0 & & info . EncounterMatch is EncounterSlot z & & z . Permissions . DexNav & & EncounterGenerator . IsDexNavValid ( pkm ) )
return VerifyRelearnDexNav ( pkm , info ) ;
2017-05-28 04:17:53 +00:00
2017-06-18 01:37:19 +00:00
return VerifyRelearnNone ( pkm , info ) ;
2017-05-28 04:17:53 +00:00
}
2017-06-18 01:37:19 +00:00
private static CheckResult [ ] VerifyRelearnSpecifiedMoveset ( PKM pkm , LegalInfo info , int [ ] moves )
2017-05-28 04:17:53 +00:00
{
CheckResult [ ] res = new CheckResult [ 4 ] ;
int [ ] RelearnMoves = pkm . RelearnMoves ;
// Get gifts that match
for ( int i = 0 ; i < 4 ; i + + )
res [ i ] = moves [ i ] ! = RelearnMoves [ i ]
2017-06-18 01:37:19 +00:00
? new CheckResult ( Severity . Invalid , string . Format ( V178 , MoveStrings [ moves [ i ] ] ) , CheckIdentifier . RelearnMove )
2017-05-28 04:17:53 +00:00
: new CheckResult ( CheckIdentifier . RelearnMove ) ;
info . RelearnBase = moves ;
return res ;
}
2017-06-18 01:37:19 +00:00
private static CheckResult [ ] VerifyRelearnDexNav ( PKM pkm , LegalInfo info )
2017-05-28 04:17:53 +00:00
{
CheckResult [ ] res = new CheckResult [ 4 ] ;
int [ ] RelearnMoves = pkm . RelearnMoves ;
// DexNav Pokémon can have 1 random egg move as a relearn move.
2017-06-18 01:37:19 +00:00
res [ 0 ] = ! Legal . GetValidRelearn ( pkm , Legal . GetBaseEggSpecies ( pkm ) , true ) . Contains ( RelearnMoves [ 0 ] )
2017-05-28 04:17:53 +00:00
? new CheckResult ( Severity . Invalid , V183 , CheckIdentifier . RelearnMove )
: new CheckResult ( CheckIdentifier . RelearnMove ) ;
// All other relearn moves must be empty.
for ( int i = 1 ; i < 4 ; i + + )
res [ i ] = RelearnMoves [ i ] ! = 0
? new CheckResult ( Severity . Invalid , V184 , CheckIdentifier . RelearnMove )
: new CheckResult ( CheckIdentifier . RelearnMove ) ;
// Update the relearn base moves if the first relearn move is okay.
info . RelearnBase = res [ 0 ] . Valid
? RelearnMoves
: new int [ 4 ] ;
return res ;
}
2017-06-18 01:37:19 +00:00
private static CheckResult [ ] VerifyRelearnNone ( PKM pkm , LegalInfo info )
2017-05-28 04:17:53 +00:00
{
CheckResult [ ] res = new CheckResult [ 4 ] ;
int [ ] RelearnMoves = pkm . RelearnMoves ;
// No relearn moves should be present.
for ( int i = 0 ; i < 4 ; i + + )
res [ i ] = RelearnMoves [ i ] ! = 0
? new CheckResult ( Severity . Invalid , V184 , CheckIdentifier . RelearnMove )
: new CheckResult ( CheckIdentifier . RelearnMove ) ;
2017-08-01 00:09:16 +00:00
info . RelearnBase = new int [ 4 ] ;
2017-05-28 04:17:53 +00:00
return res ;
}
2017-06-18 01:37:19 +00:00
private static CheckResult [ ] VerifyRelearnEggBase ( PKM pkm , LegalInfo info , EncounterEgg e )
2017-05-28 04:17:53 +00:00
{
int [ ] RelearnMoves = pkm . RelearnMoves ;
CheckResult [ ] res = new CheckResult [ 4 ] ;
2017-08-01 00:09:16 +00:00
// Level up moves cannot be inherited if Ditto is the parent
2017-06-07 03:10:05 +00:00
// that means genderless species and male only species except Nidoran and Volbet (they breed with female nidoran and illumise) could not have level up moves as an egg
2017-09-15 01:52:31 +00:00
bool inheritLvlMoves = Legal . GetCanInheritMoves ( pkm , e ) ;
2017-05-28 04:17:53 +00:00
// Obtain level1 moves
2017-08-01 00:09:16 +00:00
var baseMoves = Legal . GetBaseEggMoves ( pkm , e . Species , e . Game , 1 ) ;
2017-08-01 21:55:10 +00:00
int baseCt = Math . Min ( 4 , baseMoves . Length ) ;
2017-05-28 04:17:53 +00:00
// Obtain Inherited moves
2017-09-29 00:11:30 +00:00
var inheritMoves = Legal . GetValidRelearn ( pkm , e . Species , inheritLvlMoves , e . Game ) . ToList ( ) ;
2017-08-01 00:09:16 +00:00
int reqBase = GetRequiredBaseMoves ( RelearnMoves , baseMoves , baseCt , inheritMoves ) ;
2017-05-28 04:17:53 +00:00
// Check if the required amount of Base Egg Moves are present.
2017-08-01 00:09:16 +00:00
FlagBaseEggMoves ( res , reqBase , baseMoves , RelearnMoves ) ;
2017-05-28 04:17:53 +00:00
// Non-Base moves that can magically appear in the regular movepool
if ( Legal . LightBall . Contains ( pkm . Species ) )
2017-08-01 00:09:16 +00:00
inheritMoves . Add ( 344 ) ; // Volt Tackle
2017-05-28 04:17:53 +00:00
// If any splitbreed moves are invalid, flag accordingly
2017-09-29 00:11:30 +00:00
var splitMoves = e . SplitBreed ? Legal . GetValidRelearn ( pkm , Legal . GetBaseEggSpecies ( pkm ) , inheritLvlMoves , e . Game ) . ToList ( ) : new List < int > ( ) ;
2017-05-28 04:17:53 +00:00
// Inherited moves appear after the required base moves.
2017-08-01 00:09:16 +00:00
// If the pkm is capable of split-species breeding and any inherited move is from the other split scenario, flag accordingly.
bool splitInvalid = FlagInvalidInheritedMoves ( res , reqBase , e , RelearnMoves , inheritMoves , splitMoves ) ;
if ( splitInvalid )
FlagSplitbreedMoves ( res , reqBase , e , pkm ) ;
info . RelearnBase = baseMoves ;
return res ;
}
private static void FlagBaseEggMoves ( CheckResult [ ] res , int required , IReadOnlyList < int > baseMoves , IReadOnlyList < int > RelearnMoves )
{
for ( int i = 0 ; i < required ; i + + )
{
if ( ! baseMoves . Contains ( RelearnMoves [ i ] ) )
{
FlagRelearnMovesMissing ( res , required , baseMoves , i ) ;
return ;
}
res [ i ] = new CheckResult ( Severity . Valid , V179 , CheckIdentifier . RelearnMove ) ;
}
}
private static void FlagRelearnMovesMissing ( CheckResult [ ] res , int required , IReadOnlyList < int > baseMoves , int start )
{
for ( int z = start ; z < required ; z + + )
res [ z ] = new CheckResult ( Severity . Invalid , V180 , CheckIdentifier . RelearnMove ) ;
// provide the list of suggested base moves for the last required slot
2017-09-04 02:51:29 +00:00
string em = string . Join ( ", " , getMoveNames ( baseMoves ) ) ;
2017-08-01 00:09:16 +00:00
res [ required - 1 ] . Comment + = string . Format ( Environment . NewLine + V181 , em ) ;
}
private static bool FlagInvalidInheritedMoves ( CheckResult [ ] res , int required , EncounterEgg e , IReadOnlyList < int > RelearnMoves , IReadOnlyList < int > inheritMoves , IReadOnlyList < int > splitMoves )
{
bool splitInvalid = false ;
for ( int i = required ; i < 4 ; i + + )
2017-05-28 04:17:53 +00:00
{
if ( RelearnMoves [ i ] = = 0 ) // empty
res [ i ] = new CheckResult ( Severity . Valid , V167 , CheckIdentifier . RelearnMove ) ;
else if ( inheritMoves . Contains ( RelearnMoves [ i ] ) ) // inherited
res [ i ] = new CheckResult ( Severity . Valid , V172 , CheckIdentifier . RelearnMove ) ;
else if ( e . SplitBreed & & splitMoves . Contains ( RelearnMoves [ i ] ) ) // inherited
splitInvalid = true ;
else // not inheritable, flag
res [ i ] = new CheckResult ( Severity . Invalid , V182 , CheckIdentifier . RelearnMove ) ;
}
2017-08-01 00:09:16 +00:00
return splitInvalid ;
}
private static void FlagSplitbreedMoves ( CheckResult [ ] res , int required , EncounterEgg e , PKM pkm )
{
var splitSpecies = Legal . GetBaseEggSpecies ( pkm , e . SplitBreed ? 0 : 1 ) ;
for ( int i = required ; i < 4 ; i + + )
2017-05-28 04:17:53 +00:00
{
2017-08-01 00:09:16 +00:00
if ( res [ i ] ! = null )
continue ;
string message = string . Format ( V379 , SpeciesStrings [ splitSpecies ] , SpeciesStrings [ e . Species ] ) ;
res [ i ] = new CheckResult ( Severity . Invalid , message , CheckIdentifier . RelearnMove ) ;
2017-05-28 04:17:53 +00:00
}
2017-08-01 00:09:16 +00:00
}
2017-05-28 04:17:53 +00:00
2017-08-01 00:09:16 +00:00
private static int GetRequiredBaseMoves ( int [ ] RelearnMoves , IReadOnlyList < int > baseMoves , int baseCt , IReadOnlyList < int > inheritMoves )
{
var inherited = RelearnMoves . Where ( m = > m ! = 0 & & ( ! baseMoves . Contains ( m ) | | inheritMoves . Contains ( m ) ) ) . ToList ( ) ;
int inheritCt = inherited . Count ;
// Get required amount of base moves
int unique = baseMoves . Concat ( inherited ) . Distinct ( ) . Count ( ) ;
int reqBase = inheritCt = = 4 | | baseCt + inheritCt > 4 ? 4 - inheritCt : baseCt ;
if ( RelearnMoves . Where ( m = > m ! = 0 ) . Count ( ) < Math . Min ( 4 , baseMoves . Count ) )
reqBase = Math . Min ( 4 , unique ) ;
return reqBase ;
2017-05-28 04:17:53 +00:00
}
}
}