MainWindow.cc 16 KB
Newer Older
pixhawk's avatar
pixhawk committed
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
/*=====================================================================

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
26
 *   @brief Implementation of class MainWindow
pixhawk's avatar
pixhawk committed
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
 *   @author Lorenz Meier <mavteam@student.ethz.ch>
 *
 */

#include <QSettings>
#include <QDockWidget>
#include <QNetworkInterface>
#include <QMessageBox>
#include <QDebug>
#include <QTimer>
#include <QHostInfo>

#include "MG.h"
#include "MAVLinkSimulationLink.h"
#include "SerialLink.h"
#include "UDPLink.h"
#include "MAVLinkProtocol.h"
#include "CommConfigurationWindow.h"
#include "WaypointList.h"
#include "MainWindow.h"
#include "JoystickWidget.h"
pixhawk's avatar
pixhawk committed
48
#include "GAudioOutput.h"
pixhawk's avatar
pixhawk committed
49 50 51 52 53 54 55 56 57 58 59


#include "LogCompressor.h"

/**
* Create new mainwindow. The constructor instantiates all parts of the user
* interface. It does NOT show the mainwindow. To display it, call the show()
* method.
*
* @see QMainWindow::show()
**/
pixhawk's avatar
pixhawk committed
60
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent)
pixhawk's avatar
pixhawk committed
61 62
{

63 64 65
    this->hide();
    this->setVisible(false);

pixhawk's avatar
pixhawk committed
66 67 68 69 70 71 72 73 74 75 76 77 78 79
    // Quick hack
    //comp = new LogCompressor("/home/pixhawk/Desktop/test.txt");

    mavlink = new MAVLinkProtocol();
    //as4link = new AS4Protocol();

    //    MG::DISPLAY::setPixelSize(0.224f);

    // Setup user interface
    ui.setupUi(this);

    // Initialize views, NOT show them yet, only initialize model and controller
    centerStack = new QStackedWidget(this);
    linechart = new LinechartWidget(this);
80
    linechart->setActive(false);
pixhawk's avatar
pixhawk committed
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), linechart, SLOT(setActivePlot(UASInterface*)));
    centerStack->addWidget(linechart);
    control = new UASControlWidget(this);
    //controlDock = new QDockWidget(this);
    //controlDock->setWidget(control);
    list = new UASListWidget(this);
    list->setVisible(false);
    waypoints = new WaypointList(this, NULL);
    waypoints->setVisible(false);
    info = new UASInfoWidget(this);
    info->setVisible(false);
    detection = new ObjectDetectionView("test", this);
    detection->setVisible(false);
    hud = new HUD(640, 480, this);
    hud->setVisible(false);
    debugConsole = new DebugConsole(this);
    debugConsole->setVisible(false);
    map = new MapWidget(this);
    map->setVisible(false);
    protocol = new XMLCommProtocolWidget(this);
    protocol->setVisible(false);
    parameters = new ParameterInterface(this);
    parameters->setVisible(false);
pixhawk's avatar
pixhawk committed
104 105 106 107 108 109

    QStringList* acceptList = new QStringList();
    acceptList->append("roll IMU");
    acceptList->append("pitch IMU");
    acceptList->append("yaw IMU");
    headDown1 = new HDDisplay(acceptList, this);
pixhawk's avatar
pixhawk committed
110
    headDown1->setVisible(false);
pixhawk's avatar
pixhawk committed
111 112 113 114 115 116

    QStringList* acceptList2 = new QStringList();
    acceptList2->append("Battery");
    acceptList2->append("Pressure");
    headDown2 = new HDDisplay(acceptList2, this);
    headDown2->setVisible(false);
pixhawk's avatar
pixhawk committed
117 118 119 120 121 122 123
    centerStack->addWidget(map);
    centerStack->addWidget(hud);
    setCentralWidget(centerStack);

    // Get IPs
    QList<QHostAddress> hostAddresses = QNetworkInterface::allAddresses();

pixhawk's avatar
pixhawk committed
124 125
    QString windowname = qApp->applicationName() + " " + qApp->applicationVersion();
    /*
pixhawk's avatar
pixhawk committed
126 127 128 129 130 131 132 133 134 135 136 137 138 139
    windowname.append(" (" + QHostInfo::localHostName() + ": ");
    bool prevAddr = false;
    for (int i = 0; i < hostAddresses.size(); i++)
    {
        // Exclude loopback IPv4 and all IPv6 addresses
        if (hostAddresses.at(i) != QHostAddress("127.0.0.1") && !hostAddresses.at(i).toString().contains(":"))
        {
            if(prevAddr) windowname.append("/");
            windowname.append(hostAddresses.at(i).toString());
            prevAddr = true;
        }
    }

    windowname.append(")");
pixhawk's avatar
pixhawk committed
140
    */
