GuidedActionsController.qml 23.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * 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
Valentin Platzgummer's avatar
Valentin Platzgummer committed
31
    property var wimaMenu
32
    property var missionController
33
    property var confirmDialog
DonLakeFlyer's avatar
DonLakeFlyer committed
34
    property var actionList
Don Gagne's avatar
Don Gagne committed
35
    property var altitudeSlider
36
    property var orbitMapCircle
37

38
    readonly property string emergencyStopTitle:            qsTr("EMERGENCY STOP")
39 40 41 42 43 44
    readonly property string armTitle:                      qsTr("Arm")
    readonly property string disarmTitle:                   qsTr("Disarm")
    readonly property string rtlTitle:                      qsTr("RTL")
    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 54
    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")
    readonly property string gotoTitle:                     qsTr("Goto Location")
55 56
    readonly property string vtolTransitionTitle:           qsTr("VTOL Transition")    
    readonly property string overrideUploadTitle:           qsTr("Override Lock")
57 58
    readonly property string uploadAndExecuteTitle:         qsTr("Upload and Execute")
    readonly property string returnBatteryLowTitle:         qsTr("Battery Low")
59

60 61
    readonly property string armMessage:                        qsTr("Arm the vehicle.")
    readonly property string disarmMessage:                     qsTr("Disarm the vehicle")
62
    readonly property string emergencyStopMessage:              qsTr("WARNING: THIS WILL STOP ALL MOTORS. IF VEHICLE IS CURRENTLY IN THE AIR IT WILL CRASH.")
63 64 65
    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
66
    readonly property string resumeMissionUploadFailMessage:    qsTr("Upload of resume mission failed. Confirm to retry upload")
67 68 69
    readonly property string landMessage:                       qsTr("Land the vehicle at the current position.")
    readonly property string rtlMessage:                        qsTr("Return to the home position of the vehicle.")
    readonly property string changeAltMessage:                  qsTr("Change the altitude of the vehicle up or down.")
DonLakeFlyer's avatar
DonLakeFlyer committed
70
    readonly property string gotoMessage:                       qsTr("Move the vehicle to the specified location.")
71
             property string setWaypointMessage:                qsTr("Adjust current waypoint to %1.").arg(_actionData)
Don Gagne's avatar
Don Gagne committed
72
    readonly property string orbitMessage:                      qsTr("Orbit the vehicle around the specified location.")
73
    readonly property string landAbortMessage:                  qsTr("Abort the landing sequence.")
74
    readonly property string pauseMessage:                      qsTr("Pause the vehicle at it's current position, adjusting altitude up or down as needed.")
75
    readonly property string mvPauseMessage:                    qsTr("Pause all vehicles at their current position.")
76 77
    readonly property string vtolTransitionFwdMessage:          qsTr("Transition VTOL to fixed wing flight.")
    readonly property string vtolTransitionMRMessage:           qsTr("Transition VTOL to multi-rotor flight.")
78 79 80 81
    readonly property string overrideUploadMessage:             qsTr("Vehicle is not inside service area. Upload nevertheless?")    
    readonly property string uploadAndExecuteMessage:           qsTr("Upload and execute the displayed return path?")
    readonly property string returnBatteryLowMessage:           qsTr("Upload and execute the displayed return path?")

82

83 84 85 86 87 88 89 90 91 92 93 94 95 96
    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
97
    readonly property int _actionUnused:                    15
98 99
    readonly property int actionResumeMissionUploadFail:    16
    readonly property int actionPause:                      17
100 101
    readonly property int actionMVPause:                    18
    readonly property int actionMVStartMission:             19
102 103
    readonly property int actionVtolTransitionToFwdFlight:  20
    readonly property int actionVtolTransitionToMRFlight:   21
104
    readonly property int actionOverrideUpload:             22
105 106
    readonly property int actionUploadAndExecute:           24
    readonly property int actionReturnBatteryLow:           25 // very similar to actionUploadAndExecute, is triggered on low battery
107

108 109 110 111 112 113 114
    property bool showEmergenyStop:     _guidedActionsEnabled && !_hideEmergenyStop && _vehicleArmed && _vehicleFlying
    property bool showArm:              _guidedActionsEnabled && !_vehicleArmed
    property bool showDisarm:           _guidedActionsEnabled && _vehicleArmed && !_vehicleFlying
    property bool showRTL:              _guidedActionsEnabled && _vehicleArmed && _activeVehicle.guidedModeSupported && _vehicleFlying && !_vehicleInRTLMode
    property bool showTakeoff:          _guidedActionsEnabled && _activeVehicle.takeoffVehicleSupported && !_vehicleFlying
    property bool showLand:             _guidedActionsEnabled && _activeVehicle.guidedModeSupported && _vehicleArmed && !_activeVehicle.fixedWing && !_vehicleInLandMode
    property bool showStartMission:     _guidedActionsEnabled && _missionAvailable && !_missionActive && !_vehicleFlying
