2021-01-13 15:07:28 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2021 Jon Beniston, M7RCE //
|
|
|
|
// Copyright (C) 2020 Edouard Griffiths, F4EXB //
|
|
|
|
// //
|
|
|
|
// This program 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 as version 3 of the License, or //
|
|
|
|
// (at your option) any later version. //
|
|
|
|
// //
|
|
|
|
// This program 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 V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef INCLUDE_FEATURE_MAPGUI_H_
|
|
|
|
#define INCLUDE_FEATURE_MAPGUI_H_
|
|
|
|
|
|
|
|
#include <QTimer>
|
2022-02-04 15:40:43 -05:00
|
|
|
#include <QQuickItem>
|
|
|
|
#include <QJsonObject>
|
|
|
|
#include <QWebEngineFullScreenRequest>
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <limits>
|
2021-01-13 15:07:28 -05:00
|
|
|
|
|
|
|
#include "feature/featuregui.h"
|
|
|
|
#include "util/messagequeue.h"
|
2021-01-22 09:54:22 -05:00
|
|
|
#include "util/azel.h"
|
2022-01-08 23:27:12 -05:00
|
|
|
#include "settings/rollupstate.h"
|
|
|
|
|
2021-01-13 15:07:28 -05:00
|
|
|
#include "SWGMapItem.h"
|
2022-01-08 23:27:12 -05:00
|
|
|
|
|
|
|
#include "mapsettings.h"
|
2021-01-22 09:54:22 -05:00
|
|
|
#include "mapbeacondialog.h"
|
2021-12-03 13:23:14 -05:00
|
|
|
#include "mapibpbeacondialog.h"
|
2021-06-23 10:15:50 -04:00
|
|
|
#include "mapradiotimedialog.h"
|
2022-02-04 15:40:43 -05:00
|
|
|
#include "cesiuminterface.h"
|
2021-11-23 11:44:07 -05:00
|
|
|
#include "osmtemplateserver.h"
|
2022-02-04 15:40:43 -05:00
|
|
|
#include "webserver.h"
|
|
|
|
#include "mapmodel.h"
|
2021-01-13 15:07:28 -05:00
|
|
|
|
|
|
|
class PluginAPI;
|
|
|
|
class FeatureUISet;
|
|
|
|
class Map;
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class MapGUI;
|
|
|
|
}
|
|
|
|
|
|
|
|
class MapGUI;
|
2021-01-22 09:54:22 -05:00
|
|
|
struct Beacon;
|
2021-01-13 15:07:28 -05:00
|
|
|
|
2021-06-23 10:15:50 -04:00
|
|
|
struct RadioTimeTransmitter {
|
|
|
|
QString m_callsign;
|
|
|
|
int m_frequency; // In Hz
|
|
|
|
float m_latitude; // In degrees
|
|
|
|
float m_longitude; // In degrees
|
|
|
|
int m_power; // In kW
|
|
|
|
};
|
|
|
|
|
2021-01-13 15:07:28 -05:00
|
|
|
class MapGUI : public FeatureGUI {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
static MapGUI* create(PluginAPI* pluginAPI, FeatureUISet *featureUISet, Feature *feature);
|
|
|
|
virtual void destroy();
|
|
|
|
|
|
|
|
void resetToDefaults();
|
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
|
|
|
virtual MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; }
|
2021-01-22 09:54:22 -05:00
|
|
|
AzEl *getAzEl() { return &m_azEl; }
|
|
|
|
Map *getMap() { return m_map; }
|
2021-02-26 15:30:59 -05:00
|
|
|
QQuickItem *getMapItem();
|
2021-01-22 09:54:22 -05:00
|
|
|
static QString getBeaconFilename();
|
|
|
|
QList<Beacon *> *getBeacons() { return m_beacons; }
|
|
|
|
void setBeacons(QList<Beacon *> *beacons);
|
2021-12-03 13:23:14 -05:00
|
|
|
void addIBPBeacons();
|
2021-06-23 10:15:50 -04:00
|
|
|
QList<RadioTimeTransmitter> getRadioTimeTransmitters() { return m_radioTimeTransmitters; }
|
|
|
|
void addRadioTimeTransmitters();
|
2021-12-03 13:23:14 -05:00
|
|
|
void addRadar();
|
2021-11-23 11:44:07 -05:00
|
|
|
void addDAB();
|
2021-01-22 09:54:22 -05:00
|
|
|
void find(const QString& target);
|
2022-02-04 15:40:43 -05:00
|
|
|
void track3D(const QString& target);
|
2021-11-23 11:44:07 -05:00
|
|
|
Q_INVOKABLE void supportedMapsChanged();
|
2022-02-04 15:40:43 -05:00
|
|
|
MapSettings::MapItemSettings *getItemSettings(const QString &group) { return m_settings.m_itemSettings[group]; }
|
|
|
|
CesiumInterface *cesium() { return m_cesium; }
|
2021-01-13 15:07:28 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::MapGUI* ui;
|
|
|
|
PluginAPI* m_pluginAPI;
|
|
|
|
FeatureUISet* m_featureUISet;
|
|
|
|
MapSettings m_settings;
|
2022-01-08 23:27:12 -05:00
|
|
|
RollupState m_rollupState;
|
2021-01-13 15:07:28 -05:00
|
|
|
bool m_doApplySettings;
|
2022-03-29 14:12:15 -04:00
|
|
|
QList<MapSettings::AvailableChannelOrFeature> m_availableChannelOrFeatures;
|
2021-01-13 15:07:28 -05:00
|
|
|
|
|
|
|
Map* m_map;
|
|
|
|
MessageQueue m_inputMessageQueue;
|
|
|
|
MapModel m_mapModel;
|
2021-01-22 09:54:22 -05:00
|
|
|
AzEl m_azEl; // Position of station
|
2022-03-21 06:14:35 -04:00
|
|
|
SWGSDRangel::SWGMapItem m_antennaMapItem;
|
2021-01-22 09:54:22 -05:00
|
|
|
QList<Beacon *> *m_beacons;
|
|
|
|
MapBeaconDialog m_beaconDialog;
|
2021-12-03 13:23:14 -05:00
|
|
|
MapIBPBeaconDialog m_ibpBeaconDialog;
|
2021-06-23 10:15:50 -04:00
|
|
|
MapRadioTimeDialog m_radioTimeDialog;
|
2021-11-23 11:44:07 -05:00
|
|
|
quint16 m_osmPort;
|
|
|
|
OSMTemplateServer *m_templateServer;
|
2022-03-23 05:04:04 -04:00
|
|
|
QTimer m_redrawMapTimer;
|
2021-01-13 15:07:28 -05:00
|
|
|
|
2022-02-04 15:40:43 -05:00
|
|
|
CesiumInterface *m_cesium;
|
|
|
|
WebServer *m_webServer;
|
|
|
|
quint16 m_webPort;
|
|
|
|
|
2021-01-13 15:07:28 -05:00
|
|
|
explicit MapGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISet, Feature *feature, QWidget* parent = nullptr);
|
|
|
|
virtual ~MapGUI();
|
|
|
|
|
2022-03-29 14:12:15 -04:00
|
|
|
void update(const QObject *source, SWGSDRangel::SWGMapItem *swgMapItem, const QString &group);
|
2021-01-13 15:07:28 -05:00
|
|
|
void blockApplySettings(bool block);
|
|
|
|
void applySettings(bool force = false);
|
2022-02-04 15:40:43 -05:00
|
|
|
void applyMap2DSettings(bool reloadMap);
|
|
|
|
void applyMap3DSettings(bool reloadMap);
|
2021-11-23 11:44:07 -05:00
|
|
|
QString osmCachePath();
|
|
|
|
void clearOSMCache();
|
2021-01-13 15:07:28 -05:00
|
|
|
void displaySettings();
|
|
|
|
bool handleMessage(const Message& message);
|
2021-01-22 09:54:22 -05:00
|
|
|
void geoReply();
|
2022-02-04 15:40:43 -05:00
|
|
|
QString thunderforestAPIKey() const;
|
|
|
|
QString maptilerAPIKey() const;
|
|
|
|
QString cesiumIonAPIKey() const;
|
|
|
|
void redrawMap();
|
2022-04-04 04:23:52 -04:00
|
|
|
void makeUIConnections();
|
2021-01-13 15:07:28 -05:00
|
|
|
|
|
|
|
void leaveEvent(QEvent*);
|
|
|
|
void enterEvent(QEvent*);
|
|
|
|
|
2021-01-22 09:54:22 -05:00
|
|
|
static QString getDataDir();
|
2021-06-23 10:15:50 -04:00
|
|
|
static const QList<RadioTimeTransmitter> m_radioTimeTransmitters;
|
2021-01-22 09:54:22 -05:00
|
|
|
|
2021-01-13 15:07:28 -05:00
|
|
|
private slots:
|
2022-02-04 15:40:43 -05:00
|
|
|
void init3DMap();
|
2021-01-13 15:07:28 -05:00
|
|
|
void onMenuDialogCalled(const QPoint &p);
|
|
|
|
void onWidgetRolled(QWidget* widget, bool rollDown);
|
|
|
|
void handleInputMessages();
|
|
|
|
void on_displayNames_clicked(bool checked=false);
|
2021-02-26 15:30:59 -05:00
|
|
|
void on_displayAllGroundTracks_clicked(bool checked=false);
|
|
|
|
void on_displaySelectedGroundTracks_clicked(bool checked=false);
|
2021-01-13 15:07:28 -05:00
|
|
|
void on_find_returnPressed();
|
2021-01-22 10:22:47 -05:00
|
|
|
void on_maidenhead_clicked();
|
2021-01-13 15:07:28 -05:00
|
|
|
void on_deleteAll_clicked();
|
2021-01-22 09:54:22 -05:00
|
|
|
void on_displaySettings_clicked();
|
|
|
|
void on_mapTypes_currentIndexChanged(int index);
|
|
|
|
void on_beacons_clicked();
|
2021-12-03 13:23:14 -05:00
|
|
|
void on_ibpBeacons_clicked();
|
2021-06-23 10:15:50 -04:00
|
|
|
void on_radiotime_clicked();
|
2022-02-04 15:40:43 -05:00
|
|
|
void receivedCesiumEvent(const QJsonObject &obj);
|
|
|
|
virtual void showEvent(QShowEvent *event);
|
|
|
|
virtual bool eventFilter(QObject *obj, QEvent *event);
|
|
|
|
void fullScreenRequested(QWebEngineFullScreenRequest fullScreenRequest);
|
2022-03-21 06:14:35 -04:00
|
|
|
void preferenceChanged(int elementType);
|
2021-01-13 15:07:28 -05:00
|
|
|
|
2022-02-04 15:40:43 -05:00
|
|
|
};
|
2021-01-13 15:07:28 -05:00
|
|
|
|
|
|
|
#endif // INCLUDE_FEATURE_MAPGUI_H_
|