2016-10-23 03:09:22 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
2017-01-08 07:54:09 +00:00
|
|
|
|
namespace PKHeX.Core
|
2016-10-20 01:19:01 +00:00
|
|
|
|
{
|
2017-10-24 06:12:58 +00:00
|
|
|
|
/// <summary>
|
2018-07-22 02:20:11 +00:00
|
|
|
|
/// <see cref="PersonalInfo"/> class with values from the Sun & Moon games.
|
2017-10-24 06:12:58 +00:00
|
|
|
|
/// </summary>
|
2016-10-20 01:19:01 +00:00
|
|
|
|
public class PersonalInfoSM : PersonalInfoXY
|
|
|
|
|
{
|
|
|
|
|
public new const int SIZE = 0x54;
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2016-10-20 01:19:01 +00:00
|
|
|
|
public PersonalInfoSM(byte[] data)
|
|
|
|
|
{
|
|
|
|
|
if (data.Length != SIZE)
|
|
|
|
|
return;
|
|
|
|
|
Data = data;
|
2016-10-23 03:09:22 +00:00
|
|
|
|
|
2018-02-17 03:34:42 +00:00
|
|
|
|
TMHM = GetBits(Data, 0x28, 0x10); // 36-39
|
|
|
|
|
TypeTutors = GetBits(Data, 0x38, 0x4); // 40
|
2017-10-25 02:59:46 +00:00
|
|
|
|
|
|
|
|
|
SpecialTutors = new[]
|
|
|
|
|
{
|
2018-02-17 03:34:42 +00:00
|
|
|
|
GetBits(Data, 0x3C, 0x0A),
|
2017-10-25 02:59:46 +00:00
|
|
|
|
};
|
2016-10-20 01:19:01 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2016-10-20 01:19:01 +00:00
|
|
|
|
public override byte[] Write()
|
|
|
|
|
{
|
2017-10-25 02:59:46 +00:00
|
|
|
|
SetBits(TMHM).CopyTo(Data, 0x28);
|
|
|
|
|
SetBits(TypeTutors).CopyTo(Data, 0x38);
|
|
|
|
|
SetBits(SpecialTutors[0]).CopyTo(Data, 0x3C);
|
2016-10-20 01:19:01 +00:00
|
|
|
|
return Data;
|
|
|
|
|
}
|
2016-10-23 03:09:22 +00:00
|
|
|
|
|
2017-05-13 03:32:36 +00:00
|
|
|
|
public int SpecialZ_Item { get => BitConverter.ToUInt16(Data, 0x4C); set => BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x4C); }
|
|
|
|
|
public int SpecialZ_BaseMove { get => BitConverter.ToUInt16(Data, 0x4E); set => BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x4E); }
|
|
|
|
|
public int SpecialZ_ZMove { get => BitConverter.ToUInt16(Data, 0x50); set => BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x50); }
|
|
|
|
|
public bool LocalVariant { get => Data[0x52] == 1; set => Data[0x52] = (byte)(value ? 1 : 0); }
|
2016-10-20 01:19:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|