QGroundControlQmlGlobal.cc 6.51 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

Don Gagne's avatar
Don Gagne committed
32
static const char* kQmlGlobalKeyName = "QGCQml";
33 34

const char* QGroundControlQmlGlobal::_virtualTabletJoystickKey = "VirtualTabletJoystick";
35

36
QGroundControlQmlGlobal::QGroundControlQmlGlobal(QGCToolbox* toolbox, QObject* parent)
37
    : QObject(parent)
38
    , _flightMapSettings(toolbox->flightMapSettings())
Don Gagne's avatar
Don Gagne committed
39 40 41 42
    , _homePositionManager(toolbox->homePositionManager())
    , _linkManager(toolbox->linkManager())
    , _missionCommands(toolbox->missionCommands())
    , _multiVehicleManager(toolbox->multiVehicleManager())
43
    , _virtualTabletJoystick(false)
44
{
45 46
    QSettings settings;
    _virtualTabletJoystick = settings.value(_virtualTabletJoystickKey, false). toBool();
47
}
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75

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();
}
76 77 78 79 80 81

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

Don Gagne's avatar
Don Gagne committed
82 83 84
    mockConfig->setDynamic(true);
    linkManager->linkConfigurations()->append(mockConfig);

Don Gagne's avatar
Don Gagne committed
85
    linkManager->createConnectedLink(mockConfig);
86 87 88 89 90 91
}
#endif

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

Don Gagne's avatar
Don Gagne committed
94 95 96
    mockConfig->setFirmwareType(MAV_AUTOPILOT_PX4);
    mockConfig->setVehicleType(MAV_TYPE_QUADROTOR);
    mockConfig->setSendStatusText(sendStatusText);
97

Don Gagne's avatar
Don Gagne committed
98
    _startMockLink(mockConfig);
Don Gagne's avatar
Don Gagne committed
99 100
#else
    Q_UNUSED(sendStatusText);
101 102 103 104 105 106
#endif
}

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

Don Gagne's avatar
Don Gagne committed
109 110 111
    mockConfig->setFirmwareType(MAV_AUTOPILOT_GENERIC);
    mockConfig->setVehicleType(MAV_TYPE_QUADROTOR);
    mockConfig->setSendStatusText(sendStatusText);
112

Don Gagne's avatar
Don Gagne committed
113
    _startMockLink(mockConfig);
Don Gagne's avatar
Don Gagne committed
114 115
#else
    Q_UNUSED(sendStatusText);
116 117 118 119 120 121
#endif
}

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

Don Gagne's avatar
Don Gagne committed
124 125 126
    mockConfig->setFirmwareType(MAV_AUTOPILOT_ARDUPILOTMEGA);
    mockConfig->setVehicleType(MAV_TYPE_QUADROTOR);
    mockConfig->setSendStatusText(sendStatusText);
127

Don Gagne's avatar
Don Gagne committed
128
    _startMockLink(mockConfig);
Don Gagne's avatar
Don Gagne committed
129 130
#else
    Q_UNUSED(sendStatusText);
131 132 133 134 135 136
#endif
}

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

Don Gagne's avatar
Don Gagne committed
139 140 141
    mockConfig->setFirmwareType(MAV_AUTOPILOT_ARDUPILOTMEGA);
    mockConfig->setVehicleType(MAV_TYPE_FIXED_WING);
    mockConfig->setSendStatusText(sendStatusText);
142

Don Gagne's avatar
Don Gagne committed
143
    _startMockLink(mockConfig);
Don Gagne's avatar
Don Gagne committed
144 145
#else
    Q_UNUSED(sendStatusText);
146 147 148 149 150 151 152 153
#endif
}

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

Don Gagne's avatar
Don Gagne committed
154 155
    for (int i=0; i<linkManager->links()->count(); i++) {
        LinkInterface* link = linkManager->links()->value<LinkInterface*>(i);
156
        MockLink* mockLink = qobject_cast<MockLink*>(link);
Don Gagne's avatar
Don Gagne committed
157

158
        if (mockLink) {
Don Gagne's avatar
Don Gagne committed
159
            linkManager->disconnectLink(mockLink);
160 161 162 163
        }
    }
#endif
}
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211

void QGroundControlQmlGlobal::setIsDarkStyle(bool dark)
{
    qgcApp()->setStyle(dark);
    emit isDarkStyleChanged(dark);
}

void QGroundControlQmlGlobal::setIsAudioMuted(bool muted)
{
    qgcApp()->toolbox()->audioOutput()->mute(muted);
    emit isAudioMutedChanged(muted);
}

void QGroundControlQmlGlobal::setIsLowPowerMode(bool low)
{
    MainWindow::instance()->enableLowPowerMode(low);
    emit isLowPowerModeChanged(low);
}

void QGroundControlQmlGlobal::setIsSaveLogPrompt(bool prompt)
{
    qgcApp()->setPromptFlightDataSave(prompt);
    emit isSaveLogPromptChanged(prompt);
}

void QGroundControlQmlGlobal::setIsSaveLogPromptNotArmed(bool prompt)
{
    qgcApp()->setPromptFlightDataSaveNotArmed(prompt);
    emit isSaveLogPromptNotArmedChanged(prompt);
}

void QGroundControlQmlGlobal::setIsHeartBeatEnabled(bool enable)
{
    qgcApp()->toolbox()->mavlinkProtocol()->enableHeartbeats(enable);
    emit isHeartBeatEnabledChanged(enable);
}

void QGroundControlQmlGlobal::setIsMultiplexingEnabled(bool enable)
{
    qgcApp()->toolbox()->mavlinkProtocol()->enableMultiplexing(enable);
    emit isMultiplexingEnabledChanged(enable);
}

void QGroundControlQmlGlobal::setIsVersionCheckEnabled(bool enable)
{
    qgcApp()->toolbox()->mavlinkProtocol()->enableVersionCheck(enable);
    emit isVersionCheckEnabledChanged(enable);
}
212 213 214 215 216 217 218 219 220 221

void QGroundControlQmlGlobal::setVirtualTabletJoystick(bool enabled)
{
    if (_virtualTabletJoystick != enabled) {
        QSettings settings;
        settings.setValue(_virtualTabletJoystickKey, enabled);
        _virtualTabletJoystick = enabled;
        emit virtualTabletJoystickChanged(enabled);
    }
}