mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 00:07:15 +00:00
6d4cd60461
Improve cctor times for Breeding; direct calls for splitbreed checks; inlined binary searches via generated IL instead of hashset Fix permitting alpha ribbon on non-alphas in Gen8/8a/8b, disallow Gen8a/8b ribbons for Gen7 Alolan Raichu Improve some IL generation of EvoChain logic Add xmldoc for new evotree additions
231 lines
8.4 KiB
C#
231 lines
8.4 KiB
C#
using System;
|
|
using System.Buffers;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Logic for suggesting a moveset.
|
|
/// </summary>
|
|
public static class MoveListSuggest
|
|
{
|
|
private static void GetSuggestedMoves(PKM pk, EvolutionHistory evoChains, MoveSourceType types, IEncounterTemplate enc, Span<ushort> moves)
|
|
{
|
|
if (pk is { IsEgg: true, Format: <= 5 }) // pre relearn
|
|
{
|
|
var source = GameData.GetLearnSource(enc.Version);
|
|
source.SetEncounterMoves(enc.Species, 0, enc.LevelMin, moves);
|
|
return;
|
|
}
|
|
|
|
if (types is not (MoveSourceType.None or MoveSourceType.Encounter))
|
|
{
|
|
GetValidMoves(pk, enc, evoChains, moves, types);
|
|
return;
|
|
}
|
|
|
|
// try to give current moves
|
|
if (enc.Generation <= 2 && pk.Format < 8)
|
|
{
|
|
var lvl = pk.Format >= 7 ? pk.Met_Level : pk.CurrentLevel;
|
|
var source = GameData.GetLearnSource(enc.Version);
|
|
source.SetEncounterMoves(enc.Species, 0, lvl, moves);
|
|
return;
|
|
}
|
|
|
|
if (pk.Species == enc.Species || pk.Context.Generation() >= 8)
|
|
{
|
|
var game = (GameVersion)pk.Version; // account for SW/SH foreign mutated versions
|
|
if (pk.Context.Generation() >= 8)
|
|
game = pk.Context.GetSingleGameVersion();
|
|
var source = GameData.GetLearnSource(game);
|
|
source.SetEncounterMoves(pk.Species, pk.Form, pk.CurrentLevel, moves);
|
|
return;
|
|
}
|
|
|
|
GetValidMoves(pk, enc, evoChains, moves, types);
|
|
}
|
|
|
|
private static void GetValidMoves(PKM pk, IEncounterTemplate enc, EvolutionHistory evoChains, Span<ushort> moves, MoveSourceType types = MoveSourceType.ExternalSources)
|
|
{
|
|
var length = pk.MaxMoveID + 1;
|
|
bool[] rent = ArrayPool<bool>.Shared.Rent(length);
|
|
var span = rent.AsSpan(0, length);
|
|
LearnPossible.Get(pk, enc, evoChains, span, types);
|
|
|
|
var count = span[1..].Count(true);
|
|
int remain = moves.Length;
|
|
if (count <= remain)
|
|
LoadAll(moves, span);
|
|
else
|
|
LoadSample(moves, span, count, remain);
|
|
|
|
span.Clear();
|
|
ArrayPool<bool>.Shared.Return(rent);
|
|
}
|
|
|
|
private static void LoadSample(Span<ushort> moves, ReadOnlySpan<bool> span, int count, int remain)
|
|
{
|
|
// Selection Sampling
|
|
int ctr = 0;
|
|
var rnd = Util.Rand;
|
|
for (ushort i = 1; i < span.Length; i++)
|
|
{
|
|
if (!span[i])
|
|
continue;
|
|
if (rnd.Next(count--) >= remain)
|
|
continue;
|
|
moves[ctr++] = i;
|
|
if (--remain == 0)
|
|
break;
|
|
}
|
|
}
|
|
|
|
private static void LoadAll(Span<ushort> moves, ReadOnlySpan<bool> span)
|
|
{
|
|
int ctr = 0;
|
|
for (ushort i = 1; i < span.Length; i++)
|
|
{
|
|
if (!span[i])
|
|
continue;
|
|
moves[ctr++] = i;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets four moves which can be learned depending on the input arguments.
|
|
/// </summary>
|
|
/// <param name="analysis">Parse information to generate a moveset for.</param>
|
|
/// <param name="moves">Result storage</param>
|
|
/// <param name="types">Allowed move sources for populating the result array</param>
|
|
public static void GetSuggestedCurrentMoves(this LegalityAnalysis analysis, Span<ushort> moves, MoveSourceType types = MoveSourceType.All)
|
|
{
|
|
if (!analysis.Parsed)
|
|
return;
|
|
var pk = analysis.Entity;
|
|
if (pk is { IsEgg: true, Format: >= 6 })
|
|
{
|
|
pk.GetRelearnMoves(moves);
|
|
return;
|
|
}
|
|
|
|
if (pk.IsEgg)
|
|
types = types.ClearNonEggSources();
|
|
|
|
var info = analysis.Info;
|
|
GetSuggestedMoves(pk, info.EvoChainsAllGens, types, info.EncounterOriginal, moves);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the current <see cref="PKM.RelearnMoves"/> array of four moves that might be legal.
|
|
/// </summary>
|
|
/// <remarks>Use <see cref="GetSuggestedRelearnMovesFromEncounter"/> instead of calling directly; this method just puts default values in without considering the final moveset.</remarks>
|
|
public static void GetSuggestedRelearn(this IEncounterTemplate enc, PKM pk, Span<ushort> moves)
|
|
{
|
|
if (LearnVerifierRelearn.ShouldNotHaveRelearnMoves(enc, pk))
|
|
return;
|
|
|
|
GetSuggestedRelearnInternal(enc, pk, moves);
|
|
}
|
|
|
|
// Invalid encounters won't be recognized as an EncounterEgg; check if it *should* be a bred egg.
|
|
private static void GetSuggestedRelearnInternal(this IEncounterTemplate enc, PKM pk, Span<ushort> moves)
|
|
{
|
|
if (enc is IRelearn { Relearn: { HasMoves: true } r })
|
|
r.CopyTo(moves);
|
|
else if (enc is EncounterEgg or EncounterInvalid { EggEncounter: true })
|
|
GetSuggestedRelearnEgg(enc, pk, moves);
|
|
}
|
|
|
|
private static void GetSuggestedRelearnEgg(IEncounterTemplate enc, PKM pk, Span<ushort> moves)
|
|
{
|
|
Span<ushort> current = stackalloc ushort[4];
|
|
pk.GetRelearnMoves(current);
|
|
Span<ushort> expected = stackalloc ushort[current.Length];
|
|
_ = MoveBreed.GetExpectedMoves(current, enc, expected);
|
|
expected.CopyTo(moves);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the current <see cref="PKM.RelearnMoves"/> array of four moves that might be legal.
|
|
/// </summary>
|
|
public static void GetSuggestedRelearnMovesFromEncounter(this LegalityAnalysis analysis, Span<ushort> moves, IEncounterTemplate? enc = null)
|
|
{
|
|
var info = analysis.Info;
|
|
enc ??= info.EncounterOriginal;
|
|
var pk = analysis.Entity;
|
|
|
|
if (LearnVerifierRelearn.ShouldNotHaveRelearnMoves(enc, pk))
|
|
return;
|
|
|
|
if (enc is EncounterEgg or EncounterInvalid {EggEncounter: true})
|
|
enc.GetSuggestedRelearnEgg(info.Moves, pk, moves);
|
|
else
|
|
enc.GetSuggestedRelearnInternal(pk, moves);
|
|
}
|
|
|
|
private static void GetSuggestedRelearnEgg(this IEncounterTemplate enc, ReadOnlySpan<MoveResult> parse, PKM pk, Span<ushort> moves)
|
|
{
|
|
enc.GetEggRelearnMoves(parse, pk, moves);
|
|
int generation = enc.Generation;
|
|
if (generation <= 5) // gen2 does not have splitbreed, <=5 do not have relearn moves and shouldn't even be here.
|
|
return;
|
|
|
|
// Split-breed species like Budew & Roselia may be legal for one, and not the other.
|
|
// If we're not a split-breed or are already legal, return.
|
|
if (!Breeding.IsSplitBreedNotBabySpecies(enc.Species, generation))
|
|
return;
|
|
|
|
var tmp = pk.Clone();
|
|
tmp.SetRelearnMoves(moves);
|
|
var la = new LegalityAnalysis(tmp);
|
|
var chk = la.Info.Moves;
|
|
if (MoveResult.AllValid(chk))
|
|
return;
|
|
|
|
// Try again with the other split-breed species if possible.
|
|
var generator = EncounterGenerator.GetGenerator(enc.Version);
|
|
|
|
Span<EvoCriteria> chain = stackalloc EvoCriteria[EvolutionTree.MaxEvolutions];
|
|
var origin = new EvolutionOrigin(enc.Species, (byte)enc.Version, (byte)enc.Generation, 1, 100, true);
|
|
int count = EvolutionChain.GetOriginChain(chain, pk, origin);
|
|
for (int i = 0; i < count; i++)
|
|
{
|
|
if (chain[i].Species != enc.Species)
|
|
continue;
|
|
count = i;
|
|
break;
|
|
}
|
|
var evos = chain[..count].ToArray();
|
|
var other = generator.GetPossible(pk, evos, enc.Version, EncounterTypeGroup.Egg);
|
|
foreach (var incense in other)
|
|
{
|
|
if (incense.Species == enc.Species)
|
|
continue;
|
|
incense.GetEggRelearnMoves(parse, pk, moves);
|
|
break;
|
|
}
|
|
}
|
|
|
|
private static void GetEggRelearnMoves(this IEncounterTemplate enc, ReadOnlySpan<MoveResult> parse, PKM pk, Span<ushort> moves)
|
|
{
|
|
// Extract a list of the moves that should end up in the relearn move list.
|
|
LoadRelearnFlagged(moves, parse, pk);
|
|
|
|
Span<ushort> expected = stackalloc ushort[moves.Length];
|
|
_ = MoveBreed.GetExpectedMoves(moves, enc, expected);
|
|
expected.CopyTo(moves);
|
|
}
|
|
|
|
private static void LoadRelearnFlagged(Span<ushort> moves, ReadOnlySpan<MoveResult> parse, PKM pk)
|
|
{
|
|
// Loads only indexes that are flagged as relearn moves
|
|
int count = 0;
|
|
for (int index = 0; index < parse.Length; index++)
|
|
{
|
|
var move = parse[index];
|
|
if (move.ShouldBeInRelearnMoves())
|
|
moves[count++] = pk.GetMove(index);
|
|
}
|
|
moves[count..].Clear();
|
|
}
|
|
}
|