mirror of
https://github.com/kwsch/PKHeX
synced 2025-03-03 06:47:25 +00:00
Updates from net46->net7, dropping support for mono in favor of using the latest runtime (along with the performance/API improvements). Releases will be posted as 64bit only for now. Refactors a good amount of internal API methods to be more performant and more customizable for future updates & fixes. Adds functionality for Batch Editor commands to `>`, `<` and <=/>= TID/SID properties renamed to TID16/SID16 for clarity; other properties exposed for Gen7 / display variants. Main window has a new layout to account for DPI scaling (8 point grid) Fixed: Tatsugiri and Paldean Tauros now output Showdown form names as Showdown expects Changed: Gen9 species now interact based on the confirmed National Dex IDs (closes #3724) Fixed: Pokedex set all no longer clears species with unavailable non-base forms (closes #3720) Changed: Hyper Training suggestions now apply for level 50 in SV. (closes #3714) Fixed: B2/W2 hatched egg met locations exclusive to specific versions are now explicitly checked (closes #3691) Added: Properties for ribbon/mark count (closes #3659) Fixed: Traded SV eggs are now checked correctly (closes #3692)
113 lines
4.6 KiB
C#
113 lines
4.6 KiB
C#
using System;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// <see cref="PersonalInfo"/> class with values from Generation 2 games.
|
|
/// </summary>
|
|
public sealed class PersonalInfo2 : PersonalInfo, IPersonalInfoTM, IPersonalInfoTutorType
|
|
{
|
|
public const int SIZE = 0x20;
|
|
private readonly byte[] Data;
|
|
|
|
public PersonalInfo2(byte[] data) => Data = data;
|
|
public override byte[] Write() => Data;
|
|
|
|
public int DEX_ID { get => Data[0x00]; set => Data[0x00] = (byte)value; }
|
|
public override int HP { get => Data[0x01]; set => Data[0x01] = (byte)value; }
|
|
public override int ATK { get => Data[0x02]; set => Data[0x02] = (byte)value; }
|
|
public override int DEF { get => Data[0x03]; set => Data[0x03] = (byte)value; }
|
|
public override int SPE { get => Data[0x04]; set => Data[0x04] = (byte)value; }
|
|
public override int SPA { get => Data[0x05]; set => Data[0x05] = (byte)value; }
|
|
public override int SPD { get => Data[0x06]; set => Data[0x06] = (byte)value; }
|
|
public override byte Type1 { get => Data[0x07]; set => Data[0x07] = value; }
|
|
public override byte Type2 { get => Data[0x08]; set => Data[0x08] = value; }
|
|
public override int CatchRate { get => Data[0x09]; set => Data[0x09] = (byte)value; }
|
|
public override int BaseEXP { get => Data[0x0A]; set => Data[0x0A] = (byte)value; }
|
|
public int Item1 { get => Data[0xB]; set => Data[0xB] = (byte)value; }
|
|
public int Item2 { get => Data[0xC]; set => Data[0xC] = (byte)value; }
|
|
public override byte Gender { get => Data[0xD]; set => Data[0xD] = value; }
|
|
public override int HatchCycles { get => Data[0xF]; set => Data[0xF] = (byte)value; }
|
|
public override byte EXPGrowth { get => Data[0x16]; set => Data[0x16] = value; }
|
|
public override int EggGroup1 { get => Data[0x17] & 0xF; set => Data[0x17] = (byte)((Data[0x17] & 0xF0) | value); }
|
|
public override int EggGroup2 { get => Data[0x17] >> 4; set => Data[0x17] = (byte)((Data[0x17] & 0x0F) | (value << 4)); }
|
|
|
|
// EV Yields are just aliases for base stats in Gen II
|
|
public override int EV_HP { get => HP; set { } }
|
|
public override int EV_ATK { get => ATK; set { } }
|
|
public override int EV_DEF { get => DEF; set { } }
|
|
public override int EV_SPE { get => SPE; set { } }
|
|
public override int EV_SPA { get => SPA; set { } }
|
|
public override int EV_SPD { get => SPD; set { } }
|
|
|
|
// Future game values, unused
|
|
public override int GetIndexOfAbility(int abilityID) => -1;
|
|
public override int GetAbilityAtIndex(int abilityIndex) => -1;
|
|
public override int AbilityCount => 0;
|
|
public override int BaseFriendship { get => 70; set { } }
|
|
public override int EscapeRate { get => 0; set { } }
|
|
public override int Color { get => 0; set { } }
|
|
|
|
private const int TMHM = 0x18;
|
|
private const int CountTMHM = 50 + 7; // 50 TMs, 7 HMs
|
|
private const int ByteCountTM = 8;
|
|
|
|
public bool GetIsLearnTM(int index)
|
|
{
|
|
if ((uint)index >= CountTMHM)
|
|
return false;
|
|
return (Data[TMHM + (index >> 3)] & (1 << (index & 7))) != 0;
|
|
}
|
|
|
|
public void SetIsLearnTM(int index, bool value)
|
|
{
|
|
if ((uint)index >= CountTMHM)
|
|
return;
|
|
if (value)
|
|
Data[TMHM + (index >> 3)] |= (byte)(1 << (index & 7));
|
|
else
|
|
Data[TMHM + (index >> 3)] &= (byte)~(1 << (index & 7));
|
|
}
|
|
|
|
public void SetAllLearnTM(Span<bool> result, ReadOnlySpan<byte> moves)
|
|
{
|
|
var span = Data.AsSpan(TMHM, ByteCountTM);
|
|
for (int index = CountTMHM - 1; index >= 0; index--)
|
|
{
|
|
if ((span[index >> 3] & (1 << (index & 7))) != 0)
|
|
result[moves[index]] = true;
|
|
}
|
|
}
|
|
|
|
private const int TutorTypeCount = 3;
|
|
|
|
public bool GetIsLearnTutorType(int index)
|
|
{
|
|
if ((uint)index >= TutorTypeCount)
|
|
return false;
|
|
index += CountTMHM;
|
|
return (Data[TMHM + (index >> 3)] & (1 << (index & 7))) != 0;
|
|
}
|
|
|
|
public void SetIsLearnTutorType(int index, bool value)
|
|
{
|
|
if ((uint)index >= TutorTypeCount)
|
|
throw new ArgumentOutOfRangeException(nameof(index), index, null);
|
|
index += CountTMHM;
|
|
if (value)
|
|
Data[TMHM + (index >> 3)] |= (byte)(1 << (index & 7));
|
|
else
|
|
Data[TMHM + (index >> 3)] &= (byte)~(1 << (index & 7));
|
|
}
|
|
|
|
public void SetAllLearnTutorType(Span<bool> result, ReadOnlySpan<byte> moves)
|
|
{
|
|
var span = Data.AsSpan(TMHM, ByteCountTM);
|
|
for (int index = TutorTypeCount - 1; index >= 0; index--)
|
|
{
|
|
var i = index + CountTMHM;
|
|
if ((span[i >> 3] & (1 << (i & 7))) != 0)
|
|
result[moves[index]] = true;
|
|
}
|
|
}
|
|
}
|