pcsx2/plugins/onepad/GamePad.cpp

38 lines
869 B
C++
Raw Normal View History

#include "GamePad.h"
2016-09-04 12:10:02 +00:00
#ifdef SDL_BUILD
#include "SDL/joystick.h"
#endif
std::vector<std::unique_ptr<GamePad>> s_vgamePad;
bool GamePadIdWithinBounds(int GamePadId)
{
2016-09-04 12:10:02 +00:00
return ((GamePadId >= 0) && (GamePadId < (int)s_vgamePad.size()));
}
/**
* Following static methods are just forwarders to their backend
* This is where link between agnostic and specific code is done
**/
/**
* Find every interesting devices and create right structure for them(depend on backend)
**/
void GamePad::EnumerateGamePads(std::vector<std::unique_ptr<GamePad>> &vgamePad)
{
2016-09-04 12:10:02 +00:00
#ifdef SDL_BUILD
JoystickInfo::EnumerateJoysticks(vgamePad);
#endif
}
/**
* Safely dispatch to the Rumble method above
**/
void GamePad::DoRumble(unsigned type, unsigned pad)
{
2016-09-04 12:10:02 +00:00
u32 id = conf->get_joyid(pad);
if (GamePadIdWithinBounds(id)) {
s_vgamePad[id]->Rumble(type, pad);
2016-09-04 12:10:02 +00:00
}
}