apmtoolbar.cpp 4.08 KB
Newer Older
1 2 3
#include <QDebug>
#include <QDeclarativeContext>
#include <QGraphicsObject>
4 5
#include "LinkManager.h"
#include "MainWindow.h"
6 7 8

#include "apmtoolbar.h"

9
APMToolBar::APMToolBar(QWidget *parent):
10 11 12 13 14 15
    QDeclarativeView(parent)
{
    // Configure our QML object
    this->rootContext()->setContextProperty("globalObj", this);
    setSource(QUrl::fromLocalFile("qml/ApmToolBar.qml"));
    setResizeMode(QDeclarativeView::SizeRootObjectToView);
16 17 18 19

    QObject *root = rootObject();
    connect(LinkManager::instance(),SIGNAL(newLink(LinkInterface*)),
            this, SLOT(updateLinkDisplay(LinkInterface*)));
20 21 22 23
}

void APMToolBar::setFlightViewAction(QAction *action)
{
24
    connect(this, SIGNAL(triggerFlightView()), action, SIGNAL(triggered()));
25 26 27 28
}

void APMToolBar::setFlightPlanViewAction(QAction *action)
{
29
    connect(this, SIGNAL(triggerFlightPlanView()), action, SIGNAL(triggered()));
30 31 32 33
}

void APMToolBar::setHardwareViewAction(QAction *action)
{
34
    connect(this, SIGNAL(triggerHardwareView()), action, SIGNAL(triggered()));
35 36 37 38
}

void APMToolBar::setSoftwareViewAction(QAction *action)
{
39
    connect(this, SIGNAL(triggerSoftwareView()), action, SIGNAL(triggered()));
40 41 42 43
}

void APMToolBar::setSimulationViewAction(QAction *action)
{
44
    connect(this, SIGNAL(triggerSimulationView()), action, SIGNAL(triggered()));
45 46 47 48
}

void APMToolBar::setTerminalViewAction(QAction *action)
{
49 50 51 52 53 54
    connect(this, SIGNAL(triggerTerminalView()), action, SIGNAL(triggered()));
}

void APMToolBar::setConnectMAVAction(QAction *action)
{
    connect(this, SIGNAL(connectMAV()), action, SIGNAL(triggered()));
55 56 57 58 59
}

void APMToolBar::selectFlightView()
{
    qDebug() << "APMToolBar: SelectFlightView";
60
    emit triggerFlightView();
61 62 63 64 65
}

void APMToolBar::selectFlightPlanView()
{
    qDebug() << "APMToolBar: SelectFlightPlanView";
66
    emit triggerFlightPlanView();
67 68 69 70 71
}

void APMToolBar::selectHardwareView()
{
    qDebug() << "APMToolBar: selectHardwareView";
72
    emit triggerHardwareView();
73 74 75 76 77
}

void APMToolBar::selectSoftwareView()
{
    qDebug() << "APMToolBar: selectSoftwareView";
78
    emit triggerSoftwareView();
79 80 81 82 83 84 85 86 87 88 89 90 91 92
}

void APMToolBar::selectSimulationView()
{
    qDebug() << "APMToolBar: selectSimulationView";
}

void APMToolBar::selectTerminalView()
{
    qDebug() << "APMToolBar: selectTerminalView";
}

void APMToolBar::connectMAV()
{
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
    qDebug() << "APMToolBar: connectMAV ";

    bool connected = LinkManager::instance()->getLinks().last()->isConnected();
    bool result;

    if (!connected && LinkManager::instance()->getLinks().count() < 3)
    {
        // No Link so prompt to connect one
        MainWindow::instance()->addLink();
    } else if (!connected) {
        // Need to Connect Link
        result = LinkManager::instance()->getLinks().last()->connect();

    } else if (connected && LinkManager::instance()->getLinks().count() > 2) {
        // result need to be the opposite of success.
        result = !LinkManager::instance()->getLinks().last()->disconnect();
    }
    qDebug() << "result = " << result;
    emit MAVConnected(result);
}

APMToolBar::~APMToolBar()
{
    qDebug() << "Destory APM Toolbar";
}

void APMToolBar::showConnectionDialog()
{
    // Displays a UI where the user can select a MAV Link.
    qDebug() << "APMToolBar: showConnectionDialog link count ="
             << LinkManager::instance()->getLinks().count();

    LinkInterface *link = LinkManager::instance()->getLinks().last();
    bool result;

    if (link && LinkManager::instance()->getLinks().count() >= 3)
    {
        // Serial Link so prompt to config it
        result = MainWindow::instance()->configLink(link);

        if (!result)
            qDebug() << "Link Config Failed!";
    } else {
        // No Link so prompt to create one
        MainWindow::instance()->addLink();
    }

140 141
}

142 143 144 145 146 147 148 149 150 151 152 153 154
void APMToolBar::updateLinkDisplay(LinkInterface* newLink)
{
    qDebug() << "APMToolBar: updateLinkDisplay";
    QObject *object = rootObject();

    if (newLink){
        qint64 baudrate = newLink->getNominalDataRate();
        object->setProperty("baudrateLabel", QString::number(baudrate));

        QString linkName = newLink->getName();
        object->setProperty("linkNameLabel", linkName);
    }
}