ES-DE/src/InputManager.h

54 lines
981 B
C
Raw Normal View History

#ifndef _INPUTMANAGER_H_
#define _INPUTMANAGER_H_
#include <SDL.h>
#include <vector>
#include <map>
2013-04-08 16:52:40 +00:00
#include <string>
class InputConfig;
class Window;
//you should only ever instantiate one of these, by the way
class InputManager
{
public:
InputManager(Window* window);
~InputManager();
2013-04-08 16:52:40 +00:00
void loadConfig();
2013-04-11 22:27:27 +00:00
void writeConfig();
2013-04-08 16:52:40 +00:00
static std::string getConfigPath();
void init();
void deinit();
void setNumPlayers(int num);
int getNumPlayers();
int getNumJoysticks();
2013-04-08 16:52:40 +00:00
bool parseEvent(const SDL_Event& ev);
InputConfig* getInputConfigByPlayer(int player);
private:
static const int DEADZONE = 23000;
Window* mWindow;
//non-InputManager classes shouldn't use this, as you can easily miss the keyboard
InputConfig* getInputConfigByDevice(int device);
void loadDefaultConfig();
int mNumJoysticks;
int mNumPlayers;
SDL_Joystick** mJoysticks;
InputConfig** mInputConfigs;
InputConfig* mKeyboardInputConfig;
std::map<int, int>* mPrevAxisValues;
};
#endif