GuidedBar.qml 9.53 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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 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 261 262 263 264 265 266 267 268 269
/****************************************************************************
 *
 *   (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.5

import QGroundControl               1.0
import QGroundControl.Controls      1.0
import QGroundControl.ScreenTools   1.0
import QGroundControl.Palette       1.0

//-- Guided mode bar

Rectangle {
    id:     guidedModeBar
    width:  guidedModeColumn.width  + (_margins * 2)
    height: guidedModeColumn.height + (_margins * 2)
    radius: ScreenTools.defaultFontPixelHeight * 0.25
    color:  backgroundColor

    property var    activeVehicle                                           ///< Vehicle to show guided bar for
    property real   fontPointSize:      ScreenTools.defaultFontPointSize    ///< point size for fonts in control
    property color  backgroundColor:    qgcPal.windowShadeDark              ///< Background color for bar

    // Values for _confirmActionCode
    readonly property int confirmHome:          1
    readonly property int confirmLand:          2
    readonly property int confirmTakeoff:       3
    readonly property int confirmArm:           4
    readonly property int confirmDisarm:        5
    readonly property int confirmEmergencyStop: 6
    readonly property int confirmChangeAlt:     7
    readonly property int confirmGoTo:          8
    readonly property int confirmRetask:        9
    readonly property int confirmOrbit:         10

    property int    _confirmActionCode
    property real   _showMargin:    _margins
    property real   _hideMargin:    _margins - guidedModeBar.height
    property real   _barMargin:     _showMargin
    property bool   _showConfirm:   false
    property string _confirmText
    property bool   _showAltitude:  false
    property real   _confirmAltitude

    function actionConfirmed(altitude) {
        _showConfirm = false
        switch (_confirmActionCode) {
        case confirmHome:
            activeVehicle.guidedModeRTL()
            break;
        case confirmLand:
            activeVehicle.guidedModeLand()
            break;
        case confirmTakeoff:
            activeVehicle.guidedModeTakeoff(altitude)
            break;
        case confirmArm:
            activeVehicle.armed = true
            break;
        case confirmDisarm:
            activeVehicle.armed = false
            break;
        case confirmEmergencyStop:
            activeVehicle.emergencyStop()
            break;
        case confirmChangeAlt:
            activeVehicle.guidedModeChangeAltitude(altitude)
            break;
        case confirmGoTo:
            activeVehicle.guidedModeGotoLocation(_flightMap._gotoHereCoordinate)
            break;
        case confirmRetask:
            activeVehicle.setCurrentMissionSequence(_flightMap._retaskSequence)
            break;
        case confirmOrbit:
            //-- All parameters controlled by RC
            activeVehicle.guidedModeOrbit()
            //-- Center on current flight map position and orbit with a 50m radius (velocity/direction controlled by the RC)
            //activeVehicle.guidedModeOrbit(QGroundControl.flightMapPosition, 50.0)
            break;
        default:
            console.warn(qsTr("Internal error: unknown _confirmActionCode"), _confirmActionCode)
        }
    }

    function actionRejected() {
        _showConfirm = false
        /*
            altitudeSlider.visible = false
            _flightMap._gotoHereCoordinate = QtPositioning.coordinate()
            guidedModeHideTimer.restart()
            */
    }

    function confirmAction(actionCode) {
        //guidedModeHideTimer.stop()
        _confirmActionCode = actionCode
        _showAltitude = false
        switch (_confirmActionCode) {
        case confirmArm:
            _confirmText = qsTr("Arm vehicle?")
            break;
        case confirmDisarm:
            _confirmText = qsTr("Disarm vehicle?")
            break;
        case confirmEmergencyStop:
            _confirmText = qsTr("STOP ALL MOTORS?")
            break;
        case confirmTakeoff:
            _showAltitude = true
            setInitialValueMeters(3)
            _confirmText = qsTr("Takeoff vehicle?")
            break;
        case confirmLand:
            _confirmText = qsTr("Land vehicle?")
            break;
        case confirmHome:
            _confirmText = qsTr("Return to land?")
            break;
        case confirmChangeAlt:
            _showAltitude = true
            setInitialValueAppSettingsDistanceUnits(activeVehicle.altitudeRelative.value)
            _confirmText = qsTr("Change altitude?")
            break;
        case confirmGoTo:
            _confirmText = qsTr("Move vehicle?")
            break;
        case confirmRetask:
            _confirmText = qsTr("Change active waypoint?")
            break;
        case confirmOrbit:
            _confirmText = qsTr("Enter orbit mode?")
            break;
        }
        _showConfirm = true
    }

    function setInitialValueMeters(meters) {
        _confirmAltitude = QGroundControl.metersToAppSettingsDistanceUnits(meters)
    }

    function setInitialValueAppSettingsDistanceUnits(height) {
        _confirmAltitude = height
    }

    QGCPalette { id: qgcPal; colorGroupEnabled: enabled }

    Column {
        id:                 guidedModeColumn
        anchors.margins:    _margins
        anchors.top:        parent.top
        anchors.left:       parent.left
        spacing:            _margins

        /*
            QGCLabel {
                anchors.horizontalCenter: parent.horizontalCenter
                color:      _lightWidgetBorders ? qgcPal.mapWidgetBorderDark : qgcPal.mapWidgetBorderLight
                text:       "Click in map to move vehicle"
                visible:    gotoEnabled
            }*/

        Row {
            spacing:    _margins * 2
            visible:    !_showConfirm

            QGCButton {
                pointSize:  fontPointSize
                text:       (activeVehicle && activeVehicle.armed) ? (activeVehicle.flying ? qsTr("Emergency Stop") : qsTr("Disarm")) :  qsTr("Arm")
                visible:    activeVehicle
                onClicked:  confirmAction(activeVehicle.armed ? (activeVehicle.flying ? confirmEmergencyStop : confirmDisarm) : confirmArm)
            }

            QGCButton {
                pointSize:  fontPointSize
                text:       qsTr("RTL")
                visible:    (activeVehicle && activeVehicle.armed) && activeVehicle.guidedModeSupported && activeVehicle.flying
                onClicked:  confirmAction(confirmHome)
            }

            QGCButton {
                pointSize:  fontPointSize
                text:       (activeVehicle && activeVehicle.flying) ?  qsTr("Land"):  qsTr("Takeoff")
                visible:    activeVehicle && activeVehicle.guidedModeSupported && activeVehicle.armed
                onClicked:  confirmAction(activeVehicle.flying ? confirmLand : confirmTakeoff)
            }

            QGCButton {
                pointSize:  fontPointSize
                text:       qsTr("Pause")
                visible:    (activeVehicle && activeVehicle.armed) && activeVehicle.pauseVehicleSupported && activeVehicle.flying
                onClicked:  {
                    guidedModeHideTimer.restart()
                    activeVehicle.pauseVehicle()
                }
            }

            QGCButton {
                pointSize:  fontPointSize
                text:       qsTr("Change Altitude")
                visible:    (activeVehicle && activeVehicle.flying) && activeVehicle.guidedModeSupported && activeVehicle.armed
                onClicked:  confirmAction(confirmChangeAlt)
            }

            QGCButton {
                pointSize:  fontPointSize
                text:       qsTr("Orbit")
                visible:    (activeVehicle && activeVehicle.flying) && activeVehicle.orbitModeSupported && activeVehicle.armed
                onClicked:  confirmAction(confirmOrbit)
            }

        } // Row

        Column {
            visible: _showConfirm

            QGCLabel {
                anchors.horizontalCenter:   parent.horizontalCenter
                text:                       _confirmText
            }

            Row {
                anchors.horizontalCenter:   parent.horizontalCenter
                spacing:                    ScreenTools.defaultFontPixelWidth

                Row {
                    visible: _showAltitude

                    QGCLabel {
                        text: qsTr("Alt (rel)")
                    }

                    QGCLabel {
                        text: QGroundControl.appSettingsDistanceUnitsString
                    }

                    QGCTextField {
                        id:     altField
                        text:   _confirmAltitude.toFixed(1)
                    }
                }

                QGCButton {
                    text: qsTr("Yes")

                    onClicked: {
                        var value = parseFloat(altField.text)
                        if (isNaN(value)) {
                            actionRejected()
                        } else {
                            actionConfirmed(QGroundControl.appSettingsDistanceUnitsToMeters(value))
                        }
                    }
                }

                QGCButton {
                    text: qsTr("No")
                    onClicked: actionRejected()
                }
            }
        } // Column
    } // Column
} // Rectangle - Guided mode buttons