QGCCorePlugin.cc 17.2 KB
Newer Older
1 2
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8 9
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

10
#include "QGCApplication.h"
11 12
#include "QGCCorePlugin.h"
#include "QGCOptions.h"
13
#include "QmlComponentInfo.h"
14
#include "FactMetaData.h"
Don Gagne's avatar
Don Gagne committed
15
#include "SettingsManager.h"
16
#include "AppMessages.h"
17
#include "QmlObjectListModel.h"
18
#include "VideoManager.h"
19 20
#if defined(QGC_GST_STREAMING)
#include "GStreamer.h"
21
#include "VideoReceiver.h"
22
#endif
23
#include "QGCLoggingCategory.h"
24
#include "QGCCameraManager.h"
25 26
#include "HorizontalFactValueGrid.h"
#include "VerticalFactValueGrid.h"
27
#include "InstrumentValueData.h"
28 29 30 31 32 33

#include <QtQml>
#include <QQmlEngine>

/// @file
///     @brief Core Plugin Interface for QGroundControl - Default Implementation
Gus Grubba's avatar
Gus Grubba committed
34
///     @author Gus Grubba <gus@auterion.com>
35 36 37 38 39 40 41

class QGCCorePlugin_p
{
public:
    QGCCorePlugin_p()
    {
    }
42

43 44 45 46 47 48 49 50
    ~QGCCorePlugin_p()
    {
        if(pGeneral)
            delete pGeneral;
        if(pCommLinks)
            delete pCommLinks;
        if(pOfflineMaps)
            delete pOfflineMaps;
51 52 53 54
#if defined(QGC_GST_TAISYNC_ENABLED)
        if(pTaisync)
            delete pTaisync;
#endif
55 56 57 58
#if defined(QGC_GST_MICROHARD_ENABLED)
        if(pMicrohard)
            delete pMicrohard;
#endif
Gus Grubba's avatar
Gus Grubba committed
59
#if defined(QGC_AIRMAP_ENABLED)
Gus Grubba's avatar
Gus Grubba committed
60 61
        if(pAirmap)
            delete pAirmap;
Gus Grubba's avatar
Gus Grubba committed
62
#endif
63 64 65 66 67 68 69 70 71
        if(pMAVLink)
            delete pMAVLink;
        if(pConsole)
            delete pConsole;
#if defined(QT_DEBUG)
        if(pMockLink)
            delete pMockLink;
        if(pDebug)
            delete pDebug;
72 73
        if(pQmlTest)
            delete pQmlTest;
74 75 76 77
#endif
        if(defaultOptions)
            delete defaultOptions;
    }
78

79 80 81 82 83 84
    QmlComponentInfo* pGeneral                  = nullptr;
    QmlComponentInfo* pCommLinks                = nullptr;
    QmlComponentInfo* pOfflineMaps              = nullptr;
#if defined(QGC_GST_TAISYNC_ENABLED)
    QmlComponentInfo* pTaisync                  = nullptr;
#endif
85 86 87
#if defined(QGC_GST_MICROHARD_ENABLED)
    QmlComponentInfo* pMicrohard                = nullptr;
#endif
Gus Grubba's avatar
Gus Grubba committed
88
#if defined(QGC_AIRMAP_ENABLED)
89
    QmlComponentInfo* pAirmap                   = nullptr;
Gus Grubba's avatar
Gus Grubba committed
90
#endif
91 92 93
    QmlComponentInfo* pMAVLink                  = nullptr;
    QmlComponentInfo* pConsole                  = nullptr;
    QmlComponentInfo* pHelp                     = nullptr;
94
#if defined(QT_DEBUG)
95 96
    QmlComponentInfo* pMockLink                 = nullptr;
    QmlComponentInfo* pDebug                    = nullptr;
97
    QmlComponentInfo* pQmlTest                  = nullptr;
98
#endif
99

100 101
    QGCOptions*         defaultOptions          = nullptr;
    QVariantList        settingsList;
102
    QVariantList        analyzeList;
103 104

