GuidedActionsController.qml 27 KB
Newer Older
1 2
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
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 30
 *
 * 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

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

36
    readonly property string emergencyStopTitle:            qsTr("EMERGENCY STOP")
37
    readonly property string armTitle:                      qsTr("Arm")
38
    readonly property string forceArmTitle:                 qsTr("Force Arm")
39
    readonly property string disarmTitle:                   qsTr("Disarm")
40
    readonly property string rtlTitle:                      qsTr("Return")
41 42 43
    readonly property string takeoffTitle:                  qsTr("Takeoff")
    readonly property string landTitle:                     qsTr("Land")
    readonly property string startMissionTitle:             qsTr("Start Mission")
44
    readonly property string mvStartMissionTitle:           qsTr("Start Mission (MV)")
45 46 47
    readonly property string continueMissionTitle:          qsTr("Continue Mission")
    readonly property string resumeMissionUploadFailTitle:  qsTr("Resume FAILED")
    readonly property string pauseTitle:                    qsTr("Pause")
48
    readonly property string mvPauseTitle:                  qsTr("Pause (MV)")
49 50 51 52
    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")
53
    readonly property string gotoTitle:                     qsTr("Go To Location")
54
    readonly property string vtolTransitionTitle:           qsTr("VTOL Transition")
Gus Grubba's avatar
Gus Grubba committed
55
    readonly property string roiTitle:                      qsTr("ROI")
56
    readonly property string actionListTitle:               qsTr("Action")
57

58
    readonly property string armMessage:                        qsTr("Arm the vehicle.")
59
    readonly property string forceArmMessage:                   qsTr("WARNING: This will force arming of the vehicle bypassing any safety checks.")
60
    readonly property string disarmMessage:                     qsTr("Disarm the vehicle")
61
    readonly property string emergencyStopMessage:              qsTr("WARNING: THIS WILL STOP ALL MOTORS. IF VEHICLE IS CURRENTLY IN THE AIR IT WILL CRASH.")
62 63 64
    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
65
    readonly property string resumeMissionUploadFailMessage:    qsTr("Upload of resume mission failed. Confirm to retry upload")
66
    readonly property string landMessage:                       qsTr("Land the vehicle at the current position.")
67
    readonly property string rtlMessage:                        qsTr("Return to the launch position of the vehicle.")
68
    readonly property string changeAltMessage:                  qsTr("Change the altitude of the vehicle up or down.")
DonLakeFlyer's avatar
DonLakeFlyer committed
69
    readonly property string gotoMessage:                       qsTr("Move the vehicle to the specified location.")
70
             property string setWaypointMessage:                qsTr("Adjust current waypoint to %1.").arg(_actionData)
Don Gagne's avatar
Don Gagne committed
71
    readonly property string orbitMessage:                      qsTr("Orbit the vehicle around the specified location.")
72
    readonly property string landAbortMessage:                  qsTr("Abort the landing sequence.")
73
    readonly property string pauseMessage:                      qsTr("Pause the vehicle at it's current position, adjusting altitude up or down as needed.")
74
    readonly property string mvPauseMessage:                    qsTr("Pause all vehicles at their current position.")
75 76
    readonly property string vtolTransitionFwdMessage:          qsTr("Transition VTOL to fixed wing flight.")
    readonly property string vtolTransitionMRMessage:           qsTr("Transition VTOL to multi-rotor flight.")
Gus Grubba's avatar
Gus Grubba committed
77
    readonly property string roiMessage:                        qsTr("Make the specified location a Region Of Interest.")
78

79 80 81 82 83 84 85 86 87 88 89 90 91 92
    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
93
    readonly property int _actionUnused:                    15
94 95
    readonly property int actionResumeMissionUploadFail:    16
    readonly property int actionPause:                      17
96 97
    readonly property int actionMVPause:                    18
    readonly property int actionMVStartMission:             19
98 99
    readonly property int actionVtolTransitionToFwdFlight:  20
    readonly property int actionVtolTransitionToMRFlight:   21
Gus Grubba's avatar
Gus Grubba committed
100
    readonly property int actionROI:                        22
101
    readonly property int actionActionList:                 23
102
    readonly property int actionForceArm:                   24
103

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

109
    property bool showEmergenyStop:     _guidedActionsEnabled && !_hideEmergenyStop && _vehicleArmed && _vehicleFlying
110
    property bool showArm:              _guidedActionsEnabled && !_vehicleArmed && _canArm
111
    property bool showForceArm:         _guidedActionsEnabled && !_vehicleArmed
