PKHeX/PKHeX.Core/Legality/Verifiers/MarkVerifier.cs

126 lines
4.1 KiB
C#
Raw Normal View History

2020-04-06 23:32:23 +00:00
using static PKHeX.Core.LegalityCheckStrings;
namespace PKHeX.Core
{
/// <summary>
/// Verifies the <see cref="RibbonIndex"/> values for markings.
/// </summary>
public sealed class MarkVerifier : Verifier
{
protected override CheckIdentifier Identifier => CheckIdentifier.RibbonMark;
public override void Verify(LegalityAnalysis data)
{
var pkm = data.pkm;
if (pkm is not IRibbonIndex m)
2020-04-06 23:32:23 +00:00
return;
if (data.Info.Generation != 8)
VerifyNoMarksPresent(data, m);
else
VerifyMarksPresent(data, m);
VerifyAffixedRibbonMark(data, m);
2020-04-06 23:32:23 +00:00
}
private void VerifyNoMarksPresent(LegalityAnalysis data, IRibbonIndex m)
{
for (var x = RibbonIndex.MarkLunchtime; x <= RibbonIndex.MarkSlump; x++)
{
if (m.GetRibbon((int)x))
data.AddLine(GetInvalid(string.Format(LRibbonMarkingFInvalid_0, x)));
}
}
private void VerifyMarksPresent(LegalityAnalysis data, IRibbonIndex m)
{
bool hasOne = false;
for (var mark = RibbonIndex.MarkLunchtime; mark <= RibbonIndex.MarkSlump; mark++)
{
bool has = m.GetRibbon((int) mark);
if (!has)
continue;
if (hasOne)
{
data.AddLine(GetInvalid(string.Format(LRibbonMarkingFInvalid_0, mark)));
return;
}
2020-11-04 20:58:56 +00:00
bool result = IsMarkValid(mark, data.pkm, data.EncounterMatch);
2020-04-06 23:32:23 +00:00
if (!result)
{
data.AddLine(GetInvalid(string.Format(LRibbonMarkingFInvalid_0, mark)));
return;
}
hasOne = true;
}
}
2020-11-04 20:58:56 +00:00
public static bool IsMarkValid(RibbonIndex mark, PKM pk, IEncounterable enc)
2020-04-06 23:32:23 +00:00
{
2020-11-04 20:58:56 +00:00
return IsMarkAllowedAny(enc) && IsMarkAllowedSpecific(mark, pk, enc);
}
public static bool IsMarkAllowedSpecific(RibbonIndex mark, PKM pk, IEncounterable _)
{
return mark switch
2020-04-06 23:32:23 +00:00
{
2020-11-04 20:58:56 +00:00
RibbonIndex.MarkCurry when !IsMarkAllowedCurry(pk) => false,
RibbonIndex.MarkDestiny => false,
_ => true
};
}
public static bool IsMarkAllowedAny(IEncounterable enc)
{
if (enc.Generation != 8)
return false;
switch (enc)
{
case WC8:
case EncounterEgg:
case EncounterTrade:
case EncounterStatic8U:
case EncounterStatic8N:
case EncounterStatic8ND:
case EncounterStatic8NC:
case EncounterStatic8 { Gift: true }:
case EncounterStatic8 { ScriptedNoMarks: true }:
2020-11-04 20:58:56 +00:00
return false;
2020-04-06 23:32:23 +00:00
}
2020-11-04 20:58:56 +00:00
return true;
}
public static bool IsMarkAllowedCurry(ILocation enc, int ball = (int)Ball.Poke) => IsMarkAllowedCurry(enc.Location, ball);
public static bool IsMarkAllowedCurry(PKM pkm) => IsMarkAllowedCurry(pkm.Met_Location, pkm.Ball);
public static bool IsMarkAllowedCurry(int met, int ball)
{
if (EncounterArea8.IsWildArea(met))
return false;
if ((uint) (ball - 2) > 2) // Poke,Great,Ultra only
return false;
2020-04-06 23:32:23 +00:00
return true;
}
private void VerifyAffixedRibbonMark(LegalityAnalysis data, IRibbonIndex m)
{
if (m is not PK8 pk8)
return;
var affix = pk8.AffixedRibbon;
if (affix == -1) // None
return;
if ((byte)affix > (int)RibbonIndex.MarkSlump)
data.AddLine(GetInvalid(string.Format(LRibbonMarkingAffixedF_0, affix)));
else if (!pk8.GetRibbonIndex((RibbonIndex)affix))
data.AddLine(GetInvalid(string.Format(LRibbonMarkingAffixedF_0, (RibbonIndex)affix)));
}
2020-04-06 23:32:23 +00:00
}
}