mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-23 19:03:11 +00:00
46 lines
1.3 KiB
C#
46 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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|