diff --git a/BizHawk.Client.Common/ControllerBinding.cs b/BizHawk.Client.Common/ControllerBinding.cs index 6a99b55c6e..da454f1cce 100644 --- a/BizHawk.Client.Common/ControllerBinding.cs +++ b/BizHawk.Client.Common/ControllerBinding.cs @@ -134,6 +134,19 @@ namespace BizHawk.Client.Common } } + public void Overrides(OverrideAdaptor controller) + { + foreach (var button in controller.Overrides) + { + _buttons[button] = controller[button]; + } + + foreach (var button in controller.InversedButtons) + { + _buttons[button] ^= true; + } + } + public void BindButton(string button, string control) { _bindings[button].Add(control); diff --git a/BizHawk.Client.Common/Global.cs b/BizHawk.Client.Common/Global.cs index 46b746ae27..e609fbf7b8 100644 --- a/BizHawk.Client.Common/Global.cs +++ b/BizHawk.Client.Common/Global.cs @@ -73,9 +73,9 @@ namespace BizHawk.Client.Common public static StickyXorAdapter StickyXORAdapter = new StickyXorAdapter(); /// - /// Forces any controller button to Off, useful for things like Joypad.Set + /// Used to AND to another controller, used for Joypad.Set() /// - public static ForceOffAdaptor ForceOffAdaptor = new ForceOffAdaptor(); + public static OverrideAdaptor LuaAndAdaptor = new OverrideAdaptor(); /// /// fire off one-frame logical button clicks here. useful for things like ti-83 virtual pad and reset buttons diff --git a/BizHawk.Client.Common/InputManager.cs b/BizHawk.Client.Common/InputManager.cs index 2a3ab5e436..8ab58006c7 100644 --- a/BizHawk.Client.Common/InputManager.cs +++ b/BizHawk.Client.Common/InputManager.cs @@ -19,9 +19,7 @@ namespace BizHawk.Client.Common Global.AutofireStickyXORAdapter.Source = Global.StickyXORAdapter; Global.MultitrackRewiringControllerAdapter.Source = Global.AutofireStickyXORAdapter; - Global.ForceOffAdaptor.Source = Global.MultitrackRewiringControllerAdapter; - - Global.MovieInputSourceAdapter.Source = Global.ForceOffAdaptor; + Global.MovieInputSourceAdapter.Source = Global.MultitrackRewiringControllerAdapter; Global.ControllerOutput.Source = Global.MovieOutputHardpoint; Global.Emulator.Controller = Global.ControllerOutput; diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Joypad.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Joypad.cs index 401f29d264..6fa147ba76 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Joypad.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Joypad.cs @@ -110,25 +110,18 @@ namespace BizHawk.Client.Common if (!invert) { - if (theValue == true) // Force On + if (theValue.HasValue) // Force { - Global.ClickyVirtualPadController.Click(button.ToString()); - Global.ForceOffAdaptor.SetSticky(button.ToString(), false); + Global.LuaAndAdaptor.SetButton(button.ToString(), theValue.Value); } - else if (theValue == false) // Force off + else // Unset { - Global.ForceOffAdaptor.SetSticky(button.ToString(), true); - } - else - { - Global.StickyXORAdapter.Unset(button.ToString()); - Global.ForceOffAdaptor.Unset(button.ToString()); + Global.LuaAndAdaptor.UnSet(button.ToString()); } } else // Inverse { - Global.StickyXORAdapter.SetSticky(button.ToString(), true); - Global.ForceOffAdaptor.SetSticky(button.ToString(), false); + Global.LuaAndAdaptor.SetInverse(button.ToString()); } } } diff --git a/BizHawk.Client.Common/movie/InputAdapters.cs b/BizHawk.Client.Common/movie/InputAdapters.cs index 7ba9620c7f..103a5ac5b5 100644 --- a/BizHawk.Client.Common/movie/InputAdapters.cs +++ b/BizHawk.Client.Common/movie/InputAdapters.cs @@ -202,55 +202,6 @@ namespace BizHawk.Client.Common } - public class ForceOffAdaptor : IController - { - public bool IsPressed(string button) { return this[button]; } - - // what exactly would we want to do here with floats? - // ForceOffAdaptor is only used by lua, and the code there looks like a big mess... - public float GetFloat(string name) { return Source.GetFloat(name); } - - protected HashSet StickySet = new HashSet(); - public IController Source { get; set; } - public IController SourceOr { get; set; } - - public ControllerDefinition Type - { - get { return Source.Type; } - set { throw new InvalidOperationException(); } - } - - public bool this[string button] - { - get - { - return !StickySet.Contains(button) && Source[button]; - } - - set - { - throw new InvalidOperationException(); - } - } - - public void SetSticky(string button, bool isSticky) - { - if (isSticky) - { - this.StickySet.Add(button); - } - else - { - this.StickySet.Remove(button); - } - } - - public void Unset(string button) - { - StickySet.Remove(button); - } - } - public class StickyXorAdapter : IController { protected HashSet stickySet = new HashSet(); @@ -625,4 +576,93 @@ namespace BizHawk.Client.Common return Source.IsPressed(RemapButtonName(button)); } } + + /// + /// Used to pass into an Override method to manage the logic overriding input + /// This only works with bool buttons! + /// + public class OverrideAdaptor : IController + { + private readonly Dictionary _overrides = new Dictionary(); + private readonly List _inverses = new List(); + + public bool this[string button] + { + get + { + if (_overrides.ContainsKey(button)) + { + return _overrides[button]; + } + + throw new InvalidOperationException(); + } + + set + { + if (_overrides.ContainsKey(button)) + { + _overrides[button] = value; + } + else + { + _overrides.Add(button, value); + } + } + } + + public ControllerDefinition Type { get; set; } + + public IEnumerable Overrides + { + get + { + foreach (var kvp in _overrides) + { + yield return kvp.Key; + } + } + } + + public IEnumerable InversedButtons + { + get + { + foreach (var name in _inverses) + { + yield return name; + } + } + } + + public float GetFloat(string name) + { + return 0.0F; + } + + public bool IsPressed(string button) { return this[button]; } + + public void SetButton(string button, bool value) + { + this[button] = value; + _inverses.Remove(button); + } + + public void UnSet(string button) + { + _overrides.Remove(button); + _inverses.Remove(button); + } + + public void SetInverse(string button) + { + _inverses.Add(button); + } + + public void FrameTick() + { + _overrides.Clear(); + _inverses.Clear(); + } + } } \ No newline at end of file diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index e47c878053..8b0efe57f0 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -398,6 +398,7 @@ namespace BizHawk.Client.EmuHawk Global.ActiveController.LatchFromPhysical(Global.ControllerInputCoalescer); Global.ActiveController.OR_FromLogical(Global.ClickyVirtualPadController); + Global.ActiveController.Overrides(Global.LuaAndAdaptor); Global.AutoFireController.LatchFromPhysical(Global.ControllerInputCoalescer); if (Global.ClientControls["Autohold"]) @@ -2339,6 +2340,7 @@ namespace BizHawk.Client.EmuHawk } Global.ClickyVirtualPadController.FrameTick(); + Global.LuaAndAdaptor.FrameTick(); _runloopFps++;