PKHeX/PKHeX.Core/Legality/Moves/MoveEgg.cs

84 lines
3.5 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using static PKHeX.Core.Legal;
2020-12-24 01:14:38 +00:00
using static PKHeX.Core.GameVersion;
namespace PKHeX.Core
{
public static class MoveEgg
{
2020-12-23 04:50:33 +00:00
public static int[] GetEggMoves(PKM pkm, int species, int form, GameVersion version)
{
int gen = pkm.Format <= 2 || pkm.VC ? 2 : pkm.Generation;
if (!pkm.InhabitedGeneration(gen, species) || (pkm.PersonalInfo.Genderless && !FixedGenderFromBiGender.Contains(species)))
return Array.Empty<int>();
if (pkm.Version is (int)GO or (int)GP or (int)GE or (int)CXD)
return Array.Empty<int>();
2020-12-24 01:14:38 +00:00
if (version == Any)
version = (GameVersion)pkm.Version;
2020-12-23 04:50:33 +00:00
return GetEggMoves(gen, species, form, version);
}
2020-12-23 04:50:33 +00:00
public static int[] GetEggMoves(int gen, int species, int form, GameVersion version)
{
2020-12-24 01:14:38 +00:00
return gen switch
{
2020-12-24 01:14:38 +00:00
1 or 2 => (version == C ? EggMovesC : EggMovesGS)[species].Moves,
3 => EggMovesRS[species].Moves,
4 when version is D or P or Pt => EggMovesDPPt[species].Moves,
4 when version is HG or SS => EggMovesHGSS[species].Moves,
5 => EggMovesBW[species].Moves,
2020-12-24 01:14:38 +00:00
6 when version is X or Y => EggMovesXY[species].Moves,
6 when version is OR or AS => EggMovesAO[species].Moves,
2020-12-24 01:14:38 +00:00
7 when version is SN or MN => GetFormEggMoves(species, form, EggMovesSM),
7 when version is US or UM => GetFormEggMoves(species, form, EggMovesUSUM),
8 => GetFormEggMoves(species, form, EggMovesSWSH),
_ => Array.Empty<int>(),
};
}
2020-12-23 04:50:33 +00:00
private static int[] GetFormEggMoves(int species, int form, IReadOnlyList<EggMoves7> table)
{
var entry = table[species];
2020-12-23 04:50:33 +00:00
if (form > 0 && entry.FormTableIndex > species)
entry = table[entry.FormTableIndex + form - 1];
return entry.Moves;
}
2020-12-24 01:14:38 +00:00
internal static int[] GetRelearnLVLMoves(PKM pkm, int species, int form, int lvl, GameVersion version = Any)
{
2020-12-24 01:14:38 +00:00
if (version == Any)
version = (GameVersion)pkm.Version;
// A pkm can only have levelup relearn moves from the game it originated on
// eg Plusle/Minun have Charm/Fake Tears (respectively) only in OR/AS, not X/Y
2020-12-24 01:14:38 +00:00
return version switch
{
2020-12-24 01:14:38 +00:00
X or Y => getMoves(LevelUpXY, PersonalTable.XY),
OR or AS => getMoves(LevelUpAO, PersonalTable.AO),
SN or MN when species > MaxSpeciesID_7 => getMoves(LevelUpSM, PersonalTable.SM),
US or UM => getMoves(LevelUpUSUM, PersonalTable.USUM),
SW or SH => getMoves(LevelUpSWSH, PersonalTable.SWSH),
_ => Array.Empty<int>(),
};
2020-12-23 04:50:33 +00:00
int[] getMoves(IReadOnlyList<Learnset> moves, PersonalTable table) => moves[table.GetFormIndex(species, form)].GetMoves(lvl);
}
public static bool GetIsSharedEggMove(PKM pkm, int gen, int move)
{
if (gen < 8 || pkm.IsEgg)
return false;
var table = PersonalTable.SWSH;
var entry = (PersonalInfoSWSH)table.GetFormEntry(pkm.Species, pkm.Form);
var baseSpecies = entry.HatchSpecies;
var baseForm = entry.HatchFormIndexEverstone;
2020-12-24 01:14:38 +00:00
var egg = GetEggMoves(8, baseSpecies, baseForm, SW);
return Array.Exists(egg, z => z == move);
}
}
}