    QmlObjectListModel _emptyCustomMapItems;
105 106 107 108 109 110 111 112 113
};

QGCCorePlugin::~QGCCorePlugin()
{
    if(_p) {
        delete _p;
    }
}

114 115
QGCCorePlugin::QGCCorePlugin(QGCApplication *app, QGCToolbox* toolbox)
    : QGCTool(app, toolbox)
116
    , _showTouchAreas(false)
117
    , _showAdvancedUI(true)
118
{
119
    QQmlEngine::setObjectOwnership(this, QQmlEngine::CppOwnership);
120 121 122 123 124
    _p = new QGCCorePlugin_p;
}

void QGCCorePlugin::setToolbox(QGCToolbox *toolbox)
{
DonLakeFlyer's avatar
DonLakeFlyer committed
125
    QGCTool::setToolbox(toolbox);
126 127 128 129

    qmlRegisterUncreatableType<QGCCorePlugin>       ("QGroundControl", 1, 0, "QGCCorePlugin",       "Reference only");
    qmlRegisterUncreatableType<QGCOptions>          ("QGroundControl", 1, 0, "QGCOptions",          "Reference only");
    qmlRegisterUncreatableType<QGCFlyViewOptions>   ("QGroundControl", 1, 0, "QGCFlyViewOptions",   "Reference only");
130 131
}