115
    property bool showContinueMission:  _guidedActionsEnabled && _missionAvailable && !_missionActive && _vehicleArmed && _vehicleFlying && (_currentMissionIndex < _missionItemCount - 1)
116 117
    property bool showPause:            _guidedActionsEnabled && _vehicleArmed && _activeVehicle.pauseVehicleSupported && _vehicleFlying && !_vehiclePaused
    property bool showChangeAlt:        _guidedActionsEnabled && _vehicleFlying && _activeVehicle.guidedModeSupported && _vehicleArmed && !_missionActive
DonLakeFlyer's avatar
DonLakeFlyer committed
118
    property bool showOrbit:            _guidedActionsEnabled && !_hideOrbit && _vehicleFlying && _activeVehicle.orbitModeSupported && !_missionActive
119 120
    property bool showLandAbort:        _guidedActionsEnabled && _vehicleFlying && _activeVehicle.fixedWing && _vehicleLanding
    property bool showGotoLocation:     _guidedActionsEnabled && _vehicleFlying
Valentin Platzgummer's avatar
Valentin Platzgummer committed
121
    property bool wimaEnabled:          wimaController.enableWimaController.value
122

123 124
    // 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)
125

DonLakeFlyer's avatar
DonLakeFlyer committed
126 127
    property bool guidedUIVisible:      guidedActionConfirm.visible || guidedActionList.visible

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

149
    // You can turn on log output for GuidedActionsController by turning on GuidedActionsControllerLog category
150
    property bool __guidedModeSupported:    _activeVehicle ? _activeVehicle.guidedModeSupported : false
151
    property bool __pauseVehicleSupported:  _activeVehicle ? _activeVehicle.pauseVehicleSupported : false
152
    property bool __flightMode:             _flightMode
153 154

    function _outputState() {
155 156
        if (_corePlugin.guidedActionsControllerLogging()) {
            console.log(qsTr("_activeVehicle(%1) _vehicleArmed(%2) guidedModeSupported(%3) _vehicleFlying(%4) _vehicleWasFlying(%5) _vehicleInRTLMode(%6) pauseVehicleSupported(%7) _vehiclePaused(%8) _flightMode(%9) _missionItemCount(%10)").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))
157
        }
158 159
    }

160 161 162 163 164 165 166 167
    Component.onCompleted:              _outputState()
    on_ActiveVehicleChanged:            _outputState()
    on_VehicleArmedChanged:             _outputState()
    on_VehicleInRTLModeChanged:         _outputState()
    on_VehiclePausedChanged:            _outputState()
    on__FlightModeChanged:              _outputState()
    on__GuidedModeSupportedChanged:     _outputState()
    on__PauseVehicleSupportedChanged:   _outputState()
168
    on_MissionItemCountChanged:         _outputState()
169

DonLakeFlyer's avatar
DonLakeFlyer committed
170
    on_CurrentMissionIndexChanged: {
171
        if (_corePlugin.guidedActionsControllerLogging()) {
DonLakeFlyer's avatar
DonLakeFlyer committed
172 173 174 175
            console.log("_currentMissionIndex", _currentMissionIndex)
        }
    }
    on_ResumeMissionIndexChanged: {
176
        if (_corePlugin.guidedActionsControllerLogging()) {
DonLakeFlyer's avatar
DonLakeFlyer committed
177 178 179
            console.log("_resumeMissionIndex", _resumeMissionIndex)
        }
    }
180
    onShowResumeMissionChanged: {
181
        if (_corePlugin.guidedActionsControllerLogging()) {
182 183
            console.log("showResumeMission", showResumeMission)
        }
184 185 186
        _outputState()
    }
    onShowStartMissionChanged: {
187
        if (_corePlugin.guidedActionsControllerLogging()) {
188 189
            console.log("showStartMission", showStartMission)
        }
190 191 192
        _outputState()
    }
    onShowContinueMissionChanged: {
193
        if (_corePlugin.guidedActionsControllerLogging()) {
194 195
            console.log("showContinueMission", showContinueMission)
        }
196 197
        _outputState()
    }
Don Gagne's avatar
Don Gagne committed
198 199 200 201 202 203
    onShowRTLChanged: {
        if (_corePlugin.guidedActionsControllerLogging()) {
            console.log("showRTL", showRTL)
        }
        _outputState()
    }
204 205
    // End of hack

