UASControlWidget.cc 7.81 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
/*=====================================================================

PIXHAWK Micro Air Vehicle Flying Robotics Toolkit

(c) 2009, 2010 PIXHAWK PROJECT  <http://pixhawk.ethz.ch>

This file is part of the PIXHAWK project

    PIXHAWK is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    PIXHAWK is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with PIXHAWK. If not, see <http://www.gnu.org/licenses/>.

======================================================================*/

/**
 * @file
 *   @brief Definition of widget controlling one MAV
 *
 *   @author Lorenz Meier <mavteam@student.ethz.ch>
 *
 */

#include <QString>
#include <QTimer>
#include <QLabel>
#include <QProcess>
#include <QPalette>

#include "UASControlWidget.h"
#include <UASManager.h>
#include <UAS.h>
#include "QGC.h"
42
#include "AutoPilotPluginManager.h"
43

44
UASControlWidget::UASControlWidget(QWidget *parent) : QWidget(parent),
45 46 47
    uasID(-1),
    modeIdx(0),
    armed(false)
48 49 50
{
    ui.setupUi(this);

51 52
    this->setUAS(UASManager::instance()->getActiveUAS());

53 54 55 56
    connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), this, SLOT(setUAS(UASInterface*)));
    connect(ui.modeComboBox, SIGNAL(activated(int)), this, SLOT(setMode(int)));
    connect(ui.setModeButton, SIGNAL(clicked()), this, SLOT(transmitMode()));

57 58
    ui.gridLayout->setAlignment(Qt::AlignTop);
}
59

60 61 62
void UASControlWidget::updateModesList()
{
    // Detect autopilot type
63
    int autopilot = MAV_AUTOPILOT_GENERIC;
64 65 66 67 68 69
    if (this->uasID >= 0) {
        UASInterface *uas = UASManager::instance()->getUASForId(this->uasID);
        if (uas) {
            autopilot = UASManager::instance()->getUASForId(this->uasID)->getAutopilotType();
        }
    }
70
    
71
    AutoPilotPlugin* autopilotPlugin = AutoPilotPluginManager::instance()->getInstanceForAutoPilotPlugin(autopilot);
72 73
    
    _modeList = autopilotPlugin->getModes();
74 75 76

    // Set combobox items
    ui.modeComboBox->clear();
77 78
    foreach (AutoPilotPlugin::FullMode_t fullMode, _modeList) {
        ui.modeComboBox->addItem(UAS::getShortModeTextFor(fullMode.baseMode, fullMode.customMode, autopilot).remove(0, 2));
79
    }
80

81 82 83 84
    // Select first mode in list
    modeIdx = 0;
    ui.modeComboBox->setCurrentIndex(modeIdx);
    ui.modeComboBox->update();
85 86 87 88
}

void UASControlWidget::setUAS(UASInterface* uas)
{
89
    if (this->uasID > 0) {
90
        UASInterface* oldUAS = UASManager::instance()->getUASForId(this->uasID);
91 92 93 94 95 96 97 98 99
        if (oldUAS) {
            disconnect(ui.controlButton, SIGNAL(clicked()), oldUAS, SLOT(armSystem()));
            disconnect(ui.liftoffButton, SIGNAL(clicked()), oldUAS, SLOT(launch()));
            disconnect(ui.landButton, SIGNAL(clicked()), oldUAS, SLOT(home()));
            disconnect(ui.shutdownButton, SIGNAL(clicked()), oldUAS, SLOT(shutdown()));
            //connect(ui.setHomeButton, SIGNAL(clicked()), uas, SLOT(setLocalOriginAtCurrentGPSPosition()));
            disconnect(oldUAS, SIGNAL(modeChanged(int,QString,QString)), this, SLOT(updateMode(int, QString, QString)));
            disconnect(oldUAS, SIGNAL(statusChanged(int)), this, SLOT(updateState(int)));
        }
100 101 102
    }

    // Connect user interface controls
103 104 105 106 107 108 109 110 111 112 113 114 115
    if (uas) {
        connect(ui.controlButton, SIGNAL(clicked()), this, SLOT(cycleContextButton()));
        connect(ui.liftoffButton, SIGNAL(clicked()), uas, SLOT(launch()));
        connect(ui.landButton, SIGNAL(clicked()), uas, SLOT(home()));
        connect(ui.shutdownButton, SIGNAL(clicked()), uas, SLOT(shutdown()));
        //connect(ui.setHomeButton, SIGNAL(clicked()), uas, SLOT(setLocalOriginAtCurrentGPSPosition()));
        connect(uas, SIGNAL(modeChanged(int, QString, QString)), this, SLOT(updateMode(int, QString, QString)));
        connect(uas, SIGNAL(statusChanged(int)), this, SLOT(updateState(int)));

        ui.controlStatusLabel->setText(tr("Connected to ") + uas->getUASName());

        this->uasID = uas->getUASID();
        setBackgroundColor(uas->getColor());
116 117 118 119

        this->updateModesList();
        this->updateArmText();

120 121 122
    } else {
        this->uasID = -1;
    }
123 124 125 126 127 128 129
}

