using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using static PKHeX.Core.MessageStrings; using static PKHeX.Core.GameVersion; namespace PKHeX.Core { /// /// Logic for data loading and manipulation. /// public static class SaveUtil { public const int BEEF = 0x42454546; public const int SIZE_G8SWSH = 0x1716B3; public const int SIZE_G7GG = 0x100000; public const int SIZE_G7USUM = 0x6CC00; public const int SIZE_G7SM = 0x6BE00; public const int SIZE_G6XY = 0x65600; public const int SIZE_G6ORAS = 0x76000; public const int SIZE_G6ORASDEMO = 0x5A00; public const int SIZE_G5RAW = 0x80000; public const int SIZE_G5BW = 0x24000; public const int SIZE_G5B2W2 = 0x26000; public const int SIZE_G4BR = 0x380000; public const int SIZE_G4RAW = 0x80000; public const int SIZE_G3BOX = 0x76000; public const int SIZE_G3COLO = 0x60000; public const int SIZE_G3XD = 0x56000; public const int SIZE_G3BOXGCI = SIZE_G3BOX + 0x40; // GCI data public const int SIZE_G3COLOGCI = SIZE_G3COLO + 0x40; // GCI data public const int SIZE_G3XDGCI = SIZE_G3XD + 0x40; // GCI data public const int SIZE_G3RAW = 0x20000; public const int SIZE_G3RAWHALF = 0x10000; public const int SIZE_G2RAW_U = 0x8000; public const int SIZE_G2VC_U = 0x8010; public const int SIZE_G2BAT_U = 0x802C; public const int SIZE_G2EMU_U = 0x8030; public const int SIZE_G2RAW_J = 0x10000; public const int SIZE_G2VC_J = 0x10010; public const int SIZE_G2BAT_J = 0x1002C; public const int SIZE_G2EMU_J = 0x10030; public const int SIZE_G1RAW = 0x8000; public const int SIZE_G1BAT = 0x802C; // Bank Binaries public const int SIZE_G7BANK = 0xACA48; public const int SIZE_G4BANK = 0x405C4; public const int SIZE_G4RANCH = 0x54000; public const int SIZE_G4RANCH_PLAT = 0x7C000; private static readonly HashSet SIZES_2 = new HashSet { SIZE_G2RAW_U, SIZE_G2VC_U, SIZE_G2BAT_U, SIZE_G2EMU_U, SIZE_G2RAW_J, SIZE_G2BAT_J, SIZE_G2EMU_J, SIZE_G2VC_J, }; private static readonly HashSet SIZES = new HashSet(SIZES_2) { SIZE_G8SWSH, SIZE_G7SM, SIZE_G7USUM, SIZE_G7GG, SIZE_G6XY, SIZE_G6ORAS, SIZE_G6ORASDEMO, SIZE_G5RAW, SIZE_G5BW, SIZE_G5B2W2, SIZE_G4BR, SIZE_G4RAW, SIZE_G3BOX, SIZE_G3BOXGCI, SIZE_G3COLO, SIZE_G3COLOGCI, SIZE_G3XD, SIZE_G3XDGCI, SIZE_G3RAW, SIZE_G3RAWHALF, // SIZES_2 covers gen2 sizes since there's so many SIZE_G1RAW, SIZE_G1BAT, SIZE_G7BANK, SIZE_G4BANK, SIZE_G4RANCH, SIZE_G4RANCH_PLAT, }; private static readonly byte[] FOOTER_DSV = Encoding.ASCII.GetBytes("|-DESMUME SAVE-|"); internal static readonly string[] HEADER_COLO = { "GC6J","GC6E","GC6P" }; // NTSC-J, NTSC-U, PAL internal static readonly string[] HEADER_XD = { "GXXJ","GXXE","GXXP" }; // NTSC-J, NTSC-U, PAL internal static readonly string[] HEADER_RSBOX = { "GPXJ","GPXE","GPXP" }; // NTSC-J, NTSC-U, PAL /// Determines the type of the provided save data. /// Save data of which to determine the origins of /// Version Identifier or Invalid if type cannot be determined. private static GameVersion GetSAVType(byte[] data) { GameVersion ver; if ((ver = GetIsG1SAV(data)) != Invalid) return ver; if ((ver = GetIsG2SAV(data)) != Invalid) return ver; if ((ver = GetIsG3SAV(data)) != Invalid) return ver; if ((ver = GetIsG4SAV(data)) != Invalid) return ver; if ((ver = GetIsG5SAV(data)) != Invalid) return ver; if ((ver = GetIsG6SAV(data)) != Invalid) return ver; if ((ver = GetIsG7SAV(data)) != Invalid) return ver; if (GetIsBelugaSAV(data) != Invalid) return GG; if (GetIsG3COLOSAV(data) != Invalid) return COLO; if (GetIsG3XDSAV(data) != Invalid) return XD; if (GetIsG3BOXSAV(data) != Invalid) return RSBOX; if (GetIsG4BRSAV(data) != Invalid) return BATREV; if (GetIsBank7(data)) // pokebank return Gen7; if (GetIsBank4(data)) // pokestock return Gen4; if (GetIsBank3(data)) // pokestock return Gen3; if (GetIsRanch4(data)) // ranch return DPPt; if ((ver = GetIsG8SAV(data)) != Invalid) return ver; return Invalid; } /// /// Determines if a Gen1/2 Pokémon List is Invalid /// /// Save data /// Offset the list starts at /// Max count of Pokémon in the list /// True if a valid list, False otherwise private static bool IsG12ListValid(byte[] data, int offset, int listCount) { byte num_entries = data[offset]; return num_entries <= listCount && data[offset + 1 + num_entries] == 0xFF; } /// Checks to see if the data belongs to a Gen1 save /// Save data of which to determine the type /// Version Identifier or Invalid if type cannot be determined. internal static GameVersion GetIsG1SAV(byte[] data) { if (data.Length != SIZE_G1RAW && data.Length != SIZE_G1BAT) return Invalid; // Check if it's not an american save or a japanese save if (!(GetIsG1SAVU(data) || GetIsG1SAVJ(data))) return Invalid; // I can't actually detect which game version, because it's not stored anywhere. // If you can think of anything to do here, please implement :) return RBY; } /// Checks to see if the data belongs to an International Gen1 save /// Save data of which to determine the region /// True if a valid International save, False otherwise. private static bool GetIsG1SAVU(byte[] data) { return IsG12ListValid(data, 0x2F2C, 20) && IsG12ListValid(data, 0x30C0, 20); } /// Checks to see if the data belongs to a Japanese Gen1 save /// Save data of which to determine the region /// True if a valid Japanese save, False otherwise. internal static bool GetIsG1SAVJ(byte[] data) { return IsG12ListValid(data, 0x2ED5, 30) && IsG12ListValid(data, 0x302D, 30); } /// Checks to see if the data belongs to a Gen2 save /// Save data of which to determine the type /// Version Identifier or Invalid if type cannot be determined. internal static GameVersion GetIsG2SAV(byte[] data) { if (!SIZES_2.Contains(data.Length)) return Invalid; // Check if it's not an International, Japanese, or Korean save file GameVersion result; if ((result = GetIsG2SAVU(data)) != Invalid) return result; if ((result = GetIsG2SAVJ(data)) != Invalid) return result; if ((result = GetIsG2SAVK(data)) != Invalid) return result; return Invalid; } /// Checks to see if the data belongs to an International (not Japanese or Korean) Gen2 save /// Save data of which to determine the region /// True if a valid International save, False otherwise. private static GameVersion GetIsG2SAVU(byte[] data) { if (IsG12ListValid(data, 0x288A, 20) && IsG12ListValid(data, 0x2D6C, 20)) return GS; if (IsG12ListValid(data, 0x2865, 20) && IsG12ListValid(data, 0x2D10, 20)) return C; return Invalid; } /// Checks to see if the data belongs to a Japanese Gen2 save /// Save data of which to determine the region /// True if a valid Japanese save, False otherwise. internal static GameVersion GetIsG2SAVJ(byte[] data) { if (!IsG12ListValid(data, 0x2D10, 30)) return Invalid; if (IsG12ListValid(data, 0x283E, 30)) return GS; if (IsG12ListValid(data, 0x281A, 30)) return C; return Invalid; } /// Checks to see if the data belongs to a Korean Gen2 save /// Save data of which to determine the region /// True if a valid Korean save, False otherwise. internal static GameVersion GetIsG2SAVK(byte[] data) { if (IsG12ListValid(data, 0x2DAE, 20) && IsG12ListValid(data, 0x28CC, 20)) return GS; return Invalid; } /// Checks to see if the data belongs to a Gen3 save /// Save data of which to determine the type /// Version Identifier or Invalid if type cannot be determined. internal static GameVersion GetIsG3SAV(byte[] data) { if (data.Length != SIZE_G3RAW && data.Length != SIZE_G3RAWHALF) return Invalid; // check the save file(s) int count = data.Length/SIZE_G3RAWHALF; for (int s = 0; s < count; s++) { const int blockcount = 14; const int blocksize = 0x1000; int ofs = blockcount * blocksize * s; int[] BlockOrder = new int[blockcount]; for (int i = 0; i < BlockOrder.Length; i++) BlockOrder[i] = BitConverter.ToUInt16(data, (i * blocksize) + 0xFF4 + ofs); if (Array.FindIndex(BlockOrder, i => i > 0xD) >= 0) // invalid block ID continue; int Block0 = Array.IndexOf(BlockOrder, 0); // Sometimes not all blocks are present (start of game), yielding multiple block0's. // Real 0th block comes before block1. if (BlockOrder[0] == 1 && Block0 != BlockOrder.Length - 1) continue; if (Array.FindIndex(BlockOrder, v => v != 0) < 0) // all blocks are 0 continue; // Detect RS/E/FRLG return SAV3.GetVersion(data, (blocksize * Block0) + ofs); } return Invalid; } /// Checks to see if the data belongs to a Gen3 Box RS save /// Save data of which to determine the type /// Version Identifier or Invalid if type cannot be determined. internal static GameVersion GetIsG3BOXSAV(byte[] data) { if (data.Length != SIZE_G3BOX && data.Length != SIZE_G3BOXGCI) return Invalid; byte[] sav = data; // Verify first checksum ushort chk = 0; // initial value var ofs = data.Length - SIZE_G3BOX + 0x2000; for (int i = 0x4; i < 0x1FFC; i += 2) chk += BigEndian.ToUInt16(sav, ofs + i); ushort chkA = chk; ushort chkB = (ushort)(0xF004 - chkA); ushort CHK_A = BigEndian.ToUInt16(sav, ofs + 0); ushort CHK_B = BigEndian.ToUInt16(sav, ofs + 2); return CHK_A == chkA && CHK_B == chkB ? RSBOX : Invalid; } /// Checks to see if the data belongs to a Colosseum save /// Save data of which to determine the type /// Version Identifier or Invalid if type cannot be determined. internal static GameVersion GetIsG3COLOSAV(byte[] data) { if (data.Length != SIZE_G3COLO && data.Length != SIZE_G3COLOGCI) return Invalid; // Check the intro bytes for each save slot int offset = data.Length - SIZE_G3COLO; for (int i = 0; i < 3; i++) { var ofs = 0x6000 + offset + (0x1E000 * i); if (BitConverter.ToUInt32(data, ofs) != 0x00000101) return Invalid; } return COLO; } /// Checks to see if the data belongs to a Gen3 XD save /// Save data of which to determine the type /// Version Identifier or Invalid if type cannot be determined. internal static GameVersion GetIsG3XDSAV(byte[] data) { if (data.Length != SIZE_G3XD && data.Length != SIZE_G3XDGCI) return Invalid; // Check the intro bytes for each save slot int offset = data.Length - SIZE_G3XD; for (int i = 0; i < 2; i++) { var ofs = 0x6000 + offset + (0x28000 * i); if ((BitConverter.ToUInt32(data, ofs) & 0xFFFE_FFFF) != 0x00000101) return Invalid; } return XD; } /// Checks to see if the data belongs to a Gen4 save /// Save data of which to determine the type /// Version Identifier or Invalid if type cannot be determined. internal static GameVersion GetIsG4SAV(byte[] data) { if (data.Length != SIZE_G4RAW) return Invalid; // The block footers contain a u32 'size' followed by a u32 binary-coded-decimal timestamp(?) // Korean savegames have a different timestamp from other localizations. bool validSequence(int offset) { var size = BitConverter.ToUInt32(data, offset - 0xC); if (size != (offset & 0xFFFF)) return false; var sdk = BitConverter.ToUInt32(data, offset - 0x8); const int DATE_INT = 0x20060623; const int DATE_KO = 0x20070903; return sdk == DATE_INT || sdk == DATE_KO; } // Check the other save -- first save is done to the latter half of the binary. // The second save should be all that is needed to check. if (validSequence(0x4C100)) return DP; if (validSequence(0x4CF2C)) return Pt; if (validSequence(0x4F628)) return HGSS; return Invalid; } /// Checks to see if the data belongs to a Gen4 Battle Revolution save /// Save data of which to determine the type /// Version Identifier or Invalid if type cannot be determined. internal static GameVersion GetIsG4BRSAV(byte[] data) { if (data.Length != SIZE_G4BR) return Invalid; byte[] sav = SAV4BR.DecryptPBRSaveData(data); return SAV4BR.IsChecksumsValid(sav) ? BATREV : Invalid; } /// Checks to see if the data belongs to a Gen5 save /// Save data of which to determine the type /// Version Identifier or Invalid if type cannot be determined. internal static GameVersion GetIsG5SAV(byte[] data) { if (data.Length != SIZE_G5RAW) return Invalid; // check the checksum block validity; nobody would normally modify this region ushort chk1 = BitConverter.ToUInt16(data, SIZE_G5BW - 0x100 + 0x8C + 0xE); ushort actual1 = Checksums.CRC16_CCITT(data, SIZE_G5BW - 0x100, 0x8C); if (chk1 == actual1) return BW; ushort chk2 = BitConverter.ToUInt16(data, SIZE_G5B2W2 - 0x100 + 0x94 + 0xE); ushort actual2 = Checksums.CRC16_CCITT(data, SIZE_G5B2W2 - 0x100, 0x94); if (chk2 == actual2) return B2W2; return Invalid; } /// Checks to see if the data belongs to a Gen6 save /// Save data of which to determine the type /// Version Identifier or Invalid if type cannot be determined. private static GameVersion GetIsG6SAV(byte[] data) { if (data.Length != SIZE_G6XY && data.Length != SIZE_G6ORAS && data.Length != SIZE_G6ORASDEMO) return Invalid; if (BitConverter.ToUInt32(data, data.Length - 0x1F0) != BEEF) return Invalid; if (data.Length == SIZE_G6XY) return XY; if (data.Length == SIZE_G6ORAS) return ORAS; return ORASDEMO; // least likely } /// Checks to see if the data belongs to a Gen7 save /// Save data of which to determine the type /// Version Identifier or Invalid if type cannot be determined. private static GameVersion GetIsG7SAV(byte[] data) { if (data.Length != SIZE_G7SM && data.Length != SIZE_G7USUM) return Invalid; if (BitConverter.ToUInt32(data, data.Length - 0x1F0) != BEEF) return Invalid; return data.Length == SIZE_G7SM ? SM : USUM; } /// Determines if the input data belongs to a save /// Save data of which to determine the type /// Version Identifier or Invalid if type cannot be determined. private static GameVersion GetIsBelugaSAV(byte[] data) { if (data.Length != SIZE_G7GG) return Invalid; const int actualLength = 0xB8800; if (BitConverter.ToUInt32(data, actualLength - 0x1F0) != BEEF) // beef table start return Invalid; if (BitConverter.ToUInt16(data, actualLength - 0x200 + 0xB0) != 0x13) // check a block number to double check return Invalid; return GG; } /// Checks to see if the data belongs to a Gen7 save /// Save data of which to determine the type /// Version Identifier or Invalid if type cannot be determined. private static GameVersion GetIsG8SAV(byte[] data) { if (data.Length != SIZE_G8SWSH) return Invalid; return SwishCrypto.GetIsHashValid(data) ? SWSH : Invalid; } private static bool GetIsBank7(byte[] data) => data.Length == SIZE_G7BANK && data[0] != 0; private static bool GetIsBank4(byte[] data) => data.Length == SIZE_G4BANK && BitConverter.ToUInt32(data, 0x3FC00) != 0; // box name present private static bool GetIsBank3(byte[] data) => data.Length == SIZE_G4BANK && BitConverter.ToUInt32(data, 0x3FC00) == 0; // size collision with ^ private static bool GetIsRanch4(byte[] data) => (data.Length == SIZE_G4RANCH && BigEndian.ToUInt32(data, 0x22AC) != 0) || (data.Length == SIZE_G4RANCH_PLAT && BigEndian.ToUInt32(data, 0x268C) != 0); /// Creates an instance of a SaveFile using the given save data. /// File location from which to create a SaveFile. /// An appropriate type of save file for the given data, or null if the save data is invalid. public static SaveFile? GetVariantSAV(string path) { var data = File.ReadAllBytes(path); var sav = GetVariantSAV(data); sav?.SetFileInfo(path); return sav; } /// Creates an instance of a SaveFile using the given save data. /// Save data from which to create a SaveFile. /// An appropriate type of save file for the given data, or null if the save data is invalid. public static SaveFile? GetVariantSAV(byte[] data) { // Pre-check for header/footer signatures CheckHeaderFooter(ref data, out var header, out var footer); var sav = GetVariantSAVInternal(data); if (sav == null) return null; sav.Header = header; sav.Footer = footer; return sav; } private static SaveFile? GetVariantSAVInternal(byte[] data) { switch (GetSAVType(data)) { // Main Games case RBY: return new SAV1(data); case GS: case C: return new SAV2(data); case RS: case E: case FRLG: return new SAV3(data); case DP: return new SAV4DP(data); case Pt: return new SAV4Pt(data); case HGSS: return new SAV4HGSS(data); case BW: return new SAV5BW(data); case B2W2: return new SAV5B2W2(data); case XY: return new SAV6XY(data); case ORAS: return new SAV6AO(data); case ORASDEMO: return new SAV6AODemo(data); case SM: return new SAV7SM(data); case USUM: return new SAV7USUM(data); case GG: return new SAV7b(data); case SWSH: return new SAV8SWSH(data); // Side Games case COLO: return new SAV3Colosseum(data); case XD: return new SAV3XD(data); case RSBOX: return new SAV3RSBox(data); case BATREV: return new SAV4BR(data); // Bulk Storage case Gen3: return new Bank3(data); case DPPt: return new SAV4Ranch(data); case Gen4: return new Bank4(data); case Gen7: return Bank7.GetBank7(data); // No pattern matched default: return null; } } public static SaveFile? GetVariantSAV(SAV3GCMemoryCard MC) { // Pre-check for header/footer signatures SaveFile sav; byte[] data = MC.SelectedSaveData; CheckHeaderFooter(ref data, out var header, out var footer); switch (MC.SelectedGameVersion) { // Side Games case COLO: sav = new SAV3Colosseum(data, MC); break; case XD: sav = new SAV3XD(data, MC); break; case RSBOX: sav = new SAV3RSBox(data, MC); break; // No pattern matched default: return null; } sav.Header = header; sav.Footer = footer; return sav; } /// /// Creates an instance of a SaveFile with a blank base. /// /// Version to create the save file for. /// Trainer Name /// Blank save file from the requested game, null if no game exists for that . public static SaveFile GetBlankSAV(GameVersion Game, string OT) { var SAV = GetBlankSAV(Game); SAV.Game = (int)Game; SAV.OT = OT; // Secondary Properties may not be used but can be filled in as template. SAV.TID = 12345; SAV.SID = 54321; SAV.Language = (int)LanguageID.English; // English SAV.Country = 49; // USA SAV.SubRegion = 7; // CA SAV.ConsoleRegion = 1; // Americas return SAV; } /// /// Creates an instance of a SaveFile with a blank base. /// /// Version to create the save file for. /// Blank save file from the requested game, null if no game exists for that . private static SaveFile GetBlankSAV(GameVersion Game) { switch (Game) { case RD: case BU: case GN: case YW: case RBY: return new SAV1(version: Game); case GS: case GD: case SV: return new SAV2(version: GS); case GSC: case C: return new SAV2(version: C); case R: case S: case E: case FR: case LG: return new SAV3(version: Game); case FRLG: return new SAV3(version: FR); case RS: return new SAV3(version: R); case RSE: return new SAV3(version: E); case CXD: case COLO: return new SAV3Colosseum(); case XD: return new SAV3XD(); case RSBOX: return new SAV3RSBox(); case D: case P: case DP: case DPPt: return new SAV4DP(); case Pt: return new SAV4Pt(); case HG: case SS: case HGSS: return new SAV4HGSS(); case B: case W: case BW: return new SAV5BW(); case B2: case W2: case B2W2: return new SAV5B2W2(); case X: case Y: case XY: return new SAV6XY(); case ORASDEMO: return new SAV6AODemo(); case OR: case AS: case ORAS: return new SAV6AO(); case SN: case MN: case SM: return new SAV7SM(); case US: case UM: case USUM: return new SAV7USUM(); case GO: case GP: case GE: case GG: return new SAV7b(); case SW: case SH: case SWSH: return new SAV8SWSH(); default: throw new ArgumentException(nameof(Game)); } } /// /// Creates an instance of a SaveFile with a blank base. /// /// Generation of the Save File. /// Trainer Name /// Save File for that generation. public static SaveFile GetBlankSAV(int generation, string OT) { var ver = GameUtil.GetVersion(generation); return GetBlankSAV(ver, OT); } /// /// Retrieves possible save file paths from the provided . /// /// Folder to look within /// Search all subfolders /// If this function returns true, full path of all that match criteria. If this function returns false, the error message, or null if the directory could not be found /// Boolean indicating whether or not operation was successful. public static bool GetSavesFromFolder(string folderPath, bool deep, out IEnumerable result) { if (!Directory.Exists(folderPath)) { result = Enumerable.Empty(); return false; } try { var searchOption = deep ? SearchOption.AllDirectories : SearchOption.TopDirectoryOnly; // force evaluation so that an invalid path will throw before we return true/false. // EnumerateFiles throws an exception while iterating, which won't be caught by the trycatch here. var files = Directory.GetFiles(folderPath, "*", searchOption); static int safelen(string file) { try { return (int) new FileInfo(file).Length; } catch { return -1; } // Bad File / Locked } result = files.Where(f => IsSizeValid(safelen(f))); return true; } catch (ArgumentException) { result = new[] { MsgFileLoadFailAuto + Environment.NewLine + folderPath, MsgFileLoadFailAutoAdvise + Environment.NewLine + MsgFileLoadFailAutoCause }; return false; } } /// /// Determines whether the save data size is valid for autodetecting saves. /// /// Size in bytes of the save data /// A boolean indicating whether or not the save data size is valid. public static bool IsSizeValid(int size) => SIZES.Contains(size); /// /// Checks the provided and pulls out any and/or arrays. /// /// Input byte array to strip /// Header data /// Footer data private static void CheckHeaderFooter(ref byte[] input, out byte[] header, out byte[] footer) { header = Array.Empty(); footer = Array.Empty(); if ((input.Length & 0xFF) == 0) // catch most non-header/footers return; if (input.Length > SIZE_G4RAW) // DeSmuME Gen4/5 DSV { if (input.Length == 0x800A4) // Action Replay { header = input.Slice(0, 0xA4); input = input.SliceEnd(0xA4); return; } int start = input.Length - FOOTER_DSV.Length; for (int i = 0; i < FOOTER_DSV.Length; i++) { if (FOOTER_DSV[i] != input[start + i]) return; } footer = input.SliceEnd(SIZE_G4RAW); input = input.Slice(0, SIZE_G4RAW); } else if (input.Length == SIZE_G3BOXGCI) { if (!IsGameMatchHeader(HEADER_RSBOX, input)) return; // not gci header = input.Slice(0, SIZE_G3BOXGCI - SIZE_G3BOX); input = input.SliceEnd(header.Length); } else if (input.Length == SIZE_G3COLOGCI) { if (!IsGameMatchHeader(HEADER_COLO, input)) return; // not gci header = input.Slice(0, SIZE_G3COLOGCI - SIZE_G3COLO); input = input.SliceEnd(header.Length); } else if (input.Length == SIZE_G3XDGCI) { if (!IsGameMatchHeader(HEADER_XD, input)) return; // not gci header = input.Slice(0, SIZE_G3XDGCI - SIZE_G3XD); input = input.SliceEnd(header.Length); } static bool IsGameMatchHeader(IEnumerable headers, byte[] data) => headers.Contains(Encoding.ASCII.GetString(data, 0, 4)); } /// /// Force loads the provided to the requested . /// /// SaveFile data to force /// Version to retrieve for /// New object. public static SAV3 GetG3SaveOverride(SaveFile sav, GameVersion ver) { return ver switch // Reset save file info { R => new SAV3(sav.BAK, RS), S => new SAV3(sav.BAK, RS), RS => new SAV3(sav.BAK, RS), E => new SAV3(sav.BAK, E), FRLG => new SAV3(sav.BAK, FRLG), FR => new SAV3(sav.BAK, FRLG), LG => new SAV3(sav.BAK, FRLG), _ => throw new ArgumentException(nameof(ver)) }; } /// /// Gets the for a Gen3 save file. /// /// Version to retrieve for /// Reference to the . public static PersonalTable GetG3Personal(GameVersion ver) { return ver switch { RS => PersonalTable.RS, E => PersonalTable.E, FRLG => PersonalTable.FR, FR => PersonalTable.FR, LG => PersonalTable.LG, R => PersonalTable.RS, S => PersonalTable.RS, _ => throw new ArgumentException(nameof(ver)) }; } } }