pixhawk's avatar
pixhawk committed
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

    setWindowTitle(windowname);
#ifndef Q_WS_MAC
    //qApp->setWindowIcon(QIcon(":/core/images/qtcreator_logo_128.png"));
#endif

    // Add status bar
    setStatusBar(createStatusBar());

    // Set the application style (not the same as a style sheet)
    // Set the style to Plastique
    qApp->setStyle("plastique");
    // Set style sheet as last step
    reloadStylesheet();

    joystick = new JoystickInput();

    // HAS TO BE THE LAST ACTION
    // to make sure that all components are initialized when the
    // first messages arrive
    udpLink = new UDPLink(QHostAddress::Any, 14550);
    LinkManager::instance()->addProtocol(udpLink, mavlink);
    CommConfigurationWindow* commWidget = new CommConfigurationWindow(udpLink, mavlink, this);
    ui.menuNetwork->addAction(commWidget->getAction());
    udpLink->connect();

pixhawk's avatar
pixhawk committed
167
    simulationLink = new MAVLinkSimulationLink(MG::DIR::getSupportFilesDirectory() + "/demo-log.txt");
168
    connect(simulationLink, SIGNAL(valueChanged(int,QString,double,quint64)), linechart, SLOT(appendData(int,QString,double,quint64)));
pixhawk's avatar
pixhawk committed
169 170 171
    LinkManager::instance()->addProtocol(simulationLink, mavlink);
    //CommConfigurationWindow* simulationWidget = new CommConfigurationWindow(simulationLink, mavlink, this);
    //ui.menuNetwork->addAction(commWidget->getAction());
pixhawk's avatar
pixhawk committed
172
    //simulationLink->connect();
173

174 175 176
    // Create actions
    connectActions();

177 178 179 180 181
    // Load widgets and show application window
    loadWidgets();

    // Adjust the size
    adjustSize();
pixhawk's avatar
pixhawk committed
182 183
}

pixhawk's avatar
pixhawk committed
184
MainWindow::~MainWindow()
pixhawk's avatar
pixhawk committed
185 186 187 188 189
{
    delete statusBar;
    statusBar = NULL;
}

pixhawk's avatar
pixhawk committed
190
QStatusBar* MainWindow::createStatusBar()
pixhawk's avatar
pixhawk committed
191 192 193 194 195 196 197 198
{
    QStatusBar* bar = new QStatusBar();
    /* Add status fields and messages */
    /* Enable resize grip in the bottom right corner */
    bar->setSizeGripEnabled(true);
    return bar;
}

pixhawk's avatar
pixhawk committed
199
void MainWindow::startVideoCapture()
pixhawk's avatar
pixhawk committed
200 201 202 203 204 205 206 207 208 209 210
{
    QString format = "bmp";
    QString initialPath = QDir::currentPath() + tr("/untitled.") + format;

    QString screenFileName = QFileDialog::getSaveFileName(this, tr("Save As"),
                                                          initialPath,
                                                          tr("%1 Files (*.%2);;All Files (*)")
                                                          .arg(format.toUpper())
                                                          .arg(format));
    delete videoTimer;
    videoTimer = new QTimer(this);
211 212 213
    //videoTimer->setInterval(40);
    //connect(videoTimer, SIGNAL(timeout()), this, SLOT(saveScreen()));
    //videoTimer->stop();
pixhawk's avatar
pixhawk committed
214 215
}

pixhawk's avatar
pixhawk committed
216
void MainWindow::stopVideoCapture()
pixhawk's avatar
pixhawk committed
217 218 219 220 221 222
{
    videoTimer->stop();

    // TODO Convert raw images to PNG
}

pixhawk's avatar
pixhawk committed
223
void MainWindow::saveScreen()
pixhawk's avatar
pixhawk committed
224 225 226 227 228 229 230 231 232 233
{
    QPixmap window = QPixmap::grabWindow(this->winId());
    QString format = "bmp";

    if (!screenFileName.isEmpty())
    {
        window.save(screenFileName, format.toAscii());
    }
}

