GuidedActionsController.qml 28.9 KB
Newer Older
1 2
/****************************************************************************
 *
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
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
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

import QtQuick                  2.3
import QtQuick.Controls         1.2
import QtQuick.Controls.Styles  1.4
import QtQuick.Dialogs          1.2
import QtLocation               5.3
import QtPositioning            5.3
import QtQuick.Layouts          1.2

import QGroundControl                           1.0
import QGroundControl.ScreenTools               1.0
import QGroundControl.Controls                  1.0
import QGroundControl.Palette                   1.0
import QGroundControl.Vehicle                   1.0
import QGroundControl.FlightMap                 1.0

/// This provides the smarts behind the guided mode commands, minus the user interface. This way you can change UI
/// without affecting the underlying functionality.
Item {
    id: _root

30
    property var wimaController
31
    property var missionController
32
    property var confirmDialog
DonLakeFlyer's avatar
DonLakeFlyer committed
33
    property var actionList
Don Gagne's avatar
Don Gagne committed
34
    property var altitudeSlider
35
    property var orbitMapCircle
36

37
    readonly property string emergencyStopTitle:            qsTr("EMERGENCY STOP")
38
    readonly property string armTitle:                      qsTr("Arm")
39
    readonly property string forceArmTitle:                 qsTr("Force Arm")
40
    readonly property string disarmTitle:                   qsTr("Disarm")
41
    readonly property string rtlTitle:                      qsTr("Return")
42 43 44
    readonly property string takeoffTitle:                  qsTr("Takeoff")
    readonly property string landTitle:                     qsTr("Land")
    readonly property string startMissionTitle:             qsTr("Start Mission")
45
    readonly property string mvStartMissionTitle:           qsTr("Start Mission (MV)")
46 47 48
    readonly property string continueMissionTitle:          qsTr("Continue Mission")
    readonly property string resumeMissionUploadFailTitle:  qsTr("Resume FAILED")
    readonly property string pauseTitle:                    qsTr("Pause")
49
    readonly property string mvPauseTitle:                  qsTr("Pause (MV)")
50 51 52 53
    readonly property string changeAltTitle:                qsTr("Change Altitude")
    readonly property string orbitTitle:                    qsTr("Orbit")
    readonly property string landAbortTitle:                qsTr("Land Abort")
    readonly property string setWaypointTitle:              qsTr("Set Waypoint")
54
    readonly property string gotoTitle:                     qsTr("Go To Location")
55
    readonly property string vtolTransitionTitle:           qsTr("VTOL Transition")
56 57 58
    readonly property string forceUploadTitle:              qsTr("Force Upload")
    readonly property string smartRTLPathConfirmTitle:      qsTr("Upload and Execute")
    readonly property string smartRTLRequestConfirmTitle:   qsTr("Smart RTL requested")
59 60
    readonly property string roiTitle:                      qsTr("ROI")
    readonly property string actionListTitle:               qsTr("Action")
61

62
    readonly property string armMessage:                        qsTr("Arm the vehicle.")
63
    readonly property string forceArmMessage:                   qsTr("WARNING: This will force arming of the vehicle bypassing any safety checks.")
64
    readonly property string disarmMessage:                     qsTr("Disarm the vehicle")
65
    readonly property string emergencyStopMessage:              qsTr("WARNING: THIS WILL STOP ALL MOTORS. IF VEHICLE IS CURRENTLY IN THE AIR IT WILL CRASH.")
66 67 68
    readonly property string takeoffMessage:                    qsTr("Takeoff from ground and hold position.")
    readonly property string startMissionMessage:               qsTr("Takeoff from ground and start the current mission.")
    readonly property string continueMissionMessage:            qsTr("Continue the mission from the current waypoint.")
Don Gagne's avatar
Don Gagne committed
69
    readonly property string resumeMissionUploadFailMessage:    qsTr("Upload of resume mission failed. Confirm to retry upload")
70
    readonly property string landMessage:                       qsTr("Land the vehicle at the current position.")
71
    readonly property string rtlMessage:                        qsTr("Return to the launch position of the vehicle.")
72
    readonly property string changeAltMessage:                  qsTr("Change the altitude of the vehicle up or down.")
DonLakeFlyer's avatar
DonLakeFlyer committed
73
    readonly property string gotoMessage:                       qsTr("Move the vehicle to the specified location.")
74
             property string setWaypointMessage:                qsTr("Adjust current waypoint to %1.").arg(_actionData)
Don Gagne's avatar
Don Gagne committed
75
    readonly property string orbitMessage:                      qsTr("Orbit the vehicle around the specified location.")
76
    readonly property string landAbortMessage:                  qsTr("Abort the landing sequence.")
77
    readonly property string pauseMessage:                      qsTr("Pause the vehicle at it's current position, adjusting altitude up or down as needed.")
78
    readonly property string mvPauseMessage:                    qsTr("Pause all vehicles at their current position.")
79 80
    readonly property string vtolTransitionFwdMessage:          qsTr("Transition VTOL to fixed wing flight.")
    readonly property string vtolTransitionMRMessage:           qsTr("Transition VTOL to multi-rotor flight.")
81 82 83
    readonly property string forceUploadMessage:                qsTr("Vehicle outside save area. Force upload?")
    readonly property string smartRTLPathConfirmMessage:        qsTr("Upload and execute the displayed return path?")
    readonly property string smartRTLRequestConfirmMessage:     qsTr("Do you want to initiate a smart RTL?")
84
    readonly property string roiMessage:                        qsTr("Make the specified location a Region Of Interest.")
85

86 87 88 89 90 91 92 93 94 95 96 97 98 99
    readonly property int actionRTL:                        1
    readonly property int actionLand:                       2
    readonly property int actionTakeoff:                    3
    readonly property int actionArm:                        4
    readonly property int actionDisarm:                     5
    readonly property int actionEmergencyStop:              6
    readonly property int actionChangeAlt:                  7
    readonly property int actionGoto:                       8
    readonly property int actionSetWaypoint:                9
    readonly property int actionOrbit:                      10
    readonly property int actionLandAbort:                  11
    readonly property int actionStartMission:               12
    readonly property int actionContinueMission:            13
    readonly property int actionResumeMission:              14
Don Gagne's avatar
Don Gagne committed
100
    readonly property int _actionUnused:                    15
101 102
    readonly property int actionResumeMissionUploadFail:    16
    readonly property int actionPause:                      17
103 104
    readonly property int actionMVPause:                    18
    readonly property int actionMVStartMission:             19
105 106
    readonly property int actionVtolTransitionToFwdFlight:  20
    readonly property int actionVtolTransitionToMRFlight:   21
107 108 109
    readonly property int actionForceUpload:                22
    readonly property int actionSmartRTLPathConfirm:        24
    readonly property int actionSmartRTLRequestConfirm:           25 // very similar to actionSmartRTLPathConfirm, is triggered on low battery
110 111 112 113 114 115 116 117
    readonly property int actionROI:                        22
    readonly property int actionActionList:                 23
    readonly property int actionForceArm:                   24

    property var    _activeVehicle:             QGroundControl.multiVehicleManager.activeVehicle
    property bool   _useChecklist:              QGroundControl.settingsManager.appSettings.useChecklist.rawValue && QGroundControl.corePlugin.options.preFlightChecklistUrl.toString().length
    property bool   _enforceChecklist:          _useChecklist && QGroundControl.settingsManager.appSettings.enforceChecklist.rawValue
    property bool   _canArm:                    _activeVehicle ? (_useChecklist ? (_enforceChecklist ? _activeVehicle.checkListState === Vehicle.CheckListPassed : true) : true) : false
118

119
    property bool showEmergenyStop:     _guidedActionsEnabled && !_hideEmergenyStop && _vehicleArmed && _vehicleFlying
120 121
    property bool showArm:              _guidedActionsEnabled && !_vehicleArmed && _canArm
    property bool showForceArm:         _guidedActionsEnabled && !_vehicleArmed
122 123
    property bool showDisarm:           _guidedActionsEnabled && _vehicleArmed && !_vehicleFlying
    property bool showRTL:              _guidedActionsEnabled && _vehicleArmed && _activeVehicle.guidedModeSupported && _vehicleFlying && !_vehicleInRTLMode
124
    property bool showTakeoff:          _guidedActionsEnabled && _activeVehicle.takeoffVehicleSupported && !_vehicleFlying && _canArm
125
    property bool showLand:             _guidedActionsEnabled && _activeVehicle.guidedModeSupported && _vehicleArmed && !_activeVehicle.fixedWing && !_vehicleInLandMode
126
    property bool showStartMission:     _guidedActionsEnabled && _missionAvailable && !_missionActive && !_vehicleFlying && _canArm
127
    property bool showContinueMission:  _guidedActionsEnabled && _missionAvailable && !_missionActive && _vehicleArmed && _vehicleFlying && (_currentMissionIndex < _missionItemCount - 1)
128
    property bool showPause:            _guidedActionsEnabled && _vehicleArmed && _activeVehicle.pauseVehicleSupported && _vehicleFlying && !_vehiclePaused && !_fixedWingOnApproach
129
    property bool showChangeAlt:        _guidedActionsEnabled && _vehicleFlying && _activeVehicle.guidedModeSupported && _vehicleArmed && !_missionActive
130 131 132
    property bool showOrbit:            _guidedActionsEnabled && _vehicleFlying && __orbitSupported && !_missionActive
    property bool showROI:              _guidedActionsEnabled && _vehicleFlying && __roiSupported && !_missionActive
    property bool showLandAbort:        _guidedActionsEnabled && _vehicleFlying && _fixedWingOnApproach
133
    property bool showGotoLocation:     _guidedActionsEnabled && _vehicleFlying
134
    property bool showActionList:       _guidedActionsEnabled && (showStartMission || showResumeMission || showChangeAlt || showLandAbort)
135
    property bool wimaEnabled:          wimaController.enableWimaController.value
136

137 138
    // Note: The '_missionItemCount - 2' is a hack to not trigger resume mission when a mission ends with an RTL item
    property bool showResumeMission:    _activeVehicle && !_vehicleArmed && _vehicleWasFlying && _missionAvailable && _resumeMissionIndex > 0 && (_resumeMissionIndex < _missionItemCount - 2)
139

140
    property bool guidedUIVisible:      confirmDialog.visible || actionList.visible
DonLakeFlyer's avatar
DonLakeFlyer committed
141

142
    property var    _corePlugin:            QGroundControl.corePlugin
143 144
    property var    _corePluginOptions:     QGroundControl.corePlugin.options
    property bool   _guidedActionsEnabled:  (!ScreenTools.isDebug && _corePluginOptions.guidedActionsRequireRCRSSI && _activeVehicle) ? _rcRSSIAvailable : _activeVehicle
145
    property string _flightMode:            _activeVehicle ? _activeVehicle.flightMode : ""
146
    property bool   _missionAvailable:      missionController.containsItems && missionController.progressPct === 1
147 148
    property bool   _missionActive:         _activeVehicle ? _vehicleArmed && (_vehicleInLandMode || _vehicleInRTLMode || _vehicleInMissionMode) : false
    property bool   _vehicleArmed:          _activeVehicle ? _activeVehicle.armed  : false
149
    property bool   _vehicleFlying:         _activeVehicle ? _activeVehicle.flying  : false
150
    property bool   _vehicleLanding:        _activeVehicle ? _activeVehicle.landing  : false
151 152 153 154
    property bool   _vehiclePaused:         false
    property bool   _vehicleInMissionMode:  false
    property bool   _vehicleInRTLMode:      false
    property bool   _vehicleInLandMode:     false
155
    property int    _missionItemCount:      missionController.missionItemCount
156
    property int    _currentMissionIndex:   missionController.currentMissionIndex
157
    property int    _resumeMissionIndex:    missionController.resumeMissionIndex
158 159 160
    property bool   _hideEmergenyStop:      !_corePluginOptions.flyView.guidedBarShowEmergencyStop
    property bool   _hideOrbit:             !_corePluginOptions.flyView.guidedBarShowOrbit
    property bool   _hideROI:               !_corePluginOptions.flyView.guidedBarShowROI
161
    property bool   _vehicleWasFlying:      false
162
    property bool   _rcRSSIAvailable:       _activeVehicle ? _activeVehicle.rcRSSI > 0 && _activeVehicle.rcRSSI <= 100 : false
163
    property bool   _fixedWingOnApproach:   _activeVehicle ? _activeVehicle.fixedWing && _vehicleLanding : false
164

165
    // You can turn on log output for GuidedActionsController by turning on GuidedActionsControllerLog category
166
    property bool __guidedModeSupported:    _activeVehicle ? _activeVehicle.guidedModeSupported : false
167
    property bool __pauseVehicleSupported:  _activeVehicle ? _activeVehicle.pauseVehicleSupported : false
168 169
    property bool __roiSupported:           _activeVehicle ? !_hideROI && _activeVehicle.roiModeSupported : false
    property bool __orbitSupported:         _activeVehicle ? !_hideOrbit && _activeVehicle.orbitModeSupported : false
170
    property bool __flightMode:             _flightMode
171 172

    function _outputState() {
173
        if (_corePlugin.guidedActionsControllerLogging()) {
174
            console.log(qsTr("_activeVehicle(%1) _vehicleArmed(%2) guidedModeSupported(%3) _vehicleFlying(%4) _vehicleWasFlying(%5) _vehicleInRTLMode(%6) pauseVehicleSupported(%7) _vehiclePaused(%8) _flightMode(%9) _missionItemCount(%10) roiSupported(%11) orbitSupported(%12) _missionActive(%13) _hideROI(%14) _hideOrbit(%15)").arg(_activeVehicle ? 1 : 0).arg(_vehicleArmed ? 1 : 0).arg(__guidedModeSupported ? 1 : 0).arg(_vehicleFlying ? 1 : 0).arg(_vehicleWasFlying ? 1 : 0).arg(_vehicleInRTLMode ? 1 : 0).arg(__pauseVehicleSupported ? 1 : 0).arg(_vehiclePaused ? 1 : 0).arg(_flightMode).arg(_missionItemCount).arg(__roiSupported).arg(__orbitSupported).arg(_missionActive).arg(_hideROI).arg(_hideOrbit))
175
        }
176 177
    }

178 179
    on_ActiveVehicleChanged: _outputState()

180 181 182 183 184 185 186
    Component.onCompleted:              _outputState()
    on_VehicleArmedChanged:             _outputState()
    on_VehicleInRTLModeChanged:         _outputState()
    on_VehiclePausedChanged:            _outputState()
    on__FlightModeChanged:              _outputState()
    on__GuidedModeSupportedChanged:     _outputState()
    on__PauseVehicleSupportedChanged:   _outputState()
187 188
    on__RoiSupportedChanged:            _outputState()
    on__OrbitSupportedChanged:          _outputState()
189
    on_MissionItemCountChanged:         _outputState()
190
    on_MissionActiveChanged:            _outputState()
191

DonLakeFlyer's avatar
DonLakeFlyer committed
192
    on_CurrentMissionIndexChanged: {
193
        if (_corePlugin.guidedActionsControllerLogging()) {
DonLakeFlyer's avatar
DonLakeFlyer committed
194 195 196 197
            console.log("_currentMissionIndex", _currentMissionIndex)
        }
    }
    on_ResumeMissionIndexChanged: {
198
        if (_corePlugin.guidedActionsControllerLogging()) {
DonLakeFlyer's avatar
DonLakeFlyer committed
199 200 201
            console.log("_resumeMissionIndex", _resumeMissionIndex)
        }
    }
202
    onShowResumeMissionChanged: {
203
        if (_corePlugin.guidedActionsControllerLogging()) {
204 205
            console.log("showResumeMission", showResumeMission)
        }
206 207 208
        _outputState()
    }
    onShowStartMissionChanged: {
209
        if (_corePlugin.guidedActionsControllerLogging()) {
210 211
            console.log("showStartMission", showStartMission)
        }
212
        _outputState()
213 214 215
        if (showStartMission) {
            confirmAction(actionStartMission)
        }
216 217
    }
    onShowContinueMissionChanged: {
218
        if (_corePlugin.guidedActionsControllerLogging()) {
219 220
            console.log("showContinueMission", showContinueMission)
        }
221
        _outputState()
222 223 224
        if (showContinueMission) {
            confirmAction(actionContinueMission)
        }
225
    }
Don Gagne's avatar
Don Gagne committed
226 227 228 229 230 231
    onShowRTLChanged: {
        if (_corePlugin.guidedActionsControllerLogging()) {
            console.log("showRTL", showRTL)
        }
        _outputState()
    }
232 233 234 235 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
    onShowChangeAltChanged: {
        if (_corePlugin.guidedActionsControllerLogging()) {
            console.log("showChangeAlt", showChangeAlt)
        }
        _outputState()
    }
    onShowROIChanged: {
        if (_corePlugin.guidedActionsControllerLogging()) {
            console.log("showROI", showROI)
        }
        _outputState()
    }
    onShowOrbitChanged: {
        if (_corePlugin.guidedActionsControllerLogging()) {
            console.log("showOrbit", showOrbit)
        }
        _outputState()
    }
    onShowGotoLocationChanged: {
        if (_corePlugin.guidedActionsControllerLogging()) {
            console.log("showGotoLocation", showGotoLocation)
        }
        _outputState()
    }
    onShowLandAbortChanged: {
        if (showLandAbort) {
            confirmAction(actionLandAbort)
        }
    }
261

262
    on_VehicleFlyingChanged: {
263
        _outputState()
264 265 266 267 268 269
        if (!_vehicleFlying) {
            // We use _vehicleWasFLying to help trigger Resume Mission only if the vehicle actually flew and came back down.
            // Otherwise it may trigger during the Start Mission sequence due to signal ordering or armed and resume mission index.
            _vehicleWasFlying = true
        }
    }
DonLakeFlyer's avatar
DonLakeFlyer committed
270 271

    property var _actionData
272 273

    on_FlightModeChanged: {
274
        _vehiclePaused =        _activeVehicle ? _flightMode === _activeVehicle.pauseFlightMode : false
275
        _vehicleInRTLMode =     _activeVehicle ? _flightMode === _activeVehicle.rtlFlightMode || _flightMode === _activeVehicle.smartRTLFlightMode : false
276 277
        _vehicleInLandMode =    _activeVehicle ? _flightMode === _activeVehicle.landFlightMode : false
        _vehicleInMissionMode = _activeVehicle ? _flightMode === _activeVehicle.missionFlightMode : false // Must be last to get correct signalling for showStartMission popups
278
    }
279

280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
    Connections {
        target:                     missionController
        onResumeMissionUploadFail:  confirmAction(actionResumeMissionUploadFail)
    }

    Connections {
        target:                             mainWindow
        onArmVehicleRequest:                armVehicleRequest()
        onForceArmVehicleRequest:           forceArmVehicleRequest()
        onDisarmVehicleRequest:             disarmVehicleRequest()
        onVtolTransitionToFwdFlightRequest: vtolTransitionToFwdFlightRequest()
        onVtolTransitionToMRFlightRequest:  vtolTransitionToMRFlightRequest()
    }

    function armVehicleRequest() {
        confirmAction(actionArm)
    }

    function forceArmVehicleRequest() {
        confirmAction(actionForceArm)
    }

    function disarmVehicleRequest() {
        if (showEmergenyStop) {
            confirmAction(actionEmergencyStop)
        } else {
            confirmAction(actionDisarm)
        }

    }

    function vtolTransitionToFwdFlightRequest() {
        confirmAction(actionVtolTransitionToFwdFlight)
    }

    function vtolTransitionToMRFlightRequest() {
        confirmAction(actionVtolTransitionToMRFlight)
    }

    function closeAll() {
        confirmDialog.visible =     false
        actionList.visible =        false
        altitudeSlider.visible =    false
    }

325
    // Called when an action is about to be executed in order to confirm
326
    function confirmAction(actionCode, actionData, mapIndicator) {
327
        var showImmediate = true
328
        closeAll()
329 330
        confirmDialog.action = actionCode
        confirmDialog.actionData = actionData
331
        confirmDialog.hideTrigger = true
332
        confirmDialog.mapIndicator = mapIndicator
333
        confirmDialog.optionText = ""
334 335 336
        _actionData = actionData
        switch (actionCode) {
        case actionArm:
337
            if (_vehicleFlying || !_guidedActionsEnabled) {
338 339
                return
            }
340 341 342
            confirmDialog.title = armTitle
            confirmDialog.message = armMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showArm })
343
            break;
344 345 346 347 348
        case actionForceArm:
            confirmDialog.title = forceArmTitle
            confirmDialog.message = forceArmMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showForceArm })
            break;
349
        case actionDisarm:
350
            if (_vehicleFlying) {
351 352
                return
            }
353 354 355
            confirmDialog.title = disarmTitle
            confirmDialog.message = disarmMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showDisarm })
356 357
            break;
        case actionEmergencyStop:
358 359 360
            confirmDialog.title = emergencyStopTitle
            confirmDialog.message = emergencyStopMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showEmergenyStop })
361 362
            break;
        case actionTakeoff:
363 364 365
            confirmDialog.title = takeoffTitle
            confirmDialog.message = takeoffMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showTakeoff })
366
            altitudeSlider.setToMinimumTakeoff()
367
            altitudeSlider.visible = true
368 369
            break;
        case actionStartMission:
370
            showImmediate = false
371 372 373
            confirmDialog.title = startMissionTitle
            confirmDialog.message = startMissionMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showStartMission })
374
            break;
375
        case actionMVStartMission:
376
            confirmDialog.title = mvStartMissionTitle
377 378 379
            confirmDialog.message = startMissionMessage
            confirmDialog.hideTrigger = true
            break;
380
        case actionContinueMission:
381
            showImmediate = false
382 383 384 385
            confirmDialog.title = continueMissionTitle
            confirmDialog.message = continueMissionMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showContinueMission })
            break;
386
        case actionResumeMission:
Don Gagne's avatar
Don Gagne committed
387 388
            // Resume Mission is handled in mission end dialog
            return
389 390 391 392 393
        case actionResumeMissionUploadFail:
            confirmDialog.title = resumeMissionUploadFailTitle
            confirmDialog.message = resumeMissionUploadFailMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showResumeMission })
            break;
394
        case actionLand:
395 396 397
            confirmDialog.title = landTitle
            confirmDialog.message = landMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showLand })
398 399
            break;
        case actionRTL:
400 401
            confirmDialog.title = rtlTitle
            confirmDialog.message = rtlMessage
402 403 404 405
            if (_activeVehicle.supportsSmartRTL) {
                confirmDialog.optionText = qsTr("Smart RTL")
                confirmDialog.optionChecked = false
            }
406
            confirmDialog.hideTrigger = Qt.binding(function() { return !showRTL })
407 408
            break;
        case actionChangeAlt:
409 410 411
            confirmDialog.title = changeAltTitle
            confirmDialog.message = changeAltMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showChangeAlt })
Don Gagne's avatar
Don Gagne committed
412 413
            altitudeSlider.reset()
            altitudeSlider.visible = true
414 415
            break;
        case actionGoto:
416 417 418
            confirmDialog.title = gotoTitle
            confirmDialog.message = gotoMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showGotoLocation })
419 420
            break;
        case actionSetWaypoint:
421 422
            confirmDialog.title = setWaypointTitle
            confirmDialog.message = setWaypointMessage
423 424
            break;
        case actionOrbit:
425 426 427
            confirmDialog.title = orbitTitle
            confirmDialog.message = orbitMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showOrbit })
DonLakeFlyer's avatar
DonLakeFlyer committed
428 429
            altitudeSlider.reset()
            altitudeSlider.visible = true
430 431
            break;
        case actionLandAbort:
432 433 434
            confirmDialog.title = landAbortTitle
            confirmDialog.message = landAbortMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showLandAbort })
435 436
            break;
        case actionPause:
437 438 439
            confirmDialog.title = pauseTitle
            confirmDialog.message = pauseMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showPause })
440 441
            altitudeSlider.reset()
            altitudeSlider.visible = true
442
            break;
443
        case actionMVPause:
444
            confirmDialog.title = mvPauseTitle
445 446 447
            confirmDialog.message = mvPauseMessage
            confirmDialog.hideTrigger = true
            break;
448 449 450 451 452 453 454 455 456 457
        case actionVtolTransitionToFwdFlight:
            confirmDialog.title = vtolTransitionTitle
            confirmDialog.message = vtolTransitionFwdMessage
            confirmDialog.hideTrigger = true
            break
        case actionVtolTransitionToMRFlight:
            confirmDialog.title = vtolTransitionTitle
            confirmDialog.message = vtolTransitionMRMessage
            confirmDialog.hideTrigger = true
            break
Gus Grubba's avatar
Gus Grubba committed
458 459 460 461 462
        case actionROI:
            confirmDialog.title = roiTitle
            confirmDialog.message = roiMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showROI })
            break;
463 464 465
        case actionActionList:
            actionList.show()
            return
466 467 468
        case actionForceUpload:
            confirmDialog.title = forceUploadTitle
            confirmDialog.message = forceUploadMessage
469 470
            confirmDialog.hideTrigger = true
            break
471 472 473
        case actionSmartRTLPathConfirm:
            confirmDialog.title = smartRTLPathConfirmTitle
            confirmDialog.message = smartRTLPathConfirmMessage
474 475
            confirmDialog.hideTrigger = true
            break
476 477 478
        case actionSmartRTLRequestConfirm:
            confirmDialog.title = smartRTLRequestConfirmTitle
            confirmDialog.message = smartRTLRequestConfirmMessage
479 480
            confirmDialog.hideTrigger = true
            break
481 482 483
        default:
            console.warn("Unknown actionCode", actionCode)
            return
484
        }
485
        confirmDialog.show(showImmediate)
486 487 488
    }

    // Executes the specified action
489
    function executeAction(actionCode, actionData, actionAltitudeChange, optionChecked) {
490 491
        var i;
        var rgVehicle;
492 493
        switch (actionCode) {
        case actionRTL:
494
            _activeVehicle.guidedModeRTL(optionChecked)
495 496 497 498 499
            break
        case actionLand:
            _activeVehicle.guidedModeLand()
            break
        case actionTakeoff:
DonLakeFlyer's avatar
DonLakeFlyer committed
500
            _activeVehicle.guidedModeTakeoff(actionAltitudeChange)
501 502
            break
        case actionResumeMission:
503
        case actionResumeMissionUploadFail:
504
            missionController.resumeMission(missionController.resumeMissionIndex)
505 506
            break
        case actionStartMission:
507
        case actionContinueMission:
508 509
            _activeVehicle.startMission()
            break
510
        case actionMVStartMission:
511 512 513
            rgVehicle = QGroundControl.multiVehicleManager.vehicles
            for (i = 0; i < rgVehicle.count; i++) {
                rgVehicle.get(i).startMission()
514 515
            }
            break
516
        case actionArm:
DonLakeFlyer's avatar
DonLakeFlyer committed
517
            _activeVehicle.armed = true
518
            break
519 520 521
        case actionForceArm:
            _activeVehicle.forceArm()
            break
522
        case actionDisarm:
DonLakeFlyer's avatar
DonLakeFlyer committed
523
            _activeVehicle.armed = false
524 525 526 527 528
            break
        case actionEmergencyStop:
            _activeVehicle.emergencyStop()
            break
        case actionChangeAlt:
DonLakeFlyer's avatar
DonLakeFlyer committed
529
            _activeVehicle.guidedModeChangeAltitude(actionAltitudeChange)
530 531 532 533 534 535 536 537
            break
        case actionGoto:
            _activeVehicle.guidedModeGotoLocation(actionData)
            break
        case actionSetWaypoint:
            _activeVehicle.setCurrentMissionSequence(actionData)
            break
        case actionOrbit:
Don Gagne's avatar
Don Gagne committed
538
            _activeVehicle.guidedModeOrbit(orbitMapCircle.center, orbitMapCircle.radius() * (orbitMapCircle.clockwiseRotation ? 1 : -1), _activeVehicle.altitudeAMSL.rawValue + actionAltitudeChange)
539 540 541 542 543 544
            break
        case actionLandAbort:
            _activeVehicle.abortLanding(50)     // hardcoded value for climbOutAltitude that is currently ignored
            break
        case actionPause:
            _activeVehicle.pauseVehicle()
DonLakeFlyer's avatar
DonLakeFlyer committed
545
            _activeVehicle.guidedModeChangeAltitude(actionAltitudeChange)
546
            break
547
        case actionMVPause:
548 549 550
            rgVehicle = QGroundControl.multiVehicleManager.vehicles
            for (i = 0; i < rgVehicle.count; i++) {
                rgVehicle.get(i).pauseVehicle()
551 552
            }
            break
553 554 555 556 557 558
        case actionVtolTransitionToFwdFlight:
            _activeVehicle.vtolInFwdFlight = true
            break
        case actionVtolTransitionToMRFlight:
            _activeVehicle.vtolInFwdFlight = false
            break
Gus Grubba's avatar
Gus Grubba committed
559
        case actionROI:
560
            _activeVehicle.guidedModeROI(actionData)
561 562
        case actionForceUpload:
            wimaController.forceUpload()
563
            break
564
        case actionSmartRTLPathConfirm:
565
            wimaController.executeSmartRTL()
566
            break
567 568 569
        case actionSmartRTLRequestConfirm:
            wimaController.initSmartRTL()
            break
570 571 572 573 574 575
        default:
            console.warn(qsTr("Internal error: unknown actionCode"), actionCode)
            break
        }
    }
}