2017-01-08 07:54:09 +00:00
|
|
|
|
using System;
|
2014-06-28 21:22:05 +00:00
|
|
|
|
using System.Collections.Generic;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
using System.Configuration;
|
2016-01-03 04:22:53 +00:00
|
|
|
|
using System.Diagnostics;
|
2014-06-28 21:22:05 +00:00
|
|
|
|
using System.Drawing;
|
2016-08-31 04:12:47 +00:00
|
|
|
|
using System.Globalization;
|
2014-06-28 21:22:05 +00:00
|
|
|
|
using System.IO;
|
2015-02-13 04:26:23 +00:00
|
|
|
|
using System.Linq;
|
2016-01-03 18:47:44 +00:00
|
|
|
|
using System.Media;
|
2018-12-11 04:36:18 +00:00
|
|
|
|
using System.Reflection;
|
2015-02-13 04:26:23 +00:00
|
|
|
|
using System.Threading;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2015-02-13 04:26:23 +00:00
|
|
|
|
using System.Windows.Forms;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
|
2017-01-08 07:54:09 +00:00
|
|
|
|
using PKHeX.Core;
|
2019-09-29 16:47:06 +00:00
|
|
|
|
using PKHeX.Drawing;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
using PKHeX.WinForms.Controls;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
using PKHeX.WinForms.Properties;
|
2018-04-06 04:25:18 +00:00
|
|
|
|
using static PKHeX.Core.MessageStrings;
|
2014-06-28 21:22:05 +00:00
|
|
|
|
|
2017-01-08 07:54:09 +00:00
|
|
|
|
namespace PKHeX.WinForms
|
2014-06-28 21:22:05 +00:00
|
|
|
|
{
|
2015-09-21 03:34:09 +00:00
|
|
|
|
public partial class Main : Form
|
2014-06-28 21:22:05 +00:00
|
|
|
|
{
|
2020-10-18 18:02:39 +00:00
|
|
|
|
private static readonly Version CurrentProgramVersion = Assembly.GetExecutingAssembly().GetName().Version!;
|
2020-02-12 04:11:33 +00:00
|
|
|
|
|
2015-09-21 03:34:09 +00:00
|
|
|
|
public Main()
|
2014-06-28 21:22:05 +00:00
|
|
|
|
{
|
2020-10-18 18:02:39 +00:00
|
|
|
|
Form? splash = null; // popup a splash screen in another thread
|
2019-01-05 06:46:52 +00:00
|
|
|
|
new Task(() => (splash = new SplashScreen()).ShowDialog()).Start();
|
2020-01-12 19:41:23 +00:00
|
|
|
|
new Task(() => EncounterEvent.RefreshMGDB(MGDatabasePath)).Start();
|
2018-12-20 06:10:32 +00:00
|
|
|
|
string[] args = Environment.GetCommandLineArgs();
|
|
|
|
|
FormLoadInitialSettings(args, out bool showChangelog, out bool BAKprompt);
|
|
|
|
|
|
2014-06-28 21:22:05 +00:00
|
|
|
|
InitializeComponent();
|
2020-10-18 18:02:39 +00:00
|
|
|
|
C_SAV.SetEditEnvironment(new SaveDataEditor<PictureBox>(new FakeSaveFile(), PKME_Tabs));
|
2019-01-02 04:27:00 +00:00
|
|
|
|
FormLoadAddEvents();
|
|
|
|
|
#if DEBUG // translation updater -- all controls are added at this point -- call translate now
|
|
|
|
|
if (DevUtil.IsUpdatingTranslations)
|
|
|
|
|
WinFormsUtil.TranslateInterface(this, CurrentLanguage); // Translate the UI to language.
|
|
|
|
|
#endif
|
2018-12-20 06:10:32 +00:00
|
|
|
|
FormInitializeSecond();
|
2016-08-31 04:12:47 +00:00
|
|
|
|
|
2018-09-03 17:40:40 +00:00
|
|
|
|
FormLoadCustomBackupPaths();
|
2017-06-18 20:02:02 +00:00
|
|
|
|
FormLoadInitialFiles(args);
|
2018-04-06 04:25:18 +00:00
|
|
|
|
FormLoadCheckForUpdates();
|
2018-12-20 06:10:32 +00:00
|
|
|
|
FormLoadPlugins();
|
2017-06-18 20:02:02 +00:00
|
|
|
|
|
|
|
|
|
BringToFront();
|
|
|
|
|
WindowState = FormWindowState.Minimized;
|
|
|
|
|
Show();
|
|
|
|
|
WindowState = FormWindowState.Normal;
|
2020-10-18 18:02:39 +00:00
|
|
|
|
splash?.Invoke((MethodInvoker)(() => splash.Close())); // splash closes
|
2017-06-18 20:02:02 +00:00
|
|
|
|
if (HaX)
|
2018-01-29 06:47:03 +00:00
|
|
|
|
{
|
|
|
|
|
PKMConverter.AllowIncompatibleConversion = true;
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgProgramIllegalModeActive, MsgProgramIllegalModeBehave);
|
2018-01-29 06:47:03 +00:00
|
|
|
|
}
|
2017-06-18 20:02:02 +00:00
|
|
|
|
else if (showChangelog)
|
2018-07-27 02:34:27 +00:00
|
|
|
|
{
|
2019-10-08 01:40:09 +00:00
|
|
|
|
ShowAboutDialog(1);
|
2018-07-27 02:34:27 +00:00
|
|
|
|
}
|
2017-06-18 20:02:02 +00:00
|
|
|
|
|
|
|
|
|
if (BAKprompt && !Directory.Exists(BackupPath))
|
|
|
|
|
PromptBackup();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region Important Variables
|
|
|
|
|
public static string CurrentLanguage
|
|
|
|
|
{
|
|
|
|
|
get => GameInfo.CurrentLanguage;
|
|
|
|
|
private set => GameInfo.CurrentLanguage = value;
|
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2019-10-26 19:33:58 +00:00
|
|
|
|
private static bool _unicode;
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 20:02:02 +00:00
|
|
|
|
public static bool Unicode
|
|
|
|
|
{
|
|
|
|
|
get => _unicode;
|
|
|
|
|
private set
|
2016-08-31 04:12:47 +00:00
|
|
|
|
{
|
2017-06-18 20:02:02 +00:00
|
|
|
|
_unicode = value;
|
2019-01-21 05:55:28 +00:00
|
|
|
|
GenderSymbols = value ? GameInfo.GenderSymbolUnicode : GameInfo.GenderSymbolASCII;
|
2017-06-18 20:02:02 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-08-31 04:12:47 +00:00
|
|
|
|
|
2019-01-21 05:55:28 +00:00
|
|
|
|
public static IReadOnlyList<string> GenderSymbols { get; private set; } = GameInfo.GenderSymbolUnicode;
|
2017-06-19 05:27:40 +00:00
|
|
|
|
public static bool HaX { get; private set; }
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-12-11 04:48:21 +00:00
|
|
|
|
private readonly string[] main_langlist = Enum.GetNames(typeof(ProgramLanguage));
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-05-13 19:49:26 +00:00
|
|
|
|
private static readonly List<IPlugin> Plugins = new List<IPlugin>();
|
2017-06-18 20:02:02 +00:00
|
|
|
|
#endregion
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2017-06-18 20:02:02 +00:00
|
|
|
|
#region Path Variables
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2018-12-11 04:32:08 +00:00
|
|
|
|
public static readonly string WorkingDirectory = Application.StartupPath;
|
|
|
|
|
public static readonly string DatabasePath = Path.Combine(WorkingDirectory, "pkmdb");
|
|
|
|
|
public static readonly string MGDatabasePath = Path.Combine(WorkingDirectory, "mgdb");
|
|
|
|
|
public static readonly string BackupPath = Path.Combine(WorkingDirectory, "bak");
|
|
|
|
|
public static readonly string CryPath = Path.Combine(WorkingDirectory, "sounds");
|
|
|
|
|
public static readonly string SAVPaths = Path.Combine(WorkingDirectory, "savpaths.txt");
|
|
|
|
|
private static readonly string TemplatePath = Path.Combine(WorkingDirectory, "template");
|
|
|
|
|
private static readonly string PluginPath = Path.Combine(WorkingDirectory, "plugins");
|
2018-05-12 19:28:48 +00:00
|
|
|
|
private const string ThreadPath = "https://projectpokemon.org/pkhex/";
|
2017-06-18 20:02:02 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region //// MAIN MENU FUNCTIONS ////
|
2019-03-11 13:23:48 +00:00
|
|
|
|
private static void FormLoadInitialSettings(string[] args, out bool showChangelog, out bool BAKprompt)
|
2017-06-18 20:02:02 +00:00
|
|
|
|
{
|
|
|
|
|
showChangelog = false;
|
|
|
|
|
BAKprompt = false;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2018-01-29 06:47:03 +00:00
|
|
|
|
HaX = args.Any(x => string.Equals(x.Trim('-'), nameof(HaX), StringComparison.CurrentCultureIgnoreCase))
|
2017-11-26 02:16:50 +00:00
|
|
|
|
|| Path.GetFileNameWithoutExtension(Process.GetCurrentProcess().MainModule.FileName).EndsWith(nameof(HaX));
|
2018-01-29 06:47:03 +00:00
|
|
|
|
|
2017-06-18 20:02:02 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
ConfigUtil.CheckConfig();
|
2018-05-07 05:24:25 +00:00
|
|
|
|
FormLoadConfig(out BAKprompt, out showChangelog);
|
2019-01-28 06:04:10 +00:00
|
|
|
|
HaX |= Settings.Default.ForceHaXOnLaunch;
|
2017-06-18 20:02:02 +00:00
|
|
|
|
}
|
|
|
|
|
catch (ConfigurationErrorsException e)
|
|
|
|
|
{
|
|
|
|
|
// Delete the settings if they exist
|
|
|
|
|
var settingsFilename = (e.InnerException as ConfigurationErrorsException)?.Filename;
|
2020-10-18 18:02:39 +00:00
|
|
|
|
if (settingsFilename != null && !string.IsNullOrEmpty(settingsFilename) && File.Exists(settingsFilename))
|
2017-06-18 20:02:02 +00:00
|
|
|
|
DeleteConfig(settingsFilename);
|
|
|
|
|
else
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Error(MsgSettingsLoadFail, e);
|
2017-06-18 20:02:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-22 02:12:02 +00:00
|
|
|
|
var exts = Path.Combine(WorkingDirectory, "savexts.txt");
|
|
|
|
|
if (File.Exists(exts))
|
|
|
|
|
WinFormsUtil.AddSaveFileExtensions(File.ReadLines(exts));
|
2017-06-18 20:02:02 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-09-03 17:40:40 +00:00
|
|
|
|
private static void FormLoadCustomBackupPaths()
|
|
|
|
|
{
|
2020-04-14 17:59:16 +00:00
|
|
|
|
SaveFinder.CustomBackupPaths.Clear();
|
2019-01-03 02:18:24 +00:00
|
|
|
|
if (File.Exists(SAVPaths)) // custom user paths
|
2020-04-14 17:59:16 +00:00
|
|
|
|
SaveFinder.CustomBackupPaths.AddRange(File.ReadAllLines(SAVPaths).Where(Directory.Exists));
|
2018-09-03 17:40:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-18 20:02:02 +00:00
|
|
|
|
private void FormLoadAddEvents()
|
|
|
|
|
{
|
|
|
|
|
C_SAV.Menu_Redo = Menu_Redo;
|
|
|
|
|
C_SAV.Menu_Undo = Menu_Undo;
|
2017-07-06 06:05:49 +00:00
|
|
|
|
dragout.GiveFeedback += (sender, e) => e.UseDefaultCursors = false;
|
|
|
|
|
GiveFeedback += (sender, e) => e.UseDefaultCursors = false;
|
2017-06-18 20:02:02 +00:00
|
|
|
|
PKME_Tabs.EnableDragDrop(Main_DragEnter, Main_DragDrop);
|
|
|
|
|
C_SAV.EnableDragDrop(Main_DragEnter, Main_DragDrop);
|
2014-06-28 21:22:05 +00:00
|
|
|
|
|
2015-11-19 05:37:30 +00:00
|
|
|
|
// ToolTips for Drag&Drop
|
2019-10-28 03:39:07 +00:00
|
|
|
|
dragTip.SetToolTip(dragout, "PKM QuickSave");
|
2015-11-19 05:37:30 +00:00
|
|
|
|
|
2016-06-20 04:22:43 +00:00
|
|
|
|
// Box to Tabs D&D
|
|
|
|
|
dragout.AllowDrop = true;
|
|
|
|
|
|
2017-05-23 04:55:05 +00:00
|
|
|
|
// Add ContextMenus
|
|
|
|
|
var mnu = new ContextMenuPKM();
|
2020-10-18 18:02:39 +00:00
|
|
|
|
mnu.RequestEditorLegality += (o, args) => ClickLegality(mnu, args);
|
|
|
|
|
mnu.RequestEditorQR += (o, args) => ClickQR(mnu, args);
|
|
|
|
|
mnu.RequestEditorSaveAs += (o, args) => MainMenuSave(mnu, args);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
dragout.ContextMenuStrip = mnu.mnuL;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
C_SAV.menu.RequestEditorLegality += ShowLegality;
|
2017-06-18 20:02:02 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 20:02:02 +00:00
|
|
|
|
private void FormLoadInitialFiles(string[] args)
|
|
|
|
|
{
|
2020-10-18 18:02:39 +00:00
|
|
|
|
string pkmArg = string.Empty;
|
2017-02-05 21:24:39 +00:00
|
|
|
|
foreach (string arg in args.Skip(1)) // skip .exe
|
2015-09-13 16:10:44 +00:00
|
|
|
|
{
|
2017-02-05 21:24:39 +00:00
|
|
|
|
var fi = new FileInfo(arg);
|
|
|
|
|
if (!fi.Exists)
|
|
|
|
|
continue;
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
if (PKX.IsPKM(fi.Length))
|
2017-02-05 21:24:39 +00:00
|
|
|
|
pkmArg = arg;
|
|
|
|
|
else
|
2019-02-23 22:58:48 +00:00
|
|
|
|
OpenFromPath(arg);
|
2015-09-13 16:10:44 +00:00
|
|
|
|
}
|
2020-10-18 18:02:39 +00:00
|
|
|
|
if (C_SAV.SAV is FakeSaveFile) // No SAV loaded from exe args
|
2016-04-09 05:14:16 +00:00
|
|
|
|
{
|
2018-12-20 06:10:32 +00:00
|
|
|
|
#if !DEBUG
|
2016-08-22 01:05:41 +00:00
|
|
|
|
try
|
2018-12-20 06:10:32 +00:00
|
|
|
|
#endif
|
2016-08-22 01:05:41 +00:00
|
|
|
|
{
|
2020-10-18 18:02:39 +00:00
|
|
|
|
string? path = null;
|
|
|
|
|
SaveFile? sav = null;
|
|
|
|
|
if (Settings.Default.DetectSaveOnStartup && !DetectSaveFile(out path, out sav))
|
2017-06-21 01:38:33 +00:00
|
|
|
|
WinFormsUtil.Error(path); // `path` contains the error message
|
2017-06-18 20:02:02 +00:00
|
|
|
|
|
2018-12-20 06:10:32 +00:00
|
|
|
|
bool savLoaded = false;
|
2020-10-18 18:02:39 +00:00
|
|
|
|
if (sav != null && path != null)
|
2018-07-27 02:34:27 +00:00
|
|
|
|
{
|
2018-12-20 06:10:32 +00:00
|
|
|
|
savLoaded = OpenSAV(sav, path);
|
2018-07-27 02:34:27 +00:00
|
|
|
|
}
|
2018-12-20 06:10:32 +00:00
|
|
|
|
if (!savLoaded)
|
2019-01-16 08:27:29 +00:00
|
|
|
|
LoadBlankSaveFile(Settings.Default.DefaultSaveVersion);
|
2016-08-22 01:05:41 +00:00
|
|
|
|
}
|
2018-12-20 06:10:32 +00:00
|
|
|
|
#if !DEBUG
|
2016-08-22 01:05:41 +00:00
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
ErrorWindow.ShowErrorDialog(MsgFileLoadFailAuto, ex, true);
|
2016-08-22 01:05:41 +00:00
|
|
|
|
}
|
2018-12-20 06:10:32 +00:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-18 18:02:39 +00:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(pkmArg) && File.Exists(pkmArg))
|
2018-12-20 06:10:32 +00:00
|
|
|
|
{
|
|
|
|
|
byte[] data = File.ReadAllBytes(pkmArg);
|
|
|
|
|
var pk = PKMConverter.GetPKMfromBytes(data);
|
|
|
|
|
if (pk != null)
|
|
|
|
|
OpenPKM(pk);
|
2016-04-06 03:37:36 +00:00
|
|
|
|
}
|
2014-06-28 21:22:05 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2019-01-16 08:27:29 +00:00
|
|
|
|
private void LoadBlankSaveFile(GameVersion ver)
|
|
|
|
|
{
|
2020-10-04 15:59:33 +00:00
|
|
|
|
var current = C_SAV?.SAV;
|
|
|
|
|
var lang = SaveUtil.GetSafeLanguage(current);
|
|
|
|
|
var tr = SaveUtil.GetSafeTrainerName(current, lang);
|
2020-10-03 18:22:06 +00:00
|
|
|
|
var sav = SaveUtil.GetBlankSAV(ver, tr, lang);
|
2019-01-16 08:27:29 +00:00
|
|
|
|
if (sav.Version == GameVersion.Invalid) // will fail to load
|
2020-10-03 18:22:06 +00:00
|
|
|
|
sav = SaveUtil.GetBlankSAV((GameVersion)GameInfo.VersionDataSource.Max(z => z.Value), tr, lang);
|
2020-10-18 18:02:39 +00:00
|
|
|
|
OpenSAV(sav, string.Empty);
|
|
|
|
|
C_SAV!.SAV.Edited = false; // Prevents form close warning from showing until changes are made
|
2019-01-16 08:27:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-18 20:02:02 +00:00
|
|
|
|
private void FormLoadCheckForUpdates()
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2017-06-18 20:02:02 +00:00
|
|
|
|
L_UpdateAvailable.Click += (sender, e) => Process.Start(ThreadPath);
|
2018-12-11 04:36:18 +00:00
|
|
|
|
Task.Run(() =>
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2020-10-18 18:02:39 +00:00
|
|
|
|
Version? latestVersion;
|
2020-09-09 19:47:24 +00:00
|
|
|
|
// User might not be connected to the internet or with a flaky connection.
|
|
|
|
|
try { latestVersion = NetUtil.GetLatestPKHeXVersion(); }
|
|
|
|
|
#pragma warning disable CA1031 // Do not catch general exception types
|
2018-12-11 04:36:18 +00:00
|
|
|
|
catch (Exception ex)
|
2020-09-09 19:47:24 +00:00
|
|
|
|
#pragma warning restore CA1031 // Do not catch general exception types
|
2018-05-07 05:24:25 +00:00
|
|
|
|
{
|
2018-12-11 04:36:18 +00:00
|
|
|
|
Debug.WriteLine($"Exception while checking for latest version: {ex}");
|
2020-09-09 19:47:24 +00:00
|
|
|
|
return;
|
2018-12-11 04:48:21 +00:00
|
|
|
|
}
|
2020-09-09 19:47:24 +00:00
|
|
|
|
if (latestVersion > CurrentProgramVersion)
|
|
|
|
|
Invoke((MethodInvoker)(() => NotifyNewVersionAvailable(latestVersion)));
|
2018-12-11 04:36:18 +00:00
|
|
|
|
});
|
2017-06-18 20:02:02 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2019-02-23 22:58:48 +00:00
|
|
|
|
private void NotifyNewVersionAvailable(Version ver)
|
|
|
|
|
{
|
|
|
|
|
L_UpdateAvailable.Visible = true;
|
|
|
|
|
var date = $"{2000 + ver.Major:00}{ver.Minor:00}{ver.Build:00}";
|
|
|
|
|
L_UpdateAvailable.Text = $"{MsgProgramUpdateAvailable} {date}";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void FormLoadConfig(out bool BAKprompt, out bool showChangelog)
|
2016-12-07 07:29:57 +00:00
|
|
|
|
{
|
|
|
|
|
BAKprompt = false;
|
|
|
|
|
showChangelog = false;
|
2017-01-10 03:15:46 +00:00
|
|
|
|
|
|
|
|
|
var Settings = Properties.Settings.Default;
|
|
|
|
|
|
2016-12-07 07:29:57 +00:00
|
|
|
|
// Version Check
|
2017-01-10 03:15:46 +00:00
|
|
|
|
if (Settings.Version.Length > 0) // already run on system
|
2016-12-07 07:29:57 +00:00
|
|
|
|
{
|
2020-10-18 18:02:39 +00:00
|
|
|
|
bool parsed = Version.TryParse(Settings.Version, out var lastrev);
|
2018-12-11 04:48:21 +00:00
|
|
|
|
showChangelog = parsed && lastrev < CurrentProgramVersion;
|
2019-01-03 03:21:24 +00:00
|
|
|
|
if (showChangelog) // user just updated from a prior version
|
|
|
|
|
{
|
|
|
|
|
Settings.Upgrade(); // copy previous version's settings, if available.
|
|
|
|
|
}
|
2016-12-07 07:29:57 +00:00
|
|
|
|
}
|
2019-03-11 13:23:48 +00:00
|
|
|
|
Settings.Version = CurrentProgramVersion.ToString(); // set current ver so this doesn't happen until the user updates next time
|
2016-12-07 07:29:57 +00:00
|
|
|
|
|
|
|
|
|
// BAK Prompt
|
2017-01-10 03:15:46 +00:00
|
|
|
|
if (!Settings.BAKPrompt)
|
|
|
|
|
BAKprompt = Settings.BAKPrompt = true;
|
2016-12-07 07:29:57 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2020-10-18 18:02:39 +00:00
|
|
|
|
public static DrawConfig Draw = new DrawConfig();
|
2019-02-17 22:51:35 +00:00
|
|
|
|
|
2018-12-20 06:10:32 +00:00
|
|
|
|
private void FormInitializeSecond()
|
|
|
|
|
{
|
|
|
|
|
var settings = Settings.Default;
|
2019-08-21 02:50:28 +00:00
|
|
|
|
Draw = C_SAV.M.Hover.Draw = PKME_Tabs.Draw = DrawConfig.GetConfig(settings.Draw);
|
2018-12-20 06:10:32 +00:00
|
|
|
|
ReloadProgramSettings(settings);
|
|
|
|
|
CB_MainLanguage.Items.AddRange(main_langlist);
|
|
|
|
|
PB_Legal.Visible = !HaX;
|
|
|
|
|
PKMConverter.AllowIncompatibleConversion = C_SAV.HaX = PKME_Tabs.HaX = HaX;
|
2019-02-23 07:04:10 +00:00
|
|
|
|
WinFormsUtil.DetectSaveFileOnFileOpen = settings.DetectSaveOnStartup;
|
2018-12-20 06:10:32 +00:00
|
|
|
|
|
|
|
|
|
#if DEBUG
|
|
|
|
|
DevUtil.AddControl(Menu_Tools);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// Select Language
|
2020-04-24 03:54:20 +00:00
|
|
|
|
CB_MainLanguage.SelectedIndex = GameLanguage.GetLanguageIndex(settings.Language);
|
2018-12-20 06:10:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-13 19:49:26 +00:00
|
|
|
|
private void FormLoadPlugins()
|
|
|
|
|
{
|
2018-07-24 04:36:26 +00:00
|
|
|
|
#if !MERGED // merged should load dlls from within too, folder is no longer required
|
2018-05-13 19:49:26 +00:00
|
|
|
|
if (!Directory.Exists(PluginPath))
|
|
|
|
|
return;
|
2018-07-24 04:36:26 +00:00
|
|
|
|
#endif
|
2018-05-13 19:49:26 +00:00
|
|
|
|
Plugins.AddRange(PluginLoader.LoadPlugins<IPlugin>(PluginPath));
|
2018-06-30 22:02:17 +00:00
|
|
|
|
foreach (var p in Plugins.OrderBy(z => z.Priority))
|
2020-09-26 06:55:31 +00:00
|
|
|
|
p.Initialize(C_SAV, PKME_Tabs, menuStrip1, CurrentProgramVersion);
|
2018-05-13 19:49:26 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private static void DeleteConfig(string settingsFilename)
|
2017-03-05 01:21:33 +00:00
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
var dr = WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgSettingsResetCorrupt, MsgSettingsResetPrompt);
|
2017-03-05 01:21:33 +00:00
|
|
|
|
if (dr == DialogResult.Yes)
|
|
|
|
|
{
|
|
|
|
|
File.Delete(settingsFilename);
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgSettingsResetSuccess, MsgProgramRestart);
|
2017-03-05 01:21:33 +00:00
|
|
|
|
}
|
|
|
|
|
Process.GetCurrentProcess().Kill();
|
|
|
|
|
}
|
2019-02-23 22:58:48 +00:00
|
|
|
|
|
2014-12-13 22:48:34 +00:00
|
|
|
|
// Main Menu Strip UI Functions
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void MainMenuOpen(object sender, EventArgs e)
|
2014-06-28 21:22:05 +00:00
|
|
|
|
{
|
2020-10-18 18:02:39 +00:00
|
|
|
|
if (WinFormsUtil.OpenSAVPKMDialog(C_SAV.SAV.PKMExtensions, out var path))
|
|
|
|
|
OpenQuick(path!);
|
2014-06-28 21:22:05 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void MainMenuSave(object sender, EventArgs e)
|
2014-06-28 21:22:05 +00:00
|
|
|
|
{
|
2019-02-10 01:07:44 +00:00
|
|
|
|
if (!PKME_Tabs.EditsComplete)
|
|
|
|
|
return;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
PKM pk = PreparePKM();
|
2017-05-18 05:00:06 +00:00
|
|
|
|
WinFormsUtil.SavePKMDialog(pk);
|
2014-12-13 22:48:34 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void MainMenuExit(object sender, EventArgs e)
|
2014-12-13 22:48:34 +00:00
|
|
|
|
{
|
2017-06-08 05:19:45 +00:00
|
|
|
|
if (ModifierKeys == Keys.Control) // triggered via hotkey
|
2018-07-27 02:34:27 +00:00
|
|
|
|
{
|
2017-06-08 05:19:45 +00:00
|
|
|
|
if (DialogResult.Yes != WinFormsUtil.Prompt(MessageBoxButtons.YesNo, "Quit PKHeX?"))
|
|
|
|
|
return;
|
2018-07-27 02:34:27 +00:00
|
|
|
|
}
|
2018-05-12 15:13:39 +00:00
|
|
|
|
|
2017-06-08 05:19:45 +00:00
|
|
|
|
Close();
|
2014-12-13 22:48:34 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2019-10-08 01:40:09 +00:00
|
|
|
|
private void MainMenuAbout(object sender, EventArgs e) => ShowAboutDialog(0);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2019-10-08 01:40:09 +00:00
|
|
|
|
private static void ShowAboutDialog(int index = 0)
|
2019-02-23 22:58:48 +00:00
|
|
|
|
{
|
2019-10-08 01:40:09 +00:00
|
|
|
|
using var form = new About(index);
|
|
|
|
|
form.ShowDialog();
|
2019-02-23 22:58:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-03 04:22:53 +00:00
|
|
|
|
// Sub Menu Options
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void MainMenuBoxReport(object sender, EventArgs e)
|
2014-12-13 22:48:34 +00:00
|
|
|
|
{
|
2019-10-08 01:40:09 +00:00
|
|
|
|
if (this.OpenWindowExists<ReportGrid>())
|
2019-02-23 22:58:48 +00:00
|
|
|
|
return;
|
2018-05-12 15:13:39 +00:00
|
|
|
|
|
2019-02-23 22:58:48 +00:00
|
|
|
|
var report = new ReportGrid();
|
2017-06-18 01:37:19 +00:00
|
|
|
|
report.Show();
|
|
|
|
|
report.PopulateData(C_SAV.SAV.BoxData);
|
2014-12-13 22:48:34 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void MainMenuDatabase(object sender, EventArgs e)
|
2016-01-30 02:02:54 +00:00
|
|
|
|
{
|
2016-11-12 18:19:17 +00:00
|
|
|
|
if (ModifierKeys == Keys.Shift)
|
|
|
|
|
{
|
2019-10-08 01:40:09 +00:00
|
|
|
|
if (!this.OpenWindowExists<KChart>())
|
2017-05-23 04:55:05 +00:00
|
|
|
|
new KChart(C_SAV.SAV).Show();
|
2016-11-12 18:19:17 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-23 22:58:48 +00:00
|
|
|
|
if (!Directory.Exists(DatabasePath))
|
|
|
|
|
{
|
|
|
|
|
WinFormsUtil.Alert(MsgDatabase, string.Format(MsgDatabaseAdvice, DatabasePath));
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-01-30 02:02:54 +00:00
|
|
|
|
|
2019-10-08 01:40:09 +00:00
|
|
|
|
if (!this.OpenWindowExists<SAV_Database>())
|
2017-05-23 04:55:05 +00:00
|
|
|
|
new SAV_Database(PKME_Tabs, C_SAV).Show();
|
2016-01-30 02:02:54 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-11-14 03:23:16 +00:00
|
|
|
|
private void Menu_EncDatabase_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2019-10-08 01:40:09 +00:00
|
|
|
|
if (!this.OpenWindowExists<SAV_Encounters>())
|
2019-02-23 22:58:48 +00:00
|
|
|
|
new SAV_Encounters(PKME_Tabs).Show();
|
2018-11-14 03:23:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void MainMenuMysteryDB(object sender, EventArgs e)
|
2016-09-04 17:38:53 +00:00
|
|
|
|
{
|
2019-10-08 01:40:09 +00:00
|
|
|
|
if (!this.OpenWindowExists<SAV_MysteryGiftDB>())
|
2019-02-23 22:58:48 +00:00
|
|
|
|
new SAV_MysteryGiftDB(PKME_Tabs, C_SAV).Show();
|
2016-09-04 17:38:53 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-03-24 05:54:26 +00:00
|
|
|
|
private void MainMenuSettings(object sender, EventArgs e)
|
2014-12-13 22:48:34 +00:00
|
|
|
|
{
|
2019-01-16 08:27:29 +00:00
|
|
|
|
var settings = Settings.Default;
|
|
|
|
|
var ver = settings.DefaultSaveVersion; // check if it changes
|
2019-10-08 01:40:09 +00:00
|
|
|
|
using var form = new SettingsEditor(settings, nameof(settings.BAKPrompt), nameof(settings.ForceHaXOnLaunch));
|
|
|
|
|
form.ShowDialog();
|
2018-03-24 05:54:26 +00:00
|
|
|
|
|
2018-08-14 02:11:58 +00:00
|
|
|
|
// Reload text (if OT details hidden)
|
|
|
|
|
Text = GetProgramTitle(C_SAV.SAV);
|
2018-03-24 05:54:26 +00:00
|
|
|
|
// Update final settings
|
2018-08-20 01:22:07 +00:00
|
|
|
|
ReloadProgramSettings(Settings.Default);
|
2018-03-24 05:54:26 +00:00
|
|
|
|
|
2019-01-16 08:27:29 +00:00
|
|
|
|
if (ver != settings.DefaultSaveVersion) // changed by user
|
|
|
|
|
{
|
|
|
|
|
LoadBlankSaveFile(settings.DefaultSaveVersion);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 01:08:14 +00:00
|
|
|
|
PKME_Tabs_UpdatePreviewSprite(sender, e);
|
2018-03-24 05:54:26 +00:00
|
|
|
|
if (C_SAV.SAV.HasBox)
|
|
|
|
|
C_SAV.ReloadSlots();
|
2018-01-03 01:08:14 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-08-20 01:22:07 +00:00
|
|
|
|
private void ReloadProgramSettings(Settings settings)
|
|
|
|
|
{
|
2019-02-17 22:51:35 +00:00
|
|
|
|
Draw.LoadBrushes();
|
2018-08-20 01:22:07 +00:00
|
|
|
|
PKME_Tabs.Unicode = Unicode = settings.Unicode;
|
|
|
|
|
PKME_Tabs.UpdateUnicode(GenderSymbols);
|
2019-10-04 01:23:40 +00:00
|
|
|
|
SpriteName.AllowShinySprite = settings.ShinySprites;
|
2019-03-30 00:52:26 +00:00
|
|
|
|
SaveFile.SetUpdateDex = settings.SetUpdateDex ? PKMImportSetting.Update : PKMImportSetting.Skip;
|
|
|
|
|
SaveFile.SetUpdatePKM = settings.SetUpdatePKM ? PKMImportSetting.Update : PKMImportSetting.Skip;
|
|
|
|
|
C_SAV.ModifyPKM = PKME_Tabs.ModifyPKM = settings.SetUpdatePKM;
|
2018-08-20 01:22:07 +00:00
|
|
|
|
CommonEdits.ShowdownSetIVMarkings = settings.ApplyMarkings;
|
2020-03-19 20:47:25 +00:00
|
|
|
|
CommonEdits.ShowdownSetBehaviorNature = settings.ApplyNature;
|
2018-08-20 01:22:07 +00:00
|
|
|
|
C_SAV.FlagIllegal = settings.FlagIllegal;
|
2019-08-21 02:50:28 +00:00
|
|
|
|
C_SAV.M.Hover.GlowHover = settings.HoverSlotGlowEdges;
|
2018-08-20 01:22:07 +00:00
|
|
|
|
SpriteBuilder.ShowEggSpriteAsItem = settings.ShowEggSpriteAsHeldItem;
|
2019-01-22 04:06:02 +00:00
|
|
|
|
ParseSettings.AllowGen1Tradeback = settings.AllowGen1Tradeback;
|
2020-02-13 02:22:32 +00:00
|
|
|
|
ParseSettings.Gen8TransferTrackerNotPresent = settings.FlagMissingTracker ? Severity.Invalid : Severity.Fishy;
|
2018-08-20 01:22:07 +00:00
|
|
|
|
PKME_Tabs.HideSecretValues = C_SAV.HideSecretDetails = settings.HideSecretDetails;
|
2020-04-13 16:52:25 +00:00
|
|
|
|
SpriteUtil.UseLargeAlways = settings.UseLargeSprites;
|
2018-08-20 01:22:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void MainMenuBoxLoad(object sender, EventArgs e)
|
2015-10-25 01:16:22 +00:00
|
|
|
|
{
|
2020-10-18 18:02:39 +00:00
|
|
|
|
string? path = null;
|
2016-01-03 04:22:53 +00:00
|
|
|
|
if (Directory.Exists(DatabasePath))
|
2015-10-25 01:16:22 +00:00
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
var dr = WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgDatabaseLoad);
|
2017-05-13 19:51:33 +00:00
|
|
|
|
if (dr == DialogResult.Yes)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
path = DatabasePath;
|
2016-01-03 04:22:53 +00:00
|
|
|
|
}
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (C_SAV.LoadBoxes(out string result, path))
|
|
|
|
|
WinFormsUtil.Alert(result);
|
2016-01-03 04:22:53 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void MainMenuBoxDump(object sender, EventArgs e)
|
2016-01-03 04:22:53 +00:00
|
|
|
|
{
|
|
|
|
|
// Dump all of box content to files.
|
2020-10-18 18:02:39 +00:00
|
|
|
|
string? path = null;
|
2018-04-06 04:25:18 +00:00
|
|
|
|
DialogResult ld = WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgDatabaseExport);
|
2016-01-03 04:22:53 +00:00
|
|
|
|
if (ld == DialogResult.Yes)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
path = DatabasePath;
|
|
|
|
|
else if (ld != DialogResult.No)
|
|
|
|
|
return;
|
2015-10-25 01:16:22 +00:00
|
|
|
|
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (C_SAV.DumpBoxes(out string result, path))
|
2017-05-13 19:51:33 +00:00
|
|
|
|
WinFormsUtil.Alert(result);
|
2016-01-03 04:22:53 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void MainMenuBoxDumpSingle(object sender, EventArgs e)
|
2017-03-21 07:21:03 +00:00
|
|
|
|
{
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (C_SAV.DumpBox(out string result))
|
|
|
|
|
WinFormsUtil.Alert(result);
|
2017-03-21 07:21:03 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void MainMenuBatchEditor(object sender, EventArgs e)
|
2016-07-13 05:19:51 +00:00
|
|
|
|
{
|
2019-10-08 01:40:09 +00:00
|
|
|
|
using var form = new BatchEditor(PKME_Tabs.PreparePKM(), C_SAV.SAV);
|
|
|
|
|
form.ShowDialog();
|
2017-06-18 01:37:19 +00:00
|
|
|
|
C_SAV.SetPKMBoxes(); // refresh
|
|
|
|
|
C_SAV.UpdateBoxViewers();
|
2016-07-13 05:19:51 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-07-16 00:48:31 +00:00
|
|
|
|
private void MainMenuFolder(object sender, EventArgs e)
|
|
|
|
|
{
|
2019-10-26 19:58:55 +00:00
|
|
|
|
if (this.OpenWindowExists<SAV_FolderList>())
|
|
|
|
|
return;
|
2020-10-18 18:02:39 +00:00
|
|
|
|
var form = new SAV_FolderList(s => OpenSAV(SaveUtil.GetVariantSAV(s.FilePath!), s.FilePath!));
|
2019-10-26 19:58:55 +00:00
|
|
|
|
form.Show();
|
2018-07-16 00:48:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-03 04:22:53 +00:00
|
|
|
|
// Misc Options
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ClickShowdownImportPKM(object sender, EventArgs e)
|
2016-01-03 04:22:53 +00:00
|
|
|
|
{
|
|
|
|
|
if (!Clipboard.ContainsText())
|
2018-04-06 04:25:18 +00:00
|
|
|
|
{ WinFormsUtil.Alert(MsgClipboardFailRead); return; }
|
2016-01-03 04:22:53 +00:00
|
|
|
|
|
|
|
|
|
// Get Simulator Data
|
2020-04-12 20:05:29 +00:00
|
|
|
|
var Set = new ShowdownSet(Clipboard.GetText());
|
2016-01-03 04:22:53 +00:00
|
|
|
|
|
|
|
|
|
if (Set.Species < 0)
|
2018-04-06 04:25:18 +00:00
|
|
|
|
{ WinFormsUtil.Alert(MsgSimulatorFailClipboard); return; }
|
2016-01-03 04:22:53 +00:00
|
|
|
|
|
2020-04-12 20:05:29 +00:00
|
|
|
|
if (Set.Nickname.Length > C_SAV.SAV.NickLength)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
Set.Nickname = Set.Nickname.Substring(0, C_SAV.SAV.NickLength);
|
2016-09-20 02:20:55 +00:00
|
|
|
|
|
2018-04-06 04:25:18 +00:00
|
|
|
|
if (DialogResult.Yes != WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgSimulatorLoad, Set.Text))
|
2017-06-19 05:27:40 +00:00
|
|
|
|
return;
|
2016-01-03 04:22:53 +00:00
|
|
|
|
|
2018-05-12 19:28:48 +00:00
|
|
|
|
if (Set.InvalidLines.Count > 0)
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgSimulatorInvalid, string.Join(Environment.NewLine, Set.InvalidLines));
|
2016-09-04 06:14:05 +00:00
|
|
|
|
|
2016-01-03 04:22:53 +00:00
|
|
|
|
// Set Species & Nickname
|
2017-06-19 05:27:40 +00:00
|
|
|
|
PKME_Tabs.LoadShowdownSet(Set);
|
2016-01-03 04:22:53 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ClickShowdownExportPKM(object sender, EventArgs e)
|
2016-01-03 04:22:53 +00:00
|
|
|
|
{
|
2019-02-10 01:07:44 +00:00
|
|
|
|
if (!PKME_Tabs.EditsComplete)
|
2017-06-19 05:27:40 +00:00
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgSimulatorExportBadFields);
|
2017-06-19 05:27:40 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2016-01-03 04:22:53 +00:00
|
|
|
|
|
2018-05-19 02:33:11 +00:00
|
|
|
|
var pk = PreparePKM();
|
|
|
|
|
var text = ShowdownSet.GetShowdownText(pk);
|
2019-11-23 05:23:00 +00:00
|
|
|
|
bool success = WinFormsUtil.SetClipboardText(text);
|
2019-12-29 02:57:36 +00:00
|
|
|
|
if (!success || !Clipboard.GetText().Equals(text))
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgClipboardFailWrite, MsgSimulatorExportFail);
|
2017-06-19 05:27:40 +00:00
|
|
|
|
else
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgSimulatorExportSuccess, text);
|
2016-01-03 04:22:53 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-05-19 02:33:11 +00:00
|
|
|
|
private void ClickShowdownExportParty(object sender, EventArgs e) => C_SAV.ClickShowdownExportParty(sender, e);
|
2018-06-17 04:56:16 +00:00
|
|
|
|
private void ClickShowdownExportCurrentBox(object sender, EventArgs e) => C_SAV.ClickShowdownExportCurrentBox(sender, e);
|
2014-06-28 21:22:05 +00:00
|
|
|
|
|
2014-12-13 22:48:34 +00:00
|
|
|
|
// Main Menu Subfunctions
|
2019-02-23 22:58:48 +00:00
|
|
|
|
private void OpenQuick(string path)
|
2014-12-13 22:48:34 +00:00
|
|
|
|
{
|
2019-02-23 22:58:48 +00:00
|
|
|
|
if (!CanFocus)
|
2016-06-20 04:22:43 +00:00
|
|
|
|
{
|
|
|
|
|
SystemSounds.Asterisk.Play();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2019-02-23 22:58:48 +00:00
|
|
|
|
OpenFromPath(path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OpenFromPath(string path)
|
|
|
|
|
{
|
2018-05-15 00:30:56 +00:00
|
|
|
|
if (Plugins.Any(p => p.TryLoadFile(path)))
|
|
|
|
|
return; // handled by plugin
|
|
|
|
|
|
2014-12-13 22:48:34 +00:00
|
|
|
|
// detect if it is a folder (load into boxes or not)
|
|
|
|
|
if (Directory.Exists(path))
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{ C_SAV.LoadBoxes(out string _, path); return; }
|
2014-08-17 01:42:51 +00:00
|
|
|
|
|
2018-07-27 02:34:27 +00:00
|
|
|
|
var fi = new FileInfo(path);
|
2017-06-04 07:12:35 +00:00
|
|
|
|
if (!fi.Exists)
|
|
|
|
|
return;
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-08-18 06:23:44 +00:00
|
|
|
|
if (FileUtil.IsFileTooBig(fi.Length))
|
2018-07-27 02:34:27 +00:00
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Error(MsgFileSizeLarge + Environment.NewLine + string.Format(MsgFileSize, fi.Length), path);
|
2018-07-27 02:34:27 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2018-08-18 06:23:44 +00:00
|
|
|
|
if (FileUtil.IsFileTooSmall(fi.Length))
|
2014-12-13 22:48:34 +00:00
|
|
|
|
{
|
2018-07-27 02:34:27 +00:00
|
|
|
|
WinFormsUtil.Error(MsgFileSizeSmall + Environment.NewLine + string.Format(MsgFileSize, fi.Length), path);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
byte[] input; try { input = File.ReadAllBytes(path); }
|
2020-09-09 19:47:24 +00:00
|
|
|
|
#pragma warning disable CA1031 // Do not catch general exception types
|
2018-07-27 02:34:27 +00:00
|
|
|
|
catch (Exception e) { WinFormsUtil.Error(MsgFileInUse + path, e); return; }
|
2020-09-09 19:47:24 +00:00
|
|
|
|
#pragma warning restore CA1031 // Do not catch general exception types
|
2014-12-13 22:48:34 +00:00
|
|
|
|
|
2019-02-23 22:58:48 +00:00
|
|
|
|
string ext = fi.Extension;
|
2018-07-27 02:34:27 +00:00
|
|
|
|
#if DEBUG
|
2017-12-22 06:55:33 +00:00
|
|
|
|
OpenFile(input, path, ext);
|
2018-07-27 02:34:27 +00:00
|
|
|
|
#else
|
2017-12-22 06:55:33 +00:00
|
|
|
|
try { OpenFile(input, path, ext); }
|
2020-09-09 19:47:24 +00:00
|
|
|
|
#pragma warning disable CA1031 // Do not catch general exception types
|
2018-04-06 12:55:46 +00:00
|
|
|
|
catch (Exception e) { WinFormsUtil.Error(MsgFileLoadFail + "\nPath: " + path, e); }
|
2020-09-09 19:47:24 +00:00
|
|
|
|
#pragma warning restore CA1031 // Do not catch general exception types
|
2018-07-27 02:34:27 +00:00
|
|
|
|
#endif
|
2014-12-13 22:48:34 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-12-22 06:55:33 +00:00
|
|
|
|
private void OpenFile(byte[] input, string path, string ext)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2018-08-18 06:23:44 +00:00
|
|
|
|
var obj = FileUtil.GetSupportedFile(input, ext, C_SAV.SAV);
|
|
|
|
|
if (obj != null && LoadFile(obj, path))
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2019-05-13 22:58:36 +00:00
|
|
|
|
bool isSAV = WinFormsUtil.IsFileExtensionSAV(path);
|
|
|
|
|
var msg = isSAV ? MsgFileUnsupported : MsgPKMUnsupported;
|
|
|
|
|
WinFormsUtil.Error(msg,
|
2018-04-06 04:25:18 +00:00
|
|
|
|
$"{MsgFileLoad}{Environment.NewLine}{path}",
|
|
|
|
|
$"{string.Format(MsgFileSize, input.Length)}{Environment.NewLine}{input.Length} bytes (0x{input.Length:X4})");
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2020-10-18 18:02:39 +00:00
|
|
|
|
private bool LoadFile(object? input, string path)
|
2014-12-13 22:48:34 +00:00
|
|
|
|
{
|
2018-08-18 06:23:44 +00:00
|
|
|
|
if (input == null)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return false;
|
2014-08-15 04:27:53 +00:00
|
|
|
|
|
2018-08-18 06:23:44 +00:00
|
|
|
|
switch (input)
|
2016-09-24 01:47:03 +00:00
|
|
|
|
{
|
2018-08-18 06:23:44 +00:00
|
|
|
|
case PKM pk: return OpenPKM(pk);
|
|
|
|
|
case SaveFile s: return OpenSAV(s, path);
|
|
|
|
|
case BattleVideo b: return OpenBattleVideo(b);
|
|
|
|
|
case MysteryGift g: return OpenMysteryGift(g, path);
|
|
|
|
|
case IEnumerable<byte[]> pkms: return OpenPCBoxBin(pkms);
|
2020-09-26 18:33:21 +00:00
|
|
|
|
case IEncounterable enc: return OpenPKM(enc.ConvertToPKM(C_SAV.SAV));
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2018-08-18 06:23:44 +00:00
|
|
|
|
case SAV3GCMemoryCard gc:
|
|
|
|
|
if (!CheckGCMemoryCard(gc, path))
|
|
|
|
|
return true;
|
|
|
|
|
var mcsav = SaveUtil.GetVariantSAV(gc);
|
|
|
|
|
return OpenSAV(mcsav, path);
|
|
|
|
|
}
|
|
|
|
|
return false;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-08-18 06:23:44 +00:00
|
|
|
|
private bool OpenPKM(PKM pk)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2020-10-18 18:02:39 +00:00
|
|
|
|
var tmp = PKMConverter.ConvertToType(pk, C_SAV.SAV.PKMType, out string c);
|
2018-08-18 06:23:44 +00:00
|
|
|
|
Debug.WriteLine(c);
|
2020-10-18 18:02:39 +00:00
|
|
|
|
if (tmp == null)
|
2018-12-20 06:10:32 +00:00
|
|
|
|
return false;
|
2020-10-18 18:02:39 +00:00
|
|
|
|
PKME_Tabs.PopulateFields(tmp);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-08-18 06:23:44 +00:00
|
|
|
|
private bool OpenBattleVideo(BattleVideo b)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
bool result = C_SAV.OpenBattleVideo(b, out string c);
|
|
|
|
|
WinFormsUtil.Alert(c);
|
2017-07-02 02:43:51 +00:00
|
|
|
|
Debug.WriteLine(c);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return result;
|
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-08-18 06:23:44 +00:00
|
|
|
|
private bool OpenMysteryGift(MysteryGift tg, string path)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
if (!tg.IsPokémon)
|
2015-12-27 00:05:26 +00:00
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgPKMMysteryGiftFail, path);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2016-10-12 02:11:24 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
var temp = tg.ConvertToPKM(C_SAV.SAV);
|
2020-10-18 18:02:39 +00:00
|
|
|
|
var pk = PKMConverter.ConvertToType(temp, C_SAV.SAV.PKMType, out string c);
|
2016-10-12 02:11:24 +00:00
|
|
|
|
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (pk == null)
|
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgPKMConvertFail, c);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return true;
|
2015-12-27 00:05:26 +00:00
|
|
|
|
}
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
PKME_Tabs.PopulateFields(pk);
|
2017-07-02 02:43:51 +00:00
|
|
|
|
Debug.WriteLine(c);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return true;
|
2014-12-13 22:48:34 +00:00
|
|
|
|
}
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2018-08-18 06:23:44 +00:00
|
|
|
|
private bool OpenPCBoxBin(IEnumerable<byte[]> pkms)
|
2014-12-31 06:18:41 +00:00
|
|
|
|
{
|
2018-08-18 06:23:44 +00:00
|
|
|
|
if (!C_SAV.OpenPCBoxBin(pkms.SelectMany(z => z).ToArray(), out string c))
|
2015-03-11 01:44:51 +00:00
|
|
|
|
{
|
2018-08-18 06:23:44 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgFileLoadIncompatible, c);
|
|
|
|
|
return true;
|
2014-12-31 06:18:41 +00:00
|
|
|
|
}
|
2017-02-09 08:44:38 +00:00
|
|
|
|
|
2018-08-18 06:23:44 +00:00
|
|
|
|
WinFormsUtil.Alert(c);
|
2017-02-09 08:44:38 +00:00
|
|
|
|
return true;
|
2014-12-31 06:18:41 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-04-02 20:42:42 +00:00
|
|
|
|
private static GameVersion SelectMemoryCardSaveGame(SAV3GCMemoryCard MC)
|
2017-04-02 14:53:46 +00:00
|
|
|
|
{
|
|
|
|
|
if (MC.SaveGameCount == 1)
|
|
|
|
|
return MC.SelectedGameVersion;
|
|
|
|
|
|
2017-04-02 20:42:42 +00:00
|
|
|
|
var games = new List<ComboItem>();
|
2019-06-02 02:12:41 +00:00
|
|
|
|
if (MC.HasCOLO) games.Add(new ComboItem(MsgGameColosseum, (int)GameVersion.COLO));
|
|
|
|
|
if (MC.HasXD) games.Add(new ComboItem(MsgGameXD, (int)GameVersion.XD));
|
|
|
|
|
if (MC.HasRSBOX) games.Add(new ComboItem(MsgGameRSBOX, (int)GameVersion.RSBOX));
|
2017-04-02 14:53:46 +00:00
|
|
|
|
|
2019-02-12 06:39:12 +00:00
|
|
|
|
var dialog = new SAV_GameSelect(games, MsgFileLoadSaveMultiple, MsgFileLoadSaveSelectGame);
|
2017-04-02 20:42:42 +00:00
|
|
|
|
dialog.ShowDialog();
|
|
|
|
|
return dialog.Result;
|
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-08-18 06:23:44 +00:00
|
|
|
|
private static bool CheckGCMemoryCard(SAV3GCMemoryCard MC, string path)
|
2017-04-02 14:53:46 +00:00
|
|
|
|
{
|
2018-08-18 06:23:44 +00:00
|
|
|
|
var state = MC.GetMemoryCardState();
|
|
|
|
|
switch (state)
|
2017-04-02 14:53:46 +00:00
|
|
|
|
{
|
2019-01-23 03:32:22 +00:00
|
|
|
|
default: { WinFormsUtil.Error(!SaveUtil.IsSizeValid(MC.Data.Length) ? MsgFileGameCubeBad : MsgFileLoadSaveLoadFail, path); return false; }
|
2018-08-18 06:23:44 +00:00
|
|
|
|
case GCMemoryCardState.NoPkmSaveGame: { WinFormsUtil.Error(MsgFileGameCubeNoGames, path); return false; }
|
2017-04-02 20:42:42 +00:00
|
|
|
|
case GCMemoryCardState.DuplicateCOLO:
|
|
|
|
|
case GCMemoryCardState.DuplicateXD:
|
2018-08-18 06:23:44 +00:00
|
|
|
|
case GCMemoryCardState.DuplicateRSBOX: { WinFormsUtil.Error(MsgFileGameCubeDuplicate, path); return false; }
|
2017-04-02 14:53:46 +00:00
|
|
|
|
case GCMemoryCardState.MultipleSaveGame:
|
|
|
|
|
{
|
|
|
|
|
GameVersion Game = SelectMemoryCardSaveGame(MC);
|
2017-04-02 20:42:42 +00:00
|
|
|
|
if (Game == GameVersion.Invalid) //Cancel
|
2018-08-18 06:23:44 +00:00
|
|
|
|
return false;
|
2017-04-02 14:53:46 +00:00
|
|
|
|
MC.SelectSaveGame(Game);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2018-08-18 06:23:44 +00:00
|
|
|
|
case GCMemoryCardState.SaveGameCOLO: MC.SelectSaveGame(GameVersion.COLO); break;
|
|
|
|
|
case GCMemoryCardState.SaveGameXD: MC.SelectSaveGame(GameVersion.XD); break;
|
|
|
|
|
case GCMemoryCardState.SaveGameRSBOX: MC.SelectSaveGame(GameVersion.RSBOX); break;
|
2017-04-02 14:53:46 +00:00
|
|
|
|
}
|
2018-08-18 06:23:44 +00:00
|
|
|
|
return true;
|
2017-04-02 14:53:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-18 05:00:06 +00:00
|
|
|
|
private static void StoreLegalSaveGameData(SaveFile sav)
|
Encounter Type fix and detection of pokemon that should have evolve on trade (#1105)
* Detect encounter trades that evolve on trade and have not been evolved
Detect generation 1 pokemon with special catch rates : krabby trade and Pokemon Stadium
Detect generation 1 pokemon that evolve on trade and have been traded but not evolved
Detect pokemon with tradeback status any but with only encounters from the other GB generation, that means they are WasTradeback
Detect pokemon with moves from the other GB generation, change tradebackstatus to WasTradeback
* Fix dppt surfing and fishing encounter type, is is surfing because the battle background is the same as other surfingfishing encounters
Fix headbutt encounter type, the encounter type depends on the battle background used when battle a pokemon, for headbutt it changes with the player tile, is the player is in a city it will be building encounter, in a grass tile tall grass, in water it is surfingfishing and cave inside a cave. Some locations have more than one possible encounter type, for example routes with trees near the grass, near the water and near non-combat tiles.
Also added slot type headbutt special for the special trees, those trees are all in routes and are only adjacent to non-combat tiles
* Fix encounter type for missing areas with multiple grass encounters types: Mt Coronet, Mt Silver Cave and Stark Mountain (Issue # 1095)
* Fixes and typos
* Check for non-japanese e-reader pokemon, is unreleased
2017-05-01 15:07:20 +00:00
|
|
|
|
{
|
2018-12-19 01:15:35 +00:00
|
|
|
|
if (sav is SAV3 sav3)
|
2020-07-19 03:51:55 +00:00
|
|
|
|
EReaderBerrySettings.LoadFrom(sav3);
|
Encounter Type fix and detection of pokemon that should have evolve on trade (#1105)
* Detect encounter trades that evolve on trade and have not been evolved
Detect generation 1 pokemon with special catch rates : krabby trade and Pokemon Stadium
Detect generation 1 pokemon that evolve on trade and have been traded but not evolved
Detect pokemon with tradeback status any but with only encounters from the other GB generation, that means they are WasTradeback
Detect pokemon with moves from the other GB generation, change tradebackstatus to WasTradeback
* Fix dppt surfing and fishing encounter type, is is surfing because the battle background is the same as other surfingfishing encounters
Fix headbutt encounter type, the encounter type depends on the battle background used when battle a pokemon, for headbutt it changes with the player tile, is the player is in a city it will be building encounter, in a grass tile tall grass, in water it is surfingfishing and cave inside a cave. Some locations have more than one possible encounter type, for example routes with trees near the grass, near the water and near non-combat tiles.
Also added slot type headbutt special for the special trees, those trees are all in routes and are only adjacent to non-combat tiles
* Fix encounter type for missing areas with multiple grass encounters types: Mt Coronet, Mt Silver Cave and Stark Mountain (Issue # 1095)
* Fixes and typos
* Check for non-japanese e-reader pokemon, is unreleased
2017-05-01 15:07:20 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2020-10-18 18:02:39 +00:00
|
|
|
|
private bool OpenSAV(SaveFile? sav, string path)
|
2014-12-13 22:48:34 +00:00
|
|
|
|
{
|
2016-06-28 06:03:57 +00:00
|
|
|
|
if (sav == null || sav.Version == GameVersion.Invalid)
|
2019-11-16 05:33:23 +00:00
|
|
|
|
{
|
2020-05-24 18:03:23 +00:00
|
|
|
|
WinFormsUtil.Error(MsgFileLoadSaveLoadFail, path);
|
|
|
|
|
return true;
|
2019-11-16 05:33:23 +00:00
|
|
|
|
}
|
2016-10-12 02:11:24 +00:00
|
|
|
|
|
2018-01-28 08:03:49 +00:00
|
|
|
|
sav.SetFileInfo(path);
|
|
|
|
|
if (!SanityCheckSAV(ref sav))
|
2018-08-18 06:23:44 +00:00
|
|
|
|
return true;
|
2019-12-21 23:33:20 +00:00
|
|
|
|
|
2020-10-18 18:02:39 +00:00
|
|
|
|
if (C_SAV.SAV.Edited && Settings.Default.ModifyUnset)
|
2020-05-24 18:03:23 +00:00
|
|
|
|
{
|
|
|
|
|
var prompt = WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgProgramCloseUnsaved, MsgProgramSaveFileConfirm);
|
|
|
|
|
if (prompt != DialogResult.Yes)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-21 23:33:20 +00:00
|
|
|
|
PKME_Tabs.Focus(); // flush any pending changes
|
2017-05-23 04:55:05 +00:00
|
|
|
|
StoreLegalSaveGameData(sav);
|
2020-01-06 05:51:02 +00:00
|
|
|
|
PKMConverter.SetPrimaryTrainer(sav);
|
2019-11-16 01:34:18 +00:00
|
|
|
|
SpriteUtil.Initialize(sav); // refresh sprite generator
|
|
|
|
|
dragout.Size = new Size(SpriteUtil.Spriter.Width, SpriteUtil.Spriter.Height);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
|
|
|
|
// clean fields
|
2017-06-18 01:37:19 +00:00
|
|
|
|
Menu_ExportSAV.Enabled = sav.Exportable;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
|
|
|
|
// No changes made yet
|
|
|
|
|
Menu_Undo.Enabled = false;
|
|
|
|
|
Menu_Redo.Enabled = false;
|
|
|
|
|
|
2019-06-22 17:50:32 +00:00
|
|
|
|
GameInfo.FilteredSources = new FilteredGameDataSource(sav, GameInfo.Sources, HaX);
|
2017-06-18 01:37:19 +00:00
|
|
|
|
ResetSAVPKMEditors(sav);
|
2018-12-20 06:10:32 +00:00
|
|
|
|
C_SAV.M.Reset();
|
2017-06-18 01:37:19 +00:00
|
|
|
|
|
2018-01-28 08:03:49 +00:00
|
|
|
|
Text = GetProgramTitle(sav);
|
2017-06-18 01:37:19 +00:00
|
|
|
|
TryBackupExportCheck(sav, path);
|
|
|
|
|
|
2018-06-17 04:56:16 +00:00
|
|
|
|
Menu_ShowdownExportParty.Visible = sav.HasParty;
|
|
|
|
|
Menu_ShowdownExportCurrentBox.Visible = sav.HasBox;
|
|
|
|
|
|
2020-01-03 23:29:12 +00:00
|
|
|
|
if (Settings.Default.PlaySoundSAVLoad)
|
|
|
|
|
SystemSounds.Asterisk.Play();
|
2018-08-18 06:23:44 +00:00
|
|
|
|
return true;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ResetSAVPKMEditors(SaveFile sav)
|
|
|
|
|
{
|
2020-10-18 18:02:39 +00:00
|
|
|
|
bool WindowToggleRequired = C_SAV.SAV.Generation < 3 && sav.Generation >= 3; // version combobox refresh hack
|
2019-11-16 01:34:18 +00:00
|
|
|
|
C_SAV.SetEditEnvironment(new SaveDataEditor<PictureBox>(sav, PKME_Tabs));
|
2017-06-18 01:37:19 +00:00
|
|
|
|
|
2019-02-15 08:50:23 +00:00
|
|
|
|
var pk = sav.LoadTemplate(TemplatePath);
|
2018-12-20 06:10:32 +00:00
|
|
|
|
var isBlank = pk.Data.SequenceEqual(sav.BlankPKM.Data);
|
2019-05-30 05:40:39 +00:00
|
|
|
|
if (isBlank)
|
|
|
|
|
EditPKMUtil.TemplateFields(pk, sav);
|
2020-10-18 18:02:39 +00:00
|
|
|
|
bool init = PKME_Tabs.IsInitialized;
|
2018-12-20 06:10:32 +00:00
|
|
|
|
PKME_Tabs.CurrentPKM = pk;
|
2020-10-18 18:02:39 +00:00
|
|
|
|
if (!init)
|
2018-12-20 06:10:32 +00:00
|
|
|
|
{
|
|
|
|
|
PKME_Tabs.InitializeBinding();
|
2020-10-18 18:02:39 +00:00
|
|
|
|
PKME_Tabs.IsInitialized = true;
|
2018-12-20 06:10:32 +00:00
|
|
|
|
PKME_Tabs.SetPKMFormatMode(sav.Generation, pk);
|
|
|
|
|
PKME_Tabs.ChangeLanguage(sav, pk); // populates fields
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-12-28 05:28:47 +00:00
|
|
|
|
PKME_Tabs.SetPKMFormatMode(sav.Generation, pk);
|
2018-12-20 06:10:32 +00:00
|
|
|
|
PKME_Tabs.PopulateFields(pk);
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-19 05:27:40 +00:00
|
|
|
|
// Initialize Overall Info
|
2020-10-18 18:02:39 +00:00
|
|
|
|
Menu_LoadBoxes.Enabled = Menu_DumpBoxes.Enabled = Menu_DumpBox.Enabled = Menu_Report.Enabled = C_SAV.SAV!.HasBox;
|
2017-06-19 05:27:40 +00:00
|
|
|
|
|
2017-05-23 04:55:05 +00:00
|
|
|
|
// Initialize Subviews
|
2017-06-19 05:27:40 +00:00
|
|
|
|
bool WindowTranslationRequired = false;
|
|
|
|
|
WindowTranslationRequired |= PKME_Tabs.ToggleInterface(sav, pk);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
WindowTranslationRequired |= C_SAV.ToggleInterface();
|
|
|
|
|
if (WindowTranslationRequired) // force update -- re-added controls may be untranslated
|
2017-06-18 01:37:19 +00:00
|
|
|
|
WinFormsUtil.TranslateInterface(this, CurrentLanguage);
|
2017-06-19 05:27:40 +00:00
|
|
|
|
|
2018-12-20 06:10:32 +00:00
|
|
|
|
PKME_Tabs.PopulateFields(pk);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (WindowToggleRequired) // Version combobox selectedvalue needs a little help, only updates once it is visible
|
|
|
|
|
PKME_Tabs.FlickerInterface();
|
2018-05-13 19:49:26 +00:00
|
|
|
|
foreach (var p in Plugins)
|
|
|
|
|
p.NotifySaveLoaded();
|
2017-06-18 01:37:19 +00:00
|
|
|
|
sav.Edited = false;
|
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-05-07 05:24:25 +00:00
|
|
|
|
private static string GetProgramTitle()
|
2017-06-18 01:37:19 +00:00
|
|
|
|
{
|
2018-12-30 08:05:19 +00:00
|
|
|
|
#if DEBUG
|
2020-10-18 18:02:39 +00:00
|
|
|
|
var date = File.GetLastWriteTime(Assembly.GetEntryAssembly()!.Location);
|
2018-12-30 08:05:19 +00:00
|
|
|
|
string version = $"d-{date:yyyyMMdd}";
|
|
|
|
|
#else
|
2018-12-15 17:21:36 +00:00
|
|
|
|
var ver = CurrentProgramVersion;
|
|
|
|
|
string version = $"{2000+ver.Major:00}{ver.Minor:00}{ver.Build:00}";
|
|
|
|
|
#endif
|
2018-12-11 04:36:18 +00:00
|
|
|
|
return $"PKH{(HaX ? "a" : "e")}X ({version})";
|
2018-05-07 05:24:25 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-05-07 05:24:25 +00:00
|
|
|
|
private static string GetProgramTitle(SaveFile sav)
|
|
|
|
|
{
|
|
|
|
|
string title = GetProgramTitle() + $" - {sav.GetType().Name}: ";
|
2020-09-26 06:41:20 +00:00
|
|
|
|
if (sav is ISaveFileRevision rev)
|
|
|
|
|
title = title.Insert(title.Length - 2, rev.SaveRevisionString);
|
2018-12-22 21:16:16 +00:00
|
|
|
|
var ver = GameInfo.GetVersionName(sav.Version);
|
2018-08-16 04:15:06 +00:00
|
|
|
|
if (Settings.Default.HideSAVDetails)
|
2018-12-22 21:16:16 +00:00
|
|
|
|
return title + $"[{ver}]";
|
2017-12-22 06:55:33 +00:00
|
|
|
|
if (!sav.Exportable) // Blank save file
|
2018-12-22 21:16:16 +00:00
|
|
|
|
return title + $"{sav.FileName} [{sav.OT} ({ver})]";
|
2018-05-12 19:28:48 +00:00
|
|
|
|
return title + Path.GetFileNameWithoutExtension(Util.CleanFileName(sav.BAKName)); // more descriptive
|
2017-05-23 04:55:05 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private static bool TryBackupExportCheck(SaveFile sav, string path)
|
|
|
|
|
{
|
2018-12-27 01:31:23 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(path) || !Settings.Default.BAKEnabled) // not actual save
|
2017-06-18 01:37:19 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// If backup folder exists, save a backup.
|
|
|
|
|
string backupName = Path.Combine(BackupPath, Util.CleanFileName(sav.BAKName));
|
|
|
|
|
if (sav.Exportable && Directory.Exists(BackupPath) && !File.Exists(backupName))
|
|
|
|
|
File.WriteAllBytes(backupName, sav.BAK);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2020-09-19 05:11:13 +00:00
|
|
|
|
if (!FileUtil.IsFileLocked(path))
|
2017-06-18 01:37:19 +00:00
|
|
|
|
return true;
|
|
|
|
|
|
2018-07-27 02:34:27 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgFileWriteProtected + Environment.NewLine + path, MsgFileWriteProtectedAdvice);
|
2017-06-18 01:37:19 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-01-28 08:03:49 +00:00
|
|
|
|
private static bool SanityCheckSAV(ref SaveFile sav)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
2019-02-02 07:08:03 +00:00
|
|
|
|
ParseSettings.InitFromSaveFileData(sav); // physical GB, no longer used in logic
|
2017-03-18 05:27:59 +00:00
|
|
|
|
|
2019-02-17 23:08:14 +00:00
|
|
|
|
if (sav.Exportable && sav is SAV3 s3)
|
2017-04-02 20:42:42 +00:00
|
|
|
|
{
|
2018-12-28 04:24:24 +00:00
|
|
|
|
if (s3.IndeterminateGame || ModifierKeys == Keys.Control)
|
|
|
|
|
{
|
|
|
|
|
var g = new[] { GameVersion.R, GameVersion.S, GameVersion.E, GameVersion.FR, GameVersion.LG };
|
|
|
|
|
var games = g.Select(z => GameInfo.VersionDataSource.First(v => v.Value == (int)z));
|
2019-02-12 06:39:12 +00:00
|
|
|
|
var msg = string.Format(MsgFileLoadVersionDetect, $"3 ({s3.Version})");
|
2019-10-08 01:40:09 +00:00
|
|
|
|
using var dialog = new SAV_GameSelect(games, msg, MsgFileLoadSaveSelectVersion);
|
2018-12-28 04:24:24 +00:00
|
|
|
|
dialog.ShowDialog();
|
|
|
|
|
|
|
|
|
|
sav = SaveUtil.GetG3SaveOverride(sav, dialog.Result);
|
|
|
|
|
if (sav.Version == GameVersion.FRLG)
|
2019-09-03 02:30:58 +00:00
|
|
|
|
{
|
|
|
|
|
bool result = s3.ResetPersonal(dialog.Result);
|
|
|
|
|
if (!result)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2018-12-28 04:24:24 +00:00
|
|
|
|
}
|
2019-02-17 23:08:14 +00:00
|
|
|
|
else if (sav.Version == GameVersion.FRLG) // IndeterminateSubVersion
|
2018-12-28 04:24:24 +00:00
|
|
|
|
{
|
|
|
|
|
string fr = GameInfo.GetVersionName(GameVersion.FR);
|
|
|
|
|
string lg = GameInfo.GetVersionName(GameVersion.LG);
|
2019-02-12 06:39:12 +00:00
|
|
|
|
string dual = "{1}/{2} " + MsgFileLoadVersionDetect;
|
2018-12-28 04:24:24 +00:00
|
|
|
|
var g = new[] { GameVersion.FR, GameVersion.LG };
|
|
|
|
|
var games = g.Select(z => GameInfo.VersionDataSource.First(v => v.Value == (int)z));
|
2019-02-12 06:39:12 +00:00
|
|
|
|
var msg = string.Format(dual, "3", fr, lg);
|
2019-10-08 01:40:09 +00:00
|
|
|
|
using var dialog = new SAV_GameSelect(games, msg, MsgFileLoadSaveSelectVersion);
|
2018-12-28 04:24:24 +00:00
|
|
|
|
dialog.ShowDialog();
|
2019-09-03 02:30:58 +00:00
|
|
|
|
bool result = s3.ResetPersonal(dialog.Result);
|
|
|
|
|
if (!result)
|
2018-12-28 04:24:24 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2017-04-02 20:42:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-23 04:55:05 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2016-10-12 02:11:24 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public static void SetCountrySubRegion(ComboBox CB, string type)
|
2017-05-23 04:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
int index = CB.SelectedIndex;
|
2018-09-29 19:22:13 +00:00
|
|
|
|
string cl = GameInfo.CurrentLanguage;
|
2019-02-15 19:47:35 +00:00
|
|
|
|
CB.DataSource = Util.GetCountryRegionList(type, cl);
|
2017-03-19 23:19:59 +00:00
|
|
|
|
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (index > 0 && index < CB.Items.Count)
|
|
|
|
|
CB.SelectedIndex = index;
|
2016-11-13 21:11:53 +00:00
|
|
|
|
}
|
2014-12-13 22:48:34 +00:00
|
|
|
|
|
|
|
|
|
// Language Translation
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ChangeMainLanguage(object sender, EventArgs e)
|
2014-06-28 21:22:05 +00:00
|
|
|
|
{
|
2017-03-24 18:18:14 +00:00
|
|
|
|
if (CB_MainLanguage.SelectedIndex < 8)
|
2019-06-22 17:50:32 +00:00
|
|
|
|
CurrentLanguage = GameLanguage.Language2Char(CB_MainLanguage.SelectedIndex);
|
2017-03-24 18:18:14 +00:00
|
|
|
|
|
|
|
|
|
// Set the culture (makes it easy to pass language to other forms)
|
2017-06-18 01:37:19 +00:00
|
|
|
|
Settings.Default.Language = CurrentLanguage;
|
|
|
|
|
Thread.CurrentThread.CurrentCulture = new CultureInfo(CurrentLanguage.Substring(0, 2));
|
2017-03-24 18:18:14 +00:00
|
|
|
|
Thread.CurrentThread.CurrentUICulture = Thread.CurrentThread.CurrentCulture;
|
|
|
|
|
|
2014-12-13 22:48:34 +00:00
|
|
|
|
Menu_Options.DropDown.Close();
|
2017-06-19 05:27:40 +00:00
|
|
|
|
|
2020-01-26 00:27:16 +00:00
|
|
|
|
LocalizeUtil.InitializeStrings(CurrentLanguage, C_SAV.SAV, HaX);
|
2018-12-22 21:16:16 +00:00
|
|
|
|
WinFormsUtil.TranslateInterface(this, CurrentLanguage); // Translate the UI to language.
|
2020-10-18 18:02:39 +00:00
|
|
|
|
if (!(C_SAV.SAV is FakeSaveFile))
|
2018-12-20 06:10:32 +00:00
|
|
|
|
{
|
2019-02-10 01:07:44 +00:00
|
|
|
|
var pk = PKME_Tabs.CurrentPKM.Clone();
|
|
|
|
|
var sav = C_SAV.SAV;
|
|
|
|
|
|
|
|
|
|
PKME_Tabs.ChangeLanguage(sav, pk);
|
|
|
|
|
Text = GetProgramTitle(sav);
|
2018-12-20 06:10:32 +00:00
|
|
|
|
}
|
2014-12-13 22:48:34 +00:00
|
|
|
|
}
|
|
|
|
|
#endregion
|
2014-06-28 21:22:05 +00:00
|
|
|
|
|
2014-12-13 22:48:34 +00:00
|
|
|
|
#region //// PKX WINDOW FUNCTIONS ////
|
2017-03-12 23:36:23 +00:00
|
|
|
|
private bool QR6Notified;
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ClickQR(object sender, EventArgs e)
|
2015-02-25 04:10:47 +00:00
|
|
|
|
{
|
2015-02-27 08:40:57 +00:00
|
|
|
|
if (ModifierKeys == Keys.Alt)
|
2017-06-22 04:57:59 +00:00
|
|
|
|
{
|
2017-07-03 04:27:22 +00:00
|
|
|
|
string url = Clipboard.GetText();
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(url))
|
|
|
|
|
{
|
2018-12-27 01:31:23 +00:00
|
|
|
|
if (url.StartsWith("http") && !url.Contains('\n')) // qr payload
|
2017-07-03 04:27:22 +00:00
|
|
|
|
ImportQRToTabs(url);
|
2018-12-27 01:31:23 +00:00
|
|
|
|
else
|
|
|
|
|
ClickShowdownImportPKM(sender, e);
|
2017-07-03 04:27:22 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2017-06-22 04:57:59 +00:00
|
|
|
|
}
|
2017-07-03 04:27:22 +00:00
|
|
|
|
ExportQRFromTabs();
|
2017-06-18 01:37:19 +00:00
|
|
|
|
}
|
2015-03-14 02:59:51 +00:00
|
|
|
|
|
2017-07-03 04:27:22 +00:00
|
|
|
|
private void ImportQRToTabs(string url)
|
2017-06-18 01:37:19 +00:00
|
|
|
|
{
|
2019-09-29 16:47:06 +00:00
|
|
|
|
var msg = QRDecode.GetQRData(url, out var input);
|
|
|
|
|
if (msg != 0)
|
|
|
|
|
{
|
|
|
|
|
WinFormsUtil.Alert(msg.ConvertMsg());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-02 07:08:03 +00:00
|
|
|
|
if (input.Length == 0)
|
2017-06-18 01:37:19 +00:00
|
|
|
|
return;
|
2016-10-12 05:59:19 +00:00
|
|
|
|
|
2017-10-23 22:49:52 +00:00
|
|
|
|
var sav = C_SAV.SAV;
|
2020-10-18 18:02:39 +00:00
|
|
|
|
if (FileUtil.TryGetPKM(input, out var pk, sav.Generation.ToString(), sav) && pk != null)
|
2018-08-18 06:23:44 +00:00
|
|
|
|
{
|
|
|
|
|
OpenPKM(pk);
|
2017-06-18 01:37:19 +00:00
|
|
|
|
return;
|
2018-08-18 06:23:44 +00:00
|
|
|
|
}
|
2020-10-18 18:02:39 +00:00
|
|
|
|
if (FileUtil.TryGetMysteryGift(input, out var mg, url) && mg != null)
|
2018-08-18 06:23:44 +00:00
|
|
|
|
{
|
|
|
|
|
OpenMysteryGift(mg, url);
|
2017-06-18 01:37:19 +00:00
|
|
|
|
return;
|
2018-08-18 06:23:44 +00:00
|
|
|
|
}
|
2017-10-23 22:49:52 +00:00
|
|
|
|
|
2018-04-06 04:25:18 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgQRDecodeFail, string.Format(MsgQRDecodeSize, input.Length));
|
2017-06-18 01:37:19 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 20:02:02 +00:00
|
|
|
|
private void ExportQRFromTabs()
|
2017-06-18 01:37:19 +00:00
|
|
|
|
{
|
2019-02-10 01:07:44 +00:00
|
|
|
|
if (!PKME_Tabs.EditsComplete)
|
2017-06-18 01:37:19 +00:00
|
|
|
|
return;
|
2015-03-14 02:59:51 +00:00
|
|
|
|
|
2019-09-29 16:47:06 +00:00
|
|
|
|
PKM pk = PreparePKM();
|
|
|
|
|
if (pk.Format == 6 && !QR6Notified) // hint that the user should not be using QR6 injection
|
2017-06-18 01:37:19 +00:00
|
|
|
|
{
|
2019-09-29 16:47:06 +00:00
|
|
|
|
WinFormsUtil.Alert(MsgQRDeprecated, MsgQRAlternative);
|
|
|
|
|
QR6Notified = true;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
}
|
2015-02-27 08:40:57 +00:00
|
|
|
|
|
2019-09-29 16:47:06 +00:00
|
|
|
|
var qr = QREncode.GenerateQRCode(pk);
|
2017-02-05 20:55:17 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
var sprite = dragout.Image;
|
2019-02-15 19:47:35 +00:00
|
|
|
|
var la = new LegalityAnalysis(pk, C_SAV.SAV.Personal);
|
|
|
|
|
if (la.Parsed && pk.Species != 0)
|
2017-06-18 01:37:19 +00:00
|
|
|
|
{
|
2019-09-29 16:47:06 +00:00
|
|
|
|
var img = SpriteUtil.GetLegalIndicator(la.Valid);
|
2019-12-24 04:16:34 +00:00
|
|
|
|
sprite = ImageUtil.LayerImage(sprite, img, sprite.Width - img.Width, 0);
|
2015-02-26 07:12:38 +00:00
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
|
2019-02-15 19:47:35 +00:00
|
|
|
|
string[] r = pk.GetQRLines();
|
2018-05-07 05:24:25 +00:00
|
|
|
|
string refer = GetProgramTitle();
|
2019-10-08 01:40:09 +00:00
|
|
|
|
using var form = new QR(qr, sprite, pk, r[0], r[1], r[2], $"{refer} ({pk.GetType().Name})");
|
|
|
|
|
form.ShowDialog();
|
2015-02-25 04:10:47 +00:00
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
|
|
|
|
|
private void ClickLegality(object sender, EventArgs e)
|
2014-12-13 22:48:34 +00:00
|
|
|
|
{
|
2019-02-10 01:07:44 +00:00
|
|
|
|
if (!PKME_Tabs.EditsComplete)
|
2019-02-13 04:17:09 +00:00
|
|
|
|
{ SystemSounds.Hand.Play(); return; }
|
2014-12-13 22:48:34 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
var pk = PreparePKM();
|
2014-12-13 22:48:34 +00:00
|
|
|
|
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (pk.Species == 0 || !pk.ChecksumValid)
|
2019-02-13 04:17:09 +00:00
|
|
|
|
{ SystemSounds.Hand.Play(); return; }
|
2015-08-07 04:16:25 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
ShowLegality(sender, e, pk);
|
2017-06-04 20:35:51 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ShowLegality(object sender, EventArgs e, PKM pk)
|
2017-06-04 20:35:51 +00:00
|
|
|
|
{
|
2018-07-27 02:34:27 +00:00
|
|
|
|
var la = new LegalityAnalysis(pk, C_SAV.SAV.Personal);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (pk.Slot < 0)
|
2017-06-18 01:37:19 +00:00
|
|
|
|
PKME_Tabs.UpdateLegality(la);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
bool verbose = ModifierKeys == Keys.Control;
|
|
|
|
|
var report = la.Report(verbose);
|
|
|
|
|
if (verbose)
|
2016-07-29 05:54:29 +00:00
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
var dr = WinFormsUtil.Prompt(MessageBoxButtons.YesNo, report, MsgClipboardLegalityExport);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (dr == DialogResult.Yes)
|
2019-11-23 05:23:00 +00:00
|
|
|
|
WinFormsUtil.SetClipboardText(report);
|
2016-07-29 05:54:29 +00:00
|
|
|
|
}
|
2019-02-13 04:17:09 +00:00
|
|
|
|
else if (Settings.Default.IgnoreLegalPopup && la.Valid)
|
|
|
|
|
{
|
2020-01-03 23:29:12 +00:00
|
|
|
|
if (Settings.Default.PlaySoundLegalityCheck)
|
|
|
|
|
SystemSounds.Asterisk.Play();
|
2019-02-13 04:17:09 +00:00
|
|
|
|
}
|
2017-05-23 04:55:05 +00:00
|
|
|
|
else
|
2018-07-27 02:34:27 +00:00
|
|
|
|
{
|
2020-01-03 23:29:12 +00:00
|
|
|
|
WinFormsUtil.Alert(Settings.Default.PlaySoundLegalityCheck, report);
|
2018-07-27 02:34:27 +00:00
|
|
|
|
}
|
2014-12-13 22:48:34 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ClickClone(object sender, EventArgs e)
|
2014-12-13 22:48:34 +00:00
|
|
|
|
{
|
2019-02-10 01:07:44 +00:00
|
|
|
|
if (!PKME_Tabs.EditsComplete)
|
|
|
|
|
return; // don't copy garbage to the box
|
2017-06-18 01:37:19 +00:00
|
|
|
|
PKM pk = PKME_Tabs.PreparePKM();
|
2017-05-23 04:55:05 +00:00
|
|
|
|
C_SAV.SetClonesToBox(pk);
|
2014-12-13 22:48:34 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2020-10-18 18:02:39 +00:00
|
|
|
|
private void GetPreview(PictureBox pb, PKM? pk = null)
|
2014-12-13 22:48:34 +00:00
|
|
|
|
{
|
2019-10-05 03:10:50 +00:00
|
|
|
|
pk ??= PreparePKM(false); // don't perform control loss click
|
2016-10-31 02:15:48 +00:00
|
|
|
|
|
2019-01-05 23:40:25 +00:00
|
|
|
|
dragout.ContextMenuStrip.Enabled = pk.Species != 0 || HaX; // Species
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2018-09-01 04:35:53 +00:00
|
|
|
|
pb.Image = pk.Sprite(C_SAV.SAV, -1, -1, flagIllegal: false);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (pb.BackColor == Color.Red)
|
|
|
|
|
pb.BackColor = Color.Transparent;
|
2014-12-13 22:48:34 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void PKME_Tabs_UpdatePreviewSprite(object sender, EventArgs e) => GetPreview(dragout);
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-05-23 04:55:05 +00:00
|
|
|
|
private void PKME_Tabs_LegalityChanged(object sender, EventArgs e)
|
2015-09-26 04:56:15 +00:00
|
|
|
|
{
|
2019-01-05 23:40:25 +00:00
|
|
|
|
if (HaX)
|
2015-09-26 04:56:15 +00:00
|
|
|
|
{
|
2017-05-23 04:55:05 +00:00
|
|
|
|
PB_Legal.Visible = false;
|
|
|
|
|
return;
|
2015-09-26 04:56:15 +00:00
|
|
|
|
}
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
|
|
|
|
PB_Legal.Visible = true;
|
2019-09-29 16:47:06 +00:00
|
|
|
|
PB_Legal.Image = SpriteUtil.GetLegalIndicator(sender as bool? != false);
|
2015-09-26 04:56:15 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void PKME_Tabs_RequestShowdownExport(object sender, EventArgs e) => ClickShowdownExportPKM(sender, e);
|
|
|
|
|
private void PKME_Tabs_RequestShowdownImport(object sender, EventArgs e) => ClickShowdownImportPKM(sender, e);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
private SaveFile PKME_Tabs_SaveFileRequested(object sender, EventArgs e) => C_SAV.SAV;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private PKM PreparePKM(bool click = true) => PKME_Tabs.PreparePKM(click);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
|
|
|
|
// Drag & Drop Events
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private static void Main_DragEnter(object sender, DragEventArgs e)
|
2015-09-27 17:00:45 +00:00
|
|
|
|
{
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (e.AllowedEffect == (DragDropEffects.Copy | DragDropEffects.Link)) // external file
|
|
|
|
|
e.Effect = DragDropEffects.Copy;
|
|
|
|
|
else if (e.Data != null) // within
|
|
|
|
|
e.Effect = DragDropEffects.Move;
|
2014-06-28 21:22:05 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void Main_DragDrop(object sender, DragEventArgs e)
|
2014-12-14 20:15:53 +00:00
|
|
|
|
{
|
2020-10-18 18:02:39 +00:00
|
|
|
|
var files = (string[]?)e.Data.GetData(DataFormats.FileDrop);
|
2017-06-13 01:15:26 +00:00
|
|
|
|
if (files == null || files.Length == 0)
|
|
|
|
|
return;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
OpenQuick(files[0]);
|
|
|
|
|
e.Effect = DragDropEffects.Copy;
|
2014-12-14 20:15:53 +00:00
|
|
|
|
}
|
2019-09-11 05:07:50 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void Dragout_MouseDown(object sender, MouseEventArgs e)
|
2014-06-28 21:22:05 +00:00
|
|
|
|
{
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (e.Button == MouseButtons.Left && (ModifierKeys == Keys.Alt || ModifierKeys == Keys.Shift))
|
2017-06-18 01:37:19 +00:00
|
|
|
|
ClickQR(sender, e);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (e.Button == MouseButtons.Right)
|
2015-10-15 01:33:51 +00:00
|
|
|
|
return;
|
2019-02-10 01:07:44 +00:00
|
|
|
|
if (!PKME_Tabs.EditsComplete)
|
2014-08-07 00:10:29 +00:00
|
|
|
|
return;
|
2014-08-17 01:42:51 +00:00
|
|
|
|
|
2017-05-23 04:55:05 +00:00
|
|
|
|
// Create Temp File to Drag
|
2019-02-23 22:58:48 +00:00
|
|
|
|
var pk = PreparePKM();
|
|
|
|
|
var encrypt = ModifierKeys == Keys.Control;
|
|
|
|
|
var newfile = FileUtil.GetPKMTempFileName(pk, encrypt);
|
2019-11-16 22:03:25 +00:00
|
|
|
|
var data = encrypt ? pk.EncryptedPartyData : pk.DecryptedPartyData;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
// Make file
|
|
|
|
|
try
|
2016-10-02 23:48:12 +00:00
|
|
|
|
{
|
2019-02-23 22:58:48 +00:00
|
|
|
|
File.WriteAllBytes(newfile, data);
|
2019-02-15 08:50:23 +00:00
|
|
|
|
|
|
|
|
|
var pb = (PictureBox)sender;
|
2019-01-03 03:32:23 +00:00
|
|
|
|
if (pb.Image != null)
|
2019-08-21 02:50:28 +00:00
|
|
|
|
C_SAV.M.Drag.Info.Cursor = Cursor = new Cursor(((Bitmap)pb.Image).GetHicon());
|
2017-05-23 04:55:05 +00:00
|
|
|
|
DoDragDrop(new DataObject(DataFormats.FileDrop, new[] { newfile }), DragDropEffects.Move);
|
2016-10-02 23:48:12 +00:00
|
|
|
|
}
|
2020-09-19 05:11:13 +00:00
|
|
|
|
#pragma warning disable CA1031 // Do not catch general exception types
|
|
|
|
|
// Tons of things can happen with drag & drop; don't try to handle things, just indicate failure.
|
2017-05-23 04:55:05 +00:00
|
|
|
|
catch (Exception x)
|
2020-09-19 05:11:13 +00:00
|
|
|
|
#pragma warning restore CA1031 // Do not catch general exception types
|
2019-01-03 03:32:23 +00:00
|
|
|
|
{ WinFormsUtil.Error("Drag && Drop Error", x); }
|
2019-08-21 02:50:28 +00:00
|
|
|
|
C_SAV.M.Drag.ResetCursor(this);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
File.Delete(newfile);
|
2014-06-28 21:22:05 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2018-04-06 04:25:18 +00:00
|
|
|
|
private void Dragout_DragOver(object sender, DragEventArgs e) => e.Effect = DragDropEffects.Move;
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void DragoutEnter(object sender, EventArgs e)
|
2014-06-28 21:22:05 +00:00
|
|
|
|
{
|
2019-11-16 01:34:18 +00:00
|
|
|
|
dragout.BackgroundImage = PKME_Tabs.Entity.Species > 0 ? SpriteUtil.Spriter.Set : SpriteUtil.Spriter.Delete;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
Cursor = Cursors.Hand;
|
2014-06-28 21:22:05 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void DragoutLeave(object sender, EventArgs e)
|
2015-01-24 19:16:20 +00:00
|
|
|
|
{
|
2019-11-16 01:34:18 +00:00
|
|
|
|
dragout.BackgroundImage = SpriteUtil.Spriter.Transparent;
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (Cursor == Cursors.Hand)
|
|
|
|
|
Cursor = Cursors.Default;
|
2015-01-24 19:16:20 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void DragoutDrop(object sender, DragEventArgs e)
|
2016-05-06 01:52:43 +00:00
|
|
|
|
{
|
2017-05-23 04:55:05 +00:00
|
|
|
|
string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
|
|
|
|
|
OpenQuick(files[0]);
|
|
|
|
|
e.Effect = DragDropEffects.Copy;
|
2015-10-24 03:13:32 +00:00
|
|
|
|
|
2017-05-23 04:55:05 +00:00
|
|
|
|
Cursor = DefaultCursor;
|
2014-07-27 01:00:17 +00:00
|
|
|
|
}
|
2017-04-05 01:58:32 +00:00
|
|
|
|
|
2017-05-23 04:55:05 +00:00
|
|
|
|
private void Main_FormClosing(object sender, FormClosingEventArgs e)
|
2014-06-28 21:22:05 +00:00
|
|
|
|
{
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (C_SAV.SAV.Edited || PKME_Tabs.PKMIsUnsaved)
|
2014-06-28 21:22:05 +00:00
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
var prompt = WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgProgramCloseUnsaved, MsgProgramCloseConfirm);
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (prompt != DialogResult.Yes)
|
2014-06-28 21:22:05 +00:00
|
|
|
|
{
|
2017-05-23 04:55:05 +00:00
|
|
|
|
e.Cancel = true;
|
|
|
|
|
return;
|
2014-06-28 21:22:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-05-23 04:55:05 +00:00
|
|
|
|
|
2019-02-17 22:51:35 +00:00
|
|
|
|
SaveSettings();
|
2014-06-28 21:22:05 +00:00
|
|
|
|
}
|
2019-02-17 22:51:35 +00:00
|
|
|
|
|
|
|
|
|
private static void SaveSettings()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var settings = Settings.Default;
|
|
|
|
|
settings.Draw = Draw.ToString();
|
2019-02-23 22:58:48 +00:00
|
|
|
|
settings.Save();
|
2019-02-17 22:51:35 +00:00
|
|
|
|
}
|
2020-09-19 05:11:13 +00:00
|
|
|
|
#pragma warning disable CA1031 // Do not catch general exception types
|
2019-02-17 22:51:35 +00:00
|
|
|
|
catch (Exception x)
|
2020-09-19 05:11:13 +00:00
|
|
|
|
// Config might be corrupted, or their dotnet runtime is insufficient (<4.6?)
|
|
|
|
|
#pragma warning restore CA1031 // Do not catch general exception types
|
2019-02-17 22:51:35 +00:00
|
|
|
|
{
|
|
|
|
|
File.WriteAllLines("config error.txt", new[] {x.ToString()});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-23 04:55:05 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region //// SAVE FILE FUNCTIONS ////
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ClickExportSAVBAK(object sender, EventArgs e)
|
2016-08-08 05:46:07 +00:00
|
|
|
|
{
|
2017-05-23 04:55:05 +00:00
|
|
|
|
if (C_SAV.ExportBackup() && !Directory.Exists(BackupPath))
|
2017-06-18 01:37:19 +00:00
|
|
|
|
PromptBackup();
|
2016-08-08 05:46:07 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ClickExportSAV(object sender, EventArgs e)
|
2014-12-14 19:06:17 +00:00
|
|
|
|
{
|
2020-09-19 05:11:13 +00:00
|
|
|
|
if (!Menu_ExportSAV.Enabled)
|
|
|
|
|
return; // hot-keys can't cheat the system!
|
|
|
|
|
|
|
|
|
|
C_SAV.ExportSaveFile();
|
|
|
|
|
Text = GetProgramTitle(C_SAV.SAV);
|
2014-12-14 19:06:17 +00:00
|
|
|
|
}
|
2018-07-27 02:34:27 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ClickSaveFileName(object sender, EventArgs e)
|
2017-06-18 20:02:02 +00:00
|
|
|
|
{
|
2020-04-16 20:15:35 +00:00
|
|
|
|
if (!DetectSaveFile(out string path, out var sav))
|
2017-06-18 20:02:02 +00:00
|
|
|
|
return;
|
2018-04-06 04:25:18 +00:00
|
|
|
|
if (WinFormsUtil.Prompt(MessageBoxButtons.YesNo, MsgFileLoadSaveDetectReload, path) == DialogResult.Yes)
|
2020-04-16 20:15:35 +00:00
|
|
|
|
LoadFile(sav, path); // load save
|
2017-06-18 20:02:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-18 18:02:39 +00:00
|
|
|
|
private static bool DetectSaveFile(out string path, out SaveFile? sav)
|
2014-12-13 22:48:34 +00:00
|
|
|
|
{
|
2020-10-18 18:02:39 +00:00
|
|
|
|
string msg = string.Empty;
|
|
|
|
|
var result = SaveFinder.FindMostRecentSaveFile(Environment.GetLogicalDrives(), ref msg);
|
|
|
|
|
if (result == null)
|
|
|
|
|
{
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(msg))
|
|
|
|
|
WinFormsUtil.Error(msg);
|
|
|
|
|
path = string.Empty;
|
|
|
|
|
sav = null;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2018-07-15 20:35:58 +00:00
|
|
|
|
|
2020-10-18 18:02:39 +00:00
|
|
|
|
path = result.FilePath!;
|
|
|
|
|
sav = result;
|
|
|
|
|
return File.Exists(path);
|
2017-04-14 06:05:19 +00:00
|
|
|
|
}
|
2017-06-18 20:02:02 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private static void PromptBackup()
|
2016-08-05 11:04:56 +00:00
|
|
|
|
{
|
2018-07-27 02:34:27 +00:00
|
|
|
|
if (DialogResult.Yes != WinFormsUtil.Prompt(MessageBoxButtons.YesNo, string.Format(MsgBackupCreateLocation, BackupPath), MsgBackupCreateQuestion))
|
2018-04-06 04:25:18 +00:00
|
|
|
|
return;
|
2016-08-26 01:50:51 +00:00
|
|
|
|
|
2017-01-26 06:51:52 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2018-04-06 04:25:18 +00:00
|
|
|
|
Directory.CreateDirectory(BackupPath);
|
|
|
|
|
WinFormsUtil.Alert(MsgBackupSuccess, string.Format(MsgBackupDelete, BackupPath));
|
2016-09-14 04:17:07 +00:00
|
|
|
|
}
|
2020-09-19 05:11:13 +00:00
|
|
|
|
#pragma warning disable CA1031 // Do not catch general exception types
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
// Maybe they put their exe in a folder that we can't create files/folders to.
|
|
|
|
|
#pragma warning restore CA1031 // Do not catch general exception types
|
|
|
|
|
{ WinFormsUtil.Error($"{MsgBackupUnable} @ {BackupPath}", ex); }
|
2014-11-26 04:43:02 +00:00
|
|
|
|
}
|
2016-08-26 01:50:51 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ClickUndo(object sender, EventArgs e) => C_SAV.ClickUndo();
|
|
|
|
|
private void ClickRedo(object sender, EventArgs e) => C_SAV.ClickRedo();
|
2014-12-13 22:48:34 +00:00
|
|
|
|
#endregion
|
2014-06-28 21:22:05 +00:00
|
|
|
|
}
|
2015-03-03 17:11:21 +00:00
|
|
|
|
}
|