mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-03 17:29:13 +00:00
30 lines
903 B
C#
30 lines
903 B
C#
using System;
|
|
using static PKHeX.Core.EntityContext;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Logic for fetching a specific <see cref="ILearnGroup"/>.
|
|
/// </summary>
|
|
public static class LearnGroupUtil
|
|
{
|
|
public static ILearnGroup GetCurrentGroup(PKM pk) => GetCurrentGroup(pk.Context);
|
|
|
|
public static ILearnGroup GetCurrentGroup(EntityContext context) => context switch
|
|
{
|
|
Gen1 => LearnGroup1.Instance,
|
|
Gen2 => LearnGroup2.Instance,
|
|
Gen3 => LearnGroup3.Instance,
|
|
Gen4 => LearnGroup4.Instance,
|
|
Gen5 => LearnGroup5.Instance,
|
|
Gen6 => LearnGroup6.Instance,
|
|
Gen7 => LearnGroup7.Instance,
|
|
Gen8 => LearnGroup8.Instance,
|
|
|
|
Gen7b => LearnGroup7b.Instance,
|
|
Gen8a => LearnGroup8a.Instance,
|
|
Gen8b => LearnGroup8b.Instance,
|
|
|
|
_ => throw new ArgumentOutOfRangeException(nameof(context), context, null),
|
|
};
|
|
}
|