pixhawk's avatar
pixhawk committed
234
void MainWindow::reloadStylesheet()
pixhawk's avatar
pixhawk committed
235 236 237 238 239 240 241 242 243 244 245 246 247
{
    // Load style sheet
    //QFile styleSheet(MG::DIR::getSupportFilesDirectory() + "/images/style-mission.css");
    QFile styleSheet(":/images/style-mission.css");
    if (styleSheet.open(QIODevice::ReadOnly | QIODevice::Text)) {
        QString style = QString(styleSheet.readAll());
        style.replace("ICONDIR", MG::DIR::getIconDirectory());
        qApp->setStyleSheet(style);
    } else {
        qDebug() << "Style not set:" << styleSheet.fileName() << "opened: " << styleSheet.isOpen();
    }
}

pixhawk's avatar
pixhawk committed
248
void MainWindow::showStatusMessage(const QString& status, int timeout)
pixhawk's avatar
pixhawk committed
249 250 251 252
{
    statusBar->showMessage(status, timeout);
}

pixhawk's avatar
pixhawk committed
253
void MainWindow::setLastAction(QString status)
pixhawk's avatar
pixhawk committed
254 255 256 257
{
    showStatusMessage(status, 5);
}

pixhawk's avatar
pixhawk committed
258
void MainWindow::setLinkStatus(QString status)
pixhawk's avatar
pixhawk committed
259 260 261 262 263 264 265 266
{
    showStatusMessage(status, 15);
}

/**
* @brief Create all actions associated to the main window
*
**/
pixhawk's avatar
pixhawk committed
267
void MainWindow::connectActions()
pixhawk's avatar
pixhawk committed
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
{
    // Connect actions from ui
    connect(ui.actionAdd_Link, SIGNAL(triggered()), this, SLOT(addLink()));

    // Connect internal actions
    connect(UASManager::instance(), SIGNAL(UASCreated(UASInterface*)), this, SLOT(UASCreated(UASInterface*)));

    // Connect user interface controls
    connect(ui.actionLiftoff, SIGNAL(triggered()), UASManager::instance(), SLOT(launchActiveUAS()));
    connect(ui.actionLand, SIGNAL(triggered()), UASManager::instance(), SLOT(returnActiveUAS()));
    connect(ui.actionEmergency_Land, SIGNAL(triggered()), UASManager::instance(), SLOT(stopActiveUAS()));
    connect(ui.actionEmergency_Kill, SIGNAL(triggered()), UASManager::instance(), SLOT(killActiveUAS()));

    connect(ui.actionConfiguration, SIGNAL(triggered()), UASManager::instance(), SLOT(configureActiveUAS()));

    // User interface actions
    connect(ui.actionPilotView, SIGNAL(triggered()), this, SLOT(loadPilotView()));
    connect(ui.actionEngineerView, SIGNAL(triggered()), this, SLOT(loadEngineerView()));
    connect(ui.actionOperatorView, SIGNAL(triggered()), this, SLOT(loadOperatorView()));
    connect(ui.actionSettingsView, SIGNAL(triggered()), this, SLOT(loadSettingsView()));
    connect(ui.actionStyleConfig, SIGNAL(triggered()), this, SLOT(reloadStylesheet()));

    // Joystick configuration
    connect(ui.actionJoystickSettings, SIGNAL(triggered()), this, SLOT(configure()));
292
    connect(ui.actionSimulate, SIGNAL(triggered(bool)), simulationLink, SLOT(connectLink(bool)));
pixhawk's avatar
pixhawk committed
293 294
}

pixhawk's avatar
pixhawk committed
295
void MainWindow::configure()
pixhawk's avatar
pixhawk committed
296 297 298 299
{
    joystickWidget = new JoystickWidget(joystick, this);
}

pixhawk's avatar
pixhawk committed
300
void MainWindow::addLink()
pixhawk's avatar
pixhawk committed
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
{
    SerialLink* link = new SerialLink();
    // TODO This should be only done in the dialog itself

    LinkManager::instance()->addProtocol(link, mavlink);

    CommConfigurationWindow* commWidget = new CommConfigurationWindow(link, mavlink, this);

    ui.menuNetwork->addAction(commWidget->getAction());

    commWidget->show();

    // TODO Implement the link removal!
}

