mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
0d45075d4b
- Settings now stored as json next to exe - Settings now exposes all legality checking setttings that can be changed - Slot hovering now can play cries in MGDB/PKMDB/etc, not just the main boxes. - Enhanced hover text for mystery gifts and encounters that have movesets - Show recently loaded save files in ctrl-f browser - Toggle auto-load savefile setting to be none/detect-latest/last-loaded - Custom extensions & extra backup paths can now be configured directly in the json settings - Settings editor now uses propertygrid & tabs.
79 lines
2.6 KiB
C#
79 lines
2.6 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 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);
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
}
|