mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +00:00
6568940d0b
Adds PCJP class for whenever I get around to encoding that.
199 lines
6.2 KiB
C#
199 lines
6.2 KiB
C#
using System;
|
||
using static PKHeX.Core.LegalityCheckStrings;
|
||
|
||
namespace PKHeX.Core;
|
||
|
||
/// <summary>
|
||
/// Verifies the <see cref="PKM.OriginalTrainerName"/>.
|
||
/// </summary>
|
||
public sealed class TrainerNameVerifier : Verifier
|
||
{
|
||
protected override CheckIdentifier Identifier => CheckIdentifier.Trainer;
|
||
|
||
private static readonly string[] SuspiciousOTNames =
|
||
[
|
||
"PKHeX",
|
||
"PKHeX",
|
||
];
|
||
|
||
public override void Verify(LegalityAnalysis data)
|
||
{
|
||
var pk = data.Entity;
|
||
var enc = data.EncounterMatch;
|
||
if (!IsPlayerOriginalTrainer(enc))
|
||
return; // already verified
|
||
|
||
Span<char> trainer = stackalloc char[pk.TrashCharCountTrainer];
|
||
int len = pk.LoadString(pk.OriginalTrainerTrash, trainer);
|
||
if (len == 0)
|
||
{
|
||
data.AddLine(GetInvalid(LOTShort));
|
||
return;
|
||
}
|
||
trainer = trainer[..len];
|
||
|
||
if (IsOTNameSuspicious(trainer))
|
||
{
|
||
data.AddLine(Get(LOTSuspicious, Severity.Fishy));
|
||
}
|
||
|
||
if (pk.VC)
|
||
{
|
||
VerifyOTGB(data);
|
||
}
|
||
else if (trainer.Length > Legal.GetMaxLengthOT(data.Info.Generation, (LanguageID)pk.Language))
|
||
{
|
||
if (!IsEdgeCaseLength(pk, data.EncounterOriginal, trainer))
|
||
data.AddLine(Get(LOTLong, Severity.Invalid));
|
||
}
|
||
|
||
if (ParseSettings.Settings.WordFilter.IsEnabled(pk.Format))
|
||
{
|
||
if (WordFilter.IsFiltered(trainer.ToString(), out var badPattern))
|
||
data.AddLine(GetInvalid($"Word Filter: {badPattern}"));
|
||
if (ContainsTooManyNumbers(trainer, data.Info.Generation))
|
||
data.AddLine(GetInvalid("Word Filter: Too many numbers."));
|
||
|
||
if (WordFilter.IsFiltered(pk.HandlingTrainerName, out badPattern))
|
||
data.AddLine(GetInvalid($"Word Filter: {badPattern}"));
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// Checks if any player (human) was the original OT.
|
||
/// </summary>
|
||
internal static bool IsPlayerOriginalTrainer(IEncounterable enc) => enc switch
|
||
{
|
||
IFixedTrainer { IsFixedTrainer: true } => false,
|
||
MysteryGift { IsEgg: false } => false,
|
||
EncounterStatic5N => false,
|
||
_ => true,
|
||
};
|
||
|
||
public static bool IsEdgeCaseLength(PKM pk, IEncounterTemplate e, ReadOnlySpan<char> ot)
|
||
{
|
||
if (e.IsEgg)
|
||
{
|
||
if (e is EncounterGift3 wc3 && pk.IsEgg && ot.SequenceEqual(wc3.OriginalTrainerName))
|
||
return true; // Fixed OT Mystery Gift Egg
|
||
bool eggEdge = pk.IsEgg ? pk.IsTradedEgg || pk.Format == 3 : pk.WasTradedEgg;
|
||
if (!eggEdge)
|
||
return false;
|
||
var len = Legal.GetMaxLengthOT(e.Generation, LanguageID.English); // max case
|
||
return ot.Length <= len;
|
||
}
|
||
|
||
if (e is IFixedTrainer { IsFixedTrainer: true })
|
||
return true; // already verified
|
||
return false;
|
||
}
|
||
|
||
public void VerifyOTGB(LegalityAnalysis data)
|
||
{
|
||
var pk = data.Entity;
|
||
var enc = data.EncounterOriginal;
|
||
if (pk.OriginalTrainerGender == 1)
|
||
{
|
||
// Transferring from RBY->Gen7 won't have OT Gender in PK1, nor will PK1 originated encounters.
|
||
// GSC Trades already checked for OT Gender matching.
|
||
if (pk is { Format: > 2, VC1: true } || enc is { Generation: 1 } or EncounterGift2 { IsEgg: false })
|
||
data.AddLine(GetInvalid(LG1OTGender));
|
||
}
|
||
|
||
if (enc is IFixedTrainer { IsFixedTrainer: true })
|
||
return; // already verified
|
||
|
||
Span<char> trainer = stackalloc char[pk.TrashCharCountTrainer];
|
||
int len = pk.LoadString(pk.OriginalTrainerTrash, trainer);
|
||
trainer = trainer[..len];
|
||
|
||
if (trainer.Length == 0)
|
||
{
|
||
if (pk is SK2 {TID16: 0, IsRental: true})
|
||
{
|
||
data.AddLine(Get(LOTShort, Severity.Fishy));
|
||
}
|
||
else
|
||
{
|
||
data.AddLine(GetInvalid(LOTShort));
|
||
return;
|
||
}
|
||
}
|
||
VerifyGBOTWithinBounds(data, trainer);
|
||
}
|
||
|
||
private void VerifyGBOTWithinBounds(LegalityAnalysis data, ReadOnlySpan<char> str)
|
||
{
|
||
var pk = data.Entity;
|
||
|
||
// Filtered OT names use unavailable characters and can be too long
|
||
if (pk.Format >= 7)
|
||
{
|
||
// Check if it was profanity filtered.
|
||
var filtered = StringConverter12Transporter.GetFilteredOT(pk.Language, pk.Version);
|
||
if (str.SequenceEqual(filtered))
|
||
return;
|
||
}
|
||
|
||
if (pk.Japanese)
|
||
{
|
||
if (str.Length > 5)
|
||
data.AddLine(GetInvalid(LOTLong));
|
||
if (!StringConverter1.GetIsJapanese(str))
|
||
data.AddLine(GetInvalid(LG1CharOT));
|
||
}
|
||
else if (pk.Korean)
|
||
{
|
||
if (str.Length > 5)
|
||
data.AddLine(GetInvalid(LOTLong));
|
||
if (!StringConverter2KOR.GetIsKorean(str))
|
||
data.AddLine(GetInvalid(LG1CharOT));
|
||
}
|
||
else
|
||
{
|
||
if (str.Length > 7)
|
||
data.AddLine(GetInvalid(LOTLong));
|
||
if (!StringConverter1.GetIsEnglish(str))
|
||
data.AddLine(GetInvalid(LG1CharOT));
|
||
}
|
||
}
|
||
|
||
private static bool IsOTNameSuspicious(ReadOnlySpan<char> name)
|
||
{
|
||
foreach (var s in SuspiciousOTNames)
|
||
{
|
||
if (name.StartsWith(s, StringComparison.OrdinalIgnoreCase))
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
|
||
public static bool ContainsTooManyNumbers(ReadOnlySpan<char> str, int originalGeneration)
|
||
{
|
||
if (originalGeneration <= 3)
|
||
return false; // no limit from these generations
|
||
int max = originalGeneration < 6 ? 4 : 5;
|
||
if (str.Length <= max)
|
||
return false;
|
||
int count = GetNumberCount(str);
|
||
return count > max;
|
||
}
|
||
|
||
private static int GetNumberCount(ReadOnlySpan<char> str)
|
||
{
|
||
static bool IsNumber(char c)
|
||
{
|
||
if (c >= '0')
|
||
return c <= '9';
|
||
return (uint)(c - '0') <= 9;
|
||
}
|
||
|
||
int ctr = 0;
|
||
foreach (var c in str)
|
||
{
|
||
if (IsNumber(c))
|
||
++ctr;
|
||
}
|
||
return ctr;
|
||
}
|
||
}
|