QGroundControlQmlGlobal.cc 4.68 KB
Newer Older
1
/*=====================================================================
2

3
 QGroundControl Open Source Ground Control Station
4

5
 (c) 2009 - 2014 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
6

7
 This file is part of the QGROUNDCONTROL project
8

9 10 11 12
 QGROUNDCONTROL 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.
13

14 15 16 17
 QGROUNDCONTROL 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.
18

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

22 23 24 25 26 27
 ======================================================================*/

/// @file
///     @author Don Gagne <don@thegagnes.com>

#include "QGroundControlQmlGlobal.h"
28 29 30
#include "QGCApplication.h"

#include <QSettings>
31

32 33
static const char* kQmlGlobalKeyName = "QGCQml";

34
QGroundControlQmlGlobal::QGroundControlQmlGlobal(QGCToolbox* toolbox, QObject* parent)
35
    : QObject(parent)
Don Gagne's avatar
Don Gagne committed
36 37
    , _multiVehicleManager(toolbox->multiVehicleManager())
    , _linkManager(toolbox->linkManager())
38 39
    , _homePositionManager(toolbox->homePositionManager())
    , _flightMapSettings(toolbox->flightMapSettings())
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

void QGroundControlQmlGlobal::saveGlobalSetting (const QString& key, const QString& value)
{
    QSettings settings;
    settings.beginGroup(kQmlGlobalKeyName);
    settings.setValue(key, value);
}

QString QGroundControlQmlGlobal::loadGlobalSetting (const QString& key, const QString& defaultValue)
{
    QSettings settings;
    settings.beginGroup(kQmlGlobalKeyName);
    return settings.value(key, defaultValue).toString();
}

void QGroundControlQmlGlobal::saveBoolGlobalSetting (const QString& key, bool value)
{
    QSettings settings;
    settings.beginGroup(kQmlGlobalKeyName);
    settings.setValue(key, value);
}

bool QGroundControlQmlGlobal::loadBoolGlobalSetting (const QString& key, bool defaultValue)
{
    QSettings settings;
    settings.beginGroup(kQmlGlobalKeyName);
    return settings.value(key, defaultValue).toBool();
}
71 72 73 74 75 76

#ifdef QT_DEBUG
void QGroundControlQmlGlobal::_startMockLink(MockConfiguration* mockConfig)
{
    LinkManager* linkManager = qgcApp()->toolbox()->linkManager();

Don Gagne's avatar
Don Gagne committed
77 78 79 80
    mockConfig->setDynamic(true);
    linkManager->linkConfigurations()->append(mockConfig);

    linkManager->createConnectedLink(mockConfig, false /* autoconnectLink */);
81 82 83 84 85 86
}
#endif

void QGroundControlQmlGlobal::startPX4MockLink(bool sendStatusText)
{
#ifdef QT_DEBUG
Don Gagne's avatar
Don Gagne committed
87
    MockConfiguration* mockConfig = new MockConfiguration("PX4 MockLink");
88

Don Gagne's avatar
Don Gagne committed
89 90 91
    mockConfig->setFirmwareType(MAV_AUTOPILOT_PX4);
    mockConfig->setVehicleType(MAV_TYPE_QUADROTOR);
    mockConfig->setSendStatusText(sendStatusText);
92

Don Gagne's avatar
Don Gagne committed
93
    _startMockLink(mockConfig);
Don Gagne's avatar
Don Gagne committed
94 95
#else
    Q_UNUSED(sendStatusText);
96 97 98 99 100 101
#endif
}

void QGroundControlQmlGlobal::startGenericMockLink(bool sendStatusText)
{
#ifdef QT_DEBUG
Don Gagne's avatar
Don Gagne committed
102
    MockConfiguration* mockConfig = new MockConfiguration("Generic MockLink");
103

Don Gagne's avatar
Don Gagne committed
104 105 106
    mockConfig->setFirmwareType(MAV_AUTOPILOT_GENERIC);
    mockConfig->setVehicleType(MAV_TYPE_QUADROTOR);
    mockConfig->setSendStatusText(sendStatusText);
107

Don Gagne's avatar
Don Gagne committed
108
    _startMockLink(mockConfig);
Don Gagne's avatar
Don Gagne committed
109 110
#else
    Q_UNUSED(sendStatusText);
111 112 113 114 115 116
#endif
}

void QGroundControlQmlGlobal::startAPMArduCopterMockLink(bool sendStatusText)
{
#ifdef QT_DEBUG
Don Gagne's avatar
Don Gagne committed
117
    MockConfiguration* mockConfig = new MockConfiguration("APM ArduCopter MockLink");
118

Don Gagne's avatar
Don Gagne committed
119 120 121
    mockConfig->setFirmwareType(MAV_AUTOPILOT_ARDUPILOTMEGA);
    mockConfig->setVehicleType(MAV_TYPE_QUADROTOR);
    mockConfig->setSendStatusText(sendStatusText);
122

Don Gagne's avatar
Don Gagne committed
123
    _startMockLink(mockConfig);
Don Gagne's avatar
Don Gagne committed
124 125
#else
    Q_UNUSED(sendStatusText);
126 127 128 129 130 131
#endif
}

void QGroundControlQmlGlobal::startAPMArduPlaneMockLink(bool sendStatusText)
{
#ifdef QT_DEBUG
Don Gagne's avatar
Don Gagne committed
132
    MockConfiguration* mockConfig = new MockConfiguration("APM ArduPlane MockLink");
133

Don Gagne's avatar
Don Gagne committed
134 135 136
    mockConfig->setFirmwareType(MAV_AUTOPILOT_ARDUPILOTMEGA);
    mockConfig->setVehicleType(MAV_TYPE_FIXED_WING);
    mockConfig->setSendStatusText(sendStatusText);
137

Don Gagne's avatar
Don Gagne committed
138
    _startMockLink(mockConfig);
Don Gagne's avatar
Don Gagne committed
139 140
#else
    Q_UNUSED(sendStatusText);
141 142 143 144 145 146 147 148
#endif
}

void QGroundControlQmlGlobal::stopAllMockLinks(void)
{
#ifdef QT_DEBUG
    LinkManager* linkManager = qgcApp()->toolbox()->linkManager();

Don Gagne's avatar
Don Gagne committed
149 150
    for (int i=0; i<linkManager->links()->count(); i++) {
        LinkInterface* link = linkManager->links()->value<LinkInterface*>(i);
151
        MockLink* mockLink = qobject_cast<MockLink*>(link);
Don Gagne's avatar
Don Gagne committed
152

153
        if (mockLink) {
Don Gagne's avatar
Don Gagne committed
154
            linkManager->disconnectLink(mockLink, false /* disconnectAutoconnectLink */);
155 156 157 158
        }
    }
#endif
}