Qt: Update input profiles

This commit is contained in:
Jeffrey Pfau 2015-07-17 18:22:46 -07:00
parent b6889d77f8
commit 3a53e27927
1 changed files with 58 additions and 33 deletions

View File

@ -12,6 +12,56 @@
using namespace QGBA; using namespace QGBA;
const InputProfile InputProfile::s_defaultMaps[] = { const InputProfile InputProfile::s_defaultMaps[] = {
{
"XInput Controller #\\d+", // XInput (Windows)
(int[GBA_KEY_MAX]) {
/*keyA */ 11,
/*keyB */ 10,
/*keySelect */ 5,
/*keyStart */ 4,
/*keyRight */ 3,
/*keyLeft */ 2,
/*keyUp */ 0,
/*keyDown */ 1,
/*keyR */ 9,
/*keyL */ 8
},
(ShortcutButton[]) {
{"loadState", 12},
{"saveState", 13},
{}
},
(ShortcutAxis[]) {
{"holdFastForward", GamepadAxisEvent::Direction::POSITIVE, 5},
{"holdRewind", GamepadAxisEvent::Direction::POSITIVE, 4},
{}
}
},
{
"Controller", // The Xbox 360 controller drivers on OS X are vague...
(int[GBA_KEY_MAX]) {
/*keyA */ 1,
/*keyB */ 0,
/*keySelect */ 9,
/*keyStart */ 8,
/*keyRight */ 14,
/*keyLeft */ 13,
/*keyUp */ 11,
/*keyDown */ 12,
/*keyR */ 5,
/*keyL */ 4
},
(ShortcutButton[]) {
{"loadState", 2},
{"saveState", 3},
{}
},
(ShortcutAxis[]) {
{"holdFastForward", GamepadAxisEvent::Direction::POSITIVE, 5},
{"holdRewind", GamepadAxisEvent::Direction::POSITIVE, 2},
{}
}
},
{ {
"PLAYSTATION\\(R\\)3 Controller", // DualShock 3 (OS X) "PLAYSTATION\\(R\\)3 Controller", // DualShock 3 (OS X)
(int[GBA_KEY_MAX]) { (int[GBA_KEY_MAX]) {
@ -19,10 +69,10 @@ const InputProfile InputProfile::s_defaultMaps[] = {
/*keyB */ 14, /*keyB */ 14,
/*keySelect */ 0, /*keySelect */ 0,
/*keyStart */ 3, /*keyStart */ 3,
/*keyRight */ -1, /*keyRight */ 5,
/*keyLeft */ -1, /*keyLeft */ 7,
/*keyUp */ -1, /*keyUp */ 4,
/*keyDown */ -1, /*keyDown */ 6,
/*keyR */ 11, /*keyR */ 11,
/*keyL */ 10 /*keyL */ 10
}, },
@ -41,10 +91,10 @@ const InputProfile InputProfile::s_defaultMaps[] = {
/*keyB */ 16, /*keyB */ 16,
/*keySelect */ 7, /*keySelect */ 7,
/*keyStart */ 6, /*keyStart */ 6,
/*keyRight */ -1, /*keyRight */ 14,
/*keyLeft */ -1, /*keyLeft */ 13,
/*keyUp */ -1, /*keyUp */ 11,
/*keyDown */ -1, /*keyDown */ 12,
/*keyR */ 20, /*keyR */ 20,
/*keyL */ 19 /*keyL */ 19
}, },
@ -56,31 +106,6 @@ const InputProfile InputProfile::s_defaultMaps[] = {
{} {}
} }
}, },
{
"Controller", // The Xbox 360 controller drivers on OS X are vague...
(int[GBA_KEY_MAX]) {
/*keyA */ 1,
/*keyB */ 0,
/*keySelect */ 9,
/*keyStart */ 8,
/*keyRight */ -1,
/*keyLeft */ -1,
/*keyUp */ -1,
/*keyDown */ -1,
/*keyR */ 5,
/*keyL */ 4
},
(ShortcutButton[]) {
{"loadState", 2},
{"saveState", 3},
{}
},
(ShortcutAxis[]) {
{"holdFastForward", GamepadAxisEvent::Direction::POSITIVE, 5},
{"holdRewind", GamepadAxisEvent::Direction::POSITIVE, 2},
{}
}
},
}; };
constexpr InputProfile::InputProfile(const char* name, constexpr InputProfile::InputProfile(const char* name,