pixhawk's avatar
pixhawk committed
316
void MainWindow::UASCreated(UASInterface* uas)
pixhawk's avatar
pixhawk committed
317 318
{
    // Connect the UAS to the full user interface
lm's avatar
lm committed
319
    //ui.menuConnected_Systems->addAction(QIcon(":/images/mavs/generic.svg"), tr("View ") + uas->getUASName(), uas, SLOT(setSelected()));
pixhawk's avatar
pixhawk committed
320 321

    // Line chart
pixhawk's avatar
pixhawk committed
322 323 324 325 326 327 328
    // FIXME DO THIS ONLY FOR THE FIRST CONNECTED SYSTEM
    static bool sysPresent = false;
    if (!sysPresent)
    {
        connect(uas, SIGNAL(valueChanged(int,QString,double,quint64)), linechart, SLOT(appendData(int,QString,double,quint64)), Qt::QueuedConnection);
        sysPresent = true;
    }
pixhawk's avatar
pixhawk committed
329

330 331 332
    // FIXME Should be not inside the mainwindow
    connect(uas, SIGNAL(textMessageReceived(int,int,QString)), debugConsole, SLOT(receiveTextMessage(int,int,QString)));

pixhawk's avatar
pixhawk committed
333 334 335 336 337 338 339 340 341 342 343 344 345 346
    // Health / System status indicator
    info->addUAS(uas);

    // UAS List
    list->addUAS(uas);

    // Camera view
    //camera->addUAS(uas);

    // Revalidate UI
    // TODO Stylesheet reloading should in theory not be necessary
    reloadStylesheet();
}

347 348 349
/**
 * Clears the current view completely
 */
pixhawk's avatar
pixhawk committed
350
void MainWindow::clearView()
pixhawk's avatar
pixhawk committed
351 352 353
{ 
    // Halt HUD
    hud->stop();
354
    linechart->setActive(false);
pixhawk's avatar
pixhawk committed
355 356
    headDown1->stop();
    headDown2->stop();
pixhawk's avatar
pixhawk committed
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376

    // Remove all dock widgets
    QList<QObject*> list = this->children();

    QList<QObject*>::iterator i;
    for (i = list.begin(); i != list.end(); ++i)
    {
        QDockWidget* widget = dynamic_cast<QDockWidget*>(*i);
        if (widget)
        {
            // Hide widgets
            QWidget* childWidget = dynamic_cast<QWidget*>(widget->widget());
            if (childWidget) childWidget->setVisible(false);
            // Remove dock widget
            this->removeDockWidget(widget);
            //delete widget;
        }
    }
}

pixhawk's avatar
pixhawk committed
377
void MainWindow::loadPilotView()
pixhawk's avatar
pixhawk committed
378 379
{
    clearView();
pixhawk's avatar
pixhawk committed
380
    GAudioOutput::instance()->say("Switched to Pilot View");
pixhawk's avatar
pixhawk committed
381 382 383 384 385 386

    // HEAD UP DISPLAY
    centerStack->setCurrentWidget(hud);
    hud->start();

    //connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), pfd, SLOT(setActiveUAS(UASInterface*)));
pixhawk's avatar
pixhawk committed
387
    QDockWidget* container1 = new QDockWidget(tr("Primary Flight Display"), this);
pixhawk's avatar
pixhawk committed
388 389 390
    container1->setWidget(headDown1);
    addDockWidget(Qt::RightDockWidgetArea, container1);

pixhawk's avatar
pixhawk committed
391
    QDockWidget* container2 = new QDockWidget(tr("Payload Status"), this);
pixhawk's avatar
pixhawk committed
392 393
    container2->setWidget(headDown2);
    addDockWidget(Qt::RightDockWidgetArea, container2);
pixhawk's avatar
pixhawk committed
394 395 396 397

    headDown1->start();
    headDown2->start();

pixhawk's avatar
pixhawk committed
398 399 400
    this->show();
}

