mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
51 lines
1.5 KiB
C#
51 lines
1.5 KiB
C#
|
namespace PKHeX.Core
|
||
|
{
|
||
|
public sealed class BlockInfoRSBOX : BlockInfo
|
||
|
{
|
||
|
public readonly uint SaveCount;
|
||
|
public readonly uint Checksum;
|
||
|
|
||
|
public BlockInfoRSBOX(byte[] data, int offset)
|
||
|
{
|
||
|
Offset = offset;
|
||
|
Length = 0x1FFC;
|
||
|
|
||
|
// Values stored in Big Endian format
|
||
|
Checksum = BigEndian.ToUInt32(data, Offset + 0);
|
||
|
ID = BigEndian.ToUInt32(data, Offset + 4);
|
||
|
SaveCount = BigEndian.ToUInt32(data, Offset + 8);
|
||
|
}
|
||
|
|
||
|
protected override bool ChecksumValid(byte[] data)
|
||
|
{
|
||
|
var chk = GetChecksum(data);
|
||
|
var old = BigEndian.ToUInt32(data, Offset);
|
||
|
return chk == old;
|
||
|
}
|
||
|
|
||
|
protected override void SetChecksum(byte[] data)
|
||
|
{
|
||
|
var chk = GetChecksum(data, Offset, Length);
|
||
|
data[0] = (byte)(chk >> 24);
|
||
|
data[1] = (byte)(chk >> 16);
|
||
|
data[2] = (byte)(chk >> 8);
|
||
|
data[3] = (byte)(chk >> 0);
|
||
|
}
|
||
|
|
||
|
private uint GetChecksum(byte[] data)
|
||
|
{
|
||
|
int start = Offset + 4;
|
||
|
int length = start + Length - 4;
|
||
|
|
||
|
return GetChecksum(data, start, length);
|
||
|
}
|
||
|
|
||
|
private static uint GetChecksum(byte[] data, int start, int length)
|
||
|
{
|
||
|
ushort chk = 0; // initial value
|
||
|
for (int j = start; j < length; j += 2)
|
||
|
chk += BigEndian.ToUInt16(data, j);
|
||
|
return (uint)(chk << 16 | (0xF004 - chk));
|
||
|
}
|
||
|
}
|
||
|
}
|