132
QVariantList &QGCCorePlugin::settingsPages()
133 134
{
    if(!_p->pGeneral) {
135
        _p->pGeneral = new QmlComponentInfo(tr("General"),
136 137
                                            QUrl::fromUserInput("qrc:/qml/GeneralSettings.qml"),
                                            QUrl::fromUserInput("qrc:/res/gear-white.svg"));
138
        _p->settingsList.append(QVariant::fromValue(reinterpret_cast<QmlComponentInfo*>(_p->pGeneral)));
139
        _p->pCommLinks = new QmlComponentInfo(tr("Comm Links"),
140 141
                                              QUrl::fromUserInput("qrc:/qml/LinkSettings.qml"),
                                              QUrl::fromUserInput("qrc:/res/waves.svg"));
142
        _p->settingsList.append(QVariant::fromValue(reinterpret_cast<QmlComponentInfo*>(_p->pCommLinks)));
143
        _p->pOfflineMaps = new QmlComponentInfo(tr("Offline Maps"),
144 145
                                                QUrl::fromUserInput("qrc:/qml/OfflineMap.qml"),
                                                QUrl::fromUserInput("qrc:/res/waves.svg"));
146
        _p->settingsList.append(QVariant::fromValue(reinterpret_cast<QmlComponentInfo*>(_p->pOfflineMaps)));
147 148
#if defined(QGC_GST_TAISYNC_ENABLED)
        _p->pTaisync = new QmlComponentInfo(tr("Taisync"),
149 150
                                            QUrl::fromUserInput("qrc:/qml/TaisyncSettings.qml"),
                                            QUrl::fromUserInput(""));
151 152
        _p->settingsList.append(QVariant::fromValue(reinterpret_cast<QmlComponentInfo*>(_p->pTaisync)));
#endif
153 154
#if defined(QGC_GST_MICROHARD_ENABLED)
        _p->pMicrohard = new QmlComponentInfo(tr("Microhard"),
155 156
                                              QUrl::fromUserInput("qrc:/qml/MicrohardSettings.qml"),
                                              QUrl::fromUserInput(""));
157 158
        _p->settingsList.append(QVariant::fromValue(reinterpret_cast<QmlComponentInfo*>(_p->pMicrohard)));
#endif
Gus Grubba's avatar
Gus Grubba committed
159
#if defined(QGC_AIRMAP_ENABLED)
Gus Grubba's avatar
Gus Grubba committed
160
        _p->pAirmap = new QmlComponentInfo(tr("AirMap"),
161 162
                                           QUrl::fromUserInput("qrc:/qml/AirmapSettings.qml"),
                                           QUrl::fromUserInput(""));
163
        _p->settingsList.append(QVariant::fromValue(reinterpret_cast<QmlComponentInfo*>(_p->pAirmap)));
Gus Grubba's avatar
Gus Grubba committed
164
#endif
165
        _p->pMAVLink = new QmlComponentInfo(tr("MAVLink"),
166 167
                                            QUrl::fromUserInput("qrc:/qml/MavlinkSettings.qml"),
                                            QUrl::fromUserInput("qrc:/res/waves.svg"));
168
        _p->settingsList.append(QVariant::fromValue(reinterpret_cast<QmlComponentInfo*>(_p->pMAVLink)));
169
        _p->pConsole = new QmlComponentInfo(tr("Console"),
170
                                            QUrl::fromUserInput("qrc:/qml/QGroundControl/Controls/AppMessages.qml"));
171
        _p->settingsList.append(QVariant::fromValue(reinterpret_cast<QmlComponentInfo*>(_p->pConsole)));
172
        _p->pHelp = new QmlComponentInfo(tr("Help"),
173
                                         QUrl::fromUserInput("qrc:/qml/HelpSettings.qml"));
174
        _p->settingsList.append(QVariant::fromValue(reinterpret_cast<QmlComponentInfo*>(_p->pHelp)));
DonLakeFlyer's avatar
DonLakeFlyer committed
175
#if defined(QT_DEBUG)
176
        //-- These are always present on Debug builds
177
        _p->pMockLink = new QmlComponentInfo(tr("Mock Link"),
178
                                             QUrl::fromUserInput("qrc:/qml/MockLink.qml"));
179
        _p->settingsList.append(QVariant::fromValue(reinterpret_cast<QmlComponentInfo*>(_p->pMockLink)));
180
        _p->pDebug = new QmlComponentInfo(tr("Debug"),
181
                                          QUrl::fromUserInput("qrc:/qml/DebugWindow.qml"));
182
        _p->settingsList.append(QVariant::fromValue(reinterpret_cast<QmlComponentInfo*>(_p->pDebug)));
183
        _p->pQmlTest = new QmlComponentInfo(tr("Palette Test"),
184
                                            QUrl::fromUserInput("qrc:/qml/QmlTest.qml"));
185
        _p->settingsList.append(QVariant::fromValue(reinterpret_cast<QmlComponentInfo*>(_p->pQmlTest)));
DonLakeFlyer's avatar
DonLakeFlyer committed
186
#endif
187 188 189 190
    }
    return _p->settingsList;
}

191 192 193
QVariantList& QGCCorePlugin::analyzePages()
{
    if (!_p->analyzeList.count()) {
DonLakeFlyer's avatar
DonLakeFlyer committed
194
        _p->analyzeList.append(QVariant::fromValue(new QmlComponentInfo(tr("Log Download"),     QUrl::fromUserInput("qrc:/qml/LogDownloadPage.qml"),        QUrl::fromUserInput("qrc:/qmlimages/LogDownloadIcon"))));
195
#if !defined(__mobile__)
DonLakeFlyer's avatar
DonLakeFlyer committed
196
        _p->analyzeList.append(QVariant::fromValue(new QmlComponentInfo(tr("GeoTag Images"),    QUrl::fromUserInput("qrc:/qml/GeoTagPage.qml"),             QUrl::fromUserInput("qrc:/qmlimages/GeoTagIcon"))));
197
#endif
DonLakeFlyer's avatar
DonLakeFlyer committed
198
        _p->analyzeList.append(QVariant::fromValue(new QmlComponentInfo(tr("MAVLink Console"),  QUrl::fromUserInput("qrc:/qml/MavlinkConsolePage.qml"),     QUrl::fromUserInput("qrc:/qmlimages/MavlinkConsoleIcon"))));
199
#if defined(QGC_ENABLE_MAVLINK_INSPECTOR)
DonLakeFlyer's avatar
DonLakeFlyer committed
200
        _p->analyzeList.append(QVariant::fromValue(new QmlComponentInfo(tr("MAVLink Inspector"),QUrl::fromUserInput("qrc:/qml/MAVLinkInspectorPage.qml"),   QUrl::fromUserInput("qrc:/qmlimages/MAVLinkInspector"))));
201
#endif
DonLakeFlyer's avatar
DonLakeFlyer committed
202
        _p->analyzeList.append(QVariant::fromValue(new QmlComponentInfo(tr("Vibration"),        QUrl::fromUserInput("qrc:/qml/VibrationPage.qml"),          QUrl::fromUserInput("qrc:/qmlimages/VibrationPageIcon"))));
203 204 205 206
    }
    return _p->analyzeList;
}