112
    property bool showDisarm:           _guidedActionsEnabled && _vehicleArmed && !_vehicleFlying
113 114 115
    property bool showRTL:              _guidedActionsEnabled && _vehicleArmed && _activeVehicle.guidedModeSupported && _vehicleFlying && !_vehicleInRTLMode
    property bool showTakeoff:          _guidedActionsEnabled && _activeVehicle.takeoffVehicleSupported && !_vehicleFlying && _canArm
    property bool showLand:             _guidedActionsEnabled && _activeVehicle.guidedModeSupported && _vehicleArmed && !_activeVehicle.fixedWing && !_vehicleInLandMode
116
    property bool showStartMission:     _guidedActionsEnabled && _missionAvailable && !_missionActive && !_vehicleFlying && _canArm
117
    property bool showContinueMission:  _guidedActionsEnabled && _missionAvailable && !_missionActive && _vehicleArmed && _vehicleFlying && (_currentMissionIndex < _missionItemCount - 1)
118 119
    property bool showPause:            _guidedActionsEnabled && _vehicleArmed && _activeVehicle.pauseVehicleSupported && _vehicleFlying && !_vehiclePaused && !_fixedWingOnApproach
    property bool showChangeAlt:        _guidedActionsEnabled && _vehicleFlying && _activeVehicle.guidedModeSupported && _vehicleArmed && !_missionActive
120 121
    property bool showOrbit:            _guidedActionsEnabled && _vehicleFlying && __orbitSupported && !_missionActive
    property bool showROI:              _guidedActionsEnabled && _vehicleFlying && __roiSupported && !_missionActive
122
    property bool showLandAbort:        _guidedActionsEnabled && _vehicleFlying && _fixedWingOnApproach
123
    property bool showGotoLocation:     _guidedActionsEnabled && _vehicleFlying
124
    property bool showActionList:       _guidedActionsEnabled && (showStartMission || showResumeMission || showChangeAlt || showLandAbort)
125

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

129
    property bool guidedUIVisible:      confirmDialog.visible || actionList.visible
DonLakeFlyer's avatar
DonLakeFlyer committed
130

131
    property var    _corePlugin:            QGroundControl.corePlugin
132
    property var    _corePluginOptions:     QGroundControl.corePlugin.options
133 134
    property bool   _guidedActionsEnabled:  (!ScreenTools.isDebug && _corePluginOptions.guidedActionsRequireRCRSSI && _activeVehicle) ? _rcRSSIAvailable : _activeVehicle
    property string _flightMode:            _activeVehicle ? _activeVehicle.flightMode : ""
135
    property bool   _missionAvailable:      missionController.containsItems
136 137 138 139
    property bool   _missionActive:         _activeVehicle ? _vehicleArmed && (_vehicleInLandMode || _vehicleInRTLMode || _vehicleInMissionMode) : false
    property bool   _vehicleArmed:          _activeVehicle ? _activeVehicle.armed  : false
    property bool   _vehicleFlying:         _activeVehicle ? _activeVehicle.flying  : false
    property bool   _vehicleLanding:        _activeVehicle ? _activeVehicle.landing  : false
140 141 142 143
    property bool   _vehiclePaused:         false
    property bool   _vehicleInMissionMode:  false
    property bool   _vehicleInRTLMode:      false
    property bool   _vehicleInLandMode:     false
144
    property int    _missionItemCount:      missionController.missionItemCount
145
    property int    _currentMissionIndex:   missionController.currentMissionIndex
146
    property int    _resumeMissionIndex:    missionController.resumeMissionIndex
147 148 149
    property bool   _hideEmergenyStop:      !_corePluginOptions.flyView.guidedBarShowEmergencyStop
    property bool   _hideOrbit:             !_corePluginOptions.flyView.guidedBarShowOrbit
    property bool   _hideROI:               !_corePluginOptions.flyView.guidedBarShowROI
150
    property bool   _vehicleWasFlying:      false
151 152
    property bool   _rcRSSIAvailable:       _activeVehicle ? _activeVehicle.rcRSSI > 0 && _activeVehicle.rcRSSI <= 100 : false
    property bool   _fixedWingOnApproach:   _activeVehicle ? _activeVehicle.fixedWing && _vehicleLanding : false
153

154
    // You can turn on log output for GuidedActionsController by turning on GuidedActionsControllerLog category
