PKHeX/PKHeX.WinForms/Subforms/SettingsEditor.cs
Kurt 009e37662f
Startup Enhancements, Gen1/2 Save Indication, Export SAV cleaned up (#3275)
* Providing pkm/sav files via command line (dragging files onto exe / associated file launched) will more intelligently source a partner sav/pkm object if not provided.
* Gen1/2 mainline save files now indicate if they are VC era or GB era (legality implications) in the program title bar.
* Fixes loading VC era save backups not being recognized as VC era (`.bak` extension hides `.dat`)
* Export BAK moved to the SAV tab, which allows Export main to be deleted and Export SAV to be used as the single-click for exporting saves. `CTRL-E` is still the hotkey.
2021-10-21 22:13:21 -07:00

82 lines
2.8 KiB
C#

using System;
using System.IO;
using System.Linq;
using System.Windows.Forms;
using PKHeX.Core;
namespace PKHeX.WinForms
{
public partial class SettingsEditor : Form
{
public bool BlankChanged { get; private set; }
public SettingsEditor(object obj)
{
InitializeComponent();
LoadSettings(obj);
if (obj is PKHeXSettings s)
{
var noSelectVersions = new[] {GameVersion.GO};
CB_Blank.InitializeBinding();
CB_Blank.DataSource = GameInfo.VersionDataSource.Where(z => !noSelectVersions.Contains((GameVersion)z.Value)).ToList();
CB_Blank.SelectedValue = (int) s.Startup.DefaultSaveVersion;
CB_Blank.SelectedValueChanged += (_, __) => s.Startup.DefaultSaveVersion = (GameVersion)WinFormsUtil.GetIndex(CB_Blank);
CB_Blank.SelectedIndexChanged += (_, __) => BlankChanged = true;
B_Reset.Click += (x, e) => DeleteSettings();
}
else
{
FLP_Blank.Visible = false;
B_Reset.Visible = false;
}
this.CenterToForm(FindForm());
}
private void LoadSettings(object obj)
{
var type = obj.GetType();
var props = ReflectUtil.GetPropertiesCanWritePublicDeclared(type);
foreach (var p in props)
{
var state = ReflectUtil.GetValue(obj, p);
if (state is null)
continue;
var tab = new TabPage(p);
var pg = new PropertyGrid { SelectedObject = state, Dock = DockStyle.Fill };
tab.Controls.Add(pg);
tabControl1.TabPages.Add(tab);
}
}
private void SettingsEditor_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.W && ModifierKeys == Keys.Control)
Close();
}
private static void DeleteSettings()
{
try
{
var dr = WinFormsUtil.Prompt(MessageBoxButtons.YesNo, "Resetting settings requires the program to exit.", MessageStrings.MsgContinue);
if (dr != DialogResult.Yes)
return;
var path = Main.ConfigPath;
if (File.Exists(path))
File.Delete(path);
System.Diagnostics.Process.Start(Application.ExecutablePath);
Environment.Exit(0);
}
#pragma warning disable CA1031 // Do not catch general exception types
catch (Exception ex)
#pragma warning restore CA1031 // Do not catch general exception types
{
WinFormsUtil.Error("Failed to delete settings.", ex.Message);
}
}
}
}