207
int QGCCorePlugin::defaultSettings()
208 209 210 211
{
    return 0;
}

212 213
QGCOptions* QGCCorePlugin::options()
{
214 215
    if (!_p->defaultOptions) {
        _p->defaultOptions = new QGCOptions(this);
216 217 218 219
    }
    return _p->defaultOptions;
}

220 221 222
bool QGCCorePlugin::overrideSettingsGroupVisibility(QString name)
{
    Q_UNUSED(name);
223

224 225 226
    // Always show all
    return true;
}
227

228
bool QGCCorePlugin::adjustSettingMetaData(const QString& settingsGroup, FactMetaData& metaData)
229
{
230
    if (settingsGroup == AppSettings::settingsGroup) {
Gus Grubba's avatar
Gus Grubba committed
231 232 233 234 235 236 237 238
#if !defined(QGC_ENABLE_PAIRING)
        //-- If we don't support pairing, disable it.
        if (metaData.name() == AppSettings::usePairingName) {
            metaData.setRawDefaultValue(false);
            //-- And hide the option
            return false;
        }
#endif
239

240 241 242
        //-- Default Palette
        if (metaData.name() == AppSettings::indoorPaletteName) {
            QVariant outdoorPalette;
Don Gagne's avatar
Don Gagne committed
243
#if defined (__mobile__)
244
            outdoorPalette = 0;
Don Gagne's avatar
Don Gagne committed
245
#else
246
            outdoorPalette = 1;
Don Gagne's avatar
Don Gagne committed
247
#endif
248 249 250 251
            metaData.setRawDefaultValue(outdoorPalette);
            return true;
        }

252
#if defined (__mobile__)
253 254 255 256 257
        if (metaData.name() == AppSettings::telemetrySaveName) {
            // Mobile devices have limited storage so don't turn on telemtry saving by default
            metaData.setRawDefaultValue(false);
            return true;
        }
258
#endif
Don Gagne's avatar
Don Gagne committed
259
    }
260

261
    return true; // Show setting in ui
262
}
DonLakeFlyer's avatar
DonLakeFlyer committed
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278

void QGCCorePlugin::setShowTouchAreas(bool show)
{
    if (show != _showTouchAreas) {
        _showTouchAreas = show;
        emit showTouchAreasChanged(show);
    }
}

void QGCCorePlugin::setShowAdvancedUI(bool show)
{
    if (show != _showAdvancedUI) {
        _showAdvancedUI = show;
        emit showAdvancedUIChanged(show);
    }
}
279

280
void QGCCorePlugin::paletteOverride(QString /*colorName*/, QGCPalette::PaletteColorInfo_t& /*colorInfo*/)
281
{
282

283
}
284

285
QString QGCCorePlugin::showAdvancedUIMessage() const
286 287 288 289 290 291
{
    return tr("WARNING: You are about to enter Advanced Mode. "
              "If used incorrectly, this may cause your vehicle to malfunction thus voiding your warranty. "
              "You should do so only if instructed by customer support. "
              "Are you sure you want to enable Advanced Mode?");
}
292