155 156 157 158
    property bool __guidedModeSupported:    _activeVehicle ? _activeVehicle.guidedModeSupported : false
    property bool __pauseVehicleSupported:  _activeVehicle ? _activeVehicle.pauseVehicleSupported : false
    property bool __roiSupported:           _activeVehicle ? !_hideROI && _activeVehicle.roiModeSupported : false
    property bool __orbitSupported:         _activeVehicle ? !_hideOrbit && _activeVehicle.orbitModeSupported : false
159
    property bool __flightMode:             _flightMode
160 161

    function _outputState() {
162
        if (_corePlugin.guidedActionsControllerLogging()) {
163
            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))
Gus Grubba's avatar
Gus Grubba committed
164 165 166
        }
    }

167
    on_ActiveVehicleChanged: _outputState()
168

169 170 171 172 173 174 175
    Component.onCompleted:              _outputState()
    on_VehicleArmedChanged:             _outputState()
    on_VehicleInRTLModeChanged:         _outputState()
    on_VehiclePausedChanged:            _outputState()
    on__FlightModeChanged:              _outputState()
    on__GuidedModeSupportedChanged:     _outputState()
    on__PauseVehicleSupportedChanged:   _outputState()
176 177
    on__RoiSupportedChanged:            _outputState()
    on__OrbitSupportedChanged:          _outputState()
178
    on_MissionItemCountChanged:         _outputState()
179
    on_MissionActiveChanged:            _outputState()
180

DonLakeFlyer's avatar
DonLakeFlyer committed
181
    on_CurrentMissionIndexChanged: {
182
        if (_corePlugin.guidedActionsControllerLogging()) {
DonLakeFlyer's avatar
DonLakeFlyer committed
183 184 185 186
            console.log("_currentMissionIndex", _currentMissionIndex)
        }
    }
    on_ResumeMissionIndexChanged: {
187
        if (_corePlugin.guidedActionsControllerLogging()) {
DonLakeFlyer's avatar
DonLakeFlyer committed
188 189 190
            console.log("_resumeMissionIndex", _resumeMissionIndex)
        }
    }
191
    onShowResumeMissionChanged: {
192
        if (_corePlugin.guidedActionsControllerLogging()) {
193 194
            console.log("showResumeMission", showResumeMission)
        }
195 196 197
        _outputState()
    }
    onShowStartMissionChanged: {
198
        if (_corePlugin.guidedActionsControllerLogging()) {
199 200
            console.log("showStartMission", showStartMission)
        }
201
        _outputState()
202 203 204
        if (showStartMission) {
            confirmAction(actionStartMission)
        }
205 206
    }
    onShowContinueMissionChanged: {
207
        if (_corePlugin.guidedActionsControllerLogging()) {
208 209
            console.log("showContinueMission", showContinueMission)
        }
210
        _outputState()
211 212 213
        if (showContinueMission) {
            confirmAction(actionContinueMission)
        }
214
    }
Don Gagne's avatar
Don Gagne committed
215 216 217 218 219 220
    onShowRTLChanged: {
        if (_corePlugin.guidedActionsControllerLogging()) {
            console.log("showRTL", showRTL)
        }
        _outputState()
    }
221 222 223 224 225
    onShowChangeAltChanged: {
        if (_corePlugin.guidedActionsControllerLogging()) {
            console.log("showChangeAlt", showChangeAlt)
        }
        _outputState()
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
    }
    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()
244
    }
245 246 247 248 249
    onShowLandAbortChanged: {
        if (showLandAbort) {
            confirmAction(actionLandAbort)
        }
    }
250

