mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 06:34:19 +00:00
d47bb1d297
With the new version of Visual Studio bringing C# 12, we can revise our logic for better readability as well as use new methods/APIs introduced in the .NET 8.0 BCL.
64 lines
1.9 KiB
C#
64 lines
1.9 KiB
C#
using System;
|
|
using static System.Buffers.Binary.BinaryPrimitives;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Gen6+ Block Info (inside BEEF chunk)
|
|
/// </summary>
|
|
public abstract class BlockInfo3DS : BlockInfo
|
|
{
|
|
private readonly int BlockInfoOffset;
|
|
|
|
// ==chunk def== @ BlockInfoOffset
|
|
// u64 timestamp1
|
|
// u64 timestamp2
|
|
// u8[4] BEEF magic
|
|
// n*{blockInfo}, where n varies per sav type
|
|
|
|
// ==block info def==
|
|
// u32 length
|
|
// u16 id
|
|
// u16 checksum
|
|
|
|
// when stored, each block size is rounded up to nearest 0x200, and the next chunk is immediately after
|
|
|
|
protected BlockInfo3DS(int bo, uint id, int ofs, int len)
|
|
{
|
|
BlockInfoOffset = bo;
|
|
ID = id;
|
|
Offset = ofs;
|
|
Length = len;
|
|
}
|
|
|
|
private int ChecksumOffset => BlockInfoOffset + 0x14 + ((int)ID * 8) + 6;
|
|
protected abstract ushort GetChecksum(ReadOnlySpan<byte> data);
|
|
|
|
protected override bool ChecksumValid(ReadOnlySpan<byte> data)
|
|
{
|
|
ushort chk = GetChecksum(data);
|
|
var old = ReadUInt16LittleEndian(data[ChecksumOffset..]);
|
|
return chk == old;
|
|
}
|
|
|
|
protected override void SetChecksum(Span<byte> data)
|
|
{
|
|
ushort chk = GetChecksum(data);
|
|
WriteUInt16LittleEndian(data[ChecksumOffset..], chk);
|
|
}
|
|
}
|
|
|
|
public sealed class BlockInfo6(int bo, uint id, int ofs, int len) : BlockInfo3DS(bo, id, ofs, len)
|
|
{
|
|
protected override ushort GetChecksum(ReadOnlySpan<byte> data) => Checksums.CRC16_CCITT(data.Slice(Offset, Length));
|
|
}
|
|
|
|
public sealed class BlockInfo7(int bo, uint id, int ofs, int len) : BlockInfo3DS(bo, id, ofs, len)
|
|
{
|
|
protected override ushort GetChecksum(ReadOnlySpan<byte> data) => Checksums.CRC16Invert(data.Slice(Offset, Length));
|
|
}
|
|
|
|
public sealed class BlockInfo7b(int bo, uint id, int ofs, int len) : BlockInfo3DS(bo, id, ofs, len)
|
|
{
|
|
protected override ushort GetChecksum(ReadOnlySpan<byte> data) => Checksums.CRC16NoInvert(data.Slice(Offset, Length));
|
|
}
|