Joystick.h 6.01 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/*=====================================================================
 
 QGroundControl Open Source Ground Control Station
 
 (c) 2009 - 2014 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 
 This file is part of the QGROUNDCONTROL project
 
 QGROUNDCONTROL is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.
 
 QGROUNDCONTROL is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
 
 ======================================================================*/

#ifndef Joystick_H
#define Joystick_H

#include <QObject>
#include <QThread>

#include "QGCLoggingCategory.h"
#include "Vehicle.h"
32
#include "MultiVehicleManager.h"
33 34

Q_DECLARE_LOGGING_CATEGORY(JoystickLog)
35
Q_DECLARE_LOGGING_CATEGORY(JoystickValuesLog)
36 37 38 39 40 41

class Joystick : public QThread
{
    Q_OBJECT
    
public:
42
    Joystick(const QString& name, int axisCount, int buttonCount, MultiVehicleManager* multiVehicleManager);
43
    ~Joystick();
44

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
    typedef struct {
        int     min;
        int     max;
        int     center;
        bool    reversed;
    } Calibration_t;
    
    typedef enum {
        rollFunction,
        pitchFunction,
        yawFunction,
        throttleFunction,
        maxFunction
    } AxisFunction_t;
    
    typedef enum {
        ThrottleModeCenterZero,
        ThrottleModeDownZero,
        ThrottleModeMax
    } ThrottleMode_t;
    
    Q_PROPERTY(QString name READ name CONSTANT)
    
Don Gagne's avatar
Don Gagne committed
68
    Q_PROPERTY(bool calibrated MEMBER _calibrated NOTIFY calibratedChanged)
69
    
70 71
    Q_PROPERTY(int buttonCount  READ buttonCount    CONSTANT)
    Q_PROPERTY(int axisCount    READ axisCount      CONSTANT)
72 73 74 75
    
    Q_PROPERTY(QStringList actions READ actions CONSTANT)
    
    Q_PROPERTY(QVariantList buttonActions READ buttonActions NOTIFY buttonActionsChanged)
Don Gagne's avatar
Don Gagne committed
76 77
    Q_INVOKABLE void setButtonAction(int button, const QString& action);
    Q_INVOKABLE QString getButtonAction(int button);
78 79
    
    Q_PROPERTY(int throttleMode READ throttleMode WRITE setThrottleMode NOTIFY throttleModeChanged)
80 81 82 83 84

    // Property accessors

    int axisCount(void) { return _axisCount; }
    int buttonCount(void) { return _buttonCount; }
85 86
    
    /// Start the polling thread which will in turn emit joystick signals
87
    void startPolling(Vehicle* vehicle);
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    void stopPolling(void);
    
    void setCalibration(int axis, Calibration_t& calibration);
    Calibration_t getCalibration(int axis);
    
    void setFunctionAxis(AxisFunction_t function, int axis);
    int getFunctionAxis(AxisFunction_t function);
    
    QStringList actions(void);
    QVariantList buttonActions(void);
    
    QString name(void) { return _name; }
    
    int throttleMode(void);
    void setThrottleMode(int mode);
    
Don Gagne's avatar
Don Gagne committed
104 105 106 107 108 109 110 111
    typedef enum {
        CalibrationModeOff,         // Not calibrating
        CalibrationModeMonitor,     // Monitors are active, continue to send to vehicle if already polling
        CalibrationModeCalibrating, // Calibrating, stop sending joystick to vehicle
    } CalibrationMode_t;
    
    /// Set the current calibration mode
    void startCalibrationMode(CalibrationMode_t mode);
112
    
Don Gagne's avatar
Don Gagne committed
113 114
    /// Clear the current calibration mode
    void stopCalibrationMode(CalibrationMode_t mode);
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
    
signals:
    void calibratedChanged(bool calibrated);
    
    // The raw signals are only meant for use by calibration
    void rawAxisValueChanged(int index, int value);
    void rawButtonPressedChanged(int index, int pressed);
    
    void buttonActionsChanged(QVariantList actions);
    
    void throttleModeChanged(int mode);
    
    void enabledChanged(bool enabled);
    
    /// Signal containing new joystick information
    ///     @param roll     Range is -1:1, negative meaning roll left, positive meaning roll right
    ///     @param pitch    Range i -1:1, negative meaning pitch down, positive meaning pitch up
    ///     @param yaw      Range is -1:1, negative meaning yaw left, positive meaning yaw right
    ///     @param throttle Range is 0:1, 0 meaning no throttle, 1 meaning full throttle
    ///     @param mode     See Vehicle::JoystickMode_t enum
    void manualControl(float roll, float pitch, float yaw, float throttle, quint16 buttons, int joystickMmode);
    
    void buttonActionTriggered(int action);
    
139
protected:
140 141 142
    void _saveSettings(void);
    void _loadSettings(void);
    float _adjustRange(int value, Calibration_t calibration);
Don Gagne's avatar
Don Gagne committed
143
    void _buttonAction(const QString& action);
144 145 146
    bool _validAxis(int axis);
    bool _validButton(int button);

147 148 149 150 151 152 153 154
private:
    virtual bool open() = 0;
    virtual void close() = 0;
    virtual bool update() = 0;

    virtual bool getButton(int i) = 0;
    virtual int getAxis(int i) = 0;

155 156 157
    // Override from QThread
    virtual void run(void);

158
protected:
159 160 161 162 163 164 165 166
    
    bool    _exitThread;    ///< true: signal thread to exit
    
    QString _name;
    bool    _calibrated;
    int     _axisCount;
    int     _buttonCount;
    
Don Gagne's avatar
Don Gagne committed
167 168
    CalibrationMode_t   _calibrationMode;
    
169 170
    int*                _rgAxisValues;
    Calibration_t*      _rgCalibration;
171 172
    int                 _rgFunctionAxis[maxFunction];
    
173 174
    bool*               _rgButtonValues;
    QString*            _rgButtonActions;
175 176 177
    quint16             _lastButtonBits;
    
    ThrottleMode_t      _throttleMode;
178 179 180
    
    Vehicle*            _activeVehicle;
    bool                _pollingStartedForCalibration;
181 182

    MultiVehicleManager*    _multiVehicleManager;
183
    
184 185 186
private:
    static const char*  _rgFunctionSettingsKey[maxFunction];

187 188 189 190 191 192 193
    static const char* _settingsGroup;
    static const char* _calibratedSettingsKey;
    static const char* _buttonActionSettingsKey;
    static const char* _throttleModeSettingsKey;
};
    
#endif