2022-06-26 06:08:28 +00:00
|
|
|
using System;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Generation specific Evolution Tree data.
|
|
|
|
/// </summary>
|
|
|
|
/// <remarks>
|
|
|
|
/// Used to determine if a <see cref="PKM.Species"/> can evolve from prior steps in its evolution branch.
|
|
|
|
/// </remarks>
|
2023-07-06 04:14:09 +00:00
|
|
|
public sealed class EvolutionTree : EvolutionNetwork
|
2016-11-08 16:43:57 +00:00
|
|
|
{
|
2023-07-06 04:14:09 +00:00
|
|
|
public const int MaxEvolutions = 3;
|
2023-07-13 02:09:23 +00:00
|
|
|
public static readonly EvolutionTree Evolves1 = GetViaSpecies (PersonalTable.Y, EvolutionSet.GetArray(GetReader("g1")));
|
|
|
|
public static readonly EvolutionTree Evolves2 = GetViaSpecies (PersonalTable.C, EvolutionSet.GetArray(GetReader("g2")));
|
|
|
|
public static readonly EvolutionTree Evolves3 = GetViaSpecies (PersonalTable.RS, EvolutionSet.GetArray(GetReader("g3")));
|
|
|
|
public static readonly EvolutionTree Evolves4 = GetViaSpecies (PersonalTable.DP, EvolutionSet.GetArray(GetReader("g4")));
|
|
|
|
public static readonly EvolutionTree Evolves5 = GetViaSpecies (PersonalTable.BW, EvolutionSet.GetArray(GetReader("g5")));
|
|
|
|
public static readonly EvolutionTree Evolves6 = GetViaSpecies (PersonalTable.AO, EvolutionSet.GetArray(GetReader("g6")));
|
|
|
|
public static readonly EvolutionTree Evolves7 = GetViaPersonal(PersonalTable.USUM, EvolutionSet.GetArray(GetReader("uu")));
|
|
|
|
public static readonly EvolutionTree Evolves7b = GetViaPersonal(PersonalTable.GG, EvolutionSet.GetArray(GetReader("gg")));
|
|
|
|
public static readonly EvolutionTree Evolves8 = GetViaPersonal(PersonalTable.SWSH, EvolutionSet.GetArray(GetReader("ss")));
|
|
|
|
public static readonly EvolutionTree Evolves8a = GetViaPersonal(PersonalTable.LA, EvolutionSet.GetArray(GetReader("la"), 0));
|
|
|
|
public static readonly EvolutionTree Evolves8b = GetViaPersonal(PersonalTable.BDSP, EvolutionSet.GetArray(GetReader("bs")));
|
|
|
|
public static readonly EvolutionTree Evolves9 = GetViaPersonal(PersonalTable.SV, EvolutionSet.GetArray(GetReader("sv")));
|
2022-06-18 18:04:24 +00:00
|
|
|
|
|
|
|
private static ReadOnlySpan<byte> GetResource(string resource) => Util.GetBinaryResource($"evos_{resource}.pkl");
|
|
|
|
private static BinLinkerAccessor GetReader(string resource) => BinLinkerAccessor.Get(GetResource(resource), resource);
|
2023-07-06 04:14:09 +00:00
|
|
|
private EvolutionTree(IEvolutionForward forward, IEvolutionReverse reverse) : base(forward, reverse) { }
|
2022-06-18 18:04:24 +00:00
|
|
|
|
2023-07-06 04:14:09 +00:00
|
|
|
private static EvolutionTree GetViaSpecies(IPersonalTable t, EvolutionMethod[][] entries)
|
2016-11-08 16:43:57 +00:00
|
|
|
{
|
2023-07-06 04:14:09 +00:00
|
|
|
var forward = new EvolutionForwardSpecies(entries);
|
|
|
|
var reverse = new EvolutionReverseSpecies(entries, t);
|
|
|
|
return new EvolutionTree(forward, reverse);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static EvolutionTree GetViaPersonal(IPersonalTable t, EvolutionMethod[][] entries)
|
|
|
|
{
|
|
|
|
var forward = new EvolutionForwardPersonal(entries, t);
|
|
|
|
var reverse = new EvolutionReversePersonal(entries, t);
|
|
|
|
return new EvolutionTree(forward, reverse);
|
2022-06-18 18:04:24 +00:00
|
|
|
}
|
2018-07-02 02:55:23 +00:00
|
|
|
|
2023-07-08 19:46:46 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Get the <see cref="EvolutionTree"/> for the given <see cref="EntityContext"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="context">Context to get the <see cref="EvolutionTree"/> for.</param>
|
|
|
|
/// <exception cref="ArgumentOutOfRangeException"></exception>
|
2022-06-18 18:04:24 +00:00
|
|
|
public static EvolutionTree GetEvolutionTree(EntityContext context) => context switch
|
|
|
|
{
|
|
|
|
EntityContext.Gen1 => Evolves1,
|
|
|
|
EntityContext.Gen2 => Evolves2,
|
|
|
|
EntityContext.Gen3 => Evolves3,
|
|
|
|
EntityContext.Gen4 => Evolves4,
|
|
|
|
EntityContext.Gen5 => Evolves5,
|
|
|
|
EntityContext.Gen6 => Evolves6,
|
|
|
|
EntityContext.Gen7 => Evolves7,
|
|
|
|
EntityContext.Gen8 => Evolves8,
|
2022-11-25 01:42:17 +00:00
|
|
|
EntityContext.Gen9 => Evolves9,
|
2022-06-18 18:04:24 +00:00
|
|
|
EntityContext.Gen7b => Evolves7b,
|
|
|
|
EntityContext.Gen8a => Evolves8a,
|
|
|
|
EntityContext.Gen8b => Evolves8b,
|
2022-06-26 06:08:28 +00:00
|
|
|
_ => throw new ArgumentOutOfRangeException(nameof(context), context, null),
|
2022-06-18 18:04:24 +00:00
|
|
|
};
|
2016-11-08 16:43:57 +00:00
|
|
|
}
|