UASControlWidget::~UASControlWidget()
{

}

130
void UASControlWidget::updateArmText()
131
{
132
    if (armed) {
133
        ui.controlButton->setText(tr("DISARM SYSTEM"));
134
    } else {
135
        ui.controlButton->setText(tr("ARM SYSTEM"));
136 137 138 139 140 141 142 143 144 145 146 147 148 149
    }
}

/**
 * Set the background color based on the MAV color. If the MAV is selected as the
 * currently actively controlled system, the frame color is highlighted
 */
void UASControlWidget::setBackgroundColor(QColor color)
{
    // UAS color
    QColor uasColor = color;
    QString colorstyle;
    QString borderColor = "#4A4A4F";
    borderColor = "#FA4A4F";
150
    uasColor = uasColor.darker(400);
151 152 153 154 155 156 157 158 159 160
    colorstyle = colorstyle.sprintf("QLabel { border-radius: 3px; padding: 0px; margin: 0px; background-color: #%02X%02X%02X; border: 0px solid %s; }",
                                    uasColor.red(), uasColor.green(), uasColor.blue(), borderColor.toStdString().c_str());
    setStyleSheet(colorstyle);
    QPalette palette = this->palette();
    palette.setBrush(QPalette::Window, QBrush(uasColor));
    setPalette(palette);
    setAutoFillBackground(true);
}


161
void UASControlWidget::updateMode(int uas, QString mode, QString description)
162 163 164 165 166 167 168 169
{
    Q_UNUSED(uas);
    Q_UNUSED(mode);
    Q_UNUSED(description);
}

void UASControlWidget::updateState(int state)
{
170
    switch (state) {
171
    case (int)MAV_STATE_ACTIVE:
172
        armed = true;
173 174
        break;
    case (int)MAV_STATE_STANDBY:
175
        armed = false;
176 177
        break;
    }
178
    this->updateArmText();
179 180
}

181 182 183
/**
 * Called by the button
 */
184 185 186
void UASControlWidget::setMode(int mode)
{
    // Adapt context button mode
187
    modeIdx = mode;
188 189 190
    ui.modeComboBox->blockSignals(true);
    ui.modeComboBox->setCurrentIndex(mode);
    ui.modeComboBox->blockSignals(false);
191 192

    emit changedMode(mode);
193 194 195 196
}

void UASControlWidget::transmitMode()
{
197 198
    UASInterface* uas_iface = UASManager::instance()->getUASForId(this->uasID);
    if (uas_iface) {
199 200
        if (modeIdx >= 0 && modeIdx < _modeList.count()) {
            AutoPilotPlugin::FullMode_t fullMode = _modeList[modeIdx];
201 202
            // include armed state
            if (armed) {
203
                fullMode.baseMode |= MAV_MODE_FLAG_SAFETY_ARMED;
204
            } else {
205
                fullMode.baseMode &= ~MAV_MODE_FLAG_SAFETY_ARMED;
206 207
            }

208 209
            UAS* uas = dynamic_cast<UAS*>(uas_iface);

210
            if (uas->isHilEnabled() || uas->isHilActive()) {
211
                fullMode.baseMode |= MAV_MODE_FLAG_HIL_ENABLED;
212
            } else {
213
                fullMode.baseMode &= ~MAV_MODE_FLAG_HIL_ENABLED;
214 215
            }

216
            uas->setMode(fullMode.baseMode, fullMode.customMode);
217 218 219 220
            QString modeText = ui.modeComboBox->currentText();

            ui.lastActionLabel->setText(QString("Sent new mode %1 to %2").arg(modeText).arg(uas->getUASName()));
        }
221 222 223 224 225
    }
}

void UASControlWidget::cycleContextButton()
{
226 227 228 229 230
    UAS* uas = dynamic_cast<UAS*>(UASManager::instance()->getUASForId(this->uasID));
    if (uas) {
        if (!armed) {
            uas->armSystem();
            ui.lastActionLabel->setText(QString("Arm %1").arg(uas->getUASName()));
231
        } else {
232 233
            uas->disarmSystem();
            ui.lastActionLabel->setText(QString("Disarm %1").arg(uas->getUASName()));
234 235 236 237
        }
    }
}