pixhawk's avatar
pixhawk committed
401
void MainWindow::loadOperatorView()
pixhawk's avatar
pixhawk committed
402 403 404
{
    clearView();

pixhawk's avatar
pixhawk committed
405 406
    GAudioOutput::instance()->say("Switched to Operator View");

407
    // MAP
pixhawk's avatar
pixhawk committed
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
    centerStack->setCurrentWidget(map);

    // UAS CONTROL
    QDockWidget* container1 = new QDockWidget(tr("Control"), this);
    container1->setWidget(control);
    addDockWidget(Qt::LeftDockWidgetArea, container1);

    // UAS LIST
    QDockWidget* container4 = new QDockWidget(tr("Unmanned Systems"), this);
    container4->setWidget(list);
    addDockWidget(Qt::BottomDockWidgetArea, container4);

    // UAS STATUS
    QDockWidget* container3 = new QDockWidget(tr("Status Details"), this);
    container3->setWidget(info);
    addDockWidget(Qt::LeftDockWidgetArea, container3);

    // WAYPOINT LIST
    QDockWidget* container5 = new QDockWidget(tr("Waypoint List"), this);
    container5->setWidget(waypoints);
    addDockWidget(Qt::BottomDockWidgetArea, container5);

    // DEBUG CONSOLE
    QDockWidget* container7 = new QDockWidget(tr("Communication Console"), this);
    container7->setWidget(debugConsole);
    addDockWidget(Qt::BottomDockWidgetArea, container7);

    // OBJECT DETECTION
    QDockWidget* container6 = new QDockWidget(tr("Object Recognition"), this);
    container6->setWidget(detection);
    addDockWidget(Qt::RightDockWidgetArea, container6);

    this->show();
}

pixhawk's avatar
pixhawk committed
443
void MainWindow::loadSettingsView()
pixhawk's avatar
pixhawk committed
444 445 446
{
    clearView();

pixhawk's avatar
pixhawk committed
447 448
    GAudioOutput::instance()->say("Switched to Settings View");

pixhawk's avatar
pixhawk committed
449
    // LINE CHART
450
    linechart->setActive(true);
pixhawk's avatar
pixhawk committed
451 452 453 454 455 456 457 458 459 460 461 462 463
    centerStack->setCurrentWidget(linechart);

    // COMM XML
    QDockWidget* container1 = new QDockWidget(tr("MAVLink XML to C Code Generator"), this);
    container1->setWidget(protocol);
    addDockWidget(Qt::LeftDockWidgetArea, container1);

    // ONBOARD PARAMETERS
    QDockWidget* container6 = new QDockWidget(tr("Onboard Parameters"), this);
    container6->setWidget(parameters);
    addDockWidget(Qt::RightDockWidgetArea, container6);
}

pixhawk's avatar
pixhawk committed
464
void MainWindow::loadEngineerView()
pixhawk's avatar
pixhawk committed
465 466 467 468
{
    clearView();
    // Engineer view, used in EMAV2009

pixhawk's avatar
pixhawk committed
469 470
    GAudioOutput::instance()->say("Switched to Engineer View");

pixhawk's avatar
pixhawk committed
471
    // LINE CHART
472
    linechart->setActive(true);
pixhawk's avatar
pixhawk committed
473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
    centerStack->setCurrentWidget(linechart);

    // UAS CONTROL
    QDockWidget* container1 = new QDockWidget(tr("Control"), this);
    container1->setWidget(control);
    addDockWidget(Qt::LeftDockWidgetArea, container1);

    // UAS LIST
    QDockWidget* container4 = new QDockWidget(tr("Unmanned Systems"), this);
    container4->setWidget(list);
    addDockWidget(Qt::BottomDockWidgetArea, container4);

    // UAS STATUS
    QDockWidget* container3 = new QDockWidget(tr("Status Details"), this);
    container3->setWidget(info);
    addDockWidget(Qt::LeftDockWidgetArea, container3);

    // WAYPOINT LIST
    QDockWidget* container5 = new QDockWidget(tr("Waypoint List"), this);
    container5->setWidget(waypoints);
    addDockWidget(Qt::BottomDockWidgetArea, container5);

    // DEBUG CONSOLE
    QDockWidget* container7 = new QDockWidget(tr("Communication Console"), this);
    container7->setWidget(debugConsole);
    addDockWidget(Qt::BottomDockWidgetArea, container7);

    this->show();
}

pixhawk's avatar
pixhawk committed
503
void MainWindow::loadWidgets()
pixhawk's avatar
pixhawk committed
504 505 506 507 508 509 510
{
    loadOperatorView();
    //loadEngineerView();
    //loadPilotView();
}

/*
pixhawk's avatar
pixhawk committed
511
void MainWindow::removeCommConfAct(QAction* action)
pixhawk's avatar
pixhawk committed
512 513 514 515
{
    ui.menuNetwork->removeAction(action);
}*/

pixhawk's avatar
pixhawk committed
516
void MainWindow::runTests()
pixhawk's avatar
pixhawk committed
517 518 519 520 521 522 523 524
{
    // TODO Remove after debugging: Add fake data
    static double testvalue = 0.0f;
    testvalue += 0.01f;
    linechart->appendData(126, "test data", testvalue, MG::TIME::getGroundTimeNow());
}