PKHeX/PKHeX.Core/PKM/Interfaces
Kurt 9166d0eb64
Refactoring: Move Source (Legality) (#3560)
Rewrites a good amount of legality APIs pertaining to:
* Legal moves that can be learned
* Evolution chains & cross-generation paths
* Memory validation with forgotten moves

In generation 8, there are 3 separate contexts an entity can exist in: SW/SH, BD/SP, and LA. Not every entity can cross between them, and not every entity from generation 7 can exist in generation 8 (Gogoat, etc). By creating class models representing the restrictions to cross each boundary, we are able to better track and validate data.

The old implementation of validating moves was greedy: it would iterate for all generations and evolutions, and build a full list of every move that can be learned, storing it on the heap. Now, we check one game group at a time to see if the entity can learn a move that hasn't yet been validated. End result is an algorithm that requires 0 allocation, and a smaller/quicker search space.

The old implementation of storing move parses was inefficient; for each move that was parsed, a new object is created and adjusted depending on the parse. Now, move parse results are `struct` and store the move parse contiguously in memory. End result is faster parsing and 0 memory allocation.

* `PersonalTable` objects have been improved with new API methods to check if a species+form can exist in the game.
* `IEncounterTemplate` objects have been improved to indicate the `EntityContext` they originate in (similar to `Generation`).
* Some APIs have been extended to accept `Span<T>` instead of Array/IEnumerable
2022-08-03 16:15:27 -07:00
..
IAffection.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IAlpha.cs Move some interfaces to different folder 2022-03-06 12:06:50 -08:00
IAwakened.cs Revise AV check string to show which stat invalid 2022-07-10 17:34:46 -07:00
IBattleVersion.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
ICaughtData2.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IContestStats.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IDynamaxLevel.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IFavorite.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IFixedOTFriendship.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IFormArgument.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IGameValueLimit.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IGanbaru.cs HOME 2.0.0: Handle conversion behavior & restrictions (#3506) 2022-05-30 21:43:52 -07:00
IGeneration.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IGeoTrack.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IGigantamax.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IGroundTile.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IHandlerLanguage.cs Move some interfaces to different folder 2022-03-06 12:06:50 -08:00
IHomeTrack.cs Move some interfaces to different folder 2022-03-06 12:06:50 -08:00
IHyperTrain.cs Refactoring: Move Source (Legality) (#3560) 2022-08-03 16:15:27 -07:00
ILangNick.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
ILangNicknamedTemplate.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IMemoryHT.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IMemoryOT.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IMoveReset.cs HOME 2.0.0: Handle conversion behavior & restrictions (#3506) 2022-05-30 21:43:52 -07:00
IMoveShop8.cs Update 22.05.08 2022-05-07 14:30:16 -07:00
INature.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
INoble.cs Move some interfaces to different folder 2022-03-06 12:06:50 -08:00
IRegionOrigin.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
ISanityChecksum.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IScaledSize.cs Move some interfaces to different folder 2022-03-06 12:06:50 -08:00
IShadowPKM.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
IShiny.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
ISociability.cs Minor tweaks 2022-04-09 00:08:24 -07:00
ISpeciesForm.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
ITechRecord8.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
ITrainerID.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
ITrainerMemories.cs File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00