summaryrefslogtreecommitdiff
path: root/src/joystick.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/joystick.h')
-rw-r--r--src/joystick.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/joystick.h b/src/joystick.h
index 39e96964f..f5495b83e 100644
--- a/src/joystick.h
+++ b/src/joystick.h
@@ -121,12 +121,18 @@ class Joystick
KeysVector *getActionVector(const SDL_Event &event);
+ KeysVector *getActionVectorByKey(int i);
+
int getButtonFromEvent(const SDL_Event &event) const;
bool isActionActive(int index) const;
bool validate() const;
+ void handleRepeat(int time);
+
+ void resetRepeat(int key);
+
protected:
unsigned char mDirection;
@@ -149,6 +155,8 @@ class Joystick
KeyToIdMap mKeyToId;
+ KeyTimeMap mKeyTimeMap;
+
/**
* Is joystick support enabled.
*/