From e69cedfdfaa16aa8a3290c4d9ba6eb09e97e6b4f Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 6 Jun 2020 10:39:40 -0500 Subject: [PATCH] InputManager - simplify by moving RewrieInputChain logic into SyncControls since it is only called from there, and does similar work --- .../inputAdapters/InputManager.cs | 29 +++++++++---------- 1 file changed, 13 insertions(+), 16 deletions(-) diff --git a/src/BizHawk.Client.Common/inputAdapters/InputManager.cs b/src/BizHawk.Client.Common/inputAdapters/InputManager.cs index f4497d262b..b7f847dcfc 100644 --- a/src/BizHawk.Client.Common/inputAdapters/InputManager.cs +++ b/src/BizHawk.Client.Common/inputAdapters/InputManager.cs @@ -51,13 +51,24 @@ namespace BizHawk.Client.Common public Controller ClientControls { get; set; } - private void RewireInputChain() + public void SyncControls(IEmulator emulator, Config config) { + var def = emulator.ControllerDefinition; + + ActiveController = BindToDefinition(def, config.AllTrollers, config.AllTrollersAnalog); + AutoFireController = BindToDefinitionAF(emulator, config.AllTrollersAutoFire, config.AutofireOn, config.AutofireOff); + + // allow propagating controls that are in the current controller definition but not in the prebaked one + // these two lines shouldn't be required anymore under the new system? + ActiveController.ForceType(new ControllerDefinition(def)); + ClickyVirtualPadController.Definition = new ControllerDefinition(def); + + // Wire up input chain ControllerInputCoalescer.Clear(); ControllerInputCoalescer.Definition = ActiveController.Definition; UdLRControllerAdapter.Source = ActiveController.Or(AutoFireController); - UdLRControllerAdapter.AllowUdlr = Global.Config.AllowUdlr; + UdLRControllerAdapter.AllowUdlr = config.AllowUdlr; StickyXorAdapter.Source = UdLRControllerAdapter; AutofireStickyXorAdapter.Source = StickyXorAdapter; @@ -80,20 +91,6 @@ namespace BizHawk.Client.Common } } - public void SyncControls(IEmulator emulator, Config config) - { - var def = emulator.ControllerDefinition; - - ActiveController = BindToDefinition(def, config.AllTrollers, config.AllTrollersAnalog); - AutoFireController = BindToDefinitionAF(emulator, config.AllTrollersAutoFire, config.AutofireOn, config.AutofireOff); - - // allow propagating controls that are in the current controller definition but not in the prebaked one - // these two lines shouldn't be required anymore under the new system? - ActiveController.ForceType(new ControllerDefinition(def)); - ClickyVirtualPadController.Definition = new ControllerDefinition(def); - RewireInputChain(); - } - private static Controller BindToDefinition(ControllerDefinition def, IDictionary> allBinds, IDictionary> analogBinds) { var ret = new Controller(def);