JoystickSDL.h 982 Bytes
Newer Older
Gregory Dymarek's avatar
Gregory Dymarek committed
1 2 3 4 5 6 7
#ifndef JOYSTICKSDL_H
#define JOYSTICKSDL_H

#include "Joystick.h"
#include "Vehicle.h"
#include "MultiVehicleManager.h"

8
#include <SDL.h>
Gregory Dymarek's avatar
Gregory Dymarek committed
9 10 11 12

class JoystickSDL : public Joystick
{
public:
13
    JoystickSDL(const QString& name, int axisCount, int buttonCount, int hatCount, int index, bool isGameController, MultiVehicleManager* multiVehicleManager);
Gregory Dymarek's avatar
Gregory Dymarek committed
14 15

    static QMap<QString, Joystick*> discover(MultiVehicleManager* _multiVehicleManager); 
Jacob Walser's avatar
Jacob Walser committed
16 17 18 19
    static bool init(void);

    int index(void) { return _index; }
    void setIndex(int index) { _index = index; }
Gregory Dymarek's avatar
Gregory Dymarek committed
20 21

private:
22 23
    static void _loadGameControllerMappings();

Gregory Dymarek's avatar
Gregory Dymarek committed
24 25 26
    bool _open() final;
    void _close() final;
    bool _update() final;
Gregory Dymarek's avatar
Gregory Dymarek committed
27

Gregory Dymarek's avatar
Gregory Dymarek committed
28 29
    bool _getButton(int i) final;
    int _getAxis(int i) final;
30
    uint8_t _getHat(int hat,int i) final;
Gregory Dymarek's avatar
Gregory Dymarek committed
31 32

    SDL_Joystick *sdlJoystick;
33 34
    SDL_GameController *sdlController;
    bool    _isGameController;
Gregory Dymarek's avatar
Gregory Dymarek committed
35 36 37 38
    int     _index;      ///< Index for SDL_JoystickOpen
};

#endif // JOYSTICKSDL_H