PKHeX/PKHeX.Core/Legality/LearnSource/Sources/LearnSource1YW.cs
Kurt 88830e0d00
Update from .NET Framework 4.6 to .NET 7 (#3729)
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)
2023-01-21 20:02:33 -08:00

114 lines
3.8 KiB
C#

using System;
using System.Diagnostics.CodeAnalysis;
using static PKHeX.Core.LearnMethod;
using static PKHeX.Core.LearnEnvironment;
using static PKHeX.Core.LearnSource1;
namespace PKHeX.Core;
/// <summary>
/// Exposes information about how moves are learned in <see cref="YW"/>.
/// </summary>
public sealed class LearnSource1YW : ILearnSource<PersonalInfo1>
{
public static readonly LearnSource1YW Instance = new();
private static readonly PersonalTable1 Personal = PersonalTable.Y;
private static readonly Learnset[] Learnsets = Legal.LevelUpY;
private const LearnEnvironment Game = YW;
private const int MaxSpecies = Legal.MaxSpeciesID_1;
public Learnset GetLearnset(ushort species, byte form) => Learnsets[species];
public bool TryGetPersonal(ushort species, byte form, [NotNullWhen(true)] out PersonalInfo1? pi)
{
if (form is not 0 || species > MaxSpecies)
{
pi = null;
return false;
}
pi = Personal[species];
return true;
}
public MoveLearnInfo GetCanLearn(PKM pk, PersonalInfo1 pi, EvoCriteria evo, ushort move, MoveSourceType types = MoveSourceType.All, LearnOption option = LearnOption.Current)
{
if (move > Legal.MaxMoveID_1) // byte
return default;
if (types.HasFlag(MoveSourceType.Machine) && GetIsTM(pi, (byte)move))
return new(TMHM, Game);
if (types.HasFlag(MoveSourceType.SpecialTutor) && GetIsTutor(evo.Species, (byte)move))
return new(Tutor, Game);
if (types.HasFlag(MoveSourceType.LevelUp))
{
var learn = Learnsets[evo.Species];
var level = learn.GetLevelLearnMove(move);
if (level != -1 && evo.LevelMin <= level && level <= evo.LevelMax)
return new(LevelUp, Game, (byte)level);
}
return default;
}
private static bool GetIsTutor(ushort species, byte move)
{
// No special tutors besides Stadium, which is GB-era only.
if (!ParseSettings.AllowGBCartEra)
return false;
// Surf Pikachu via Stadium
if (move != (int)Move.Surf)
return false;
return species is (int)Species.Pikachu or (int)Species.Raichu;
}
private static bool GetIsTM(PersonalInfo1 info, byte move)
{
var index = TMHM_RBY.IndexOf(move);
if (index == -1)
return false;
return info.GetIsLearnTM(index);
}
public void GetAllMoves(Span<bool> result, PKM pk, EvoCriteria evo, MoveSourceType types = MoveSourceType.All)
{
if (!TryGetPersonal(evo.Species, evo.Form, out var pi))
return;
if (types.HasFlag(MoveSourceType.LevelUp))
{
var learn = GetLearnset(evo.Species, evo.Form);
var min = ParseSettings.AllowGen1Tradeback && ParseSettings.AllowGen2MoveReminder(pk) ? 1 : evo.LevelMin;
(bool hasMoves, int start, int end) = learn.GetMoveRange(evo.LevelMax, min);
if (hasMoves)
{
var moves = learn.Moves;
for (int i = end; i >= start; i--)
result[moves[i]] = true;
}
}
if (types.HasFlag(MoveSourceType.Machine))
pi.SetAllLearnTM(result, TMHM_RBY);
if (types.HasFlag(MoveSourceType.SpecialTutor))
{
if (GetIsTutor(evo.Species, (int)Move.Surf))
result[(int)Move.Surf] = true;
}
}
public void GetEncounterMoves(IEncounterTemplate enc, Span<ushort> init)
{
var species = enc.Species;
if (!TryGetPersonal(species, 0, out var personal))
return;
var learn = Learnsets[species];
personal.GetMoves(init);
var start = (4 - init.Count((ushort)0)) & 3;
learn.SetEncounterMoves(enc.LevelMin, init, start);
}
}