controller hid identification + ps4 buttons
@ -25,6 +25,8 @@
|
||||
"controlify.gui.left_trigger_threshold.tooltip": "How far the left trigger needs to be pushed before registering as pressed.",
|
||||
"controlify.gui.right_trigger_threshold": "Right Trigger Threshold",
|
||||
"controlify.gui.right_trigger_threshold.tooltip": "How far the right trigger needs to be pushed before registering as pressed.",
|
||||
"controlify.gui.controller_theme": "Controller Theme",
|
||||
"controlify.gui.controller_theme.tooltip": "The theme to use for rendering controller buttons.",
|
||||
|
||||
"controlify.gui.group.controls": "Controls",
|
||||
"controlify.gui.group.controls.tooltip": "Adjust the controller controls.",
|
||||
@ -43,6 +45,10 @@
|
||||
"controlify.toast.controller_disconnected.title": "Controller Disconnected",
|
||||
"controlify.toast.controller_disconnected.description": "'%s' was disconnected.",
|
||||
|
||||
"controlify.controller_theme.auto": "Auto",
|
||||
"controlify.controller_theme.xbox_one": "Xbox",
|
||||
"controlify.controller_theme.dualshock4": "PS4",
|
||||
|
||||
"controlify.binding.controlify.jump": "Jump",
|
||||
"controlify.binding.controlify.sneak": "Sneak",
|
||||
"controlify.binding.controlify.attack": "Attack",
|
||||
|
Before Width: | Height: | Size: 224 B |
Before Width: | Height: | Size: 238 B |
Before Width: | Height: | Size: 262 B |
Before Width: | Height: | Size: 244 B |
Before Width: | Height: | Size: 232 B |
Before Width: | Height: | Size: 253 B |
Before Width: | Height: | Size: 310 B |
Before Width: | Height: | Size: 294 B |
Before Width: | Height: | Size: 320 B |
Before Width: | Height: | Size: 302 B |
Before Width: | Height: | Size: 257 B |
Before Width: | Height: | Size: 271 B |
Before Width: | Height: | Size: 242 B |
Before Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 384 B |
Before Width: | Height: | Size: 282 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 220 B |
Before Width: | Height: | Size: 269 B |
Before Width: | Height: | Size: 246 B |
Before Width: | Height: | Size: 276 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 264 B |
Before Width: | Height: | Size: 1.5 KiB |
30
src/main/resources/hiddb.json5
Normal file
@ -0,0 +1,30 @@
|
||||
// THIS FILE IS PARSED BY LENIENT GSON PARSER AND IS NOT JSON5 COMPLIANT!
|
||||
{
|
||||
"xbox_one": {
|
||||
"vendor": 1118, // 0x45e
|
||||
"friendly_name": "Xbox One Controller",
|
||||
"product": [
|
||||
767, // 0x2ff
|
||||
746, // 0x2ea
|
||||
2834, // 0xb12
|
||||
733, // 0x2dd
|
||||
739, // 0x2e3
|
||||
742, // 0x2e6
|
||||
765, // 0x2fd
|
||||
721, // 0x2d1
|
||||
649, // 0x289
|
||||
514, // 0x202
|
||||
645, // 0x285
|
||||
648 // 0x288
|
||||
]
|
||||
},
|
||||
"dualshock4": {
|
||||
"vendor": 1356, // 0x54c
|
||||
"friendly_name": "PS4 Controller",
|
||||
"product": [
|
||||
1476, // 0x5c4
|
||||
2508, // 0x9cc
|
||||
2976 // 0xba0
|
||||
]
|
||||
}
|
||||
}
|