From f21132a2ac93f9ae177600f92ae152cc06f3e002 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 12 Jun 2020 13:57:28 -0500 Subject: [PATCH] move EnsureCoreIsAccurate() out of EmuUtil and back into mainform since it has so many dependencies, including mainform itself, and 50% of its use is in mainform anyway --- src/BizHawk.Client.EmuHawk/EmuHawkUtil.cs | 45 ------------------- src/BizHawk.Client.EmuHawk/MainForm.Events.cs | 2 +- src/BizHawk.Client.EmuHawk/MainForm.cs | 39 ++++++++++++++++ .../tools/TAStudio/TAStudio.cs | 2 +- 4 files changed, 41 insertions(+), 47 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/EmuHawkUtil.cs b/src/BizHawk.Client.EmuHawk/EmuHawkUtil.cs index 624a785b39..04585374a5 100644 --- a/src/BizHawk.Client.EmuHawk/EmuHawkUtil.cs +++ b/src/BizHawk.Client.EmuHawk/EmuHawkUtil.cs @@ -1,57 +1,12 @@ using System; -using System.Drawing; using System.IO; using System.Text; -using System.Windows.Forms; -using BizHawk.Client.EmuHawk.CustomControls; using BizHawk.Common; -using BizHawk.Emulation.Common; -using BizHawk.Emulation.Cores.Consoles.NEC.PCE; -using BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES; -using BizHawk.Emulation.Cores.Nintendo.SNES9X; -using BizHawk.Emulation.Cores; namespace BizHawk.Client.EmuHawk { public static class EmuHawkUtil { - public static bool EnsureCoreIsAccurate(IEmulator emulator) - { - static bool PromptToSwitchCore(string currentCore, string recommendedCore, Action disableCurrentCore) - { - using var box = new MsgBox( - $"While the {currentCore} core is faster, it is not nearly as accurate as {recommendedCore}.{Environment.NewLine}It is recommended that you switch to the {recommendedCore} core for movie recording.{Environment.NewLine}Switch to {recommendedCore}?", - "Accuracy Warning", - MessageBoxIcon.Warning); - - box.SetButtons( - new[] { "Switch", "Continue" }, - new[] { DialogResult.Yes, DialogResult.Cancel }); - - box.MaximumSize = UIHelper.Scale(new Size(575, 175)); - box.SetMessageToAutoSize(); - - var result = box.ShowDialog(); - - if (result != DialogResult.Yes) - { - return false; - } - - disableCurrentCore(); - GlobalWin.MainForm.RebootCore(); - return true; - } - - return emulator switch - { - Snes9x _ => PromptToSwitchCore(CoreNames.Snes9X, CoreNames.Bsnes, () => GlobalWin.Config.PreferredCores["SNES"] = CoreNames.Bsnes), - QuickNES _ => PromptToSwitchCore(CoreNames.QuickNes, CoreNames.NesHawk, () => GlobalWin.Config.PreferredCores["NES"] = CoreNames.NesHawk), - HyperNyma _ => PromptToSwitchCore(CoreNames.HyperNyma, CoreNames.TurboNyma, () => GlobalWin.Config.PreferredCores["PCE"] = CoreNames.TurboNyma), - _ => true - }; - } - /// http://stackoverflow.com/questions/139010/how-to-resolve-a-lnk-in-c-sharp public static string ResolveShortcut(string filename) { diff --git a/src/BizHawk.Client.EmuHawk/MainForm.Events.cs b/src/BizHawk.Client.EmuHawk/MainForm.Events.cs index 2f59d58073..a8ae3bc9bd 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.Events.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.Events.cs @@ -491,7 +491,7 @@ namespace BizHawk.Client.EmuHawk } } - if (!EmuHawkUtil.EnsureCoreIsAccurate(Emulator)) + if (!EnsureCoreIsAccurate()) { // Inaccurate core but allow the user to continue anyway } diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index 566cc6b7a2..2dc759008b 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -26,8 +26,10 @@ using BizHawk.Emulation.Cores.Nintendo.GBHawkLink; using BizHawk.Client.EmuHawk.ToolExtensions; using BizHawk.Client.EmuHawk.CoreExtensions; +using BizHawk.Client.EmuHawk.CustomControls; using BizHawk.Common.PathExtensions; using BizHawk.Emulation.Common.Base_Implementations; +using BizHawk.Emulation.Cores.Consoles.NEC.PCE; using BizHawk.Emulation.Cores.Nintendo.SNES9X; using BizHawk.Emulation.Cores.Consoles.SNK; using BizHawk.Emulation.Cores.Consoles.Nintendo.Gameboy; @@ -4190,6 +4192,43 @@ namespace BizHawk.Client.EmuHawk } } + public bool EnsureCoreIsAccurate() + { + bool PromptToSwitchCore(string currentCore, string recommendedCore, Action disableCurrentCore) + { + using var box = new MsgBox( + $"While the {currentCore} core is faster, it is not nearly as accurate as {recommendedCore}.{Environment.NewLine}It is recommended that you switch to the {recommendedCore} core for movie recording.{Environment.NewLine}Switch to {recommendedCore}?", + "Accuracy Warning", + MessageBoxIcon.Warning); + + box.SetButtons( + new[] { "Switch", "Continue" }, + new[] { DialogResult.Yes, DialogResult.Cancel }); + + box.MaximumSize = UIHelper.Scale(new Size(575, 175)); + box.SetMessageToAutoSize(); + + var result = box.ShowDialog(); + + if (result != DialogResult.Yes) + { + return false; + } + + disableCurrentCore(); + RebootCore(); + return true; + } + + return Emulator switch + { + Snes9x _ => PromptToSwitchCore(CoreNames.Snes9X, CoreNames.Bsnes, () => Config.PreferredCores["SNES"] = CoreNames.Bsnes), + QuickNES _ => PromptToSwitchCore(CoreNames.QuickNes, CoreNames.NesHawk, () => Config.PreferredCores["NES"] = CoreNames.NesHawk), + HyperNyma _ => PromptToSwitchCore(CoreNames.HyperNyma, CoreNames.TurboNyma, () => Config.PreferredCores["PCE"] = CoreNames.TurboNyma), + _ => true + }; + } + private void SaveStateAs() { if (!Emulator.HasSavestates()) diff --git a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index 2e4203638e..80f6c2dcdd 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -217,7 +217,7 @@ namespace BizHawk.Client.EmuHawk if (!CanAutoload && MovieSession.Movie.NotActive()) { // Nag but allow the user to continue anyway, so ignore the return value - EmuHawkUtil.EnsureCoreIsAccurate(Emulator); + MainForm.EnsureCoreIsAccurate(); } // Start Scenario 1: A regular movie is active