namespace PKHeX.Core
{
///
/// analogues used by Colosseum/XD instead of the main-series values.
///
#pragma warning disable CA1027 // Mark enums with FlagsAttribute
public enum GCVersion : byte
#pragma warning restore CA1027 // Mark enums with FlagsAttribute
{
None = 0,
FR = 1,
LG = 2,
S = 8,
R = 9,
E = 10,
CXD = 11,
}
public static class GCVersionExtensions
{
///
/// Translates a main-series to the corresponding value.
///
/// Version ID while present in the main-series games
/// Version ID while present in the GameCube games
public static GCVersion GetCXDVersionID(this GameVersion gbaVersion)
{
return gbaVersion switch
{
GameVersion.S => GCVersion.S,
GameVersion.R => GCVersion.R,
GameVersion.E => GCVersion.E,
GameVersion.FR => GCVersion.FR,
GameVersion.LG => GCVersion.LG,
GameVersion.CXD => GCVersion.CXD,
_ => GCVersion.None,
};
}
///
/// Translates a to the corresponding main-series value.
///
/// Version ID while present in the GameCube games
/// Version ID while present in the main-series games
public static GameVersion GetG3VersionID(this GCVersion gcVersion)
{
return gcVersion switch
{
GCVersion.S => GameVersion.S,
GCVersion.R => GameVersion.R,
GCVersion.E => GameVersion.E,
GCVersion.FR => GameVersion.FR,
GCVersion.LG => GameVersion.LG,
GCVersion.CXD => GameVersion.CXD,
_ => GameVersion.Unknown
};
}
}
}