mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 00:07:15 +00:00
47643f49b6
reads the bits out of the original array (saves a few ms by not allocating/gc)
28 lines
792 B
C#
28 lines
792 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// <see cref="PersonalInfo"/> class with values from the X & Y games.
|
|
/// </summary>
|
|
public class PersonalInfoXY : PersonalInfoBW
|
|
{
|
|
protected PersonalInfoXY() { } // For ORAS
|
|
public new const int SIZE = 0x40;
|
|
public PersonalInfoXY(byte[] data)
|
|
{
|
|
if (data.Length != SIZE)
|
|
return;
|
|
Data = data;
|
|
|
|
// Unpack TMHM & Tutors
|
|
TMHM = GetBits(Data, 0x28, 0x10);
|
|
TypeTutors = GetBits(Data, 0x38, 0x4);
|
|
// 0x3C-0x40 unknown
|
|
}
|
|
public override byte[] Write()
|
|
{
|
|
SetBits(TMHM).CopyTo(Data, 0x28);
|
|
SetBits(TypeTutors).CopyTo(Data, 0x38);
|
|
return Data;
|
|
}
|
|
}
|
|
}
|