mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-19 08:53:28 +00:00
9718d1d2aa
GCI, DSV, DUC are already supported, so I've written the abstraction for those and seed the Handler list on startup. Can add a new class with recognition via SaveUtil.Handlers.Add(myHandler);
45 lines
1.3 KiB
C#
45 lines
1.3 KiB
C#
using System;
|
|
using System.Text;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Logic for recognizing .dsv save files from DeSmuME.
|
|
/// </summary>
|
|
public class SaveHandlerDeSmuME : ISaveHandler
|
|
{
|
|
private const int sizeFooter = 0x7A;
|
|
private const int ExpectedSize = SaveUtil.SIZE_G4RAW + sizeFooter;
|
|
|
|
private static readonly byte[] FOOTER_DSV = Encoding.ASCII.GetBytes("|-DESMUME SAVE-|");
|
|
|
|
private static bool GetHasSignature(byte[] input, byte[] signature, int start)
|
|
{
|
|
for (int i = 0; i < signature.Length; i++)
|
|
{
|
|
if (signature[i] != input[start + i])
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
private static bool GetHasFooterDSV(byte[] input)
|
|
{
|
|
var signature = FOOTER_DSV;
|
|
return GetHasSignature(input, signature, input.Length - signature.Length);
|
|
}
|
|
|
|
public bool IsRecognized(int size) => size is ExpectedSize;
|
|
|
|
public SaveHandlerSplitResult? TrySplit(byte[] input)
|
|
{
|
|
if (!GetHasFooterDSV(input))
|
|
return null;
|
|
|
|
var footer = input.SliceEnd(SaveUtil.SIZE_G4RAW);
|
|
input = input.Slice(0, SaveUtil.SIZE_G4RAW);
|
|
|
|
return new SaveHandlerSplitResult(input, Array.Empty<byte>(), footer);
|
|
}
|
|
}
|
|
}
|