206
    on_VehicleFlyingChanged: {
207
        _outputState()
208 209 210 211 212 213
        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
214 215

    property var _actionData
216 217

    on_FlightModeChanged: {
218 219 220 221
        _vehiclePaused =        _activeVehicle ? _flightMode === _activeVehicle.pauseFlightMode : false
        _vehicleInRTLMode =     _activeVehicle ? _flightMode === _activeVehicle.rtlFlightMode : false
        _vehicleInLandMode =    _activeVehicle ? _flightMode === _activeVehicle.landFlightMode : false
        _vehicleInMissionMode = _activeVehicle ? _flightMode === _activeVehicle.missionFlightMode : false // Must be last to get correct signalling for showStartMission popups
222
    }
223 224

    // Called when an action is about to be executed in order to confirm
225
    function confirmAction(actionCode, actionData, mapIndicator) {
226
        var showImmediate = true
227
        closeAll()
228 229
        confirmDialog.action = actionCode
        confirmDialog.actionData = actionData
230
        confirmDialog.hideTrigger = true
231
        confirmDialog.mapIndicator = mapIndicator
232 233 234
        _actionData = actionData
        switch (actionCode) {
        case actionArm:
235
            if (_vehicleFlying || !_guidedActionsEnabled) {
236 237
                return
            }
238 239 240
            confirmDialog.title = armTitle
            confirmDialog.message = armMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showArm })
241 242
            break;
        case actionDisarm:
243
            if (_vehicleFlying) {
244 245
                return
            }
246 247 248
            confirmDialog.title = disarmTitle
            confirmDialog.message = disarmMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showDisarm })
249 250
            break;
        case actionEmergencyStop:
251 252 253
            confirmDialog.title = emergencyStopTitle
            confirmDialog.message = emergencyStopMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showEmergenyStop })
254 255
            break;
        case actionTakeoff:
256 257 258
            confirmDialog.title = takeoffTitle
            confirmDialog.message = takeoffMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showTakeoff })
259
            altitudeSlider.setToMinimumTakeoff()
260
            altitudeSlider.visible = true
261 262
            break;
        case actionStartMission:
263
            showImmediate = false
264 265 266
            confirmDialog.title = startMissionTitle
            confirmDialog.message = startMissionMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showStartMission })
267
            break;
268
        case actionMVStartMission:
269
            confirmDialog.title = mvStartMissionTitle
270 271 272
            confirmDialog.message = startMissionMessage
            confirmDialog.hideTrigger = true
            break;
273
        case actionContinueMission:
274
            showImmediate = false
275 276 277 278
            confirmDialog.title = continueMissionTitle
            confirmDialog.message = continueMissionMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showContinueMission })
            break;
279
        case actionResumeMission:
Don Gagne's avatar
Don Gagne committed
280 281
            // Resume Mission is handled in mission end dialog
            return
282 283 284 285 286
        case actionResumeMissionUploadFail:
            confirmDialog.title = resumeMissionUploadFailTitle
            confirmDialog.message = resumeMissionUploadFailMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showResumeMission })
            break;
287
        case actionLand:
288 289 290
            confirmDialog.title = landTitle
            confirmDialog.message = landMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showLand })
291 292
            break;
        case actionRTL:
293 294 295
            confirmDialog.title = rtlTitle
            confirmDialog.message = rtlMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showRTL })
296 297
            break;
        case actionChangeAlt:
298 299 300
            confirmDialog.title = changeAltTitle
            confirmDialog.message = changeAltMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showChangeAlt })
Don Gagne's avatar
Don Gagne committed
301 302
            altitudeSlider.reset()
            altitudeSlider.visible = true
303 304
            break;
        case actionGoto:
305 306 307
            confirmDialog.title = gotoTitle
            confirmDialog.message = gotoMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showGotoLocation })
308 309
            break;
        case actionSetWaypoint:
310 311
            confirmDialog.title = setWaypointTitle
            confirmDialog.message = setWaypointMessage
312 313
            break;
        case actionOrbit:
314 315 316
            confirmDialog.title = orbitTitle
            confirmDialog.message = orbitMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showOrbit })
DonLakeFlyer's avatar
DonLakeFlyer committed
317 318
            altitudeSlider.reset()
            altitudeSlider.visible = true
319 320
            break;
        case actionLandAbort:
321 322 323
            confirmDialog.title = landAbortTitle
            confirmDialog.message = landAbortMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showLandAbort })
324 325
            break;
        case actionPause:
326 327 328
            confirmDialog.title = pauseTitle
            confirmDialog.message = pauseMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showPause })
329 330
            altitudeSlider.reset()
            altitudeSlider.visible = true
331
            break;
332
        case actionMVPause:
333
            confirmDialog.title = mvPauseTitle
334 335 336
            confirmDialog.message = mvPauseMessage
            confirmDialog.hideTrigger = true
            break;
