mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
173 lines
7.1 KiB
C#
173 lines
7.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using static PKHeX.Core.LegalityCheckStrings;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Verifies the transfer data for a <see cref="PKM"/> that has been irreversably transferred forward.
|
|
/// </summary>
|
|
public sealed class TransferVerifier : Verifier
|
|
{
|
|
protected override CheckIdentifier Identifier => CheckIdentifier.Encounter;
|
|
|
|
public override void Verify(LegalityAnalysis data)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void VerifyTransferLegalityG12(LegalityAnalysis data)
|
|
{
|
|
VerifyTransferVCNatureEXP(data);
|
|
}
|
|
|
|
private void VerifyTransferVCNatureEXP(LegalityAnalysis data)
|
|
{
|
|
var pkm = data.pkm;
|
|
var met = pkm.Met_Level;
|
|
|
|
if (met == 100) // check for precise match, can't receive EXP after transfer.
|
|
{
|
|
var nature = Experience.GetNatureVC(pkm.EXP);
|
|
if (nature != pkm.Nature)
|
|
data.AddLine(GetInvalid(LTransferNature));
|
|
}
|
|
else
|
|
{
|
|
var pi = pkm.PersonalInfo;
|
|
var growth = pi.EXPGrowth;
|
|
var nature = pkm.Nature;
|
|
if (met <= 2) // Not enough EXP to have every nature -- check for exclusions!
|
|
{
|
|
bool valid = VerifyVCNature(growth, nature);
|
|
if (!valid)
|
|
data.AddLine(GetInvalid(LTransferNature));
|
|
}
|
|
var currentEXP = pkm.EXP;
|
|
var thresholdEXP = Experience.GetEXP(met, growth);
|
|
var delta = currentEXP - thresholdEXP;
|
|
if (delta < 25 && !VerifyVCNature(currentEXP, thresholdEXP, nature)) // check for precise match with current level thresholds
|
|
data.AddLine(GetInvalid(LTransferNature));
|
|
}
|
|
}
|
|
|
|
private static bool VerifyVCNature(uint currentEXP, uint thresholdEXP, int nature)
|
|
{
|
|
// exp % 25 with a limited amount of EXP does not allow for every nature
|
|
do
|
|
{
|
|
var vcnature = Experience.GetNatureVC(currentEXP);
|
|
if (vcnature == nature)
|
|
return true;
|
|
} while (currentEXP-- != thresholdEXP);
|
|
return false;
|
|
}
|
|
|
|
private static bool VerifyVCNature(int growth, int nature)
|
|
{
|
|
// exp % 25 with a limited amount of EXP does not allow for every nature
|
|
switch (growth)
|
|
{
|
|
case 0: // MediumFast -- Can't be Brave, Adamant, Naughty, Bold, Docile, or Relaxed
|
|
return nature < (int)Nature.Brave || nature > (int)Nature.Relaxed;
|
|
case 4: // Fast -- Can't be Gentle, Sassy, Careful, Quirky, Hardy, Lonely, Brave, Adamant, Naughty, or Bold
|
|
return nature < (int)Nature.Gentle && nature > (int)Nature.Bold;
|
|
case 5: // Slow -- Can't be Impish or Lax
|
|
return nature != (int)Nature.Impish && nature != (int)Nature.Lax;
|
|
default:
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public void VerifyTransferLegalityG3(LegalityAnalysis data)
|
|
{
|
|
var pkm = data.pkm;
|
|
if (pkm.Format == 4) // Pal Park (3->4)
|
|
{
|
|
if (pkm.Met_Location != Locations.Transfer3)
|
|
data.AddLine(GetInvalid(LEggLocationPalPark));
|
|
}
|
|
else // Transporter (4->5)
|
|
{
|
|
if (pkm.Met_Location != Locations.Transfer4)
|
|
data.AddLine(GetInvalid(LTransferEggLocationTransporter));
|
|
}
|
|
}
|
|
|
|
public void VerifyTransferLegalityG4(LegalityAnalysis data)
|
|
{
|
|
var pkm = data.pkm;
|
|
int loc = pkm.Met_Location;
|
|
if (loc == Locations.Transfer4)
|
|
return;
|
|
|
|
// Crown met location must be present if transferred via lock capsule
|
|
switch (pkm.Species)
|
|
{
|
|
case 251: // Celebi
|
|
if (loc != Locations.Transfer4_CelebiUnused && loc != Locations.Transfer4_CelebiUsed)
|
|
data.AddLine(GetInvalid(LTransferMet));
|
|
break;
|
|
case 243: // Raikou
|
|
case 244: // Entei
|
|
case 245: // Suicune
|
|
if (loc != Locations.Transfer4_CrownUnused && loc != Locations.Transfer4_CrownUsed)
|
|
data.AddLine(GetInvalid(LTransferMet));
|
|
break;
|
|
default:
|
|
data.AddLine(GetInvalid(LTransferEggLocationTransporter));
|
|
break;
|
|
}
|
|
}
|
|
|
|
public IEnumerable<CheckResult> VerifyVCEncounter(PKM pkm, IEncounterable encounter, ILocation transfer, IList<CheckMoveResult> Moves)
|
|
{
|
|
// Check existing EncounterMatch
|
|
if (encounter is EncounterInvalid || transfer == null)
|
|
yield break; // Avoid duplicate invaild message
|
|
|
|
if (encounter is EncounterStatic v && (GameVersion.GBCartEraOnly.Contains(v.Version) || v.Version == GameVersion.VCEvents))
|
|
{
|
|
bool exceptions = false;
|
|
exceptions |= v.Version == GameVersion.VCEvents && encounter.Species == 151 && pkm.TID == 22796;
|
|
if (!exceptions)
|
|
yield return GetInvalid(LG1GBEncounter);
|
|
}
|
|
|
|
if (pkm.Met_Location != transfer.Location)
|
|
yield return GetInvalid(LTransferMetLocation);
|
|
if (pkm.Egg_Location != transfer.EggLocation)
|
|
yield return GetInvalid(LEggLocationNone);
|
|
|
|
// Flag Moves that cannot be transferred
|
|
if (encounter is EncounterStatic s && s.Version == GameVersion.C && s.EggLocation == 256) // Dizzy Punch Gifts
|
|
FlagIncompatibleTransferMove(pkm, Moves, 146, 2); // can't have Dizzy Punch at all
|
|
|
|
bool checkShiny = pkm.VC2 || (pkm.TradebackStatus == TradebackType.WasTradeback && pkm.VC1);
|
|
if (!checkShiny)
|
|
yield break;
|
|
|
|
if (pkm.Gender == 1) // female
|
|
{
|
|
if (pkm.PersonalInfo.Gender == 31 && pkm.IsShiny) // impossible gender-shiny
|
|
yield return GetInvalid(LEncStaticPIDShiny, CheckIdentifier.PID);
|
|
}
|
|
else if (pkm.Species == 201) // unown
|
|
{
|
|
if (pkm.AltForm != 8 && pkm.AltForm != 21 && pkm.IsShiny) // impossibly form-shiny (not I or V)
|
|
yield return GetInvalid(LEncStaticPIDShiny, CheckIdentifier.PID);
|
|
}
|
|
}
|
|
|
|
private static void FlagIncompatibleTransferMove(PKM pkm, IList<CheckMoveResult> Moves, int move, int gen)
|
|
{
|
|
int index = Array.IndexOf(pkm.Moves, move);
|
|
if (index < 0)
|
|
return; // doesn't have move
|
|
|
|
var chk = Moves[index];
|
|
if (chk.Generation == gen) // not obtained from a future gen
|
|
Moves[index] = new CheckMoveResult(chk.Source, chk.Generation, Severity.Invalid, LTransferMove, CheckIdentifier.Move);
|
|
}
|
|
}
|
|
}
|