WimaController.h 15.3 KB
Newer Older
1
#pragma once
2 3

#include <QObject>
4
#include "QGCMapPolygon.h"
5
#include "QmlObjectListModel.h"
6 7

#include "WimaArea.h"
8
#include "WimaMeasurementArea.h"
9
#include "WimaServiceArea.h"
Valentin Platzgummer's avatar
Valentin Platzgummer committed
10
#include "WimaCorridor.h"
11
#include "WimaDataContainer.h"
12 13 14
#include "WimaMeasurementAreaData.h"
#include "WimaCorridorData.h"
#include "WimaServiceAreaData.h"
15 16 17

#include "PlanMasterController.h"
#include "MissionController.h"
18
#include "SurveyComplexItem.h"
19 20
#include "SimpleMissionItem.h"
#include "MissionSettingsItem.h"
21 22
#include "JsonHelper.h"
#include "QGCApplication.h"
23
#include "SettingsFact.h"
24 25
#include "WimaSettings.h"
#include "SettingsManager.h"
26

27 28 29

class WimaController : public QObject
{
30 31
    Q_OBJECT

32 33
    enum FileType {WimaFile, PlanFile};

34
public:
35 36 37
    WimaController(QObject *parent = nullptr);


38 39
    Q_PROPERTY(PlanMasterController*    masterController        READ masterController       WRITE setMasterController       NOTIFY masterControllerChanged)
    Q_PROPERTY(MissionController*       missionController       READ missionController      WRITE setMissionController      NOTIFY missionControllerChanged)
40
    Q_PROPERTY(QmlObjectListModel*      visualItems             READ visualItems                                            NOTIFY visualItemsChanged)
41 42 43 44 45
    Q_PROPERTY(QString                  currentFile             READ currentFile                                            NOTIFY currentFileChanged)
    Q_PROPERTY(QStringList              loadNameFilters         READ loadNameFilters                                        CONSTANT)
    Q_PROPERTY(QStringList              saveNameFilters         READ saveNameFilters                                        CONSTANT)
    Q_PROPERTY(QString                  fileExtension           READ fileExtension                                          CONSTANT)
    Q_PROPERTY(WimaDataContainer*       dataContainer           READ dataContainer          WRITE setDataContainer          NOTIFY dataContainerChanged)
46
    Q_PROPERTY(QmlObjectListModel*      missionItems            READ missionItems                                           NOTIFY missionItemsChanged)
47 48 49 50 51 52 53
    Q_PROPERTY(QVariantList             waypointPath            READ waypointPath                                           NOTIFY waypointPathChanged)
    Q_PROPERTY(Fact*                    enableWimaController    READ enableWimaController                                   CONSTANT)
    Q_PROPERTY(Fact*                    overlapWaypoints        READ overlapWaypoints                                       CONSTANT)
    Q_PROPERTY(Fact*                    maxWaypointsPerPhase    READ maxWaypointsPerPhase                                   CONSTANT)
    Q_PROPERTY(Fact*                    startWaypointIndex      READ startWaypointIndex                                     CONSTANT)
    Q_PROPERTY(Fact*                    showAllMissionItems     READ showAllMissionItems                                    CONSTANT)
    Q_PROPERTY(Fact*                    showCurrentMissionItems READ showCurrentMissionItems                                CONSTANT)
54 55
    Q_PROPERTY(Fact*                    flightSpeed             READ flightSpeed                                            CONSTANT)
    Q_PROPERTY(Fact*                    altitude                READ altitude                                               CONSTANT)
56
    Q_PROPERTY(Fact*                    arrivalReturnSpeed      READ arrivalReturnSpeed                                     CONSTANT)
57
    Q_PROPERTY(Fact*                    reverse                 READ reverse                                                CONSTANT)
58
    Q_PROPERTY(bool                     uploadOverrideRequired  READ uploadOverrideRequired WRITE setUploadOverrideRequired NOTIFY uploadOverrideRequiredChanged)
59 60
    Q_PROPERTY(double                   phaseDistance           READ phaseDistance                                          NOTIFY phaseDistanceChanged)
    Q_PROPERTY(double                   phaseDuration           READ phaseDuration                                          NOTIFY phaseDurationChanged)
61
    Q_PROPERTY(bool                     vehicleHasLowBattery    READ vehicleHasLowBattery                                   NOTIFY vehicleHasLowBatteryChanged)
62

63 64 65


