From d8778aa232858d073192f94cd9057c23d57f58f1 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Wed, 9 Oct 2024 14:26:01 +1000 Subject: [PATCH] Split PSX (Nymashock) rumble channel into left and right --- .../Waterbox/NymaCore.Controller.cs | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs index 933e1b53bb..a30de81703 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Controller.cs @@ -3,6 +3,7 @@ using System.IO; using System.Linq; using BizHawk.Common; +using BizHawk.Common.NumberExtensions; using BizHawk.Common.StringExtensions; using BizHawk.Emulation.Common; using NymaTypes; @@ -295,14 +296,21 @@ namespace BizHawk.Emulation.Cores.Waterbox // TODO: wire up statuses to something (not controller, of course) break; case InputType.Rumble: - ret.HapticsChannels.Add(name); + //TODO Does this apply to all Mednafen's systems? (This is for PSX.) Might need to pass more metadata through to here + var nameLeft = $"{name} Left (strong)"; + var nameRight = $"{name} Right (weak)"; + ret.HapticsChannels.Add(nameLeft); + ret.HapticsChannels.Add(nameRight); // this is a special case, we treat b here as output rather than input // so these thunks are called after the frame has advanced _rumblers.Add((c, b) => { - // TODO: not entirely sure this is correct... - var val = b[byteStart] | (b[byteStart + 1] << 8); - c.SetHapticChannelStrength(name, val << 7); + const double S32_MAX_AS_F64 = int.MaxValue; + static int Scale(byte b) + => (b * S32_MAX_AS_F64).RoundToInt(); + //TODO double-check order + c.SetHapticChannelStrength(nameRight, Scale(b[byteStart])); + c.SetHapticChannelStrength(nameLeft, Scale(b[byteStart + 1])); }); break; default: