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

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

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

99 100 101 102
    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

103
    property bool showEmergenyStop:     _guidedActionsEnabled && !_hideEmergenyStop && _vehicleArmed && _vehicleFlying
104
    property bool showArm:              _guidedActionsEnabled && !_vehicleArmed && _canArm
105
    property bool showDisarm:           _guidedActionsEnabled && _vehicleArmed && !_vehicleFlying
106
    property bool showRTL:              _guidedActionsEnabled && _vehicleArmed && activeVehicle.guidedModeSupported && _vehicleFlying && !_vehicleInRTLMode
107
    property bool showTakeoff:          _guidedActionsEnabled && activeVehicle.takeoffVehicleSupported && !_vehicleFlying && _canArm
108
    property bool showLand:             _guidedActionsEnabled && activeVehicle.guidedModeSupported && _vehicleArmed && !activeVehicle.fixedWing && !_vehicleInLandMode
109
    property bool showStartMission:     _guidedActionsEnabled && _missionAvailable && !_missionActive && !_vehicleFlying && _canArm
110
    property bool showContinueMission:  _guidedActionsEnabled && _missionAvailable && !_missionActive && _vehicleArmed && _vehicleFlying && (_currentMissionIndex < _missionItemCount - 1)
111 112 113
    property bool showPause:            _guidedActionsEnabled && _vehicleArmed && activeVehicle.pauseVehicleSupported && _vehicleFlying && !_vehiclePaused && !_fixedWingOnApproach
    property bool showChangeAlt:        _guidedActionsEnabled && _vehicleFlying && activeVehicle.guidedModeSupported && _vehicleArmed && !_missionActive
    property bool showOrbit:            _guidedActionsEnabled && !_hideOrbit && _vehicleFlying && activeVehicle.orbitModeSupported && !_missionActive
Gus Grubba's avatar
Gus Grubba committed
114
    property bool showROI:              _guidedActionsEnabled && !_hideROI && _vehicleFlying && activeVehicle.roiModeSupported && !_missionActive
115
    property bool showLandAbort:        _guidedActionsEnabled && _vehicleFlying && _fixedWingOnApproach
116
    property bool showGotoLocation:     _guidedActionsEnabled && _vehicleFlying
117

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

DonLakeFlyer's avatar
DonLakeFlyer committed
121 122
    property bool guidedUIVisible:      guidedActionConfirm.visible || guidedActionList.visible

123
    property var    _corePlugin:            QGroundControl.corePlugin
124 125
    property bool   _guidedActionsEnabled:  (!ScreenTools.isDebug && QGroundControl.corePlugin.options.guidedActionsRequireRCRSSI && activeVehicle) ? _rcRSSIAvailable : activeVehicle
    property string _flightMode:            activeVehicle ? activeVehicle.flightMode : ""
126
    property bool   _missionAvailable:      missionController.containsItems
127 128 129 130
    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
131 132 133 134
    property bool   _vehiclePaused:         false
    property bool   _vehicleInMissionMode:  false
    property bool   _vehicleInRTLMode:      false
    property bool   _vehicleInLandMode:     false
135
    property int    _missionItemCount:      missionController.missionItemCount
136
    property int    _currentMissionIndex:   missionController.currentMissionIndex
137 138 139
    property int    _resumeMissionIndex:    missionController.resumeMissionIndex
    property bool   _hideEmergenyStop:      !QGroundControl.corePlugin.options.guidedBarShowEmergencyStop
    property bool   _hideOrbit:             !QGroundControl.corePlugin.options.guidedBarShowOrbit
Gus Grubba's avatar
Gus Grubba committed
140
    property bool   _hideROI:               !QGroundControl.corePlugin.options.guidedBarShowOrbit
141
    property bool   _vehicleWasFlying:      false
142 143
    property bool   _rcRSSIAvailable:       activeVehicle ? activeVehicle.rcRSSI > 0 && activeVehicle.rcRSSI <= 100 : false
    property bool   _fixedWingOnApproach:   activeVehicle ? activeVehicle.fixedWing && _vehicleLanding : false
144