    // Property accessors
66 67
    PlanMasterController*       masterController       (void)          { return _masterController; }
    MissionController*          missionController      (void)          { return _missionController; }
68
    QmlObjectListModel*         visualItems            (void);
69
    QString                     currentFile            (void) const    { return _currentFile; }
Valentin Platzgummer's avatar
Valentin Platzgummer committed
70
    QStringList                 loadNameFilters        (void) const;
71
    QStringList                 saveNameFilters        (void) const;
72
    QString                     fileExtension          (void) const    { return wimaFileExtension; }
Valentin Platzgummer's avatar
Valentin Platzgummer committed
73
    QGCMapPolygon               joinedArea             (void) const;
74
    WimaDataContainer*          dataContainer          (void);
75
    QmlObjectListModel*         missionItems           (void);
76
    QVariantList                waypointPath           (void);
77 78 79 80
    Fact*                       enableWimaController   (void);
    Fact*                       overlapWaypoints       (void);
    Fact*                       maxWaypointsPerPhase   (void);
    Fact*                       startWaypointIndex     (void);
81 82
    Fact*                       showAllMissionItems    (void);
    Fact*                       showCurrentMissionItems(void);
83
    Fact*                       flightSpeed            (void);
84
    Fact*                       arrivalReturnSpeed     (void);
85 86
    Fact*                       altitude               (void);    
    Fact*                       reverse                (void);
87
    bool                        uploadOverrideRequired (void) const;
88 89
    double                      phaseDistance          (void) const;
    double                      phaseDuration          (void) const;
90
    bool                        vehicleHasLowBattery   (void) const;
91 92 93 94 95


    // Property setters
    void setMasterController        (PlanMasterController* masterController);
    void setMissionController       (MissionController* missionController);
96
    void setDataContainer           (WimaDataContainer* container);
97
    void setUploadOverrideRequired  (bool overrideRequired);
98

99
    // Member Methodes
100
    Q_INVOKABLE void nextPhase();
101 102
    Q_INVOKABLE void previousPhase();
    Q_INVOKABLE void resetPhase();
103
    Q_INVOKABLE bool uploadToVehicle();
104
    Q_INVOKABLE bool forceUploadToVehicle();
105 106
    Q_INVOKABLE void removeFromVehicle();    
    Q_INVOKABLE bool checkSmartRTLPreCondition(); // wrapper for _checkSmartRTLPreCondition(QString &errorString)
107 108 109
    Q_INVOKABLE bool calcReturnPath(); // wrapper for _calcReturnPath(QString &errorSring)#
    Q_INVOKABLE bool executeSmartRTL(); // wrapper for _executeSmartRTL(QString &errorSring)
    Q_INVOKABLE bool initSmartRTL();
110

111

112 113
    Q_INVOKABLE void saveToCurrent  ();
    Q_INVOKABLE void saveToFile     (const QString& filename);
114
    Q_INVOKABLE bool loadFromCurrent();
115
    Q_INVOKABLE bool loadFromFile   (const QString& filename);
116 117


118 119
    // static Members
    static const char* wimaFileExtension;
120
    static const char* areaItemsName;
121 122 123 124 125 126 127 128 129
    static const char* missionItemsName;    
    static const char* settingsGroup;
    static const char* endWaypointIndexName;
    static const char* enableWimaControllerName;
    static const char* overlapWaypointsName;
    static const char* maxWaypointsPerPhaseName;
    static const char* startWaypointIndexName;
    static const char* showAllMissionItemsName;
    static const char* showCurrentMissionItemsName;
130
    static const char* flightSpeedName;
131
    static const char* arrivalReturnSpeedName;
132 133
    static const char* altitudeName;    
    static const char* reverseName;
134 135

