mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
c00651078a
Additional Changes: Removed duplicate EncounterLink check Moved RelearnBase resetting to the verifyRelearn() method.
103 lines
3.5 KiB
C#
103 lines
3.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace PKHeX
|
|
{
|
|
public partial class LegalityAnalysis
|
|
{
|
|
private readonly PK6 pk6;
|
|
private object EncounterMatch;
|
|
private Type EncounterType;
|
|
private LegalityCheck ECPID, Nickname, IDs, IVs, EVs, Encounter, Level, Ribbons, Ability, Ball, HandlerMemories;
|
|
|
|
public bool Valid = true;
|
|
public bool SecondaryChecked;
|
|
public int[] RelearnBase;
|
|
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()
|
|
{
|
|
Encounter = verifyEncounter();
|
|
EncounterType = EncounterMatch?.GetType();
|
|
ECPID = verifyECPID();
|
|
Nickname = verifyNickname();
|
|
IDs = verifyID();
|
|
IVs = verifyIVs();
|
|
EVs = verifyEVs();
|
|
Level = verifyLevel();
|
|
Ribbons = verifyRibbons();
|
|
Ability = verifyAbility();
|
|
Ball = verifyBall();
|
|
HandlerMemories = verifyHandlerMemories();
|
|
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, Level, Ribbons, Ability, Ball, HandlerMemories };
|
|
|
|
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;
|
|
}
|
|
|
|
public int[] getSuggestedRelearn()
|
|
{
|
|
if (RelearnBase == null)
|
|
return new int[4];
|
|
|
|
if (!pk6.WasEgg)
|
|
return RelearnBase;
|
|
|
|
List<int> window = new List<int>(RelearnBase);
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
if (!vMoves[i].Valid || vMoves[i].Flag)
|
|
window.Add(pk6.Moves[i]);
|
|
|
|
if (window.Count < 4)
|
|
window.AddRange(new int[4 - window.Count]);
|
|
return window.Skip(window.Count - 4).Take(4).ToArray();
|
|
}
|
|
}
|
|
}
|