337 338 339 340 341 342 343 344 345 346
        case actionVtolTransitionToFwdFlight:
            confirmDialog.title = vtolTransitionTitle
            confirmDialog.message = vtolTransitionFwdMessage
            confirmDialog.hideTrigger = true
            break
        case actionVtolTransitionToMRFlight:
            confirmDialog.title = vtolTransitionTitle
            confirmDialog.message = vtolTransitionMRMessage
            confirmDialog.hideTrigger = true
            break
347 348 349 350 351
        case actionOverrideUpload:
            confirmDialog.title = overrideUploadTitle
            confirmDialog.message = overrideUploadMessage
            confirmDialog.hideTrigger = true
            break
352 353 354 355 356 357 358 359 360 361
        case actionUploadAndExecute:
            confirmDialog.title = uploadAndExecuteTitle
            confirmDialog.message = uploadAndExecuteMessage
            confirmDialog.hideTrigger = true
            break
        case actionReturnBatteryLow:
            confirmDialog.title = returnBatteryLowTitle
            confirmDialog.message = returnBatteryLowMessage
            confirmDialog.hideTrigger = true
            break
362 363 364
        default:
            console.warn("Unknown actionCode", actionCode)
            return
365
        }
366
        confirmDialog.show(showImmediate)
367 368 369
    }

    // Executes the specified action
DonLakeFlyer's avatar
DonLakeFlyer committed
370
    function executeAction(actionCode, actionData, actionAltitudeChange) {
371 372
        var i;
        var rgVehicle;
373 374 375 376 377 378 379 380
        switch (actionCode) {
        case actionRTL:
            _activeVehicle.guidedModeRTL()
            break
        case actionLand:
            _activeVehicle.guidedModeLand()
            break
        case actionTakeoff:
DonLakeFlyer's avatar
DonLakeFlyer committed
381
            _activeVehicle.guidedModeTakeoff(actionAltitudeChange)
382 383
            break
        case actionResumeMission:
384
        case actionResumeMissionUploadFail:
385
            missionController.resumeMission(missionController.resumeMissionIndex)
386 387
            break
        case actionStartMission:
388
        case actionContinueMission:
389 390
            _activeVehicle.startMission()
            break
391
        case actionMVStartMission:
392 393 394
            rgVehicle = QGroundControl.multiVehicleManager.vehicles
            for (i = 0; i < rgVehicle.count; i++) {
                rgVehicle.get(i).startMission()
395 396
            }
            break
397
        case actionArm:
DonLakeFlyer's avatar
DonLakeFlyer committed
398
            _activeVehicle.armed = true
399 400
            break
        case actionDisarm:
DonLakeFlyer's avatar
DonLakeFlyer committed
401
            _activeVehicle.armed = false
402 403 404 405 406
            break
        case actionEmergencyStop:
            _activeVehicle.emergencyStop()
            break
        case actionChangeAlt:
DonLakeFlyer's avatar
DonLakeFlyer committed
407
            _activeVehicle.guidedModeChangeAltitude(actionAltitudeChange)
408 409 410 411 412 413 414 415
            break
        case actionGoto:
            _activeVehicle.guidedModeGotoLocation(actionData)
            break
        case actionSetWaypoint:
            _activeVehicle.setCurrentMissionSequence(actionData)
            break
        case actionOrbit:
Don Gagne's avatar
Don Gagne committed
416
            _activeVehicle.guidedModeOrbit(orbitMapCircle.center, orbitMapCircle.radius() * (orbitMapCircle.clockwiseRotation ? 1 : -1), _activeVehicle.altitudeAMSL.rawValue + actionAltitudeChange)
417 418 419 420 421 422
            break
        case actionLandAbort:
            _activeVehicle.abortLanding(50)     // hardcoded value for climbOutAltitude that is currently ignored
            break
        case actionPause:
            _activeVehicle.pauseVehicle()
DonLakeFlyer's avatar
DonLakeFlyer committed
423
            _activeVehicle.guidedModeChangeAltitude(actionAltitudeChange)
424
            break
425
        case actionMVPause:
426 427 428
            rgVehicle = QGroundControl.multiVehicleManager.vehicles
            for (i = 0; i < rgVehicle.count; i++) {
                rgVehicle.get(i).pauseVehicle()
429 430
            }
            break
431 432 433 434 435 436
        case actionVtolTransitionToFwdFlight:
            _activeVehicle.vtolInFwdFlight = true
            break
        case actionVtolTransitionToMRFlight:
            _activeVehicle.vtolInFwdFlight = false
            break
437 438 439
        case actionOverrideUpload:
            wimaController.forceUploadToVehicle()
            break
440 441
        case actionUploadAndExecute:
        case actionReturnBatteryLow:
442
            wimaController.executeSmartRTL()
443
            break
444 445 446 447 448 449
        default:
            console.warn(qsTr("Internal error: unknown actionCode"), actionCode)
            break
        }
    }
}