PKHeX/PKHeX.Core/PersonalInfo/PersonalTable.cs
Kurt fd1c538cc5
Changes for Legends: Z-A support (#4596)
Refer to pull request notes and the eventual changelog for a high-level summary.

Co-authored-by: Matt <17801814+sora10pls@users.noreply.github.com>
Co-authored-by: Lusamine <30205550+Lusamine@users.noreply.github.com>
Co-authored-by: SciresM <8676005+SciresM@users.noreply.github.com>
2025-10-26 19:01:44 -05:00

153 lines
5.0 KiB
C#

using System;
namespace PKHeX.Core;
/// <summary>
/// <see cref="PersonalInfo"/> table (array).
/// </summary>
/// <remarks>
/// Serves as the main object that is accessed for stat data in a particular generation/game format.
/// </remarks>
public static class PersonalTable
{
/// <summary>
/// Personal Table used in <see cref="EntityContext.Gen9a"/>.
/// </summary>
public static readonly PersonalTable9ZA ZA = new(GetTable("za"));
/// <summary>
/// Personal Table used in <see cref="EntityContext.Gen9"/>.
/// </summary>
public static readonly PersonalTable9SV SV = new(GetTable("sv"));
/// <summary>
/// Personal Table used in <see cref="EntityContext.Gen8a"/>.
/// </summary>
public static readonly PersonalTable8LA LA = new(GetTable("la"));
/// <summary>
/// Personal Table used in <see cref="EntityContext.Gen8b"/>.
/// </summary>
public static readonly PersonalTable8BDSP BDSP = new(GetTable("bdsp"));
/// <summary>
/// Personal Table used in <see cref="EntityContext.Gen8"/>.
/// </summary>
public static readonly PersonalTable8SWSH SWSH = new(GetTable("swsh"));
/// <summary>
/// Personal Table used in <see cref="EntityContext.Gen7b"/>.
/// </summary>
public static readonly PersonalTable7GG GG = new(GetTable("gg"));
/// <summary>
/// Personal Table used in <see cref="GameVersion.USUM"/>.
/// </summary>
public static readonly PersonalTable7 USUM = new(GetTable("uu"), Legal.MaxSpeciesID_7_USUM);
/// <summary>
/// Personal Table used in <see cref="GameVersion.SM"/>.
/// </summary>
public static readonly PersonalTable7 SM = new(GetTable("sm"), Legal.MaxSpeciesID_7);
/// <summary>
/// Personal Table used in <see cref="GameVersion.ORAS"/>.
/// </summary>
public static readonly PersonalTable6AO AO = new(GetTable("ao"));
/// <summary>
/// Personal Table used in <see cref="GameVersion.XY"/>.
/// </summary>
public static readonly PersonalTable6XY XY = new(GetTable("xy"));
/// <summary>
/// Personal Table used in <see cref="GameVersion.B2W2"/>.
/// </summary>
public static readonly PersonalTable5B2W2 B2W2 = new(GetTable("b2w2"));
/// <summary>
/// Personal Table used in <see cref="GameVersion.BW"/>.
/// </summary>
public static readonly PersonalTable5BW BW = new(GetTable("bw"));
/// <summary>
/// Personal Table used in <see cref="GameVersion.HGSS"/>.
/// </summary>
public static readonly PersonalTable4 HGSS = new(GetTable("hgss"));
/// <summary>
/// Personal Table used in <see cref="GameVersion.Pt"/>.
/// </summary>
public static readonly PersonalTable4 Pt = new(GetTable("pt"));
/// <summary>
/// Personal Table used in <see cref="GameVersion.DP"/>.
/// </summary>
public static readonly PersonalTable4 DP = new(GetTable("dp"));
/// <summary>
/// Personal Table used in <see cref="GameVersion.LG"/>.
/// </summary>
public static readonly PersonalTable3 LG = new(GetTable("lg"));
/// <summary>
/// Personal Table used in <see cref="GameVersion.FR"/>.
/// </summary>
public static readonly PersonalTable3 FR = new(GetTable("fr"));
/// <summary>
/// Personal Table used in <see cref="GameVersion.E"/>.
/// </summary>
public static readonly PersonalTable3 E = new(GetTable("e"));
/// <summary>
/// Personal Table used in <see cref="GameVersion.RS"/>.
/// </summary>
public static readonly PersonalTable3 RS = new(GetTable("rs"));
/// <summary>
/// Personal Table used in <see cref="GameVersion.C"/>.
/// </summary>
public static readonly PersonalTable2 C = new(GetTable("c"));
/// <summary>
/// Personal Table used in <see cref="GameVersion.GS"/>.
/// </summary>
public static readonly PersonalTable2 GS = new(GetTable("gs"));
/// <summary>
/// Personal Table used in <see cref="GameVersion.RB"/>.
/// </summary>
public static readonly PersonalTable1 RB = new(GetTable("rb"));
/// <summary>
/// Personal Table used in <see cref="GameVersion.YW"/>.
/// </summary>
public static readonly PersonalTable1 Y = new(GetTable("y"));
private static Memory<byte> GetTable(string game) => Util.GetBinaryResource($"personal_{game}");
static PersonalTable() // Finish Setup
{
PopulateGen3Tutors();
PopulateGen4Tutors();
}
private static void PopulateGen3Tutors()
{
// Enable Gen3 data with Emerald's data, FR/LG is a subset of Emerald's compatibility.
var machine = BinLinkerAccessor.Get(Util.GetBinaryResource("hmtm_g3.pkl"), "g3"u8);
var tutors = BinLinkerAccessor.Get(Util.GetBinaryResource("tutors_g3.pkl"), "g3"u8);
E.LoadTables(machine, tutors);
FR.CopyTables(E);
LG.CopyTables(E);
RS.CopyTables(E);
}
private static void PopulateGen4Tutors()
{
var tutors = BinLinkerAccessor.Get(Util.GetBinaryResource("tutors_g4.pkl"), "g4"u8);
HGSS.LoadTables(tutors);
}
}