    // Member Methodes
136
    QJsonDocument saveToJson(FileType fileType);
137

138
    bool calcShortestPath(const QGeoCoordinate &start, const QGeoCoordinate &destination, QVector<QGeoCoordinate> &path);
139
    /// extracts the coordinates stored in missionItems (list of MissionItems) and stores them in coordinateList
140
    bool extractCoordinateList(QmlObjectListModel &missionItems, QVector<QGeoCoordinate> &coordinateList);
141
    /// extracts the coordinates (between startIndex and endIndex) stored in missionItems (list of MissionItems) and stores them in coordinateList.
142
    bool extractCoordinateList(QmlObjectListModel &missionItems, QVector<QGeoCoordinate> &coordinateList, int startIndex, int endIndex);
143
    /// extracts the coordinates stored in missionItems (list of MissionItems) and stores them in coordinateList
144
    bool extractCoordinateList(QmlObjectListModel &missionItems, QVariantList &coordinateList);
145
    /// extracts the coordinates (between startIndex and endIndex) stored in missionItems (list of MissionItems) and stores them in coordinateList.
146
    bool extractCoordinateList(QmlObjectListModel &missionItems, QVariantList &coordinateList, int startIndex, int endIndex);
147

148
signals:
149 150 151
    void masterControllerChanged        (void);
    void missionControllerChanged       (void);
    void visualItemsChanged             (void);
152
    void currentFileChanged             ();
153
    void dataContainerChanged           ();
154
    void readyForSaveSendChanged        (bool ready);
155
    void missionItemsChanged            (void);
156
    void waypointPathChanged            (void);
157
    void uploadOverrideRequiredChanged  (void);
158 159
    void phaseDistanceChanged           (void);
    void phaseDurationChanged           (void);
160 161 162
    void uploadAndExecuteConfirmRequired(void);
    void vehicleHasLowBatteryChanged    (void);
    void returnBatteryLowConfirmRequired(void);
163 164

private slots:
165 166
    bool fetchContainerData();
    bool calcNextPhase(void);
167
    void updateWaypointPath                 (void);
168
    void updateNextWaypoint                 (void);
169
    void recalcCurrentPhase                 (void);
170
    bool setTakeoffLandPosition             (void);
171 172
    void updateflightSpeed                  (void);
    void updateArrivalReturnSpeed           (void);
173
    void updateAltitude                     (void);
174
    void checkBatteryLevel                  (void);
175
    void smartRTLCleanUp                    (bool flying); // cleans up after successfull smart RTL
176
    void enableDisableLowBatteryHandling    (QVariant enable);
Valentin Platzgummer's avatar
Valentin Platzgummer committed
177
    void reverseChangedHandler              ();
178 179 180 181

private:
    void _setPhaseDistance(double distance);
    void _setPhaseDuration(double duration);
182 183 184
    bool _checkSmartRTLPreCondition(QString &errorString); // should be called from gui, befor calcReturnPath()
    bool _calcReturnPath(QString &errorSring); // Calculates return path (destination: service area center) for a flying vehicle
    void _setVehicleHasLowBattery(bool batteryLow);
185 186 187
    bool _executeSmartRTL(QString &errorSring);
    void _loadCurrentMissionItemsFromBuffer();
    void _saveCurrentMissionItemsToBuffer();
188

189
private:
190 191 192 193
    PlanMasterController   *_masterController;
    MissionController      *_missionController;
    QString                 _currentFile; // file for saveing
    WimaDataContainer      *_container; // container for data exchange with WimaController
194
    QmlObjectListModel      _visualItems; // contains all visible areas
195
    WimaJoinedAreaData      _joinedArea; // joined area fromed by opArea, serArea, _corridor
196 197 198 199
    WimaMeasurementAreaData _measurementArea; // measurement area
    WimaServiceAreaData     _serviceArea; // area for supplying
    WimaCorridorData        _corridor; // corridor connecting opArea and serArea
    bool                    _localPlanDataValid;
200
    QmlObjectListModel      _missionItems; // all mission itmes (Mission Items) generaded by wimaPlaner, displayed in flightView
201
    QmlObjectListModel      _missionItemsBuffer; // Buffer to store mission items, e.g. for storing _missionController->visualItems() when smartRTL() is invoked
202
    QVariantList            _waypointPath; // path connecting the items in _missionItems
203
    QGeoCoordinate          _takeoffLandPostion;
204

205 206 207 208 209

