PKHeX/PKHeX.Core/Saves
Kurt 1e86fdcea8
Fracture the encounter matching checks to allow progressive validation (#3137)
## Issue

We want to discard-but-remember any slots that aren't a perfect fit, on the off chance that a better one exists later in the search space. If there's no better match, then we gotta go with what we got.

## Example:
Wurmple exists in area `X`, and also has a more rare slot for Silcoon, with the same level for both slots. 
* We have a Silcoon that we've leveled up a few times.

Was our Silcoon originally a Wurmple, or was it caught as a Silcoon? 
* To be sure, we have to check the EC/PID if the Wurmple wouldn't evolve into Cascoon instead.
* We don't want to wholly reject that Wurmple slot, as maybe the Met Level isn't within Silcoon's slot range.

---

Existing implementation would store "deferred" matches in a list; we only need to keep 1 of these matches around (less allocation!). We also want to differentiate between a "good" deferral and a "bad" deferral; I don't think this is necessary but it's currently used by Mystery Gift matching (implemented for the Eeveelution mystery gifts which matter for evolution moves).

The existing logic didn't use inheritance, and instead had static methods being reused across generations. Quite kludgy. Also, the existing logic was a pain to modify the master encounter yield methods, as one generation's quirks had to not impact all other generations that used the method.

---

The new implementation splits out the encounter yielding methods to be separate for each generation / subset. Now, things don't have to check `WasLink` for Gen7 origin, because Pokémon Link wasn't a thing in Gen7.

---

## Future
Maybe refactoring yielders into "GameCores" that expose yielding behaviors / properties, rather than the static logic. As more generations and side-gamegroups get added (thanks LGPE/GO/GameCube), all this switch stuff gets annoying to maintain instead of just overriding/inheritance.

## Conclusion

This shouldn't impact any legality results negatively; if you notice any regressions, report them! This should reduce false flags where we didn't defer-discard an encounter when we should have (wild area mons being confused with raids).
2021-01-29 17:55:27 -08:00
..
Access Rename SWSH blocks and update Chinese HGSS Event Constant (#3131) 2021-01-19 12:46:54 -08:00
Blocks Minor clean 2020-12-21 23:37:07 -08:00
Encryption Set initial capacity for stringbuilder to reduce reallocation 2021-01-16 17:31:05 -08:00
Storage Use StringConverter api consistently; use stringbuilder when possible 2021-01-14 22:50:13 -08:00
Substructures Fracture the encounter matching checks to allow progressive validation (#3137) 2021-01-29 17:55:27 -08:00
Util Fracture the encounter matching checks to allow progressive validation (#3137) 2021-01-29 17:55:27 -08:00
SAV1.cs Skip save sub-type detection if we already it 2021-01-03 18:11:59 -08:00
SAV1Stadium.cs Extract metadata/state tracking from SaveFile obj 2020-12-05 05:36:23 -08:00
SAV1StadiumJ.cs Extract metadata/state tracking from SaveFile obj 2020-12-05 05:36:23 -08:00
SAV2.cs Simplify some repeated comparisons with expressions 2020-12-29 00:37:59 -08:00
SAV2Stadium.cs Extract metadata/state tracking from SaveFile obj 2020-12-05 05:36:23 -08:00
SAV3.cs Add Pokedex flag properties 2021-01-09 23:27:22 -08:00
SAV3Colosseum.cs Minor optimization for hashing 2021-01-08 00:32:04 -08:00
SAV3GCMemoryCard.cs Use StringConverter api consistently; use stringbuilder when possible 2021-01-14 22:50:13 -08:00
SAV3RSBox.cs moar is or 2020-12-25 12:30:26 -08:00
SAV3XD.cs Minor rearranging 2021-01-07 18:05:21 -08:00
SAV4.cs Simplify some repeated comparisons with expressions 2020-12-29 00:37:59 -08:00
SAV4BR.cs Add TID/SID fetch for Battle Revolution 2021-01-22 22:55:55 -08:00
SAV4DP.cs Change signatures to use readonly if possible 2020-12-05 06:09:33 -08:00
SAV4HGSS.cs Change signatures to use readonly if possible 2020-12-05 06:09:33 -08:00
SAV4Pt.cs Change signatures to use readonly if possible 2020-12-05 06:09:33 -08:00
SAV4Sinnoh.cs Change signatures to use readonly if possible 2020-12-05 06:09:33 -08:00
SAV5.cs Minor clean 2020-12-21 23:37:07 -08:00
SAV5B2W2.cs Extract metadata/state tracking from SaveFile obj 2020-12-05 05:36:23 -08:00
SAV5BW.cs Extract metadata/state tracking from SaveFile obj 2020-12-05 05:36:23 -08:00
SAV6.cs Unify concepts with different names 2020-12-10 20:42:30 -08:00
SAV6AO.cs Use StringConverter api consistently; use stringbuilder when possible 2021-01-14 22:50:13 -08:00
SAV6AODemo.cs Minor tweaks 2021-01-06 23:30:30 -08:00
SAV6XY.cs Use StringConverter api consistently; use stringbuilder when possible 2021-01-14 22:50:13 -08:00
SAV7.cs Add gamesync interface for gen7 2021-01-22 19:04:54 -08:00
SAV7b.cs Use more expression return style 2021-01-01 17:08:49 -08:00
SAV7SM.cs Minor tweaks 2021-01-06 23:30:30 -08:00
SAV7USUM.cs Minor tweaks 2021-01-06 23:30:30 -08:00
SAV8.cs Use more expression return style 2021-01-01 17:08:49 -08:00
SAV8SWSH.cs Extract metadata/state tracking from SaveFile obj 2020-12-05 05:36:23 -08:00
SAV_BEEF.cs PKHeX.Core Nullable cleanup (#2401) 2019-10-16 18:47:31 -07:00
SAV_STADIUM.cs Extract metadata/state tracking from SaveFile obj 2020-12-05 05:36:23 -08:00
SaveFile.cs Minor clean 2021-01-03 16:53:13 -08:00
SaveFileMetadata.cs Fix backup filenaming 2021-01-02 10:34:33 -08:00
SaveFileState.cs Add xmldoc for save meta/state tracking 2020-12-07 19:49:04 -08:00