using System; using System.Collections.Generic; using System.IO; using System.Linq; using PKHeX.Core; namespace PKHeX.WinForms { /// /// Contains extension methods for use with a . /// public static class SAVUtil { /// /// Dumps a folder of files to the . /// /// that is being dumped from. /// Folder to store files. /// Result message from the method. /// Option to save in child folders with the Box Name as the folder name. /// public static bool DumpBoxes(this SaveFile SAV, string path, out string result, bool boxFolders = false) { PKM[] boxdata = SAV.BoxData; if (boxdata == null) { result = "Invalid Box Data, unable to dump."; return false; } int ctr = 0; foreach (PKM pk in boxdata) { if (pk.Species == 0 || !pk.Valid) continue; ctr++; string fileName = Util.CleanFileName(pk.FileName); string boxfolder = ""; if (boxFolders) { boxfolder = SAV.GetBoxName(pk.Box - 1); Directory.CreateDirectory(Path.Combine(path, boxfolder)); } if (!File.Exists(Path.Combine(Path.Combine(path, boxfolder), fileName))) File.WriteAllBytes(Path.Combine(Path.Combine(path, boxfolder), fileName), pk.DecryptedBoxData); } result = $"Dumped Boxes ({ctr} pkm) to path:\n" + path; return true; } public static bool DumpBox(this SaveFile SAV, string path, out string result, int currentBox) { PKM[] boxdata = SAV.BoxData; if (boxdata == null) { result = "Invalid Box Data, unable to dump."; return false; } int ctr = 0; foreach (PKM pk in boxdata) { if (pk.Species == 0 || !pk.Valid || (pk.Box - 1) != currentBox) continue; ctr++; string fileName = Util.CleanFileName(pk.FileName); if (!File.Exists(Path.Combine(path, fileName))) File.WriteAllBytes(Path.Combine(path, fileName), pk.DecryptedBoxData); } result = $"Dumped Box ({ctr} pkm) to path:\n" + path; return true; } /// /// Loads a folder of files to the . /// /// to load folder to. /// Folder to load files from. Files are only loaded from the top directory. /// Result message from the method. /// First box to start loading to. All prior boxes are not modified. /// Instruction to clear boxes after the starting box. /// Bypass option to not modify properties when setting to Save File. /// public static bool LoadBoxes(this SaveFile SAV, string path, out string result, int boxStart = 0, bool boxClear = false, bool? noSetb = null) { if (string.IsNullOrWhiteSpace(path)) { result = "Invalid path specified."; return false; } if (!SAV.HasBox) { result = "Save file does not have boxes."; return false; } if (boxClear) SAV.ClearBoxes(boxStart); int startCount = boxStart*SAV.BoxSlotCount; int maxCount = SAV.BoxCount*SAV.BoxSlotCount; int ctr = startCount; int pastctr = 0; string[] filepaths = Directory.GetFiles(path, "*.*", SearchOption.TopDirectoryOnly); foreach (var file in filepaths) { if (!PKX.IsPKM(new FileInfo(file).Length)) continue; // Check for format compatibility with save; if transfer is necessary => convert. // format conversion comment byte[] data = File.ReadAllBytes(file); PKM temp = PKMConverter.GetPKMfromBytes(data, prefer: SAV.Generation); PKM pk = PKMConverter.ConvertToType(temp, SAV.PKMType, out string c); if (pk == null) { Console.WriteLine(c); continue; } if (SAV.IsPKMCompatible(pk).Length > 0) continue; while (SAV.IsSlotLocked(ctr/SAV.BoxSlotCount, ctr%SAV.BoxSlotCount)) ctr++; int offset = SAV.GetBoxOffset(ctr/SAV.BoxSlotCount) + ctr%SAV.BoxSlotCount*SAV.SIZE_STORED; SAV.SetStoredSlot(pk, offset, noSetb); if (pk.Format != temp.Format) // Transferred pastctr++; if (++ctr == maxCount) // Boxes full! break; } ctr -= startCount; // actual imported count if (ctr <= 0) { result = "No files loaded"; return false; } result = $"Loaded {ctr} files to boxes."; if (pastctr > 0) result += Environment.NewLine + $"Conversion successful for {pastctr} past generation files."; return true; } /// /// Checks a file for compatibility to the . /// /// that is being checked. /// that is being tested for compatibility. /// public static string[] IsPKMCompatible(this SaveFile SAV, PKM pkm) { // Check if PKM properties are outside of the valid range List errata = new List(); if (SAV.Generation > 1) { ushort held = (ushort)pkm.HeldItem; if (held > GameInfo.Strings.itemlist.Length) errata.Add($"Item Index beyond range: {held}"); else if (held > SAV.MaxItemID) errata.Add($"Game can't obtain item: {GameInfo.Strings.itemlist[held]}"); else if (!pkm.CanHoldItem(SAV.HeldItems)) errata.Add($"Game can't hold item: {GameInfo.Strings.itemlist[held]}"); } if (pkm.Species > GameInfo.Strings.specieslist.Length) errata.Add($"Species Index beyond range: {pkm.Species}"); else if (SAV.MaxSpeciesID < pkm.Species) errata.Add($"Game can't obtain species: {GameInfo.Strings.specieslist[pkm.Species]}"); if (pkm.Moves.Any(m => m > GameInfo.Strings.movelist.Length)) errata.Add($"Item Index beyond range: {string.Join(", ", pkm.Moves.Where(m => m > GameInfo.Strings.movelist.Length).Select(m => m.ToString()))}"); else if (pkm.Moves.Any(m => m > SAV.MaxMoveID)) errata.Add($"Game can't have move: {string.Join(", ", pkm.Moves.Where(m => m > SAV.MaxMoveID).Select(m => GameInfo.Strings.movelist[m]))}"); if (pkm.Ability > GameInfo.Strings.abilitylist.Length) errata.Add($"Ability Index beyond range: {pkm.Ability}"); else if (pkm.Ability > SAV.MaxAbilityID) errata.Add($"Game can't have ability: {GameInfo.Strings.abilitylist[pkm.Ability]}"); return errata.ToArray(); } } }