2018-07-27 02:34:27 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using static PKHeX.Core.LegalityCheckStrings;
|
2018-06-24 05:00:01 +00:00
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
2018-07-02 02:17:37 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Verifies the <see cref="PKM.OT_Name"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public sealed class TrainerNameVerifier : Verifier
|
2018-06-24 05:00:01 +00:00
|
|
|
|
{
|
|
|
|
|
protected override CheckIdentifier Identifier => CheckIdentifier.Trainer;
|
|
|
|
|
|
|
|
|
|
private readonly string[] SuspiciousOTNames =
|
|
|
|
|
{
|
|
|
|
|
"PKHeX",
|
|
|
|
|
};
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-06-24 05:00:01 +00:00
|
|
|
|
public override void Verify(LegalityAnalysis data)
|
|
|
|
|
{
|
|
|
|
|
var pkm = data.pkm;
|
|
|
|
|
switch (data.EncounterMatch)
|
|
|
|
|
{
|
|
|
|
|
case EncounterTrade _:
|
|
|
|
|
case MysteryGift g when !g.IsEgg:
|
|
|
|
|
case EncounterStaticPID s when s.NSparkle:
|
|
|
|
|
return; // already verified
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var ot = pkm.OT_Name;
|
|
|
|
|
if (ot.Length == 0)
|
2018-09-01 21:11:12 +00:00
|
|
|
|
data.AddLine(GetInvalid(LOTShort));
|
2018-06-24 05:00:01 +00:00
|
|
|
|
|
|
|
|
|
if (pkm.TID == 0 && pkm.SID == 0)
|
2018-07-27 02:34:27 +00:00
|
|
|
|
{
|
2018-09-01 21:11:12 +00:00
|
|
|
|
data.AddLine(Get(LOT_IDs0, Severity.Fishy));
|
2018-07-27 02:34:27 +00:00
|
|
|
|
}
|
2018-06-24 05:00:01 +00:00
|
|
|
|
else if (pkm.VC)
|
|
|
|
|
{
|
|
|
|
|
if (pkm.SID != 0)
|
2018-09-01 21:11:12 +00:00
|
|
|
|
data.AddLine(GetInvalid(LOT_SID0Invalid));
|
2018-06-24 05:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
else if (pkm.TID == pkm.SID)
|
2018-07-27 02:34:27 +00:00
|
|
|
|
{
|
2018-09-01 21:11:12 +00:00
|
|
|
|
data.AddLine(Get(LOT_IDEqual, Severity.Fishy));
|
2018-07-27 02:34:27 +00:00
|
|
|
|
}
|
2018-06-24 05:00:01 +00:00
|
|
|
|
else if (pkm.TID == 0)
|
2018-07-27 02:34:27 +00:00
|
|
|
|
{
|
2018-09-01 21:11:12 +00:00
|
|
|
|
data.AddLine(Get(LOT_TID0, Severity.Fishy));
|
2018-07-27 02:34:27 +00:00
|
|
|
|
}
|
2018-06-24 05:00:01 +00:00
|
|
|
|
else if (pkm.SID == 0)
|
2018-07-27 02:34:27 +00:00
|
|
|
|
{
|
2018-09-01 21:11:12 +00:00
|
|
|
|
data.AddLine(Get(LOT_SID0, Severity.Fishy));
|
2018-07-27 02:34:27 +00:00
|
|
|
|
}
|
|
|
|
|
else if ((pkm.TID == 12345 && pkm.SID == 54321) || IsOTNameSuspicious(ot))
|
|
|
|
|
{
|
2018-09-01 21:11:12 +00:00
|
|
|
|
data.AddLine(Get(LOTSuspicious, Severity.Fishy));
|
2018-07-27 02:34:27 +00:00
|
|
|
|
}
|
2018-06-24 05:00:01 +00:00
|
|
|
|
|
|
|
|
|
if (pkm.VC)
|
2018-08-17 03:06:40 +00:00
|
|
|
|
{
|
2018-06-24 05:00:01 +00:00
|
|
|
|
VerifyOTG1(data);
|
2018-08-17 03:06:40 +00:00
|
|
|
|
}
|
2018-10-27 23:06:06 +00:00
|
|
|
|
else if (ot.Length > Legal.GetMaxLengthOT(data.Info.Generation, (LanguageID)pkm.Language))
|
2018-08-15 22:19:54 +00:00
|
|
|
|
{
|
2018-10-27 23:06:06 +00:00
|
|
|
|
if (!IsEdgeCaseLength(pkm, data.EncounterOriginal, ot))
|
|
|
|
|
data.AddLine(Get(LOTLong, Severity.Invalid));
|
2018-08-15 22:19:54 +00:00
|
|
|
|
}
|
2018-06-24 05:00:01 +00:00
|
|
|
|
|
2018-10-06 02:58:30 +00:00
|
|
|
|
if (ParseSettings.CheckWordFilter)
|
2018-06-24 05:00:01 +00:00
|
|
|
|
{
|
|
|
|
|
if (WordFilter.IsFiltered(ot, out string bad))
|
|
|
|
|
data.AddLine(GetInvalid($"Wordfilter: {bad}"));
|
|
|
|
|
if (WordFilter.IsFiltered(pkm.HT_Name, out bad))
|
|
|
|
|
data.AddLine(GetInvalid($"Wordfilter: {bad}"));
|
2018-10-09 00:57:34 +00:00
|
|
|
|
if (ContainsTooManyNumbers(ot, data.Info.Generation))
|
|
|
|
|
data.AddLine(GetInvalid($"Wordfilter: Too many numbers."));
|
2018-06-24 05:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-10-27 23:06:06 +00:00
|
|
|
|
public static bool IsEdgeCaseLength(PKM pkm, IEncounterable e, string ot)
|
|
|
|
|
{
|
|
|
|
|
if (e.EggEncounter)
|
|
|
|
|
{
|
2018-11-03 19:44:03 +00:00
|
|
|
|
if (e is WC3 wc3 && pkm.IsEgg && wc3.OT_Name == ot)
|
|
|
|
|
return true; // Fixed OT Mystery Gift Egg
|
2018-10-27 23:06:06 +00:00
|
|
|
|
bool eggEdge = pkm.IsEgg ? pkm.IsTradedEgg : pkm.WasTradedEgg;
|
|
|
|
|
if (!eggEdge)
|
|
|
|
|
return false;
|
|
|
|
|
var len = Legal.GetMaxLengthOT(pkm.GenNumber, LanguageID.English); // max case
|
|
|
|
|
return ot.Length <= len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (e is MysteryGift mg && mg.OT_Name.Length == ot.Length)
|
|
|
|
|
return true; // Mattle Ho-Oh
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-24 05:00:01 +00:00
|
|
|
|
public void VerifyOTG1(LegalityAnalysis data)
|
|
|
|
|
{
|
|
|
|
|
var pkm = data.pkm;
|
|
|
|
|
string tr = pkm.OT_Name;
|
|
|
|
|
|
|
|
|
|
VerifyG1OTWithinBounds(data, tr);
|
|
|
|
|
if (data.EncounterOriginal is EncounterStatic s && (s.Version == GameVersion.Stadium || s.Version == GameVersion.Stadium2))
|
2018-07-20 12:57:57 +00:00
|
|
|
|
data.AddLine(VerifyG1OTStadium(pkm, tr, s));
|
2018-06-24 05:00:01 +00:00
|
|
|
|
|
|
|
|
|
if (pkm.Species == 151)
|
|
|
|
|
{
|
|
|
|
|
var OTMatch = (tr == Legal.GetG1OT_GFMew((int)LanguageID.Japanese))
|
|
|
|
|
|| (tr == Legal.GetG1OT_GFMew((int)LanguageID.English));
|
|
|
|
|
if (!OTMatch || pkm.TID != 22796)
|
2018-09-01 21:11:12 +00:00
|
|
|
|
data.AddLine(GetInvalid(LG1OTEvent));
|
2018-06-24 05:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-27 02:34:27 +00:00
|
|
|
|
if (pkm.OT_Gender == 1 && ((pkm.Format == 2 && pkm.Met_Location == 0) || (pkm.Format > 2 && pkm.VC1)))
|
2018-09-01 21:11:12 +00:00
|
|
|
|
data.AddLine(GetInvalid(LG1OTGender));
|
2018-06-24 05:00:01 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-06-24 05:00:01 +00:00
|
|
|
|
private void VerifyG1OTWithinBounds(LegalityAnalysis data, string str)
|
|
|
|
|
{
|
|
|
|
|
if (StringConverter.GetIsG1English(str))
|
|
|
|
|
{
|
|
|
|
|
if (str.Length > 7 && !(data.EncounterOriginal is EncounterTrade)) // OT already verified; GER shuckle has 8 chars
|
2018-09-01 21:11:12 +00:00
|
|
|
|
data.AddLine(GetInvalid(LOTLong));
|
2018-06-24 05:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
else if (StringConverter.GetIsG1Japanese(str))
|
|
|
|
|
{
|
|
|
|
|
if (str.Length > 5)
|
2018-09-01 21:11:12 +00:00
|
|
|
|
data.AddLine(GetInvalid(LOTLong));
|
2018-06-24 05:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
else if (data.pkm.Korean && StringConverter.GetIsG2Korean(str))
|
|
|
|
|
{
|
|
|
|
|
if (str.Length > 5)
|
2018-09-01 21:11:12 +00:00
|
|
|
|
data.AddLine(GetInvalid(LOTLong));
|
2018-06-24 05:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-09-01 21:11:12 +00:00
|
|
|
|
data.AddLine(GetInvalid(LG1CharOT));
|
2018-06-24 05:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
|
|
|
|
private CheckResult VerifyG1OTStadium(PKM pkm, string tr, IVersion s)
|
2018-06-24 05:00:01 +00:00
|
|
|
|
{
|
|
|
|
|
bool jp = pkm.Japanese;
|
2018-08-03 14:38:29 +00:00
|
|
|
|
var ot = Legal.GetGBStadiumOTName(jp, s.Version);
|
|
|
|
|
var id = Legal.GetGBStadiumOTID(jp, s.Version);
|
|
|
|
|
bool valid = ot == tr && id == pkm.TID;
|
2018-09-01 21:11:12 +00:00
|
|
|
|
return valid ? GetValid(jp ? LG1StadiumJapanese : LG1StadiumInternational) : GetInvalid(LG1Stadium);
|
2018-06-24 05:00:01 +00:00
|
|
|
|
}
|
2018-07-01 17:49:11 +00:00
|
|
|
|
|
|
|
|
|
private bool IsOTNameSuspicious(string name)
|
|
|
|
|
{
|
2018-07-27 02:34:27 +00:00
|
|
|
|
return SuspiciousOTNames.Any(name.StartsWith);
|
2018-07-01 17:49:11 +00:00
|
|
|
|
}
|
2018-10-09 00:57:34 +00:00
|
|
|
|
|
|
|
|
|
public static bool ContainsTooManyNumbers(string str, int originalGeneration)
|
|
|
|
|
{
|
|
|
|
|
if (originalGeneration <= 3)
|
|
|
|
|
return false; // no limit from these generations
|
|
|
|
|
int max = originalGeneration < 6 ? 4 : 5;
|
2018-10-10 02:28:18 +00:00
|
|
|
|
if (str.Length <= max)
|
2018-10-09 00:57:34 +00:00
|
|
|
|
return false;
|
|
|
|
|
int count = GetNumberCount(str);
|
|
|
|
|
return count > max;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static int GetNumberCount(string str)
|
|
|
|
|
{
|
|
|
|
|
bool IsNumber(char c)
|
|
|
|
|
{
|
|
|
|
|
if ('0' <= c)
|
|
|
|
|
return c <= '9';
|
|
|
|
|
return c <= '9' && '0' <= c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return str.Count(IsNumber);
|
|
|
|
|
}
|
2018-06-24 05:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|