MissionItem.h 10.4 KB
Newer Older
pixhawk's avatar
pixhawk committed
1
/*=====================================================================
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 
 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/>.
 
 ======================================================================*/
pixhawk's avatar
pixhawk committed
23

24 25
#ifndef MissionItem_H
#define MissionItem_H
pixhawk's avatar
pixhawk committed
26 27 28

#include <QObject>
#include <QString>
29
#include <QtQml>
30
#include <QTextStream>
31 32
#include <QGeoCoordinate>

lm's avatar
lm committed
33
#include "QGCMAVLink.h"
lm's avatar
lm committed
34
#include "QGC.h"
35
#include "MavlinkQmlSingleton.h"
Don Gagne's avatar
Don Gagne committed
36 37
#include "QmlObjectListModel.h"
#include "Fact.h"
Don Gagne's avatar
Don Gagne committed
38
#include "QGCLoggingCategory.h"
Don Gagne's avatar
Don Gagne committed
39
#include "QmlObjectListModel.h"
Don Gagne's avatar
Don Gagne committed
40 41

Q_DECLARE_LOGGING_CATEGORY(MissionItemLog)
pixhawk's avatar
pixhawk committed
42

43
class MissionItem : public QObject
pixhawk's avatar
pixhawk committed
44 45
{
    Q_OBJECT
46
    
pixhawk's avatar
pixhawk committed
47
public:
Don Gagne's avatar
Don Gagne committed
48 49 50
    MissionItem(QObject         *parent = 0,
                int             sequenceNumber = 0,
                QGeoCoordinate  coordiante = QGeoCoordinate(),
Don Gagne's avatar
Don Gagne committed
51
                int             action = MAV_CMD_NAV_WAYPOINT,
Don Gagne's avatar
Don Gagne committed
52 53 54 55 56 57
                double          param1 = 0.0,
                double          param2 = 0.0,
                double          param3 = 0.0,
                double          param4 = 0.0,
                bool            autocontinue = true,
                bool            isCurrentItem = false,
Don Gagne's avatar
Don Gagne committed
58
                int             frame = MAV_FRAME_GLOBAL_RELATIVE_ALT);
59

Don Gagne's avatar
Don Gagne committed
60
    MissionItem(const MissionItem& other, QObject* parent = NULL);
61
    ~MissionItem();
pixhawk's avatar
pixhawk committed
62

63 64
    const MissionItem& operator=(const MissionItem& other);
    
Don Gagne's avatar
Don Gagne committed
65 66 67
    /// Returns true if the item has been modified since the last time dirty was false
    Q_PROPERTY(bool                 dirty               READ dirty                  WRITE setDirty          NOTIFY dirtyChanged)
    
Don Gagne's avatar
Don Gagne committed
68 69
    Q_PROPERTY(int                  sequenceNumber      READ sequenceNumber         WRITE setSequenceNumber NOTIFY sequenceNumberChanged)
    Q_PROPERTY(bool                 isCurrentItem       READ isCurrentItem          WRITE setIsCurrentItem  NOTIFY isCurrentItemChanged)
70
    Q_PROPERTY(bool                 specifiesCoordinate READ specifiesCoordinate                            NOTIFY commandChanged)
Don Gagne's avatar
Don Gagne committed
71 72 73 74 75 76
    Q_PROPERTY(QGeoCoordinate       coordinate          READ coordinate             WRITE setCoordinate     NOTIFY coordinateChanged)
    Q_PROPERTY(QStringList          commandNames        READ commandNames                                   CONSTANT)
    Q_PROPERTY(QString              commandName         READ commandName                                    NOTIFY commandChanged)
    Q_PROPERTY(QStringList          valueLabels         READ valueLabels                                    NOTIFY commandChanged)
    Q_PROPERTY(QStringList          valueStrings        READ valueStrings                                   NOTIFY valueStringsChanged)
    Q_PROPERTY(int                  commandByIndex      READ commandByIndex         WRITE setCommandByIndex NOTIFY commandChanged)
77 78
    Q_PROPERTY(QmlObjectListModel*  textFieldFacts      READ textFieldFacts                                 NOTIFY commandChanged)
    Q_PROPERTY(QmlObjectListModel*  checkboxFacts       READ checkboxFacts                                  NOTIFY commandChanged)
Don Gagne's avatar
Don Gagne committed
79
    Q_PROPERTY(MavlinkQmlSingleton::Qml_MAV_CMD command READ command                WRITE setCommand        NOTIFY commandChanged)
Don Gagne's avatar
Don Gagne committed
80
    Q_PROPERTY(QmlObjectListModel*  childItems          READ childItems                                     CONSTANT)
Don Gagne's avatar
Don Gagne committed
81 82 83 84 85 86 87 88
    
    // Property accesors
    
    int sequenceNumber(void) const { return _sequenceNumber; }
    void setSequenceNumber(int sequenceNumber);
    
    bool isCurrentItem(void) const { return _isCurrentItem; }
    void setIsCurrentItem(bool isCurrentItem);
89
    
Don Gagne's avatar
Don Gagne committed
90
    bool specifiesCoordinate(void) const;
91
    
92
    QGeoCoordinate coordinate(void) const;
Don Gagne's avatar
Don Gagne committed
93 94 95 96
    void setCoordinate(const QGeoCoordinate& coordinate);
    
    QStringList commandNames(void);
    QString commandName(void);
97

Don Gagne's avatar
Don Gagne committed
98 99 100
    int commandByIndex(void);
    void setCommandByIndex(int index);
    
Don Gagne's avatar
Don Gagne committed
101
    MavlinkQmlSingleton::Qml_MAV_CMD command(void) { return (MavlinkQmlSingleton::Qml_MAV_CMD)_command; };
Don Gagne's avatar
Don Gagne committed
102 103 104 105 106
    void setCommand(MavlinkQmlSingleton::Qml_MAV_CMD command) { setAction(command); }
    
    QStringList valueLabels(void);
    QStringList valueStrings(void);
    
107 108
    QmlObjectListModel* textFieldFacts(void);
    QmlObjectListModel* checkboxFacts(void);
Don Gagne's avatar
Don Gagne committed
109 110 111 112
    
    double yawDegrees(void) const;
    void setYawDegrees(double yaw);
    
Don Gagne's avatar
Don Gagne committed
113 114 115
    bool dirty(void) { return _dirty; }
    void setDirty(bool dirty);
    
Don Gagne's avatar
Don Gagne committed
116 117
    QmlObjectListModel* childItems(void) { return &_childItems; }
    
Don Gagne's avatar
Don Gagne committed
118
    // C++ only methods
Don Gagne's avatar
Don Gagne committed
119 120 121
    
    /// Returns true if this item can be edited in the ui
    bool canEdit(void);
122

123 124 125
    double latitude(void)  const { return _latitudeFact->value().toDouble(); }
    double longitude(void) const { return _longitudeFact->value().toDouble(); }
    double altitude(void)  const { return _altitudeFact->value().toDouble(); }
Don Gagne's avatar
Don Gagne committed
126 127 128 129 130 131 132 133 134 135 136 137 138
    
    void setLatitude(double latitude);
    void setLongitude(double longitude);
    void setAltitude(double altitude);
    
    double x(void) const { return latitude(); }
    double y(void) const { return longitude(); }
    double z(void) const { return altitude(); }
    
    void setX(double x);
    void setY(double y);
    void setZ(double z);
    
Don Gagne's avatar
Don Gagne committed
139 140
    double yawRadians(void) const;
    void setYawRadians(double yaw);
Don Gagne's avatar
Don Gagne committed
141
    
Don Gagne's avatar
Don Gagne committed
142
    bool autoContinue() const {
143
        return _autocontinue;
144
    }
Don Gagne's avatar
Don Gagne committed
145 146
    double loiterOrbitRadius() const {
        return _loiterOrbitRadiusFact->value().toDouble();
147
    }
Don Gagne's avatar
Don Gagne committed
148 149
    double acceptanceRadius() const {
        return param2();
150
    }
Don Gagne's avatar
Don Gagne committed
151 152
    double holdTime() const {
        return param1();
153
    }
Don Gagne's avatar
Don Gagne committed
154
    double param1() const {
Don Gagne's avatar
Don Gagne committed
155
        return _param1Fact->value().toDouble();
156
    }
Don Gagne's avatar
Don Gagne committed
157
    double param2() const {
Don Gagne's avatar
Don Gagne committed
158
        return _param2Fact->value().toDouble();
159
    }
Don Gagne's avatar
Don Gagne committed
160
    double param3() const {
Don Gagne's avatar
Don Gagne committed
161
        return loiterOrbitRadius();
162
    }
Don Gagne's avatar
Don Gagne committed
163
    double param4() const {
Don Gagne's avatar
Don Gagne committed
164
        return yawRadians();
165
    }
Don Gagne's avatar
Don Gagne committed
166
    double param5() const {
Don Gagne's avatar
Don Gagne committed
167
        return latitude();
168
    }
Don Gagne's avatar
Don Gagne committed
169
    double param6() const {
Don Gagne's avatar
Don Gagne committed
170
        return longitude();
171
    }
Don Gagne's avatar
Don Gagne committed
172
    double param7() const {
Don Gagne's avatar
Don Gagne committed
173
        return altitude();
174
    }
175
    // MAV_FRAME
176 177
    int frame() const;
    
178
    // MAV_CMD
Don Gagne's avatar
Don Gagne committed
179 180
    int command() const {
        return _command;
181
    }
lm's avatar
lm committed
182 183
    /** @brief Returns true if x, y, z contain reasonable navigation data */
    bool isNavigationType();
184

185
    /** @brief Get the time this waypoint was reached */
Don Gagne's avatar
Don Gagne committed
186
    quint64 reachedTime() const { return _reachedTime; }
187

188 189
    void save(QTextStream &saveStream);
    bool load(QTextStream &loadStream);
190
    
Don Gagne's avatar
Don Gagne committed
191 192
    void setHomePositionSpecialCase(bool homePositionSpecialCase) { _homePositionSpecialCase = homePositionSpecialCase; }
    
Don Gagne's avatar
Don Gagne committed
193 194 195 196
signals:
    void sequenceNumberChanged(int sequenceNumber);
    void isCurrentItemChanged(bool isCurrentItem);
    void coordinateChanged(const QGeoCoordinate& coordinate);
Don Gagne's avatar
Don Gagne committed
197
    void dirtyChanged(bool dirty);
Don Gagne's avatar
Don Gagne committed
198 199 200

    /** @brief Announces a change to the waypoint data */
    void changed(MissionItem* wp);
201

202
    
Don Gagne's avatar
Don Gagne committed
203 204 205 206
    void commandNameChanged(QString type);
    void commandChanged(MavlinkQmlSingleton::Qml_MAV_CMD command);
    void valueLabelsChanged(QStringList valueLabels);
    void valueStringsChanged(QStringList valueStrings);
207
    
208
public:
209
    /** @brief Set the waypoint action */
210 211
    void setAction      (int _action);
    void setFrame       (int _frame);
pixhawk's avatar
pixhawk committed
212
    void setAutocontinue(bool autoContinue);
213
    void setCurrent     (bool _current);
Don Gagne's avatar
Don Gagne committed
214
    void setLoiterOrbitRadius (double radius);
215 216 217 218 219 220 221
    void setParam1      (double _param1);
    void setParam2      (double _param2);
    void setParam3      (double param3);
    void setParam4      (double param4);
    void setParam5      (double param5);
    void setParam6      (double param6);
    void setParam7      (double param7);
222
    void setAcceptanceRadius(double radius);
223 224
    void setHoldTime    (int holdTime);
    void setHoldTime    (double holdTime);
lm's avatar
lm committed
225
    /** @brief Set waypoint as reached */
226
    void setReached     () { _reachedTime = QGC::groundTimeMilliseconds(); }
lm's avatar
lm committed
227
    /** @brief Wether this waypoint has been reached yet */
228 229
    bool isReached      () { return (_reachedTime > 0); }

230 231 232
    void setChanged() {
        emit changed(this);
    }
Don Gagne's avatar
Don Gagne committed
233 234 235
    
private slots:
    void _factValueChanged(QVariant value);
236
    void _coordinateFactChanged(QVariant value);
237

238 239
private:
    QString _oneDecimalString(double value);
Don Gagne's avatar
Don Gagne committed
240 241 242 243 244 245 246

private:
    typedef struct {
        MAV_CMD     command;
        const char* name;
    } MavCmd2Name_t;
    
Don Gagne's avatar
Don Gagne committed
247 248 249 250 251 252
    int                                 _sequenceNumber;
    int                                 _frame;
    MavlinkQmlSingleton::Qml_MAV_CMD    _command;
    bool                                _autocontinue;
    bool                                _isCurrentItem;
    quint64                             _reachedTime;
Don Gagne's avatar
Don Gagne committed
253
    
254 255 256
    Fact*           _latitudeFact;
    Fact*           _longitudeFact;
    Fact*           _altitudeFact;
Don Gagne's avatar
Don Gagne committed
257 258
    Fact*           _yawRadiansFact;
    Fact*           _loiterOrbitRadiusFact;
Don Gagne's avatar
Don Gagne committed
259 260
    Fact*           _param1Fact;
    Fact*           _param2Fact;
261
    Fact*           _altitudeRelativeToHomeFact;
Don Gagne's avatar
Don Gagne committed
262 263 264 265 266 267 268 269 270 271
    
    FactMetaData*   _pitchMetaData;
    FactMetaData*   _acceptanceRadiusMetaData;
    FactMetaData*   _holdTimeMetaData;
    FactMetaData*   _loiterTurnsMetaData;
    FactMetaData*   _loiterSecondsMetaData;
    FactMetaData*   _delaySecondsMetaData;
    FactMetaData*   _jumpSequenceMetaData;
    FactMetaData*   _jumpRepeatMetaData;
    
Don Gagne's avatar
Don Gagne committed
272 273
    bool _dirty;
    
Don Gagne's avatar
Don Gagne committed
274 275 276 277 278
    bool _homePositionSpecialCase;  ///< true: this item is being used as a ui home position indicator
    
    /// This is used to reference any subsequent mission items which do not specify a coordinate.
    QmlObjectListModel  _childItems;
    
Don Gagne's avatar
Don Gagne committed
279 280
    static const int            _cMavCmd2Name = 9;
    static const MavCmd2Name_t  _rgMavCmd2Name[_cMavCmd2Name];
pixhawk's avatar
pixhawk committed
281 282
};

283 284 285
QDebug operator<<(QDebug dbg, const MissionItem& missionItem);
QDebug operator<<(QDebug dbg, const MissionItem* missionItem);

286
#endif