From 9e514dcebdb7772a0ecdf484ba932e2a67993222 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Fri, 13 Mar 2020 08:46:45 +1000 Subject: [PATCH] Unify Get/SetSoundOn across Lua and C# APIs (resolves #1817) --- BizHawk.Client.ApiHawk/Classes/ClientApi.cs | 7 ++----- BizHawk.Client.EmuHawk/MainForm.cs | 2 +- .../tools/Lua/Libraries/EmuLuaLibrary.Client.cs | 13 +++---------- 3 files changed, 6 insertions(+), 16 deletions(-) diff --git a/BizHawk.Client.ApiHawk/Classes/ClientApi.cs b/BizHawk.Client.ApiHawk/Classes/ClientApi.cs index 3f56f0bed8..a0005fac78 100644 --- a/BizHawk.Client.ApiHawk/Classes/ClientApi.cs +++ b/BizHawk.Client.ApiHawk/Classes/ClientApi.cs @@ -530,13 +530,10 @@ namespace BizHawk.Client.ApiHawk public static void SetSoundOn(bool enable) { - Global.Config.SoundEnabled = enable; + if (enable != Global.Config.SoundEnabled) InvokeMainFormMethod("ToggleSound"); } - public static bool GetSoundOn() - { - return Global.Config.SoundEnabled; - } + public static bool GetSoundOn() => Global.Config.SoundEnabled; public static bool IsPaused() { diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 238a4f7abb..45f7b66577 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -2374,7 +2374,7 @@ namespace BizHawk.Client.EmuHawk Config.DisplayInput ^= true; } - private void ToggleSound() + public void ToggleSound() { Config.SoundEnabled ^= true; Sound.StopSound(); diff --git a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Client.cs b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Client.cs index b82af2ca88..545a5c6936 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Client.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Client.cs @@ -9,6 +9,7 @@ using System.Threading; using System.Diagnostics; using BizHawk.Common; +using BizHawk.Client.ApiHawk; // ReSharper disable StringLiteralTypo // ReSharper disable UnusedMember.Global @@ -173,19 +174,11 @@ namespace BizHawk.Client.EmuHawk [LuaMethodExample("client.SetSoundOn( true );")] [LuaMethod("SetSoundOn", "Sets the state of the Sound On toggle")] - public static void SetSoundOn(bool enable) - { - Global.Config.SoundEnabled = enable; - GlobalWin.Sound.StopSound(); - GlobalWin.Sound.StartSound(); - } + public static void SetSoundOn(bool enable) => ClientApi.SetSoundOn(enable); [LuaMethodExample("if ( client.GetSoundOn( ) ) then\r\n\tconsole.log( \"Gets the state of the Sound On toggle\" );\r\nend;")] [LuaMethod("GetSoundOn", "Gets the state of the Sound On toggle")] - public static bool GetSoundOn() - { - return Global.Config.SoundEnabled; - } + public static bool GetSoundOn() => ClientApi.GetSoundOn(); [LuaMethodExample("client.SetClientExtraPadding( 5, 10, 15, 20 );")] [LuaMethod("SetClientExtraPadding", "Sets the extra padding added to the 'native' surface so that you can draw HUD elements in predictable placements")]