mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
02420d3e93
* Handle some nullable cases Refactor MysteryGift into a second abstract class (backed by a byte array, or fake data) Make some classes have explicit constructors instead of { } initialization * Handle bits more obviously without null * Make SaveFile.BAK explicitly readonly again * merge constructor methods to have readonly fields * Inline some properties * More nullable handling * Rearrange box actions define straightforward classes to not have any null properties * Make extrabyte reference array immutable * Move tooltip creation to designer * Rearrange some logic to reduce nesting * Cache generated fonts * Split mystery gift album purpose * Handle more tooltips * Disallow null setters * Don't capture RNG object, only type enum * Unify learnset objects Now have readonly properties which are never null don't new() empty learnsets (>800 Learnset objects no longer created, total of 2400 objects since we also new() a move & level array) optimize g1/2 reader for early abort case * Access rewrite Initialize blocks in a separate object, and get via that object removes a couple hundred "might be null" warnings since blocks are now readonly getters some block references have been relocated, but interfaces should expose all that's needed put HoF6 controls in a groupbox, and disable * Readonly personal data * IVs non nullable for mystery gift * Explicitly initialize forced encounter moves * Make shadow objects readonly & non-null Put murkrow fix in binary data resource, instead of on startup * Assign dex form fetch on constructor Fixes legality parsing edge cases also handle cxd parse for valid; exit before exception is thrown in FrameGenerator * Remove unnecessary null checks * Keep empty value until init SetPouch sets the value to an actual one during load, but whatever * Readonly team lock data * Readonly locks Put locked encounters at bottom (favor unlocked) * Mail readonly data / offset Rearrange some call flow and pass defaults Add fake classes for SaveDataEditor mocking Always party size, no need to check twice in stat editor use a fake save file as initial data for savedata editor, and for gamedata (wow i found a usage) constrain eventwork editor to struct variable types (uint, int, etc), thus preventing null assignment errors
202 lines
9.6 KiB
C#
202 lines
9.6 KiB
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
|
|
using static PKHeX.Core.MessageStrings;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Contains extension methods for use with a <see cref="SaveFile"/>.
|
|
/// </summary>
|
|
public static class BoxUtil
|
|
{
|
|
/// <summary>
|
|
/// Dumps a folder of files to the <see cref="SaveFile"/>.
|
|
/// </summary>
|
|
/// <param name="SAV"><see cref="SaveFile"/> that is being dumped from.</param>
|
|
/// <param name="path">Folder to store <see cref="PKM"/> files.</param>
|
|
/// <param name="boxFolders">Option to save in child folders with the Box Name as the folder name.</param>
|
|
/// <returns>-1 if aborted, otherwise the amount of files dumped.</returns>
|
|
public static int DumpBoxes(this SaveFile SAV, string path, bool boxFolders = false)
|
|
{
|
|
if (!SAV.HasBox)
|
|
return -1;
|
|
|
|
var boxdata = SAV.BoxData;
|
|
var ctr = 0;
|
|
foreach (var pk in boxdata)
|
|
{
|
|
if (pk.Species == 0 || !pk.Valid)
|
|
continue;
|
|
|
|
var boxfolder = path;
|
|
if (boxFolders)
|
|
{
|
|
var boxName = Util.CleanFileName(SAV.GetBoxName(pk.Box - 1));
|
|
boxfolder = Path.Combine(path, boxName);
|
|
Directory.CreateDirectory(boxfolder);
|
|
}
|
|
|
|
var fileName = Util.CleanFileName(pk.FileName);
|
|
var fn = Path.Combine(boxfolder, fileName);
|
|
if (File.Exists(fn))
|
|
continue;
|
|
|
|
File.WriteAllBytes(fn, pk.DecryptedBoxData);
|
|
ctr++;
|
|
}
|
|
return ctr;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Dumps the <see cref="SaveFile.BoxData"/> to a folder with individual decrypted files.
|
|
/// </summary>
|
|
/// <param name="SAV"><see cref="SaveFile"/> that is being dumped from.</param>
|
|
/// <param name="path">Folder to store <see cref="PKM"/> files.</param>
|
|
/// <param name="currentBox">Box contents to be dumped.</param>
|
|
/// <returns>-1 if aborted, otherwise the amount of files dumped.</returns>
|
|
public static int DumpBox(this SaveFile SAV, string path, int currentBox)
|
|
{
|
|
if (!SAV.HasBox)
|
|
return -1;
|
|
|
|
var boxdata = SAV.BoxData;
|
|
var ctr = 0;
|
|
foreach (var pk in boxdata)
|
|
{
|
|
if (pk.Species == 0 || !pk.Valid || pk.Box - 1 != currentBox)
|
|
continue;
|
|
|
|
var fileName = Path.Combine(path, Util.CleanFileName(pk.FileName));
|
|
if (File.Exists(fileName))
|
|
continue;
|
|
|
|
File.WriteAllBytes(fileName, pk.DecryptedBoxData);
|
|
ctr++;
|
|
}
|
|
return ctr;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Loads a folder of files to the <see cref="SaveFile"/>.
|
|
/// </summary>
|
|
/// <param name="SAV"><see cref="SaveFile"/> to load folder to.</param>
|
|
/// <param name="path">Folder to load <see cref="PKM"/> files from. Files are only loaded from the top directory.</param>
|
|
/// <param name="result">Result message from the method.</param>
|
|
/// <param name="boxStart">First box to start loading to. All prior boxes are not modified.</param>
|
|
/// <param name="boxClear">Instruction to clear boxes after the starting box.</param>
|
|
/// <param name="overwrite">Overwrite existing full slots. If true, will only overwrite empty slots.</param>
|
|
/// <param name="noSetb">Bypass option to not modify <see cref="PKM"/> properties when setting to Save File.</param>
|
|
/// <param name="all">Enumerate all files even in sub-folders.</param>
|
|
/// <returns>Count of files imported.</returns>
|
|
public static int LoadBoxes(this SaveFile SAV, string path, out string result, int boxStart = 0, bool boxClear = false, bool overwrite = false, PKMImportSetting noSetb = PKMImportSetting.UseDefault, bool all = false)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(path) || !Directory.Exists(path))
|
|
{ result = MsgSaveBoxExportPathInvalid; return -1; }
|
|
|
|
var opt = all ? SearchOption.AllDirectories : SearchOption.TopDirectoryOnly;
|
|
var filepaths = Directory.EnumerateFiles(path, "*.*", opt);
|
|
return SAV.LoadBoxes(filepaths, out result, boxStart, boxClear, overwrite, noSetb);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Loads a folder of files to the <see cref="SaveFile"/>.
|
|
/// </summary>
|
|
/// <param name="SAV"><see cref="SaveFile"/> to load folder to.</param>
|
|
/// <param name="filepaths">Files to load <see cref="PKM"/> files from.</param>
|
|
/// <param name="result">Result message from the method.</param>
|
|
/// <param name="boxStart">First box to start loading to. All prior boxes are not modified.</param>
|
|
/// <param name="boxClear">Instruction to clear boxes after the starting box.</param>
|
|
/// <param name="overwrite">Overwrite existing full slots. If true, will only overwrite empty slots.</param>
|
|
/// <param name="noSetb">Bypass option to not modify <see cref="PKM"/> properties when setting to Save File.</param>
|
|
/// <returns>Count of files imported.</returns>
|
|
public static int LoadBoxes(this SaveFile SAV, IEnumerable<string> filepaths, out string result, int boxStart = 0, bool boxClear = false, bool overwrite = false, PKMImportSetting noSetb = PKMImportSetting.UseDefault)
|
|
{
|
|
var pks = GetPossiblePKMsFromPaths(SAV, filepaths);
|
|
return SAV.LoadBoxes(pks, out result, boxStart, boxClear, overwrite, noSetb);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Loads a folder of files to the <see cref="SaveFile"/>.
|
|
/// </summary>
|
|
/// <param name="SAV"><see cref="SaveFile"/> to load folder to.</param>
|
|
/// <param name="encounters">Encounters to create <see cref="PKM"/> files from.</param>
|
|
/// <param name="result">Result message from the method.</param>
|
|
/// <param name="boxStart">First box to start loading to. All prior boxes are not modified.</param>
|
|
/// <param name="boxClear">Instruction to clear boxes after the starting box.</param>
|
|
/// <param name="overwrite">Overwrite existing full slots. If true, will only overwrite empty slots.</param>
|
|
/// <param name="noSetb">Bypass option to not modify <see cref="PKM"/> properties when setting to Save File.</param>
|
|
/// <returns>Count of files imported.</returns>
|
|
public static int LoadBoxes(this SaveFile SAV, IEnumerable<IEncounterable> encounters, out string result, int boxStart = 0, bool boxClear = false, bool overwrite = false, PKMImportSetting noSetb = PKMImportSetting.UseDefault)
|
|
{
|
|
var pks = encounters.Select(z => z.ConvertToPKM(SAV));
|
|
return SAV.LoadBoxes(pks, out result, boxStart, boxClear, overwrite, noSetb);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Loads a folder of files to the <see cref="SaveFile"/>.
|
|
/// </summary>
|
|
/// <param name="SAV"><see cref="SaveFile"/> to load folder to.</param>
|
|
/// <param name="pks">Unconverted <see cref="PKM"/> objects to load.</param>
|
|
/// <param name="result">Result message from the method.</param>
|
|
/// <param name="boxStart">First box to start loading to. All prior boxes are not modified.</param>
|
|
/// <param name="boxClear">Instruction to clear boxes after the starting box.</param>
|
|
/// <param name="overwrite">Overwrite existing full slots. If true, will only overwrite empty slots.</param>
|
|
/// <param name="noSetb">Bypass option to not modify <see cref="PKM"/> properties when setting to Save File.</param>
|
|
/// <returns>True if any files are imported.</returns>
|
|
public static int LoadBoxes(this SaveFile SAV, IEnumerable<PKM> pks, out string result, int boxStart = 0, bool boxClear = false, bool overwrite = false, PKMImportSetting noSetb = PKMImportSetting.UseDefault)
|
|
{
|
|
if (!SAV.HasBox)
|
|
{ result = MsgSaveBoxFailNone; return -1; }
|
|
|
|
var compat = SAV.GetCompatible(pks);
|
|
if (boxClear)
|
|
SAV.ClearBoxes(boxStart);
|
|
|
|
int ctr = SAV.ImportPKMs(compat, overwrite, boxStart, noSetb);
|
|
if (ctr <= 0)
|
|
{
|
|
result = MsgSaveBoxImportNoFiles;
|
|
return -1;
|
|
}
|
|
|
|
result = string.Format(MsgSaveBoxImportSuccess, ctr);
|
|
return ctr;
|
|
}
|
|
|
|
public static IEnumerable<PKM> GetPKMsFromPaths(IEnumerable<string> filepaths, int generation)
|
|
{
|
|
var result = filepaths
|
|
.Where(file => PKX.IsPKM(new FileInfo(file).Length))
|
|
.Select(File.ReadAllBytes)
|
|
.Select(data => PKMConverter.GetPKMfromBytes(data, prefer: generation));
|
|
|
|
foreach (var pkm in result)
|
|
{
|
|
if (pkm != null)
|
|
yield return pkm;
|
|
}
|
|
}
|
|
|
|
private static IEnumerable<PKM> GetPossiblePKMsFromPaths(SaveFile sav, IEnumerable<string> filepaths)
|
|
{
|
|
foreach (var f in filepaths)
|
|
{
|
|
var obj = FileUtil.GetSupportedFile(f, sav);
|
|
switch (obj)
|
|
{
|
|
case PKM pk:
|
|
yield return pk;
|
|
break;
|
|
case MysteryGift g when g.IsPokémon:
|
|
yield return g.ConvertToPKM(sav);
|
|
break;
|
|
case GP1 g when g.Species != 0:
|
|
yield return g.ConvertToPB7(sav);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|