293
void QGCCorePlugin::factValueGridCreateDefaultSettings(const QString& defaultSettingsGroup)
294
{
295
    HorizontalFactValueGrid factValueGrid(defaultSettingsGroup);
296

297
    bool        includeFWValues = factValueGrid.vehicleClass() == QGCMAVLink::VehicleClassFixedWing || factValueGrid.vehicleClass() == QGCMAVLink::VehicleClassVTOL;
298

299
    factValueGrid.setFontSize(FactValueGrid::LargeFontSize);
300

301 302 303 304 305 306 307
    factValueGrid.appendRow();
    factValueGrid.appendRow();
    factValueGrid.appendColumn();
    factValueGrid.appendColumn();
    if (includeFWValues) {
        factValueGrid.appendColumn();
    }
308

309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
    int                 colIndex    = 0;
    QmlObjectListModel* row         = factValueGrid.rows()->value<QmlObjectListModel*>(0);

    InstrumentValueData* value = row->value<InstrumentValueData*>(colIndex++);
    value->setFact("Vehicle", "AltitudeRelative");
    value->setIcon("arrow-thick-up.svg");
    value->setText(value->fact()->shortDescription());
    value->setShowUnits(true);

    value = row->value<InstrumentValueData*>(colIndex++);
    value->setFact("Vehicle", "ClimbRate");
    value->setIcon("arrow-simple-up.svg");
    value->setText(value->fact()->shortDescription());
    value->setShowUnits(true);

    if (includeFWValues) {
        value = row->value<InstrumentValueData*>(colIndex++);
        value->setFact("Vehicle", "AirSpeed");
        value->setText("AirSpd");
328
        value->setShowUnits(true);
329
    }
330

331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
    value = row->value<InstrumentValueData*>(colIndex++);
    value->setFact("Vehicle", "FlightTime");
    value->setIcon("timer.svg");
    value->setText(value->fact()->shortDescription());
    value->setShowUnits(false);

    colIndex    = 0;
    row         = factValueGrid.rows()->value<QmlObjectListModel*>(1);

    value = row->value<InstrumentValueData*>(colIndex++);
    value->setFact("Vehicle", "DistanceToHome");
    value->setIcon("bookmark copy 3.svg");
    value->setText(value->fact()->shortDescription());
    value->setShowUnits(true);

    value = row->value<InstrumentValueData*>(colIndex++);
    value->setFact("Vehicle", "GroundSpeed");
    value->setIcon("arrow-simple-right.svg");
    value->setText(value->fact()->shortDescription());
    value->setShowUnits(true);

    if (includeFWValues) {
        value = row->value<InstrumentValueData*>(colIndex++);
        value->setFact("Vehicle", "ThrottlePct");
        value->setText("Thr");
356
        value->setShowUnits(true);
357
    }
358 359 360 361 362 363

    value = row->value<InstrumentValueData*>(colIndex++);
    value->setFact("Vehicle", "FlightDistance");
    value->setIcon("travel-walk.svg");
    value->setText(value->fact()->shortDescription());
    value->setShowUnits(true);
364
}
365

366
QQmlApplicationEngine* QGCCorePlugin::createQmlApplicationEngine(QObject* parent)
367
{
368 369 370 371 372 373 374 375 376 377
    QQmlApplicationEngine* qmlEngine = new QQmlApplicationEngine(parent);
    qmlEngine->addImportPath("qrc:/qml");
    qmlEngine->rootContext()->setContextProperty("joystickManager", qgcApp()->toolbox()->joystickManager());
    qmlEngine->rootContext()->setContextProperty("debugMessageModel", AppMessages::getModel());
    return qmlEngine;
}

void QGCCorePlugin::createRootWindow(QQmlApplicationEngine* qmlEngine)
{
    qmlEngine->load(QUrl(QStringLiteral("qrc:/qml/MainRootWindow.qml")));
378
}
379 380 381 382 383 384 385 386 387

