mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 14:00:21 +00:00
353c00ef67
Were originally permitted because Generation == 0; now we properly indicate the origin of all Initial/Encounter/Shared moves and use that to remove anything not from the environment. Invalid/Sketch moves are still permitted to be Gen0 and skipped because their verification is a different branch. ty notflyy (discord)
218 lines
8.6 KiB
C#
218 lines
8.6 KiB
C#
using System;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Group that checks the source of a move in <see cref="GameVersion.Gen7"/>.
|
|
/// </summary>
|
|
public sealed class LearnGroup7 : ILearnGroup
|
|
{
|
|
public static readonly LearnGroup7 Instance = new();
|
|
private const byte Generation = 7;
|
|
public ushort MaxMoveID => Legal.MaxMoveID_7_USUM;
|
|
|
|
public ILearnGroup? GetPrevious(PKM pk, EvolutionHistory history, IEncounterTemplate enc, LearnOption option) => enc.Generation switch
|
|
{
|
|
Generation => null,
|
|
1 => history.HasVisitedGen1 ? LearnGroup1.Instance : null,
|
|
<= 2 => history.HasVisitedGen2 ? LearnGroup2.Instance : null,
|
|
_ => history.HasVisitedGen6 ? LearnGroup6.Instance : null,
|
|
};
|
|
|
|
public bool HasVisited(PKM pk, EvolutionHistory history) => history.HasVisitedGen7;
|
|
|
|
public bool Check(Span<MoveResult> result, ReadOnlySpan<ushort> current, PKM pk, EvolutionHistory history, IEncounterTemplate enc,
|
|
MoveSourceType types = MoveSourceType.All, LearnOption option = LearnOption.Current)
|
|
{
|
|
var mode = GetCheckMode(enc, pk);
|
|
var evos = history.Gen7;
|
|
for (var i = 0; i < evos.Length; i++)
|
|
Check(result, current, pk, evos[i], i, types, option, mode);
|
|
|
|
if (option.IsPast() && types.HasFlag(MoveSourceType.Encounter) && enc is EncounterEgg { Generation: Generation } egg)
|
|
CheckEncounterMoves(result, current, egg);
|
|
|
|
return MoveResult.AllParsed(result);
|
|
}
|
|
|
|
private static void CheckEncounterMoves(Span<MoveResult> result, ReadOnlySpan<ushort> current, EncounterEgg egg)
|
|
{
|
|
ILearnSource inst = egg.Version > GameVersion.MN ? LearnSource7USUM.Instance : LearnSource7SM.Instance;
|
|
var eggMoves = inst.GetEggMoves(egg.Species, egg.Form);
|
|
var levelMoves = inst.GetInheritMoves(egg.Species, egg.Form);
|
|
|
|
for (var i = result.Length - 1; i >= 0; i--)
|
|
{
|
|
if (result[i].Valid)
|
|
continue;
|
|
var move = current[i];
|
|
if (eggMoves.Contains(move))
|
|
result[i] = new(LearnMethod.EggMove, inst.Environment);
|
|
else if (levelMoves.Contains(move))
|
|
result[i] = new(LearnMethod.InheritLevelUp, inst.Environment);
|
|
else if (move is (int)Move.VoltTackle && egg.CanHaveVoltTackle)
|
|
result[i] = new(LearnMethod.SpecialEgg, inst.Environment);
|
|
}
|
|
}
|
|
|
|
private static CheckMode GetCheckMode(IEncounterTemplate enc, PKM pk)
|
|
{
|
|
// We can check if it has visited specific sources. We won't check the games it hasn't visited.
|
|
if (enc.Context != EntityContext.Gen7 || !pk.IsUntraded)
|
|
return CheckMode.Both;
|
|
if (pk.USUM)
|
|
return CheckMode.USUM;
|
|
return CheckMode.SM;
|
|
}
|
|
|
|
private enum CheckMode
|
|
{
|
|
Both,
|
|
SM,
|
|
USUM,
|
|
}
|
|
|
|
private static void Check(Span<MoveResult> result, ReadOnlySpan<ushort> current, PKM pk, EvoCriteria evo, int stage, MoveSourceType types, LearnOption option, CheckMode mode)
|
|
{
|
|
if (!FormChangeUtil.ShouldIterateForms(evo.Species, evo.Form, Generation, option))
|
|
{
|
|
CheckInternal(result, current, pk, evo, stage, types, option, mode);
|
|
return;
|
|
}
|
|
|
|
// Check all forms
|
|
var inst = LearnSource7USUM.Instance;
|
|
if (!inst.TryGetPersonal(evo.Species, evo.Form, out var pi))
|
|
return;
|
|
|
|
var fc = pi.FormCount;
|
|
for (int i = 0; i < fc; i++)
|
|
CheckInternal(result, current, pk, evo with { Form = (byte)i }, stage, types, option, mode);
|
|
}
|
|
|
|
private static void CheckInternal(Span<MoveResult> result, ReadOnlySpan<ushort> current, PKM pk, EvoCriteria evo, int stage, MoveSourceType types, LearnOption option, CheckMode mode)
|
|
{
|
|
// We can check if it has visited specific sources. We won't check the games it hasn't visited.
|
|
if (mode == CheckMode.Both)
|
|
CheckBoth(result, current, pk, evo, stage, types, option);
|
|
else if (mode == CheckMode.USUM)
|
|
CheckSingle(result, current, pk, evo, stage, LearnSource7USUM.Instance, types, option);
|
|
else
|
|
CheckSingle(result, current, pk, evo, stage, LearnSource7SM.Instance, types, option);
|
|
}
|
|
|
|
private static void CheckBoth(Span<MoveResult> result, ReadOnlySpan<ushort> current, PKM pk, EvoCriteria evo, int stage, MoveSourceType types, LearnOption option)
|
|
{
|
|
var uu = LearnSource7USUM.Instance;
|
|
var species = evo.Species;
|
|
if (!uu.TryGetPersonal(species, evo.Form, out var uu_pi))
|
|
return; // should never happen.
|
|
|
|
var sm = LearnSource7SM.Instance;
|
|
for (int i = result.Length - 1; i >= 0; i--)
|
|
{
|
|
if (result[i].Valid)
|
|
continue;
|
|
|
|
// Level Up moves are different for each game, but others (TM/Tutor) are same.
|
|
var move = current[i];
|
|
var chk = uu.GetCanLearn(pk, uu_pi, evo, move, types, option);
|
|
if (chk != default)
|
|
{
|
|
result[i] = new(chk, (byte)stage, Generation);
|
|
continue;
|
|
}
|
|
|
|
if (evo.Species > Legal.MaxSpeciesID_7)
|
|
continue;
|
|
chk = sm.GetCanLearn(pk, uu_pi, evo, move, types & MoveSourceType.LevelUp, option);
|
|
if (chk != default)
|
|
result[i] = new(chk, (byte)stage, Generation);
|
|
}
|
|
}
|
|
|
|
private static void CheckSingle(Span<MoveResult> result, ReadOnlySpan<ushort> current, PKM pk, EvoCriteria evo, int stage, ILearnSource<PersonalInfo7> game, MoveSourceType types, LearnOption option)
|
|
{
|
|
var species = evo.Species;
|
|
if (!game.TryGetPersonal(species, evo.Form, out var pi))
|
|
return; // should never happen.
|
|
|
|
for (int i = result.Length - 1; i >= 0; i--)
|
|
{
|
|
if (result[i].Valid)
|
|
continue;
|
|
|
|
var move = current[i];
|
|
var chk = game.GetCanLearn(pk, pi, evo, move, types, option);
|
|
if (chk != default)
|
|
result[i] = new(chk, (byte)stage, Generation);
|
|
}
|
|
}
|
|
|
|
public void GetAllMoves(Span<bool> result, PKM pk, EvolutionHistory history, IEncounterTemplate enc, MoveSourceType types = MoveSourceType.All, LearnOption option = LearnOption.Current)
|
|
{
|
|
if (types.HasFlag(MoveSourceType.Encounter) && enc.Generation == Generation)
|
|
FlagEncounterMoves(enc, result);
|
|
|
|
var mode = GetCheckMode(enc, pk);
|
|
foreach (var evo in history.Gen7)
|
|
GetAllMoves(result, pk, evo, types, option, mode);
|
|
}
|
|
|
|
private static void GetAllMoves(Span<bool> result, PKM pk, EvoCriteria evo, MoveSourceType types, LearnOption option, CheckMode mode)
|
|
{
|
|
if (!FormChangeUtil.ShouldIterateForms(evo.Species, evo.Form, Generation, option))
|
|
{
|
|
GetAllMovesInternal(result, pk, evo, types, mode);
|
|
return;
|
|
}
|
|
|
|
// Check all forms
|
|
var inst = LearnSource7USUM.Instance;
|
|
if (!inst.TryGetPersonal(evo.Species, evo.Form, out var pi))
|
|
return;
|
|
|
|
var fc = pi.FormCount;
|
|
for (int i = 0; i < fc; i++)
|
|
GetAllMovesInternal(result, pk, evo with { Form = (byte)i }, types, mode);
|
|
}
|
|
|
|
private static void GetAllMovesInternal(Span<bool> result, PKM pk, EvoCriteria evo, MoveSourceType types, CheckMode mode)
|
|
{
|
|
if (mode is CheckMode.Both)
|
|
GetAllMovesBoth(result, pk, evo, types);
|
|
else if (mode is CheckMode.USUM)
|
|
GetAllMovesSingle(result, pk, evo, LearnSource7USUM.Instance, types);
|
|
else
|
|
GetAllMovesSingle(result, pk, evo, LearnSource7SM.Instance, types);
|
|
}
|
|
|
|
private static void GetAllMovesSingle<T>(Span<bool> result, PKM pk, EvoCriteria evo, T instance, MoveSourceType types) where T : ILearnSource
|
|
{
|
|
instance.GetAllMoves(result, pk, evo, types);
|
|
}
|
|
|
|
private static void GetAllMovesBoth(Span<bool> result, PKM pk, EvoCriteria evo, MoveSourceType types)
|
|
{
|
|
LearnSource7USUM.Instance.GetAllMoves(result, pk, evo, types);
|
|
LearnSource7SM.Instance.GetAllMoves(result, pk, evo, types & MoveSourceType.LevelUp);
|
|
}
|
|
|
|
private static void FlagEncounterMoves(IEncounterTemplate enc, Span<bool> result)
|
|
{
|
|
if (enc is IMoveset { Moves: { HasMoves: true } x })
|
|
{
|
|
result[x.Move4] = true;
|
|
result[x.Move3] = true;
|
|
result[x.Move2] = true;
|
|
result[x.Move1] = true;
|
|
}
|
|
if (enc is IRelearn { Relearn: { HasMoves: true } r })
|
|
{
|
|
result[r.Move4] = true;
|
|
result[r.Move3] = true;
|
|
result[r.Move2] = true;
|
|
result[r.Move1] = true;
|
|
}
|
|
}
|
|
}
|