From f6da980fbaef3599c23c54f1590f42a67cf2d278 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Tue, 8 Oct 2024 22:44:48 +1000 Subject: [PATCH] Add debug readout for haptic feedback (SDL2 only) build with `-p:MachineExtraCompilationFlag=BIZHAWKBUILD_DEBUG_RUMBLE` there's nothing special about SDL2 I just can't be bothered finding the other impls --- src/BizHawk.Bizware.Input/SDL2/SDL2InputAdapter.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/BizHawk.Bizware.Input/SDL2/SDL2InputAdapter.cs b/src/BizHawk.Bizware.Input/SDL2/SDL2InputAdapter.cs index d9a3d1415c..2cdc2c5242 100644 --- a/src/BizHawk.Bizware.Input/SDL2/SDL2InputAdapter.cs +++ b/src/BizHawk.Bizware.Input/SDL2/SDL2InputAdapter.cs @@ -6,6 +6,9 @@ using System.Linq; using BizHawk.Client.Common; using BizHawk.Common; using BizHawk.Common.CollectionExtensions; +#if BIZHAWKBUILD_DEBUG_RUMBLE +using BizHawk.Common.NumberExtensions; +#endif using static SDL2.SDL; @@ -170,6 +173,12 @@ namespace BizHawk.Bizware.Input { var leftStrength = _lastHapticsSnapshot.GetValueOrDefault(pad.InputNamePrefix + "Left"); var rightStrength = _lastHapticsSnapshot.GetValueOrDefault(pad.InputNamePrefix + "Right"); +#if BIZHAWKBUILD_DEBUG_RUMBLE + const int WIDTH = 50; // don't forget to change PACKED_BAR_GRAPHICS too + const string PACKED_BAR_GRAPHICS = " ################################################## "; + const float SCALE_FACTOR = (float) (WIDTH / (double) int.MaxValue); + Console.WriteLine($"rumble: [{PACKED_BAR_GRAPHICS.Substring(startIndex: (leftStrength * SCALE_FACTOR).RoundToInt(), length: WIDTH)}] L / R [{PACKED_BAR_GRAPHICS.Substring(startIndex: 2 * WIDTH - (rightStrength * SCALE_FACTOR).RoundToInt(), length: WIDTH)}]"); +#endif pad.SetVibration(leftStrength, rightStrength); } }