Autofire Controller: Latch frame number with controller latch, avoids midframe conflicts when cores update frame pre-emulation.

This commit is contained in:
alyosha-tas 2021-05-20 09:21:42 -04:00
parent bf9c6d784d
commit 7c661b5520
1 changed files with 6 additions and 1 deletions

View File

@ -14,6 +14,7 @@ namespace BizHawk.Client.Common
On = on < 1 ? 0 : on;
Off = off < 1 ? 0 : off;
_emulator = emulator;
internal_frame = _emulator.Frame;
}
private readonly IEmulator _emulator;
@ -25,11 +26,13 @@ namespace BizHawk.Client.Common
public int On { get; set; }
public int Off { get; set; }
private int internal_frame;
public ControllerDefinition Definition => _emulator.ControllerDefinition;
public bool IsPressed(string button)
{
var a = (_emulator.Frame - _buttonStarts[button]) % (On + Off);
var a = (internal_frame - _buttonStarts[button]) % (On + Off);
return a < On && _buttons[button];
}
@ -54,6 +57,8 @@ namespace BizHawk.Client.Common
/// </summary>
public void LatchFromPhysical(IController controller)
{
internal_frame = _emulator.Frame;
foreach (var kvp in _bindings)
{
foreach (var boundBtn in kvp.Value)