mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-19 20:28:24 -05:00
100 lines
3.1 KiB
C#
100 lines
3.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using static PKHeX.Core.LegalityCheckStrings;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Default formatter for Legality Result displays.
|
|
/// </summary>
|
|
public class BaseLegalityFormatter : ILegalityFormatter
|
|
{
|
|
public string GetReport(LegalityAnalysis l)
|
|
{
|
|
if (l.Valid)
|
|
return L_ALegal;
|
|
if (!l.Parsed)
|
|
return L_AnalysisUnavailable;
|
|
|
|
var lines = GetLegalityReportLines(l);
|
|
return string.Join(Environment.NewLine, lines);
|
|
}
|
|
|
|
public string GetReportVerbose(LegalityAnalysis l)
|
|
{
|
|
if (!l.Parsed)
|
|
return L_AnalysisUnavailable;
|
|
|
|
var lines = GetVerboseLegalityReportLines(l);
|
|
return string.Join(Environment.NewLine, lines);
|
|
}
|
|
|
|
private static List<string> GetLegalityReportLines(LegalityAnalysis l)
|
|
{
|
|
var lines = new List<string>();
|
|
var info = l.Info;
|
|
var pkm = l.pkm;
|
|
|
|
AddMoves(info.Moves, lines);
|
|
if (pkm.Format >= 6)
|
|
AddRelearn(info.Relearn, lines);
|
|
|
|
// Build result string...
|
|
var outputLines = l.Results.Where(chk => !chk.Valid);
|
|
lines.AddRange(outputLines.Select(chk => chk.Format(L_F0_1)));
|
|
return lines;
|
|
}
|
|
|
|
private static void AddMoves(CheckMoveResult[] moves, List<string> lines)
|
|
{
|
|
for (int i = 0; i < moves.Length; i++)
|
|
{
|
|
var move = moves[i];
|
|
if (!move.Valid)
|
|
lines.Add(move.Format(L_F0_M_1_2, i + 1));
|
|
}
|
|
}
|
|
|
|
private static void AddRelearn(CheckResult[] relearn, List<string> lines)
|
|
{
|
|
for (int i = 0; i < relearn.Length; i++)
|
|
{
|
|
var move = relearn[i];
|
|
if (!move.Valid)
|
|
lines.Add(move.Format(L_F0_RM_1_2, i + 1));
|
|
}
|
|
}
|
|
|
|
private static IReadOnlyList<string> GetVerboseLegalityReportLines(LegalityAnalysis l)
|
|
{
|
|
var lines = l.Valid ? new List<string> {L_ALegal} : GetLegalityReportLines(l);
|
|
var info = l.Info;
|
|
var pkm = l.pkm;
|
|
const string separator = "===";
|
|
lines.Add(separator);
|
|
lines.Add(string.Empty);
|
|
int initialCount = lines.Count;
|
|
|
|
var format = pkm.Format;
|
|
LegalityFormatting.AddValidMoves(info, lines, format);
|
|
|
|
if (format >= 6)
|
|
LegalityFormatting.AddValidMovesRelearn(info, lines);
|
|
|
|
if (lines.Count != initialCount) // move info added, break for next section
|
|
lines.Add(string.Empty);
|
|
|
|
LegalityFormatting.AddValidSecondaryChecks(l.Results, lines);
|
|
|
|
lines.Add(separator);
|
|
lines.Add(string.Empty);
|
|
LegalityFormatting.AddEncounterInfo(l, lines);
|
|
|
|
LegalityFormatting.AddInvalidMatchesIfAny(l, info, lines);
|
|
|
|
return lines;
|
|
}
|
|
}
|
|
}
|