summaryrefslogtreecommitdiff
path: root/SDL-3.2.8/src/joystick/check_8bitdo.sh
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2026-03-06 13:26:57 -0800
committer3gg <3gg@shellblade.net>2026-03-06 13:26:57 -0800
commitf5c89b3bd5d74849757fd5b4d1a300068522a3ca (patch)
treed6f6e4c81745b393d7594b334710f30c0b2df3bd /SDL-3.2.8/src/joystick/check_8bitdo.sh
Initial commitHEADmain
Diffstat (limited to 'SDL-3.2.8/src/joystick/check_8bitdo.sh')
-rwxr-xr-xSDL-3.2.8/src/joystick/check_8bitdo.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/SDL-3.2.8/src/joystick/check_8bitdo.sh b/SDL-3.2.8/src/joystick/check_8bitdo.sh
new file mode 100755
index 0000000..7f6f742
--- /dev/null
+++ b/SDL-3.2.8/src/joystick/check_8bitdo.sh
@@ -0,0 +1,15 @@
1#!/bin/sh
2#
3# Check to make sure 8BitDo controller configurations are correct
4
5echo "Expected output:"
6cat <<__EOF__
7 "050000003512000020ab000000780f00,8BitDo SNES30 Gamepad,a:b20,b:b21,back:b30,dpdown:+a1,dpleft:-a0,dpright:+a0,dpup:-a1,leftshoulder:b26,rightshoulder:b27,start:b31,x:b23,y:b24,hint:SDL_GAMECONTROLLER_USE_BUTTON_LABELS:=1,",
8 "050000003512000020ab000000780f00,8BitDo SNES30 Gamepad,a:b21,b:b20,back:b30,dpdown:+a1,dpleft:-a0,dpright:+a0,dpup:-a1,leftshoulder:b26,rightshoulder:b27,start:b31,x:b24,y:b23,hint:!SDL_GAMECONTROLLER_USE_BUTTON_LABELS:=1,",
9
10__EOF__
11
12echo "Actual output:"
13${FGREP:-grep -F} 8BitDo SDL_gamepad_db.h | ${FGREP:-grep -F} -v hint
14${EGREP:-grep -E} "hint:SDL_GAMECONTROLLER_USE_BUTTON_LABELS:=1" SDL_gamepad_db.h | ${FGREP:-grep -F} -i 8bit | ${FGREP:-grep -F} -v x:b2,y:b3 | ${FGREP:-grep -F} -v x:b3,y:b4
15${EGREP:-grep -E} "hint:.SDL_GAMECONTROLLER_USE_BUTTON_LABELS:=1" SDL_gamepad_db.h | ${FGREP:-grep -F} -i 8bit | ${FGREP:-grep -F} -v x:b3,y:b2 | ${FGREP:-grep -F} -v x:b4,y:b3