ComplexMissionItem.cc 3.24 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
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
9 10

#include "ComplexMissionItem.h"
Don Gagne's avatar
Don Gagne committed
11
#include "QGCApplication.h"
12 13
#include "QGCCorePlugin.h"
#include "QGCOptions.h"
14
#include "PlanMasterController.h"
Don Gagne's avatar
Don Gagne committed
15 16

#include <QSettings>
17

Don Gagne's avatar
Don Gagne committed
18 19
const char* ComplexMissionItem::jsonComplexItemTypeKey = "complexItemType";

Don Gagne's avatar
Don Gagne committed
20 21
const char* ComplexMissionItem::_presetSettingsKey =        "_presets";

22 23
ComplexMissionItem::ComplexMissionItem(PlanMasterController* masterController, bool flyView, QObject* parent)
    : VisualMissionItem (masterController, flyView, parent)
24 25
    , _toolbox          (qgcApp()->toolbox())
    , _settingsManager  (_toolbox->settingsManager())
26
{
27

28 29
}

30 31
const ComplexMissionItem& ComplexMissionItem::operator=(const ComplexMissionItem& other)
{
32
    VisualMissionItem::operator=(other);
33 34 35

    return *this;
}
Don Gagne's avatar
Don Gagne committed
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

QStringList ComplexMissionItem::presetNames(void)
{
    QStringList names;

    QSettings settings;

    settings.beginGroup(presetsSettingsGroup());
    settings.beginGroup(_presetSettingsKey);
    return settings.childKeys();
}

void ComplexMissionItem::loadPreset(const QString& name)
{
    Q_UNUSED(name);
    qgcApp()->showMessage(tr("This Pattern does not support Presets."));
}

void ComplexMissionItem::savePreset(const QString& name)
{
    Q_UNUSED(name);
    qgcApp()->showMessage(tr("This Pattern does not support Presets."));
}

Don Gagne's avatar
Don Gagne committed
60
void ComplexMissionItem::deletePreset(const QString& name)
Don Gagne's avatar
Don Gagne committed
61
{
62 63 64 65
    if (qgcApp()->toolbox()->corePlugin()->options()->surveyBuiltInPresetNames().contains(name)) {
        qgcApp()->showMessage(tr("'%1' is a built-in preset which cannot be deleted.").arg(name));
        return;
    }
Don Gagne's avatar
Don Gagne committed
66

67
    QSettings settings;
Don Gagne's avatar
Don Gagne committed
68 69 70 71
    settings.beginGroup(presetsSettingsGroup());
    settings.beginGroup(_presetSettingsKey);
    settings.remove(name);
    emit presetNamesChanged();
Don Gagne's avatar
Don Gagne committed
72 73 74 75 76 77 78 79
}

void ComplexMissionItem::_savePresetJson(const QString& name, QJsonObject& presetObject)
{
    QSettings settings;
    settings.beginGroup(presetsSettingsGroup());
    settings.beginGroup(_presetSettingsKey);
    settings.setValue(name, QJsonDocument(presetObject).toBinaryData());
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97

    // Use this to save a survey preset as a JSON file to be included in the build
    // as a built-in survey preset that cannot be deleted.
    #if 0
    QString savePath = _settingsManager->appSettings()->missionSavePath();
    QDir saveDir(savePath);

    QString fileName = saveDir.absoluteFilePath(name);
    fileName.append(".json");
    QFile jsonFile(fileName);

    if (!jsonFile.open(QIODevice::WriteOnly)) {
        qDebug() << "Couldn't open .json file.";
    }

    qDebug() << "Saving survey preset to JSON";
    auto jsonDoc = QJsonDocument(jsonObj);
    jsonFile.write(jsonDoc.toJson());
98 99
    #endif

Don Gagne's avatar
Don Gagne committed
100 101 102 103 104 105 106 107 108 109
    emit presetNamesChanged();
}

QJsonObject ComplexMissionItem::_loadPresetJson(const QString& name)
{
    QSettings settings;
    settings.beginGroup(presetsSettingsGroup());
    settings.beginGroup(_presetSettingsKey);
    return QJsonDocument::fromBinaryData(settings.value(name).toByteArray()).object();
}