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

10 11 12 13 14 15

#include "FlightMapSettings.h"

#include <QSettings>
#include <QtQml>

dogmaphobic's avatar
dogmaphobic committed
16 17 18 19 20
const char* FlightMapSettings::_defaultMapProvider      = "Bing";                 // Bing is default since it support full street/satellite/hybrid set
const char* FlightMapSettings::_settingsGroup           = "FlightMapSettings";
const char* FlightMapSettings::_mapProviderKey          = "MapProvider";
const char* FlightMapSettings::_mapTypeKey              = "MapType";
const char* FlightMapSettings::_showScaleOnFlyViewKey   = "ShowScaleOnFlyView";
21

22 23
FlightMapSettings::FlightMapSettings(QGCApplication* app)
    : QGCTool(app)
24 25 26 27
    , _mapProvider(_defaultMapProvider)
{
}

28
void FlightMapSettings::setToolbox(QGCToolbox *toolbox)
29
{
30
    QGCTool::setToolbox(toolbox);
31

32 33
    qmlRegisterUncreatableType<FlightMapSettings> ("QGroundControl", 1, 0, "FlightMapSetting", "Reference only");

dogmaphobic's avatar
dogmaphobic committed
34
    _supportedMapProviders << "Bing" << "Google"; // << "OpenStreetMap";
35 36

    _loadSettings();
37 38 39 40 41
}

void FlightMapSettings::_storeSettings(void)
{
    QSettings settings;
dogmaphobic's avatar
dogmaphobic committed
42

43 44 45 46 47 48 49
    settings.beginGroup(_settingsGroup);
    settings.setValue(_mapProviderKey, _supportedMapProviders.contains(_mapProvider) ? _mapProvider : _defaultMapProvider);
}

void FlightMapSettings::_loadSettings(void)
{
    QSettings settings;
dogmaphobic's avatar
dogmaphobic committed
50

51 52
    settings.beginGroup(_settingsGroup);
    _mapProvider = settings.value(_mapProviderKey, _defaultMapProvider).toString();
dogmaphobic's avatar
dogmaphobic committed
53

54 55 56
    if (!_supportedMapProviders.contains(_mapProvider)) {
        _mapProvider = _defaultMapProvider;
    }
dogmaphobic's avatar
dogmaphobic committed
57

58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
    _setMapTypesForCurrentProvider();
}

QString FlightMapSettings::mapProvider(void)
{
    return _mapProvider;
}

void FlightMapSettings::setMapProvider(const QString& mapProvider)
{
    if (_supportedMapProviders.contains(mapProvider)) {
        _mapProvider = mapProvider;
        _storeSettings();
        _setMapTypesForCurrentProvider();
        emit mapProviderChanged(mapProvider);
    }
}

void FlightMapSettings::_setMapTypesForCurrentProvider(void)
{
    _mapTypes.clear();
dogmaphobic's avatar
dogmaphobic committed
79

80 81 82 83
    if (_mapProvider == "Bing") {
        _mapTypes << "Street Map" << "Satellite Map" << "Hybrid Map";
    } else if (_mapProvider == "Google") {
        _mapTypes << "Street Map" << "Satellite Map" << "Terrain Map";
dogmaphobic's avatar
dogmaphobic committed
84
    /*
dogmaphobic's avatar
dogmaphobic committed
85
    } else if (_mapProvider == "OpenStreetMap") {
86
        _mapTypes << "Street Map";
dogmaphobic's avatar
dogmaphobic committed
87
    */
88
    }
dogmaphobic's avatar
dogmaphobic committed
89

90 91 92 93 94 95
    emit mapTypesChanged(_mapTypes);
}

QString FlightMapSettings::mapTypeForMapName(const QString& mapName)
{
    QSettings settings;
dogmaphobic's avatar
dogmaphobic committed
96

97 98 99
    settings.beginGroup(_settingsGroup);
    settings.beginGroup(mapName);
    settings.beginGroup(_mapProvider);
100
    return settings.value(_mapTypeKey, "Satellite Map").toString();
101 102 103 104 105
}

void FlightMapSettings::setMapTypeForMapName(const QString& mapName, const QString& mapType)
{
    QSettings settings;
dogmaphobic's avatar
dogmaphobic committed
106

107 108 109 110 111 112 113 114 115
    settings.beginGroup(_settingsGroup);
    settings.beginGroup(mapName);
    settings.beginGroup(_mapProvider);
    settings.setValue(_mapTypeKey, mapType);
}

void FlightMapSettings::saveMapSetting (const QString &mapName, const QString& key, const QString& value)
{
    QSettings settings;
dogmaphobic's avatar
dogmaphobic committed
116

117 118 119 120 121 122 123 124
    settings.beginGroup(_settingsGroup);
    settings.beginGroup(mapName);
    settings.setValue(key, value);
}

QString FlightMapSettings::loadMapSetting (const QString &mapName, const QString& key, const QString& defaultValue)
{
    QSettings settings;
dogmaphobic's avatar
dogmaphobic committed
125

126 127 128 129
    settings.beginGroup(_settingsGroup);
    settings.beginGroup(mapName);
    return settings.value(key, defaultValue).toString();
}
Don Gagne's avatar
Don Gagne committed
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147

void FlightMapSettings::saveBoolMapSetting (const QString &mapName, const QString& key, bool value)
{
    QSettings settings;

    settings.beginGroup(_settingsGroup);
    settings.beginGroup(mapName);
    settings.setValue(key, value);
}

bool FlightMapSettings::loadBoolMapSetting (const QString &mapName, const QString& key, bool defaultValue)
{
    QSettings settings;

    settings.beginGroup(_settingsGroup);
    settings.beginGroup(mapName);
    return settings.value(key, defaultValue).toBool();
}
dogmaphobic's avatar
dogmaphobic committed
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163

bool FlightMapSettings::showScaleOnFlyView()
{
    QSettings settings;
    settings.beginGroup(_settingsGroup);
    bool show = settings.value(_showScaleOnFlyViewKey, true).toBool();
    return show;
}

void FlightMapSettings::setShowScaleOnFlyView(bool show)
{
    QSettings settings;
    settings.beginGroup(_settingsGroup);
    settings.setValue(_showScaleOnFlyViewKey, show);
    emit showScaleOnFlyViewChanged();
}