    QMap<QString, FactMetaData*> _metaDataMap;
    SettingsFact                 _enableWimaController; // enables or disables the wimaControler
    SettingsFact                 _overlapWaypoints; // determines the number of overlapping waypoints between two consecutive mission phases
    SettingsFact                 _maxWaypointsPerPhase; // determines the maximum number waypoints per phase
210
    SettingsFact                 _nextPhaseStartWaypointIndex; // index (displayed on the map, -1 to get index of item in _missionItems) of the mission item
211
                                                      // defining the first element of the next phase
212 213
    SettingsFact                 _showAllMissionItems; // bool value, Determines whether the mission items of the overall mission are displayed or not.
    SettingsFact                 _showCurrentMissionItems; // bool value, Determines whether the mission items of the current mission phase are displayed or not.
214
    SettingsFact                 _flightSpeed; // mission flight speed
215
    SettingsFact                 _arrivalReturnSpeed; // arrival and return path speed
216
    SettingsFact                 _altitude; // mission altitude
217
    SettingsFact                 _reverse; // Reverses the phase direction. Phases go from high to low waypoint numbers, if true.
218

219
    int                          _endWaypointIndex; // index of the mission item stored in _missionItems defining the last element
220
                                                    // (which is not part of the return path) of _missionController.visualItems()
221
    int                          _startWaypointIndex; // index of the mission item stored in _missionItems defining the first element
222
                                                      // (which is not part of the arrival path) of _missionController.visualItems()
223 224
    bool                         _uploadOverrideRequired; // Is set to true if uploadToVehicle() did not suceed because the vehicle is not inside the service area.
                                                          // The user can override the upload lock with a slider, this will reset this variable to false.
225 226 227
    double                       _measurementPathLength; // the lenght of the phase in meters
    double                       _arrivalPathLength; // the length of the arrival and return path in meters
    double                       _returnPathLength; // the length of the arrival and return path in meters
228 229
    double                       _phaseDistance; // the lenth in meters of the current phase
    double                       _phaseDuration; // the phase duration in seconds
230 231 232 233

    QTimer                       _checkBatteryTimer;
    bool                         _vehicleHasLowBattery;
    bool                         _lowBatteryHandlingTriggered;
234 235
    bool                         _executingSmartRTL;

236
};
237

238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
/*
 * The following explains the structure of
 * _missionController.visualItems(). The indices
 * are not that important and only specified for
 * reasons of completeness.
 *
 * Index        Description
 * --------------------------------------------
 * 0            MissionSettingsItem
 * 1            Takeoff Command
 * 2            Speed Command: arrivalReturnSpeed
 * 3            Arrival Path Waypoint 0
 * ...
 * 3+n-1        Arrival Path Waypoint n-1
 * 3+n          Speed Command: flightSpeed
 * 3+n+1        Circular Survey Waypoint 0
 * ...
 * 3+n+m        Circular Survey Waypoint m-1
 * 3+n+m+1      Speed Command: arrivalReturnSpeed
 * 3+n+m+2      Return Path Waypoint 0
 * ...
 * 3+n+m+2+l    Return Path Waypoint l-1
 * 3+n+m+2+l+1  Land command
 *
 */

264