PKHeX/PKHeX.Core/PersonalInfo/PersonalInfoXY.cs
Kurt 92fe440208 Make bitflag get/set span-based
no temp array on write (unused in pkhex anyways)
no length checking on read
2021-10-08 17:48:34 -07:00

27 lines
702 B
C#

using System;
namespace PKHeX.Core
{
/// <summary>
/// <see cref="PersonalInfo"/> class with values from the X &amp; Y games.
/// </summary>
public class PersonalInfoXY : PersonalInfoBW
{
public new const int SIZE = 0x40;
public PersonalInfoXY(byte[] data) : base(data)
{
// Unpack TMHM & Tutors
TMHM = GetBits(Data.AsSpan(0x28, 0x10));
TypeTutors = GetBits(Data.AsSpan(0x38, 0x4));
// 0x3C-0x40 unknown
}
public override byte[] Write()
{
SetBits(TMHM, Data.AsSpan(0x28));
SetBits(TypeTutors, Data.AsSpan(0x38));
return Data;
}
}
}