145
    // You can turn on log output for GuidedActionsController by turning on GuidedActionsControllerLog category
146 147
    property bool __guidedModeSupported:    activeVehicle ? activeVehicle.guidedModeSupported : false
    property bool __pauseVehicleSupported:  activeVehicle ? activeVehicle.pauseVehicleSupported : false
148
    property bool __flightMode:             _flightMode
149 150

    function _outputState() {
151
        if (_corePlugin.guidedActionsControllerLogging()) {
152
            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))
Gus Grubba's avatar
Gus Grubba committed
153 154 155 156 157 158 159
        }
    }

    Connections {
        target: mainWindow
        onActiveVehicleChanged: {
            _outputState()
160
        }
161 162
    }

163 164 165 166 167 168 169
    Component.onCompleted:              _outputState()
    on_VehicleArmedChanged:             _outputState()
    on_VehicleInRTLModeChanged:         _outputState()
    on_VehiclePausedChanged:            _outputState()
    on__FlightModeChanged:              _outputState()
    on__GuidedModeSupportedChanged:     _outputState()
    on__PauseVehicleSupportedChanged:   _outputState()
170
    on_MissionItemCountChanged:         _outputState()
171

DonLakeFlyer's avatar
DonLakeFlyer committed
172
    on_CurrentMissionIndexChanged: {
173
        if (_corePlugin.guidedActionsControllerLogging()) {
DonLakeFlyer's avatar
DonLakeFlyer committed
174 175 176 177
            console.log("_currentMissionIndex", _currentMissionIndex)
        }
    }
    on_ResumeMissionIndexChanged: {
178
        if (_corePlugin.guidedActionsControllerLogging()) {
DonLakeFlyer's avatar
DonLakeFlyer committed
179 180 181
            console.log("_resumeMissionIndex", _resumeMissionIndex)
        }
    }
182
    onShowResumeMissionChanged: {
183
        if (_corePlugin.guidedActionsControllerLogging()) {
184 185
            console.log("showResumeMission", showResumeMission)
        }
186 187 188
        _outputState()
    }
    onShowStartMissionChanged: {
189
        if (_corePlugin.guidedActionsControllerLogging()) {
190 191
            console.log("showStartMission", showStartMission)
        }
192
        _outputState()
193 194 195
        if (showStartMission) {
            confirmAction(actionStartMission)
        }
196 197
    }
    onShowContinueMissionChanged: {
198
        if (_corePlugin.guidedActionsControllerLogging()) {
199 200
            console.log("showContinueMission", showContinueMission)
        }
201
        _outputState()
202 203 204
        if (showContinueMission) {
            confirmAction(actionContinueMission)
        }
205
    }
Don Gagne's avatar
Don Gagne committed
206 207 208 209 210 211
    onShowRTLChanged: {
        if (_corePlugin.guidedActionsControllerLogging()) {
            console.log("showRTL", showRTL)
        }
        _outputState()
    }
212 213 214 215 216 217
    onShowChangeAltChanged: {
        if (_corePlugin.guidedActionsControllerLogging()) {
            console.log("showChangeAlt", showChangeAlt)
        }
        _outputState()
    }
218 219 220 221 222
    onShowLandAbortChanged: {
        if (showLandAbort) {
            confirmAction(actionLandAbort)
        }
    }
223

224
    on_VehicleFlyingChanged: {
225
        _outputState()
226 227 228 229 230 231
        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
232 233

    property var _actionData
234 235

    on_FlightModeChanged: {
236 237 238 239
        _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
240
    }
241

242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
    Connections {
        target:                     missionController
        onResumeMissionUploadFail:  confirmAction(actionResumeMissionUploadFail)
    }

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

    function armVehicleRequest() {
        confirmAction(actionArm)
    }

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

    }

    function vtolTransitionToFwdFlightRequest() {
        confirmAction(actionVtolTransitionToFwdFlight)
    }

    function vtolTransitionToMRFlightRequest() {
        confirmAction(actionVtolTransitionToMRFlight)
    }

276 277 278 279 280 281
    function closeAll() {
        confirmDialog.visible =     false
        actionList.visible =        false
        altitudeSlider.visible =    false
    }

