From 6c4a32d517d5a77a1f9f1300612a6f882a126f3d Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 4 Jan 2015 13:45:43 +0000 Subject: [PATCH] Virtualpads - when right-click auto-firing - take lag frames into account --- .../inputAdapters/InputAdapters.cs | 31 +++++++++++++++---- 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/BizHawk.Client.Common/inputAdapters/InputAdapters.cs b/BizHawk.Client.Common/inputAdapters/InputAdapters.cs index c6f3d61273..82b4fb3220 100644 --- a/BizHawk.Client.Common/inputAdapters/InputAdapters.cs +++ b/BizHawk.Client.Common/inputAdapters/InputAdapters.cs @@ -5,7 +5,7 @@ using System.Linq; using BizHawk.Common; using BizHawk.Common.StringExtensions; using BizHawk.Emulation.Common; - +using BizHawk.Emulation.Common.IEmulatorExtensions; namespace BizHawk.Client.Common { @@ -387,7 +387,8 @@ namespace BizHawk.Client.Common public int On { get; set; } public int Off { get; set; } public WorkingDictionary buttonStarts = new WorkingDictionary(); - + public WorkingDictionary lagStarts = new WorkingDictionary(); // TODO: need a data structure not misc dictionaries + private readonly HashSet _stickySet = new HashSet(); public IController Source { get; set; } @@ -400,8 +401,8 @@ namespace BizHawk.Client.Common public AutoFireStickyXorAdapter() { - // On = Global.Config.AutofireOn < 1 ? 0 : Global.Config.AutofireOn; - // Off = Global.Config.AutofireOff < 1 ? 0 : Global.Config.AutofireOff; + //On = Global.Config.AutofireOn < 1 ? 0 : Global.Config.AutofireOn; + //Off = Global.Config.AutofireOff < 1 ? 0 : Global.Config.AutofireOff; On = 1; Off = 1; } @@ -419,7 +420,13 @@ namespace BizHawk.Client.Common if (_stickySet.Contains(button)) { - var a = (Global.Emulator.Frame - buttonStarts[button]) % (On + Off); + var lagcount = 0; + if (Global.Emulator.CanPollInput() && Global.Config.AutofireLagFrames) + { + lagcount = Global.Emulator.AsInputPollable().LagCount; + } + + var a = ((Global.Emulator.Frame - lagcount) - (buttonStarts[button] - lagStarts[button])) % (On + Off); if (a < On) { return source ^= true; @@ -454,11 +461,21 @@ namespace BizHawk.Client.Common { _stickySet.Add(button); buttonStarts.Add(button, Global.Emulator.Frame); + + if (Global.Emulator.CanPollInput()) + { + lagStarts.Add(button, Global.Emulator.AsInputPollable().LagCount); + } + else + { + lagStarts.Add(button, 0); + } } else { _stickySet.Remove(button); buttonStarts.Remove(button); + lagStarts.Remove(button); } } @@ -477,7 +494,9 @@ namespace BizHawk.Client.Common public void ClearStickies() { - this._stickySet.Clear(); + _stickySet.Clear(); + buttonStarts.Clear(); + lagStarts.Clear(); } public void MassToggleStickyState(List buttons)