forked from libretro/RetroArch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Input test function for Remote RetroPad
Add input test capability for Remote Retropad core: - read an .ratst file (JSON format) with test steps - display instruction (via libretro SET_MESSAGE) - highlight input to be activated - display summary when test is finished
- Loading branch information
Showing
2 changed files
with
462 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
[ | ||
{ | ||
"expected_button": 8, | ||
"message": "Press A" | ||
}, | ||
{ | ||
"expected_button": 0, | ||
"message": "Press B" | ||
}, | ||
{ | ||
"expected_button": 9, | ||
"message": "Press X" | ||
}, | ||
{ | ||
"expected_button": 1, | ||
"message": "Press Y" | ||
}, | ||
{ | ||
"expected_button": 2, | ||
"message": "Press Select" | ||
}, | ||
{ | ||
"expected_button": 3, | ||
"message": "Press Start" | ||
}, | ||
{ | ||
"expected_button": 4, | ||
"message": "Press D-Pad Up" | ||
}, | ||
{ | ||
"expected_button": 5, | ||
"message": "Press D-Pad Down" | ||
}, | ||
{ | ||
"expected_button": 6, | ||
"message": "Press D-Pad Left" | ||
}, | ||
{ | ||
"expected_button": 7, | ||
"message": "Press D-Pad Right" | ||
}, | ||
{ | ||
"expected_button": 10, | ||
"message": "Press L1" | ||
}, | ||
{ | ||
"expected_button": 11, | ||
"message": "Press R1" | ||
}, | ||
{ | ||
"expected_button": 12, | ||
"message": "Press L2" | ||
}, | ||
{ | ||
"expected_button": 13, | ||
"message": "Press R2" | ||
}, | ||
{ | ||
"expected_button": 14, | ||
"message": "Press L3" | ||
}, | ||
{ | ||
"expected_button": 15, | ||
"message": "Press R3" | ||
}, | ||
{ | ||
"expected_button": 25, | ||
"message": "Move left analog stick up slightly" | ||
}, | ||
{ | ||
"expected_button": 24, | ||
"message": "Move left analog stick up fully" | ||
}, | ||
{ | ||
"expected_button": 26, | ||
"message": "Move left analog stick down slightly" | ||
}, | ||
{ | ||
"expected_button": 27, | ||
"message": "Move left analog stick down fully" | ||
}, | ||
{ | ||
"expected_button": 17, | ||
"message": "Move left analog stick left slightly" | ||
}, | ||
{ | ||
"expected_button": 16, | ||
"message": "Move left analog stick left fully" | ||
}, | ||
{ | ||
"expected_button": 18, | ||
"message": "Move left analog stick right slightly" | ||
}, | ||
{ | ||
"expected_button": 19, | ||
"message": "Move left analog stick right fully" | ||
}, | ||
{ | ||
"expected_button": 29, | ||
"message": "Move right analog stick up slightly" | ||
}, | ||
{ | ||
"expected_button": 28, | ||
"message": "Move right analog stick up fully" | ||
}, | ||
{ | ||
"expected_button": 30, | ||
"message": "Move right analog stick down slightly" | ||
}, | ||
{ | ||
"expected_button": 31, | ||
"message": "Move right analog stick down fully" | ||
}, | ||
{ | ||
"expected_button": 21, | ||
"message": "Move right analog stick left slightly" | ||
}, | ||
{ | ||
"expected_button": 20, | ||
"message": "Move right analog stick left fully" | ||
}, | ||
{ | ||
"expected_button": 22, | ||
"message": "Move right analog stick right slightly" | ||
}, | ||
{ | ||
"expected_button": 23, | ||
"message": "Move right analog stick right fully" | ||
} | ||
] |
Oops, something went wrong.