PKHeX/PKHeX.Core/Legality/LearnSource/Verify/LearnPossible.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

74 lines
2.8 KiB
C#

using System;
namespace PKHeX.Core;
/// <summary>
/// Logic to check the possible moves a Pokémon can learn.
/// </summary>
public static class LearnPossible
{
/// <summary>
/// Populates the permission <see cref="result"/> list indicating the move ID indexes that can be learned based on the inputs.
/// </summary>
/// <param name="pk">Entity to check</param>
/// <param name="enc">Encounter it has been matched to</param>
/// <param name="history">Environment specific evolution history</param>
/// <param name="result">Flag array, when true, indicating if a move ID can be currently known.</param>
/// <param name="types">Move types to give</param>
public static void Get(PKM pk, IEncounterTemplate enc, EvolutionHistory history, Span<bool> result, MoveSourceType types = MoveSourceType.All)
{
if (types.HasFlag(MoveSourceType.Encounter))
FlagEncounterMoves(pk, enc, result);
IterateAndFlag(result, pk, enc, history, types);
}
/// <inheritdoc cref="Get(PKM,IEncounterTemplate,EvolutionHistory,Span{bool},MoveSourceType)"/>
public static bool[] Get(PKM pk, IEncounterTemplate enc, EvolutionHistory history, MoveSourceType types = MoveSourceType.All)
{
var result = new bool[pk.MaxMoveID + 1];
Get(pk, enc, history, result, types);
return result;
}
private static void FlagEncounterMoves(PKM pk, IEncounterTemplate enc, Span<bool> result)
{
if (pk.IsOriginalMovesetDeleted())
return;
if (enc is EncounterSlot8GO g)
{
Span<ushort> initial = stackalloc ushort[4];
g.GetInitialMoves(pk.Met_Level, initial);
SetAll(initial, result);
}
else if (enc.Generation >= 6)
{
result[pk.RelearnMove1] = true;
result[pk.RelearnMove2] = true;
result[pk.RelearnMove3] = true;
result[pk.RelearnMove4] = true;
}
}
private static void SetAll(ReadOnlySpan<ushort> moves, Span<bool> result)
{
foreach (var move in moves)
result[move] = true;
}
private static void IterateAndFlag(Span<bool> result, PKM pk, IEncounterTemplate enc, EvolutionHistory history, MoveSourceType types)
{
// Similar to the iteration when validating a set of currently known moves, iterate backwards.
// Instead of checking if a single move can be learned, get an enumerable of moves and flag.
// Keep iterating backwards, as an older game may have an exclusive move.
var game = LearnGroupUtil.GetCurrentGroup(pk);
while (true)
{
game.GetAllMoves(result, pk, history, enc, types);
var next = game.GetPrevious(pk, history, enc, LearnOption.Current);
if (next is null)
return;
game = next;
}
}
}