PKHeX/PKHeX.WinForms/Util/DevUtil.cs
Kurt 88830e0d00
Update from .NET Framework 4.6 to .NET 7 (#3729)
Updates from net46->net7, dropping support for mono in favor of using the latest runtime (along with the performance/API improvements). Releases will be posted as 64bit only for now.

Refactors a good amount of internal API methods to be more performant and more customizable for future updates & fixes.

Adds functionality for Batch Editor commands to `>`, `<` and <=/>=

TID/SID properties renamed to TID16/SID16 for clarity; other properties exposed for Gen7 / display variants.

Main window has a new layout to account for DPI scaling (8 point grid)

Fixed: Tatsugiri and Paldean Tauros now output Showdown form names as Showdown expects
Changed: Gen9 species now interact based on the confirmed National Dex IDs (closes #3724)
Fixed: Pokedex set all no longer clears species with unavailable non-base forms (closes #3720)
Changed: Hyper Training suggestions now apply for level 50 in SV. (closes #3714)
Fixed: B2/W2 hatched egg met locations exclusive to specific versions are now explicitly checked (closes #3691)
Added: Properties for ribbon/mark count (closes #3659)
Fixed: Traded SV eggs are now checked correctly (closes #3692)
2023-01-21 20:02:33 -08:00

168 lines
6.5 KiB
C#

#if DEBUG
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Windows.Forms;
using PKHeX.Core;
namespace PKHeX.WinForms
{
public static class DevUtil
{
public static void AddControl(ToolStripDropDownItem t)
{
t.DropDownItems.Add(GetTranslationUpdater());
}
private static readonly string[] Languages = {"ja", "fr", "it", "de", "es", "ko", "zh", "zh2"};
private const string DefaultLanguage = GameLanguage.DefaultLanguage;
public static bool IsUpdatingTranslations { get; private set; }
/// <summary>
/// Call this to update all translatable resources (Program Messages, Legality Text, Program GUI)
/// </summary>
private static void UpdateAll()
{
if (DialogResult.Yes != WinFormsUtil.Prompt(MessageBoxButtons.YesNo, "Update translation files with current values?"))
return;
IsUpdatingTranslations = true;
DumpStringsLegality();
DumpStringsMessage();
UpdateTranslations();
IsUpdatingTranslations = false;
}
private static ToolStripMenuItem GetTranslationUpdater()
{
var ti = new ToolStripMenuItem
{
ShortcutKeys = Keys.Control | Keys.Alt | Keys.D,
Visible = false,
};
ti.Click += (s, e) => UpdateAll();
return ti;
}
private static void UpdateTranslations()
{
var assembly = System.Reflection.Assembly.GetExecutingAssembly();
var types = assembly.GetTypes();
// add mode
WinFormsTranslator.SetRemovalMode(false);
WinFormsTranslator.LoadSettings<PKHeXSettings>(DefaultLanguage);
WinFormsTranslator.LoadAllForms(types, LoadBanlist); // populate with every possible control
WinFormsTranslator.UpdateAll(DefaultLanguage, Languages); // propagate to others
WinFormsTranslator.DumpAll(Banlist); // dump current to file
// de-populate
WinFormsTranslator.SetRemovalMode(); // remove used keys, don't add any
WinFormsTranslator.LoadSettings<PKHeXSettings>(DefaultLanguage, false);
WinFormsTranslator.LoadAllForms(types, LoadBanlist);
WinFormsTranslator.RemoveAll(DefaultLanguage, PurgeBanlist); // remove all lines from above generated files that still remain
// Move translated files from the debug exe loc to their project location
var files = Directory.GetFiles(Application.StartupPath);
var dir = GetResourcePath("PKHeX.WinForms", "Resources", "text");
foreach (var f in files)
{
var fn = Path.GetFileName(f);
if (!fn.EndsWith(".txt"))
continue;
if (!fn.StartsWith("lang_"))
continue;
var loc = Path.Combine(dir, fn);
if (File.Exists(loc))
File.Delete(loc);
File.Move(f, loc, true);
}
Application.Exit();
}
private static readonly string[] LoadBanlist =
{
nameof(SplashScreen),
};
private static readonly string[] Banlist =
{
nameof(SplashScreen),
"Gender=", // editor gender labels
"BTN_Shinytize", // ☆
$"{nameof(Main)}.L_SizeH", // height rating
$"{nameof(Main)}.L_SizeW", // weight rating
$"{nameof(Main)}.L_SizeS", // scale rating
$"{nameof(Main)}.B_Box", // << and >> arrows
$"{nameof(Main)}.L_Characteristic=", // Characterstic (dynamic)
$"{nameof(Main)}.L_Potential", // ★☆☆☆ IV judge evaluation
$"{nameof(SAV_HoneyTree)}.L_Tree0", // dynamic, don't bother
$"{nameof(SAV_Misc3)}.BTN_Symbol", // symbols should stay as their current character
$"{nameof(SAV_GameSelect)}.L_Prompt", // prompt text (dynamic)
$"{nameof(SAV_BlockDump8)}.L_BlockName", // Block name (dynamic)
$"{nameof(SAV_PokedexResearchEditorLA)}.L_", // Dynamic label
};
private static readonly string[] PurgeBanlist =
{
nameof(SuperTrainingEditor),
nameof(ErrorWindow),
nameof(SettingsEditor),
};
private static void DumpStringsMessage() => DumpStrings(typeof(MessageStrings), false, "PKHeX.Core", "Resources", "text", "program");
private static void DumpStringsLegality() => DumpStrings(typeof(LegalityCheckStrings), true, "PKHeX.Core", "Resources", "legality", "checks");
private static void DumpStrings(Type t, bool sorted, params string[] rel)
{
var dir = GetResourcePath(rel);
var langs = new[] {DefaultLanguage}.Concat(Languages);
foreach (var lang in langs)
{
LocalizationUtil.SetLocalization(t, lang);
var entries = LocalizationUtil.GetLocalization(t);
IEnumerable<string> export = entries.OrderBy(GetName); // sorted lines
static string GetName(string line)
{
var index = line.IndexOf('=');
if (index == -1)
return line;
return line[..index];
}
if (!sorted)
export = entries;
var location = GetFileLocationInText(t.Name, dir, lang);
File.WriteAllLines(location, export);
LocalizationUtil.SetLocalization(t, DefaultLanguage);
}
}
private static string GetFileLocationInText(string fileType, string dir, string lang)
{
var fn = $"{fileType}_{lang}.txt";
return Path.Combine(dir, fn);
}
private static string GetResourcePath(params string[] subdir)
{
// Starting from the executable path, crawl upwards until we get to the repository/sln root
const string repo = "PKHeX";
var path = Application.StartupPath;
while (true)
{
var parent = Directory.GetParent(path);
if (parent is null)
throw new DirectoryNotFoundException();
path = parent.FullName;
if (path.EndsWith(repo))
return Path.Combine(path, Path.Combine(subdir));
}
}
}
}
#endif