PKHeX/PKHeX.Core/Saves/Substructures/Gen6/IPokePuff.cs
Kurt d4ce0644c8 Simplify block property names
[...]Block -> [...]  since it's kinda redundant, we already know by its
type.
Rename offset ints that collide
2019-10-18 20:42:03 -07:00

50 lines
No EOL
1.3 KiB
C#

using System;
namespace PKHeX.Core
{
public interface IPokePuff
{
Puff6 Puff { get; }
}
public interface IOPower
{
OPower6 OPower { get; }
}
public interface ILink
{
LinkBlock6 Link { get; }
}
public sealed class LinkBlock6 : SaveBlock
{
public LinkBlock6(SAV6XY sav, int offset) : base(sav) => Offset = offset;
public LinkBlock6(SAV6AO sav, int offset) : base(sav) => Offset = offset;
public byte[] GetLinkInfoData() => Data.Slice(Offset + 0x1FF, PL6.Size);
public PL6 GetLinkInfo() => new PL6(GetLinkInfoData());
public void SetLinkInfoData(byte[] data)
{
data.CopyTo(Data, Offset);
Checksum = GetCalculatedChecksum(); // [app,chk)
}
public void SetLinkInfo(PL6 pl6)
{
pl6.Data.CopyTo(Data, Offset + 0x1FF);
Checksum = GetCalculatedChecksum(); // [app,chk)
}
private ushort GetCalculatedChecksum() => Checksums.CRC16_CCITT(Data, Offset + 0x200, 0xC48 - 4 - 0x200); // [app,chk)
private int GetChecksumOffset() => Offset + 0xC48 - 4;
public ushort Checksum
{
get => BitConverter.ToUInt16(Data, GetChecksumOffset());
set => BitConverter.GetBytes(value).CopyTo(Data, GetChecksumOffset());
}
}
}