mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
3f38b123a3
mostly renaming things, includes a little bit of added sugar and splitting methods to simplify the codebase. all methods are now PascalCase
37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
using System.Linq;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public class PersonalInfoORAS : PersonalInfoXY
|
|
{
|
|
public new const int SIZE = 0x50;
|
|
public PersonalInfoORAS(byte[] data)
|
|
{
|
|
if (data.Length != SIZE)
|
|
return;
|
|
Data = data;
|
|
|
|
// Unpack TMHM & Tutors
|
|
TMHM = GetBits(Data.Skip(0x28).Take(0x10).ToArray());
|
|
TypeTutors = GetBits(Data.Skip(0x38).Take(0x4).ToArray());
|
|
// 0x3C-0x40 unknown
|
|
SpecialTutors = new[]
|
|
{
|
|
GetBits(Data.Skip(0x40).Take(0x04).ToArray()),
|
|
GetBits(Data.Skip(0x44).Take(0x04).ToArray()),
|
|
GetBits(Data.Skip(0x48).Take(0x04).ToArray()),
|
|
GetBits(Data.Skip(0x4C).Take(0x04).ToArray()),
|
|
};
|
|
}
|
|
public override byte[] Write()
|
|
{
|
|
SetBits(TMHM).CopyTo(Data, 0x28);
|
|
SetBits(TypeTutors).CopyTo(Data, 0x38);
|
|
SetBits(SpecialTutors[0]).CopyTo(Data, 0x40);
|
|
SetBits(SpecialTutors[1]).CopyTo(Data, 0x44);
|
|
SetBits(SpecialTutors[2]).CopyTo(Data, 0x48);
|
|
SetBits(SpecialTutors[3]).CopyTo(Data, 0x4C);
|
|
return Data;
|
|
}
|
|
}
|
|
}
|