mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
31 lines
752 B
C++
31 lines
752 B
C++
#pragma once
|
|
#include <SDL3/SDL.h>
|
|
#include <map>
|
|
#include <vector>
|
|
|
|
#include "Common/Input/InputState.h"
|
|
#include "Common/Input/KeyCodes.h"
|
|
#include "Common/Net/Resolve.h"
|
|
|
|
class SDLJoystick{
|
|
public:
|
|
SDLJoystick(bool init_SDL = false);
|
|
~SDLJoystick();
|
|
|
|
void registerEventHandler();
|
|
void ProcessInput(const SDL_Event &event);
|
|
|
|
private:
|
|
void setUpController(SDL_JoystickID deviceID);
|
|
void setUpControllers();
|
|
InputKeyCode getKeycodeForButton(SDL_GamepadButton button);
|
|
int getDeviceIndex(int instanceId);
|
|
|
|
bool registeredAsEventHandler;
|
|
std::vector<SDL_Gamepad *> controllers;
|
|
std::map<int, int> controllerDeviceMap;
|
|
|
|
// Deduplicate axis events. Pair is device, axis.
|
|
std::map<std::pair<InputDeviceID, InputAxis>, float> prevAxisValue_;
|
|
};
|