mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
49e7225c3e
Tanabata Jirachi has an underleveled move (illegal), so we have to track some data. Move LegalityCheck back into LegalityAnalysis, but in a separate file still.
75 lines
2.5 KiB
C#
75 lines
2.5 KiB
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace PKHeX
|
|
{
|
|
public partial class LegalityAnalysis
|
|
{
|
|
private readonly PK6 pk6;
|
|
private WC6 MatchedWC6;
|
|
private LegalityCheck ECPID, Nickname, IDs, IVs, EVs, Encounter;
|
|
|
|
public bool Valid = true;
|
|
public bool SecondaryChecked;
|
|
public LegalityCheck[] vMoves = new LegalityCheck[4];
|
|
public LegalityCheck[] vRelearn = new LegalityCheck[4];
|
|
public string Report => getLegalityReport();
|
|
|
|
public LegalityAnalysis(PK6 pk)
|
|
{
|
|
pk6 = pk;
|
|
updateRelearnLegality();
|
|
updateMoveLegality();
|
|
updateChecks();
|
|
getLegalityReport();
|
|
}
|
|
|
|
public void updateRelearnLegality()
|
|
{
|
|
try { vRelearn = verifyRelearn(); }
|
|
catch { for (int i = 0; i < 4; i++) vRelearn[i] = new LegalityCheck(Severity.Invalid, "Internal error."); }
|
|
SecondaryChecked = false;
|
|
}
|
|
public void updateMoveLegality()
|
|
{
|
|
try { vMoves = verifyMoves(); }
|
|
catch { for (int i = 0; i < 4; i++) vMoves[i] = new LegalityCheck(Severity.Invalid, "Internal error."); }
|
|
SecondaryChecked = false;
|
|
}
|
|
|
|
private void updateChecks()
|
|
{
|
|
ECPID = verifyECPID();
|
|
Nickname = verifyNickname();
|
|
IDs = verifyID();
|
|
IVs = verifyIVs();
|
|
EVs = verifyEVs();
|
|
Encounter = verifyEncounter();
|
|
SecondaryChecked = true;
|
|
}
|
|
private string getLegalityReport()
|
|
{
|
|
if (!pk6.Gen6)
|
|
return "Analysis only available for Pokémon that originate from X/Y & OR/AS.";
|
|
|
|
var chks = new[] { ECPID, Nickname, IVs, EVs, IDs, Encounter};
|
|
|
|
string r = "";
|
|
for (int i = 0; i < 4; i++)
|
|
if (!vMoves[i].Valid)
|
|
r += $"{vMoves[i].Judgement} Move {i + 1}: {vMoves[i].Comment}" + Environment.NewLine;
|
|
for (int i = 0; i < 4; i++)
|
|
if (!vRelearn[i].Valid)
|
|
r += $"{vRelearn[i].Judgement} Relearn Move {i + 1}: {vRelearn[i].Comment}" + Environment.NewLine;
|
|
|
|
if (r.Length == 0 && chks.All(chk => chk.Valid))
|
|
return "Legal!";
|
|
|
|
Valid = false;
|
|
// Build result string...
|
|
r += chks.Where(chk => !chk.Valid).Aggregate("", (current, chk) => current + $"{chk.Judgement}: {chk.Comment}{Environment.NewLine}");
|
|
|
|
return r;
|
|
}
|
|
}
|
|
}
|