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
This commit is contained in:
YoshiRulz 2024-10-08 22:44:48 +10:00
parent 154a49cd81
commit f6da980fba
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 9 additions and 0 deletions

View File

@ -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);
}
}