2021-10-08 17:48:34 -07:00
|
|
|
|
using System;
|
|
|
|
|
|
2022-06-18 11:04:24 -07:00
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <see cref="PersonalInfo"/> class with values from the Black 2 & White 2 games.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public sealed class PersonalInfoB2W2 : PersonalInfoBW
|
2016-07-02 20:24:17 -07:00
|
|
|
|
{
|
2022-06-18 11:04:24 -07:00
|
|
|
|
public new const int SIZE = 0x4C;
|
2018-07-26 19:34:27 -07:00
|
|
|
|
|
2022-06-18 11:04:24 -07:00
|
|
|
|
public PersonalInfoB2W2(byte[] data) : base(data)
|
|
|
|
|
{
|
|
|
|
|
// Unpack TMHM & Tutors
|
|
|
|
|
TMHM = GetBits(Data.AsSpan(0x28, 0x10));
|
|
|
|
|
TypeTutors = GetBits(Data.AsSpan(0x38, 0x4));
|
|
|
|
|
SpecialTutors = new[]
|
2016-07-02 20:24:17 -07:00
|
|
|
|
{
|
2022-06-18 11:04:24 -07:00
|
|
|
|
GetBits(Data.AsSpan(0x3C, 0x04)),
|
|
|
|
|
GetBits(Data.AsSpan(0x40, 0x04)),
|
|
|
|
|
GetBits(Data.AsSpan(0x44, 0x04)),
|
|
|
|
|
GetBits(Data.AsSpan(0x48, 0x04)),
|
|
|
|
|
};
|
|
|
|
|
}
|
2016-07-02 20:24:17 -07:00
|
|
|
|
|
2022-06-18 11:04:24 -07:00
|
|
|
|
public override byte[] Write()
|
|
|
|
|
{
|
|
|
|
|
SetBits(TMHM, Data.AsSpan(0x28));
|
|
|
|
|
SetBits(TypeTutors, Data.AsSpan(0x38));
|
|
|
|
|
SetBits(SpecialTutors[0], Data.AsSpan(0x3C));
|
|
|
|
|
SetBits(SpecialTutors[1], Data.AsSpan(0x40));
|
|
|
|
|
SetBits(SpecialTutors[2], Data.AsSpan(0x44));
|
|
|
|
|
SetBits(SpecialTutors[3], Data.AsSpan(0x48));
|
|
|
|
|
return Data;
|
2016-07-02 20:24:17 -07:00
|
|
|
|
}
|
|
|
|
|
}
|