mirror of
https://github.com/libretro/Play-.git
synced 2024-12-14 04:28:54 +00:00
14129468e4
Fixed TR1 compilance. Input configuration support for Win32. Support for analog axis in PadMan. git-svn-id: http://svn.purei.org/purei/trunk@361 b36208d7-6611-0410-8bec-b1987f11c4a2
36 lines
651 B
C++
36 lines
651 B
C++
#include "ControllerInfo.h"
|
|
|
|
using namespace PS2;
|
|
|
|
const char* CControllerInfo::m_buttonName[CControllerInfo::MAX_BUTTONS] =
|
|
{
|
|
"analog_left_x",
|
|
"analog_left_y",
|
|
"analog_right_x",
|
|
"analog_right_y",
|
|
"dpad_up",
|
|
"dpad_down",
|
|
"dpad_left",
|
|
"dpad_right",
|
|
"select",
|
|
"start",
|
|
"square",
|
|
"triangle",
|
|
"circle",
|
|
"cross",
|
|
"l1",
|
|
"l2",
|
|
"r1",
|
|
"r2",
|
|
};
|
|
|
|
bool CControllerInfo::IsAxis(BUTTON button)
|
|
{
|
|
return
|
|
(button == ANALOG_LEFT_X) ||
|
|
(button == ANALOG_LEFT_Y) ||
|
|
(button == ANALOG_RIGHT_X) ||
|
|
(button == ANALOG_RIGHT_Y);
|
|
}
|
|
|