282
    // Called when an action is about to be executed in order to confirm
283
    function confirmAction(actionCode, actionData, mapIndicator) {
284
        var showImmediate = true
285
        closeAll()
286 287
        confirmDialog.action = actionCode
        confirmDialog.actionData = actionData
288
        confirmDialog.hideTrigger = true
289
        confirmDialog.mapIndicator = mapIndicator
DonLakeFlyer's avatar
DonLakeFlyer committed
290
        confirmDialog.optionText = ""
291 292 293
        _actionData = actionData
        switch (actionCode) {
        case actionArm:
294
            if (_vehicleFlying || !_guidedActionsEnabled) {
295 296
                return
            }
297 298 299
            confirmDialog.title = armTitle
            confirmDialog.message = armMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showArm })
300 301
            break;
        case actionDisarm:
302
            if (_vehicleFlying) {
303 304
                return
            }
305 306 307
            confirmDialog.title = disarmTitle
            confirmDialog.message = disarmMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showDisarm })
308 309
            break;
        case actionEmergencyStop:
310 311 312
            confirmDialog.title = emergencyStopTitle
            confirmDialog.message = emergencyStopMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showEmergenyStop })
313 314
            break;
        case actionTakeoff:
315 316 317
            confirmDialog.title = takeoffTitle
            confirmDialog.message = takeoffMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showTakeoff })
318
            altitudeSlider.setToMinimumTakeoff()
319
            altitudeSlider.visible = true
320 321
            break;
        case actionStartMission:
322
            showImmediate = false
323 324 325
            confirmDialog.title = startMissionTitle
            confirmDialog.message = startMissionMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showStartMission })
326
            break;
327
        case actionMVStartMission:
328
            confirmDialog.title = mvStartMissionTitle
329 330 331
            confirmDialog.message = startMissionMessage
            confirmDialog.hideTrigger = true
            break;
332
        case actionContinueMission:
333
            showImmediate = false
334 335 336 337
            confirmDialog.title = continueMissionTitle
            confirmDialog.message = continueMissionMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showContinueMission })
            break;
338
        case actionResumeMission:
Don Gagne's avatar
Don Gagne committed
339 340
            // Resume Mission is handled in mission end dialog
            return
341 342 343 344 345
        case actionResumeMissionUploadFail:
            confirmDialog.title = resumeMissionUploadFailTitle
            confirmDialog.message = resumeMissionUploadFailMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showResumeMission })
            break;
346
        case actionLand:
347 348 349
            confirmDialog.title = landTitle
            confirmDialog.message = landMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showLand })
350 351
            break;
        case actionRTL:
352 353
            confirmDialog.title = rtlTitle
            confirmDialog.message = rtlMessage
354
            if (activeVehicle.supportsSmartRTL) {
DonLakeFlyer's avatar
DonLakeFlyer committed
355 356 357
                confirmDialog.optionText = qsTr("Smart RTL")
                confirmDialog.optionChecked = false
            }
358
            confirmDialog.hideTrigger = Qt.binding(function() { return !showRTL })
359 360
            break;
        case actionChangeAlt:
361 362 363
            confirmDialog.title = changeAltTitle
            confirmDialog.message = changeAltMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showChangeAlt })
Don Gagne's avatar
Don Gagne committed
364 365
            altitudeSlider.reset()
            altitudeSlider.visible = true
366 367
            break;
        case actionGoto:
368 369 370
            confirmDialog.title = gotoTitle
            confirmDialog.message = gotoMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showGotoLocation })
371 372
            break;
        case actionSetWaypoint:
373 374
            confirmDialog.title = setWaypointTitle
            confirmDialog.message = setWaypointMessage
375 376
            break;
        case actionOrbit:
377 378 379
            confirmDialog.title = orbitTitle
            confirmDialog.message = orbitMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showOrbit })
DonLakeFlyer's avatar
DonLakeFlyer committed
380 381
            altitudeSlider.reset()
            altitudeSlider.visible = true
382 383
            break;
        case actionLandAbort:
