mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
91c37ab573
V### names weren't enjoyable to work with; use similar verbose style as the program message strings. updating the translation files with the remapped variable names shortly remap list: https://pastebin.com/jybkVDAK
73 lines
2.4 KiB
C#
73 lines
2.4 KiB
C#
using System;
|
|
using static PKHeX.Core.LegalityCheckStrings;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Verifies the <see cref="PKM.SuperTrainingMedalCount"/> and associated values.
|
|
/// </summary>
|
|
public sealed class MedalVerifier : Verifier
|
|
{
|
|
protected override CheckIdentifier Identifier => CheckIdentifier.Training;
|
|
|
|
public override void Verify(LegalityAnalysis data)
|
|
{
|
|
VerifyMedalsRegular(data);
|
|
VerifyMedalsEvent(data);
|
|
}
|
|
|
|
private void VerifyMedalsRegular(LegalityAnalysis data)
|
|
{
|
|
var pkm = data.pkm;
|
|
var Info = data.Info;
|
|
uint value = BitConverter.ToUInt32(pkm.Data, 0x2C);
|
|
if ((value & 3) != 0) // 2 unused flags
|
|
data.AddLine(GetInvalid(LSuperUnused));
|
|
int TrainCount = pkm.SuperTrainingMedalCount();
|
|
|
|
if (pkm.IsEgg && TrainCount > 0)
|
|
{
|
|
data.AddLine(GetInvalid(LSuperEgg));
|
|
return;
|
|
}
|
|
if (TrainCount > 0 && Info.Generation > 6)
|
|
{
|
|
data.AddLine(GetInvalid(LSuperUnavailable));
|
|
return;
|
|
}
|
|
if (pkm.Format >= 7)
|
|
{
|
|
if (pkm.SecretSuperTrainingUnlocked)
|
|
data.AddLine(GetInvalid(LSuperNoUnlocked));
|
|
if (pkm.SecretSuperTrainingComplete)
|
|
data.AddLine(GetInvalid(LSuperNoComplete));
|
|
return;
|
|
}
|
|
if (TrainCount == 30 ^ pkm.SecretSuperTrainingComplete)
|
|
data.AddLine(GetInvalid(LSuperComplete));
|
|
}
|
|
|
|
private void VerifyMedalsEvent(LegalityAnalysis data)
|
|
{
|
|
var pkm = data.pkm;
|
|
var Info = data.Info;
|
|
byte value = pkm.Data[0x3A];
|
|
if ((value & 0xC0) != 0) // 2 unused flags highest bits
|
|
data.AddLine(GetInvalid(LSuperUnused));
|
|
|
|
int TrainCount = 0;
|
|
for (int i = 0; i < 6; i++)
|
|
{
|
|
if ((value & 1) != 0)
|
|
TrainCount++;
|
|
value >>= 1;
|
|
}
|
|
if (pkm.IsEgg && TrainCount > 0)
|
|
data.AddLine(GetInvalid(LSuperEgg));
|
|
else if (TrainCount > 0 && Info.Generation > 6)
|
|
data.AddLine(GetInvalid(LSuperUnavailable));
|
|
else if (TrainCount > 0)
|
|
data.AddLine(Get(LSuperDistro, Severity.Fishy));
|
|
}
|
|
}
|
|
}
|