bool QGCCorePlugin::mavlinkMessage(Vehicle* vehicle, LinkInterface* link, mavlink_message_t message)
{
    Q_UNUSED(vehicle);
    Q_UNUSED(link);
    Q_UNUSED(message);

    return true;
}
388

389
QmlObjectListModel* QGCCorePlugin::customMapItems()
390 391 392
{
    return &_p->_emptyCustomMapItems;
}
393

394 395 396 397 398
VideoManager* QGCCorePlugin::createVideoManager(QGCApplication *app, QGCToolbox *toolbox)
{
    return new VideoManager(app, toolbox);
}

399 400
VideoReceiver* QGCCorePlugin::createVideoReceiver(QObject* parent)
{
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
#if defined(QGC_GST_STREAMING)
    return GStreamer::createVideoReceiver(parent);
#else
    Q_UNUSED(parent)
    return nullptr;
#endif
}

void* QGCCorePlugin::createVideoSink(QObject* parent, QQuickItem* widget)
{
#if defined(QGC_GST_STREAMING)
    return GStreamer::createVideoSink(parent, widget);
#else
    Q_UNUSED(parent)
    Q_UNUSED(widget)
    return nullptr;
#endif
418
}
419

420 421 422 423 424 425 426 427 428
void QGCCorePlugin::releaseVideoSink(void* sink)
{
#if defined(QGC_GST_STREAMING)
    GStreamer::releaseVideoSink(sink);
#else
    Q_UNUSED(sink)
#endif
}

429
bool QGCCorePlugin::guidedActionsControllerLogging() const
430 431 432
{
    return GuidedActionsControllerLog().isDebugEnabled();
}
433

434
QString QGCCorePlugin::stableVersionCheckFileUrl() const
435 436 437 438 439 440 441 442
{
#ifdef QGC_CUSTOM_BUILD
    // Custom builds must override to turn on and provide their own location
    return QString();
#else
    return QString("https://s3-us-west-2.amazonaws.com/qgroundcontrol/latest/QGC.version.txt");
#endif
}
443

444
const QVariantList& QGCCorePlugin::toolBarIndicators(void)
445 446 447 448
{
    //-- Default list of indicators for all vehicles.
    if(_toolBarIndicatorList.size() == 0) {
        _toolBarIndicatorList = QVariantList({
449 450
                                                 QVariant::fromValue(QUrl::fromUserInput("qrc:/toolbar/GPSRTKIndicator.qml")),
                                             });
451 452 453
    }
    return _toolBarIndicatorList;
}
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 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

QList<int> QGCCorePlugin::firstRunPromptStdIds(void)
{
    QList<int> rgStdIds = { unitsFirstRunPromptId, offlineVehicleFirstRunPromptId };
    return rgStdIds;
}

QList<int> QGCCorePlugin::firstRunPromptCustomIds(void)
{
    return QList<int>();
}

QVariantList QGCCorePlugin::firstRunPromptsToShow(void)
{
    QList<int> rgIdsToShow;

    rgIdsToShow.append(firstRunPromptStdIds());
    rgIdsToShow.append(firstRunPromptCustomIds());

    QList<int> rgAlreadyShownIds = AppSettings::firstRunPromptsIdsVariantToList(_toolbox->settingsManager()->appSettings()->firstRunPromptIdsShown()->rawValue());

    for (int idToRemove: rgAlreadyShownIds) {
        rgIdsToShow.removeOne(idToRemove);
    }

    QVariantList rgVarIdsToShow;
    for (int id: rgIdsToShow) {
        rgVarIdsToShow.append(id);
    }

    return rgVarIdsToShow;
}

QString QGCCorePlugin::firstRunPromptResource(int id)
{
    switch (id) {
    case unitsFirstRunPromptId:
        return "/FirstRunPromptDialogs/UnitsFirstRunPrompt.qml";
    case offlineVehicleFirstRunPromptId:
        return "/FirstRunPromptDialogs/OfflineVehicleFirstRunPrompt.qml";
        break;
    }

    return QString();
}