apmtoolbar.cpp 4.39 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
    QDeclarativeView(parent)
{
    // Configure our QML object
    setSource(QUrl::fromLocalFile("qml/ApmToolBar.qml"));
    setResizeMode(QDeclarativeView::SizeRootObjectToView);
15
    this->rootContext()->setContextProperty("globalObj", this);
16 17
    connect(LinkManager::instance(),SIGNAL(newLink(LinkInterface*)),
            this, SLOT(updateLinkDisplay(LinkInterface*)));
18 19 20 21

    if (LinkManager::instance()->getLinks().count()>=3) {
        updateLinkDisplay(LinkManager::instance()->getLinks().last());
    }
22 23 24

    QObject *object = rootObject();
    object->setProperty("connected", false);
25 26 27 28
}

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

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

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

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

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

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

void APMToolBar::setConnectMAVAction(QAction *action)
{
    connect(this, SIGNAL(connectMAV()), action, SIGNAL(triggered()));
60 61 62 63 64
}

void APMToolBar::selectFlightView()
{
    qDebug() << "APMToolBar: SelectFlightView";
65
    emit triggerFlightView();
66 67 68 69 70
}

void APMToolBar::selectFlightPlanView()
{
    qDebug() << "APMToolBar: SelectFlightPlanView";
71
    emit triggerFlightPlanView();
72 73 74 75 76
}

void APMToolBar::selectHardwareView()
{
    qDebug() << "APMToolBar: selectHardwareView";
77
    emit triggerHardwareView();
78 79 80 81 82
}

void APMToolBar::selectSoftwareView()
{
    qDebug() << "APMToolBar: selectSoftwareView";
83
    emit triggerSoftwareView();
84 85 86 87 88 89 90 91 92 93 94 95 96 97
}

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

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

void APMToolBar::connectMAV()
{
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
    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;
116 117 118 119 120

    // Change the image to represent the state
    QObject *object = rootObject();
    object->setProperty("connected", result);

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
    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();
    }

150 151
}

152 153 154 155 156
void APMToolBar::updateLinkDisplay(LinkInterface* newLink)
{
    qDebug() << "APMToolBar: updateLinkDisplay";
    QObject *object = rootObject();

157
    if (newLink && object){
158 159 160 161 162 163 164
        qint64 baudrate = newLink->getNominalDataRate();
        object->setProperty("baudrateLabel", QString::number(baudrate));

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