251
    on_VehicleFlyingChanged: {
252
        _outputState()
253 254 255 256 257 258
        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
259 260

    property var _actionData
261 262

    on_FlightModeChanged: {
263 264 265 266
        _vehiclePaused =        _activeVehicle ? _flightMode === _activeVehicle.pauseFlightMode : false
        _vehicleInRTLMode =     _activeVehicle ? _flightMode === _activeVehicle.rtlFlightMode || _flightMode === _activeVehicle.smartRTLFlightMode : false
        _vehicleInLandMode =    _activeVehicle ? _flightMode === _activeVehicle.landFlightMode : false
        _vehicleInMissionMode = _activeVehicle ? _flightMode === _activeVehicle.missionFlightMode : false // Must be last to get correct signalling for showStartMission popups
267
    }
268

269 270 271 272 273 274 275 276
    Connections {
        target:                     missionController
        onResumeMissionUploadFail:  confirmAction(actionResumeMissionUploadFail)
    }

    Connections {
        target:                             mainWindow
        onArmVehicleRequest:                armVehicleRequest()
277
        onForceArmVehicleRequest:           forceArmVehicleRequest()
278 279 280 281 282 283 284 285 286
        onDisarmVehicleRequest:             disarmVehicleRequest()
        onVtolTransitionToFwdFlightRequest: vtolTransitionToFwdFlightRequest()
        onVtolTransitionToMRFlightRequest:  vtolTransitionToMRFlightRequest()
    }

    function armVehicleRequest() {
        confirmAction(actionArm)
    }

287 288 289 290
    function forceArmVehicleRequest() {
        confirmAction(actionForceArm)
    }

291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
    function disarmVehicleRequest() {
        if (showEmergenyStop) {
            confirmAction(actionEmergencyStop)
        } else {
            confirmAction(actionDisarm)
        }

    }

    function vtolTransitionToFwdFlightRequest() {
        confirmAction(actionVtolTransitionToFwdFlight)
    }

    function vtolTransitionToMRFlightRequest() {
        confirmAction(actionVtolTransitionToMRFlight)
    }

308 309 310 311 312 313
    function closeAll() {
        confirmDialog.visible =     false
        actionList.visible =        false
        altitudeSlider.visible =    false
    }

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

    // Executes the specified action
DonLakeFlyer's avatar
DonLakeFlyer committed
463
    function executeAction(actionCode, actionData, actionAltitudeChange, optionChecked) {
464 465
        var i;
        var rgVehicle;
466 467
        switch (actionCode) {
        case actionRTL:
468
            _activeVehicle.guidedModeRTL(optionChecked)
469 470
            break
        case actionLand:
471
            _activeVehicle.guidedModeLand()
472 473
            break
        case actionTakeoff:
474
            _activeVehicle.guidedModeTakeoff(actionAltitudeChange)
475 476
            break
        case actionResumeMission:
477
        case actionResumeMissionUploadFail:
478
            missionController.resumeMission(missionController.resumeMissionIndex)
479 480
            break
        case actionStartMission:
481
        case actionContinueMission:
482
            _activeVehicle.startMission()
483
            break
484
        case actionMVStartMission:
485 486 487
            rgVehicle = QGroundControl.multiVehicleManager.vehicles
            for (i = 0; i < rgVehicle.count; i++) {
                rgVehicle.get(i).startMission()
488 489
            }
            break
490
        case actionArm:
491
            _activeVehicle.armed = true
492
            break
493
        case actionForceArm:
494
            _activeVehicle.forceArm()
495
            break
496
        case actionDisarm:
497
            _activeVehicle.armed = false
498 499
            break
        case actionEmergencyStop:
500
            _activeVehicle.emergencyStop()
501 502
            break
        case actionChangeAlt:
503
            _activeVehicle.guidedModeChangeAltitude(actionAltitudeChange)
504 505
            break
        case actionGoto:
506
            _activeVehicle.guidedModeGotoLocation(actionData)
507 508
            break
        case actionSetWaypoint:
509
            _activeVehicle.setCurrentMissionSequence(actionData)
510 511
            break
        case actionOrbit:
512
            _activeVehicle.guidedModeOrbit(orbitMapCircle.center, orbitMapCircle.radius() * (orbitMapCircle.clockwiseRotation ? 1 : -1), _activeVehicle.altitudeAMSL.rawValue + actionAltitudeChange)
513 514
            break
        case actionLandAbort:
515
            _activeVehicle.abortLanding(50)     // hardcoded value for climbOutAltitude that is currently ignored
516 517
            break
        case actionPause:
518 519
            _activeVehicle.pauseVehicle()
            _activeVehicle.guidedModeChangeAltitude(actionAltitudeChange)
520
            break
521
        case actionMVPause:
522 523 524
            rgVehicle = QGroundControl.multiVehicleManager.vehicles
            for (i = 0; i < rgVehicle.count; i++) {
                rgVehicle.get(i).pauseVehicle()
525 526
            }
            break
527
        case actionVtolTransitionToFwdFlight:
528
            _activeVehicle.vtolInFwdFlight = true
529 530
            break
        case actionVtolTransitionToMRFlight:
531
            _activeVehicle.vtolInFwdFlight = false
532
            break
Gus Grubba's avatar
Gus Grubba committed
533
        case actionROI:
534
            _activeVehicle.guidedModeROI(actionData)
Gus Grubba's avatar
Gus Grubba committed
535
            break
536 537 538 539 540 541
        default:
            console.warn(qsTr("Internal error: unknown actionCode"), actionCode)
            break
        }
    }
}