384 385 386
            confirmDialog.title = landAbortTitle
            confirmDialog.message = landAbortMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showLandAbort })
387 388
            break;
        case actionPause:
389 390 391
            confirmDialog.title = pauseTitle
            confirmDialog.message = pauseMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showPause })
392 393
            altitudeSlider.reset()
            altitudeSlider.visible = true
394
            break;
395
        case actionMVPause:
396
            confirmDialog.title = mvPauseTitle
397 398 399
            confirmDialog.message = mvPauseMessage
            confirmDialog.hideTrigger = true
            break;
400 401 402 403 404 405 406 407 408 409
        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
410 411 412 413 414
        case actionROI:
            confirmDialog.title = roiTitle
            confirmDialog.message = roiMessage
            confirmDialog.hideTrigger = Qt.binding(function() { return !showROI })
            break;
415 416 417
        default:
            console.warn("Unknown actionCode", actionCode)
            return
418
        }
419
        confirmDialog.show(showImmediate)
420 421 422
    }

    // Executes the specified action
DonLakeFlyer's avatar
DonLakeFlyer committed
423
    function executeAction(actionCode, actionData, actionAltitudeChange, optionChecked) {
424 425
        var i;
        var rgVehicle;
426 427
        switch (actionCode) {
        case actionRTL:
428
            activeVehicle.guidedModeRTL(optionChecked)
429 430
            break
        case actionLand:
431
            activeVehicle.guidedModeLand()
432 433
            break
        case actionTakeoff:
434
            activeVehicle.guidedModeTakeoff(actionAltitudeChange)
435 436
            break
        case actionResumeMission:
437
        case actionResumeMissionUploadFail:
438
            missionController.resumeMission(missionController.resumeMissionIndex)
439 440
            break
        case actionStartMission:
441
        case actionContinueMission:
442
            activeVehicle.startMission()
443
            break
444
        case actionMVStartMission:
445 446 447
            rgVehicle = QGroundControl.multiVehicleManager.vehicles
            for (i = 0; i < rgVehicle.count; i++) {
                rgVehicle.get(i).startMission()
448 449
            }
            break
450
        case actionArm:
451
            activeVehicle.armed = true
452 453
            break
        case actionDisarm:
454
            activeVehicle.armed = false
455 456
            break
        case actionEmergencyStop:
457
            activeVehicle.emergencyStop()
458 459
            break
        case actionChangeAlt:
460
            activeVehicle.guidedModeChangeAltitude(actionAltitudeChange)
461 462
            break
        case actionGoto:
463
            activeVehicle.guidedModeGotoLocation(actionData)
464 465
            break
        case actionSetWaypoint:
466
            activeVehicle.setCurrentMissionSequence(actionData)
467 468
            break
        case actionOrbit:
469
            activeVehicle.guidedModeOrbit(orbitMapCircle.center, orbitMapCircle.radius() * (orbitMapCircle.clockwiseRotation ? 1 : -1), activeVehicle.altitudeAMSL.rawValue + actionAltitudeChange)
470 471
            break
        case actionLandAbort:
472
            activeVehicle.abortLanding(50)     // hardcoded value for climbOutAltitude that is currently ignored
473 474
            break
        case actionPause:
475 476
            activeVehicle.pauseVehicle()
            activeVehicle.guidedModeChangeAltitude(actionAltitudeChange)
477
            break
478
        case actionMVPause:
479 480 481
            rgVehicle = QGroundControl.multiVehicleManager.vehicles
            for (i = 0; i < rgVehicle.count; i++) {
                rgVehicle.get(i).pauseVehicle()
482 483
            }
            break
484
        case actionVtolTransitionToFwdFlight:
485
            activeVehicle.vtolInFwdFlight = true
486 487
            break
        case actionVtolTransitionToMRFlight:
488
            activeVehicle.vtolInFwdFlight = false
489
            break
Gus Grubba's avatar
Gus Grubba committed
490 491 492
        case actionROI:
            activeVehicle.guidedModeROI(actionData)
            break
493 494 495 496 497 498
        default:
            console.warn(qsTr("Internal error: unknown actionCode"), actionCode)
            break
        }
    }
}