mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00:00
5bcccc6d92
* Revises legality checks to account for traveling between the three game islands (PLA/BDSP/SWSH) * Adds conversion mechanisms between the three formats, as well as flexible conversion options to backfill missing data (thanks GameFreak/ILCA for opting for lossy conversion instead of updating the games). * Adds API abstractions for HOME data storage format (EKH/PKH format 1, aka EH1/PH1). * Revises some APIs for better usage: - `PKM` now exposes a `Context` to indicate the isolation context for legality purposes. - Some method signatures have changed to accept `Context` or `GameVersion` instead of a vague `int` for Generation. - Evolution History is now tracked in the Legality parse for specific contexts, rather than only per generation.
55 lines
1.7 KiB
C#
55 lines
1.7 KiB
C#
using System;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Stores the possible evolution bounds for a parsed entity with respect to its origins and game traversal.
|
|
/// </summary>
|
|
public class EvolutionHistory
|
|
{
|
|
private static readonly EvoCriteria[] NONE = Array.Empty<EvoCriteria>();
|
|
|
|
public EvoCriteria[] Gen1 = NONE;
|
|
public EvoCriteria[] Gen2 = NONE;
|
|
public EvoCriteria[] Gen3 = NONE;
|
|
public EvoCriteria[] Gen4 = NONE;
|
|
public EvoCriteria[] Gen5 = NONE;
|
|
public EvoCriteria[] Gen6 = NONE;
|
|
public EvoCriteria[] Gen7 = NONE;
|
|
public EvoCriteria[] Gen7b = NONE;
|
|
public EvoCriteria[] Gen8 = NONE;
|
|
|
|
public EvoCriteria[] Gen8a => Gen8; // future: separate field instead of copy
|
|
public EvoCriteria[] Gen8b => Gen8; // future: separate field instead of copy
|
|
|
|
public readonly int Length;
|
|
public readonly EvoCriteria[] FullChain;
|
|
|
|
public EvolutionHistory(EvoCriteria[] fullChain, int count)
|
|
{
|
|
FullChain = fullChain;
|
|
Length = count;
|
|
}
|
|
|
|
public ref EvoCriteria[] this[int index]
|
|
{
|
|
get
|
|
{
|
|
if (index == 1) return ref Gen1;
|
|
if (index == 2) return ref Gen2;
|
|
if (index == 3) return ref Gen3;
|
|
if (index == 4) return ref Gen4;
|
|
if (index == 5) return ref Gen5;
|
|
if (index == 6) return ref Gen6;
|
|
if (index == 7) return ref Gen7;
|
|
if (index == 8) return ref Gen8;
|
|
throw new IndexOutOfRangeException(nameof(index));
|
|
}
|
|
}
|
|
|
|
internal void Invalidate() => this[Length - 1] = NONE;
|
|
|
|
public bool HasVisitedSWSH => Gen8.Length != 0;
|
|
public bool HasVisitedPLA => Gen8a.Length != 0;
|
|
public bool HasVisitedBDSP => Gen8b.Length != 0;
|
|
}
|