From 29b29419510310f70e9e94e23b4414940c2ac766 Mon Sep 17 00:00:00 2001 From: Jon Beniston Date: Wed, 9 Feb 2022 16:41:40 +0000 Subject: [PATCH] Map Updates Fix 3D map for Qt < 5.15. Add 3D map label scale setting. Add 3D map time to Web report. Reduce height of display settings dialog to fit on smaller screens. --- plugins/feature/map/czml.cpp | 2 +- plugins/feature/map/map.cpp | 51 +- plugins/feature/map/map.h | 14 + plugins/feature/map/map/map3d.html | 38 +- plugins/feature/map/mapgui.cpp | 17 +- plugins/feature/map/mapsettings.cpp | 3 + plugins/feature/map/mapsettings.h | 1 + plugins/feature/map/mapsettingsdialog.cpp | 8 + plugins/feature/map/mapsettingsdialog.h | 5 +- plugins/feature/map/mapsettingsdialog.ui | 876 +++++++++--------- plugins/feature/map/webserver.cpp | 3 + sdrbase/util/fits.cpp | 3 + sdrbase/webapi/webapirequestmapper.cpp | 15 + .../api/swagger/include/FeatureReport.yaml | 2 + swagger/sdrangel/api/swagger/include/Map.yaml | 7 + .../code/qt5/client/SWGFeatureReport.cpp | 25 + .../code/qt5/client/SWGFeatureReport.h | 7 + .../code/qt5/client/SWGModelFactory.h | 6 + 18 files changed, 646 insertions(+), 437 deletions(-) diff --git a/plugins/feature/map/czml.cpp b/plugins/feature/map/czml.cpp index e4138e798..fc1e42f63 100644 --- a/plugins/feature/map/czml.cpp +++ b/plugins/feature/map/czml.cpp @@ -443,7 +443,7 @@ QJsonObject CZML::update(MapItem *mapItem, bool isTarget, bool isSelected) QJsonObject label { {"text", mapItem->m_label}, {"show", m_settings->m_displayNames && mapItem->m_itemSettings->m_enabled && mapItem->m_itemSettings->m_display3DLabel}, - {"scale", 0.5}, + {"scale", mapItem->m_itemSettings->m_3DLabelScale}, {"pixelOffset", labelPixelOffset}, {"eyeOffset", labelEyeOffset}, {"verticalOrigin", "BASELINE"}, diff --git a/plugins/feature/map/map.cpp b/plugins/feature/map/map.cpp index 4445b8a3f..1e2dea20b 100644 --- a/plugins/feature/map/map.cpp +++ b/plugins/feature/map/map.cpp @@ -43,7 +43,9 @@ const char* const Map::m_featureIdURI = "sdrangel.feature.map"; const char* const Map::m_featureId = "Map"; Map::Map(WebAPIAdapterInterface *webAPIAdapterInterface) : - Feature(m_featureIdURI, webAPIAdapterInterface) + Feature(m_featureIdURI, webAPIAdapterInterface), + m_multiplier(0.0), + m_dateTimeMutex(QMutex::Recursive) { qDebug("Map::Map: webAPIAdapterInterface: %p", webAPIAdapterInterface); setObjectName(m_featureId); @@ -206,6 +208,17 @@ int Map::webapiSettingsPutPatch( return 200; } +int Map::webapiReportGet( + SWGSDRangel::SWGFeatureReport& response, + QString& errorMessage) +{ + (void) errorMessage; + response.setMapReport(new SWGSDRangel::SWGMapReport()); + response.getMapReport()->init(); + webapiFormatFeatureReport(response); + return 200; +} + int Map::webapiActionsPost( const QStringList& featureActionsKeys, SWGSDRangel::SWGFeatureActions& query, @@ -356,6 +369,16 @@ void Map::webapiReverseSendSettings(QList& featureSettingsKeys, const M delete swgFeatureSettings; } +void Map::webapiFormatFeatureReport(SWGSDRangel::SWGFeatureReport& response) +{ + QString mapDateTime = getMapDateTime().toString(Qt::ISODateWithMs); + if (response.getMapReport()->getDateTime()) { + *response.getMapReport()->getDateTime() = mapDateTime; + } else { + response.getMapReport()->setDateTime(new QString(mapDateTime)); + } +} + void Map::networkManagerFinished(QNetworkReply *reply) { QNetworkReply::NetworkError replyError = reply->error(); @@ -376,3 +399,29 @@ void Map::networkManagerFinished(QNetworkReply *reply) reply->deleteLater(); } + +void Map::setMapDateTime(QDateTime mapDateTime, QDateTime systemDateTime, double multiplier) +{ + QMutexLocker mutexLocker(&m_dateTimeMutex); + m_mapDateTime = mapDateTime; + m_systemDateTime = systemDateTime; + m_multiplier = multiplier; +} + +QDateTime Map::getMapDateTime() +{ + QMutexLocker mutexLocker(&m_dateTimeMutex); + if (m_multiplier == 0.0) + { + return m_mapDateTime; + } + else + { + // It's not possible to synchronously get the time from Cesium + // so we calculate it based on the system clock difference from + // when changes were made to the clock GUI elements + // Should be accurate enough for satellite tracker + qint64 diffMsecs = m_systemDateTime.msecsTo(QDateTime::currentDateTime()); + return m_mapDateTime.addMSecs(diffMsecs * m_multiplier); + } +} diff --git a/plugins/feature/map/map.h b/plugins/feature/map/map.h index 2e356d140..fca1a7475 100644 --- a/plugins/feature/map/map.h +++ b/plugins/feature/map/map.h @@ -24,6 +24,7 @@ #include #include #include +#include #include "feature/feature.h" #include "util/message.h" @@ -127,6 +128,10 @@ public: SWGSDRangel::SWGFeatureSettings& response, QString& errorMessage); + virtual int webapiReportGet( + SWGSDRangel::SWGFeatureReport& response, + QString& errorMessage); + virtual int webapiActionsPost( const QStringList& featureActionsKeys, SWGSDRangel::SWGFeatureActions& query, @@ -141,6 +146,9 @@ public: const QStringList& featureSettingsKeys, SWGSDRangel::SWGFeatureSettings& response); + void setMapDateTime(QDateTime mapDateTime, QDateTime systemDateTime, double multiplier); + QDateTime getMapDateTime(); + static const char* const m_featureIdURI; static const char* const m_featureId; @@ -154,8 +162,14 @@ private: QNetworkRequest m_networkRequest; void applySettings(const MapSettings& settings, bool force = false); + void webapiFormatFeatureReport(SWGSDRangel::SWGFeatureReport& response); void webapiReverseSendSettings(QList& featureSettingsKeys, const MapSettings& settings, bool force); + QDateTime m_mapDateTime; + QDateTime m_systemDateTime; + double m_multiplier; + QMutex m_dateTimeMutex; + private slots: void updatePipes(); void networkManagerFinished(QNetworkReply *reply); diff --git a/plugins/feature/map/map/map3d.html b/plugins/feature/map/map/map3d.html index a136fd5b8..57747267d 100644 --- a/plugins/feature/map/map/map3d.html +++ b/plugins/feature/map/map/map3d.html @@ -216,10 +216,7 @@ viewer.clock.currentTime = dateTime; } else if (command.command == "getDateTime") { // Get current date and time of viewer - socket.send(JSON.stringify({ - command: "getDateTime", - dateTime: Cesium.JulianDate.toIso8601(viewer.clock.currentTime) - })); + reportClock(); } else if (command.command == "setTerrain") { // Support using Ellipsoid terrain for performance and also // because paths can't be clammped to ground, so AIS paths @@ -397,6 +394,39 @@ } }); + // Report clock changes for use by other plugins + var systemTime = new Cesium.JulianDate(); + function reportClock() { + if (socket.readyState === 1) { + Cesium.JulianDate.now(systemTime); + socket.send(JSON.stringify({ + event: "clock", + canAnimate: viewer.clock.canAnimate, + shouldAnimate: viewer.clock.shouldAnimate, + currentTime: Cesium.JulianDate.toIso8601(viewer.clock.currentTime), + multiplier: viewer.clock.multiplier, + systemTime: Cesium.JulianDate.toIso8601(systemTime) + })); + } + }; + + Cesium.knockout.getObservable(viewer.clockViewModel, 'shouldAnimate').subscribe(function(isAnimating) { + reportClock(); + }); + Cesium.knockout.getObservable(viewer.clockViewModel, 'multiplier').subscribe(function(multiplier) { + reportClock(); + }); + // This is called every frame + //Cesium.knockout.getObservable(viewer.clockViewModel, 'currentTime').subscribe(function(currentTime) { + //reportClock(); + //}); + viewer.timeline.addEventListener('settime', reportClock, false); + + socket.onopen = () => { + reportClock(); + }; + + diff --git a/plugins/feature/map/mapgui.cpp b/plugins/feature/map/mapgui.cpp index 211a3eefb..cbf49acb9 100644 --- a/plugins/feature/map/mapgui.cpp +++ b/plugins/feature/map/mapgui.cpp @@ -812,6 +812,7 @@ void MapGUI::applyMap3DSettings(bool reloadMap) m_cesium->setSunLight(m_settings.m_sunLightEnabled); m_cesium->setCameraReferenceFrame(m_settings.m_eciCamera); m_cesium->setAntiAliasing(m_settings.m_antiAliasing); + m_cesium->getDateTime(); } } @@ -826,14 +827,14 @@ void MapGUI::init3DMap() m_cesium->setSunLight(m_settings.m_sunLightEnabled); m_cesium->setCameraReferenceFrame(m_settings.m_eciCamera); m_cesium->setAntiAliasing(m_settings.m_antiAliasing); + m_cesium->getDateTime(); + m_mapModel.allUpdated(); float stationLatitude = MainCore::instance()->getSettings().getLatitude(); float stationLongitude = MainCore::instance()->getSettings().getLongitude(); // Set 3D view after loading initial objects m_cesium->setHomeView(stationLatitude, stationLongitude); - - m_mapModel.allUpdated(); } void MapGUI::displaySettings() @@ -1144,6 +1145,18 @@ void MapGUI::receivedCesiumEvent(const QJsonObject &obj) //m_mapModel.setTarget(""); } } + else if (event == "clock") + { + if (m_map) + { + QDateTime mapDateTime = QDateTime::fromString(obj.value("currentTime").toString(), Qt::ISODateWithMs); + QDateTime systemDateTime = QDateTime::fromString(obj.value("systemTime").toString(), Qt::ISODateWithMs); + double multiplier = obj.value("multiplier").toDouble(); + bool canAnimate = obj.value("canAnimate").toBool(); + bool shouldAnimate = obj.value("shouldAnimate").toBool(); + m_map->setMapDateTime(mapDateTime, systemDateTime, canAnimate && shouldAnimate ? multiplier : 0.0); + } + } } else { diff --git a/plugins/feature/map/mapsettings.cpp b/plugins/feature/map/mapsettings.cpp index e12997a18..b4352481f 100644 --- a/plugins/feature/map/mapsettings.cpp +++ b/plugins/feature/map/mapsettings.cpp @@ -251,6 +251,7 @@ void MapSettings::MapItemSettings::resetToDefaults() m_display3DTrack = true; m_3DTrackColor = QColor(150, 0, 20).rgb(); m_3DModelMinPixelSize = 0; + m_3DLabelScale = 0.5f; } QByteArray MapSettings::MapItemSettings::serialize() const @@ -271,6 +272,7 @@ QByteArray MapSettings::MapItemSettings::serialize() const s.writeBool(12, m_display3DTrack); s.writeU32(13, m_3DTrackColor); s.writeS32(14, m_3DModelMinPixelSize); + s.writeFloat(15, m_3DLabelScale); return s.final(); } @@ -301,6 +303,7 @@ bool MapSettings::MapItemSettings::deserialize(const QByteArray& data) d.readBool(12, &m_display3DTrack, true); d.readU32(13, &m_3DTrackColor, QColor(150, 0, 20).rgb()); d.readS32(14, &m_3DModelMinPixelSize, 0); + d.readFloat(15, &m_3DLabelScale, 0.5f); return true; } else diff --git a/plugins/feature/map/mapsettings.h b/plugins/feature/map/mapsettings.h index 8f4f81f16..d480059e1 100644 --- a/plugins/feature/map/mapsettings.h +++ b/plugins/feature/map/mapsettings.h @@ -42,6 +42,7 @@ struct MapSettings bool m_display3DTrack; // Display a ground track for this item on the 3D map quint32 m_3DTrackColor; int m_3DModelMinPixelSize; + float m_3DLabelScale; MapItemSettings(const QString& group, const QColor color, bool display3DPoint=true, int minZoom=11, int modelMinPixelSize=0); MapItemSettings(const QByteArray& data); diff --git a/plugins/feature/map/mapsettingsdialog.cpp b/plugins/feature/map/mapsettingsdialog.cpp index 019e4c50f..4d81b0f2c 100644 --- a/plugins/feature/map/mapsettingsdialog.cpp +++ b/plugins/feature/map/mapsettingsdialog.cpp @@ -96,8 +96,13 @@ MapItemSettingsGUI::MapItemSettingsGUI(QTableWidget *table, int row, MapSettings m_minPixels = new QSpinBox(table); m_minPixels->setRange(0, 200); m_minPixels->setValue(settings->m_3DModelMinPixelSize); + m_labelScale = new QDoubleSpinBox(table); + m_labelScale->setDecimals(2); + m_labelScale->setRange(0.01, 10.0); + m_labelScale->setValue(settings->m_3DLabelScale); table->setCellWidget(row, MapSettingsDialog::COL_2D_MIN_ZOOM, m_minZoom); table->setCellWidget(row, MapSettingsDialog::COL_3D_MIN_PIXELS, m_minPixels); + table->setCellWidget(row, MapSettingsDialog::COL_3D_LABEL_SCALE, m_labelScale); } MapSettingsDialog::MapSettingsDialog(MapSettings *settings, QWidget* parent) : @@ -241,6 +246,7 @@ void MapSettingsDialog::accept() itemSettings->m_display3DTrack = !gui->m_track3D.m_noColor; itemSettings->m_3DTrackColor = gui->m_track3D.m_color; itemSettings->m_3DModelMinPixelSize = gui->m_minPixels->value(); + itemSettings->m_3DLabelScale = gui->m_labelScale->value(); } QDialog::accept(); @@ -276,6 +282,7 @@ void MapSettingsDialog::on_map3DEnabled_clicked(bool checked) ui->mapItemSettings->showColumn(COL_3D_LABEL); ui->mapItemSettings->showColumn(COL_3D_POINT); ui->mapItemSettings->showColumn(COL_3D_TRACK); + ui->mapItemSettings->showColumn(COL_3D_LABEL_SCALE); } else { @@ -284,6 +291,7 @@ void MapSettingsDialog::on_map3DEnabled_clicked(bool checked) ui->mapItemSettings->hideColumn(COL_3D_LABEL); ui->mapItemSettings->hideColumn(COL_3D_POINT); ui->mapItemSettings->hideColumn(COL_3D_TRACK); + ui->mapItemSettings->hideColumn(COL_3D_LABEL_SCALE); } ui->terrain->setEnabled(checked); ui->buildings->setEnabled(checked); diff --git a/plugins/feature/map/mapsettingsdialog.h b/plugins/feature/map/mapsettingsdialog.h index ee82acd5c..c8d60b9e7 100644 --- a/plugins/feature/map/mapsettingsdialog.h +++ b/plugins/feature/map/mapsettingsdialog.h @@ -19,6 +19,7 @@ #define INCLUDE_FEATURE_MAPSETTINGSDIALOG_H #include +#include #include #include "gui/httpdownloadmanagergui.h" @@ -56,6 +57,7 @@ public: MapColorGUI m_track3D; QSpinBox *m_minZoom; QSpinBox *m_minPixels; + QDoubleSpinBox *m_labelScale; }; class MapSettingsDialog : public QDialog { @@ -75,7 +77,8 @@ public: COL_3D_MIN_PIXELS, COL_3D_LABEL, COL_3D_POINT, - COL_3D_TRACK + COL_3D_TRACK, + COL_3D_LABEL_SCALE }; public: diff --git a/plugins/feature/map/mapsettingsdialog.ui b/plugins/feature/map/mapsettingsdialog.ui index b9426a6d8..30cc95f37 100644 --- a/plugins/feature/map/mapsettingsdialog.ui +++ b/plugins/feature/map/mapsettingsdialog.ui @@ -6,8 +6,8 @@ 0 0 - 946 - 800 + 1016 + 720 @@ -26,434 +26,453 @@ 0 - - - Select how to display items on the maps: + + + 0 + + + Maps + + + + + + QAbstractItemView::NoSelection + + + + Enabled + + + + + 2D Icon + + + + + 2D Label + + + + + 2D Min Zoom + + + + + 2D Track + + + + + 3D Model + + + + + 3D Min Pixels + + + + + 3D Label + + + + + 3D Point + + + + + 3D Track + + + + + 3D Label Scale + + + + + + + + 2D Map Settings + + + + + + + 140 + 0 + + + + Enabled + + + + + + + + + + + + + + Map provider + + + + + + + Select map provider + + + + OpenStreetMap + + + + + ESRI + + + + + Mapbox + + + + + MapboxGL + + + + + MapLibre + + + + + + + + OSM Custom URL + + + + + + + URL of custom map for use with OpenStreetMap provider + + + + + + + MapboxGL Styles + + + + + + + Comma separated list of MapBox styles + + + + + + + + + + 3D Map Settings + + + + + + + 140 + 0 + + + + Enabled + + + + + + + + + + + + + + Terrain + + + + + + + + Cesium World Terrain + + + + + Ellipsoid + + + + + Maptiler + + + + + ArcGIS + + + + + + + + Buildings + + + + + + + + None + + + + + Cesium OSM Buildings + + + + + + + + Lighting + + + + + + + Whether lighting is from the Sun or Camera + + + + Camera + + + + + Sun + + + + + + + + Camera reference frame + + + + + + + Selects camera reference frame. For ECEF the camera rotates with the Earth. For ECI, the camera position is fixed relative to the stars and the Earth's rotation will be visible. + + + + ECEF + + + + + ECI + + + + + + + + Anti-aliasing + + + + + + + Set anti-aliasing to use. This can remove jagged pixels on the edge of 3D models. + + + + None + + + + + FXAA + + + + + + + + + + + + + Download 3D models. It is recommended to restart SDRangel after download. + + + Download 3D Models (1.6GB) + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + API Keys + + + + + + API Keys + + + + + + + 140 + 0 + + + + Thunderforest API Key + + + + + + + Enter a Thunderforest API key in order to use non-watermarked Thunderforest maps: https://www.thunderforest.com/ + + + + + + + + 140 + 0 + + + + Maptiler API Key + + + + + + + Enter a Maptiler API key in order to use Maptiler maps: https://www.maptiler.com/ + + + + + + + + 140 + 0 + + + + Mapbox API Key + + + + + + + Enter a Mapbox API key in order to use Mapbox maps: https://www.mapbox.com/ + + + + + + + + 140 + 0 + + + + Cesium Ion API Key + + + + + + + Enter a Cesium Ion Access Token + + + + + + + + - - - - QAbstractItemView::NoSelection - - - - Enabled - - - - - 2D Icon - - - - - 2D Label - - - - - 2D Min Zoom - - - - - 2D Track - - - - - 3D Model - - - - - 3D Min Pixels - - - - - 3D Label - - - - - 3D Point - - - - - 3D Track - - - - - - - - 2D Map Settings - - - - - - - 140 - 0 - - - - Enabled - - - - - - - - - - - - - - Map provider - - - - - - - Select map provider - - - - OpenStreetMap - - - - - ESRI - - - - - Mapbox - - - - - MapboxGL - - - - - MapLibre - - - - - - - - OSM Custom URL - - - - - - - URL of custom map for use with OpenStreetMap provider - - - - - - - MapboxGL Styles - - - - - - - Comma separated list of MapBox styles - - - - - - - - - - 3D Map Settings - - - - - - - 140 - 0 - - - - Enabled - - - - - - - - - - - - - - Terrain - - - - - - - - Cesium World Terrain - - - - - Ellipsoid - - - - - Maptiler - - - - - ArcGIS - - - - - - - - Buildings - - - - - - - - None - - - - - Cesium OSM Buildings - - - - - - - - Lighting - - - - - - - Whether lighting is from the Sun or Camera - - - - Camera - - - - - Sun - - - - - - - - Camera reference frame - - - - - - - Selects camera reference frame. For ECEF the camera rotates with the Earth. For ECI, the camera position is fixed relative to the stars and the Earth's rotation will be visible. - - - - ECEF - - - - - ECI - - - - - - - - Anti-aliasing - - - - - - - Set anti-aliasing to use. This can remove jagged pixels on the edge of 3D models. - - - - None - - - - - FXAA - - - - - - - - - - - API Keys - - - - - - - 140 - 0 - - - - Thunderforest API Key - - - - - - - Enter a Thunderforest API key in order to use non-watermarked Thunderforest maps: https://www.thunderforest.com/ - - - - - - - - 140 - 0 - - - - Maptiler API Key - - - - - - - Enter a Maptiler API key in order to use Maptiler maps: https://www.maptiler.com/ - - - - - - - - 140 - 0 - - - - Mapbox API Key - - - - - - - Enter a Mapbox API key in order to use Mapbox maps: https://www.mapbox.com/ - - - - - - - - 140 - 0 - - - - Cesium Ion API Key - - - - - - - Enter a Cesium Ion Access Token - - - - - - - - - - - - Download 3D models. It is recommended to restart SDRangel after download. - - - Download 3D Models (1.6GB) - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - @@ -470,6 +489,7 @@ + tabWidget mapItemSettings map2DEnabled mapProvider @@ -481,11 +501,11 @@ sunLightEnabled eciCamera antiAliasing + downloadModels thunderforestAPIKey maptilerAPIKey mapBoxAPIKey cesiumIonAPIKey - downloadModels diff --git a/plugins/feature/map/webserver.cpp b/plugins/feature/map/webserver.cpp index f3ba9b799..17c5e4a80 100644 --- a/plugins/feature/map/webserver.cpp +++ b/plugins/feature/map/webserver.cpp @@ -157,6 +157,9 @@ void WebServer::readClient() if (res.isValid() && (res.size() > 0)) { QByteArray data = QByteArray::fromRawData((const char *)res.data(), res.size()); + if (res.isCompressed()) { + data = qUncompress(data); + } sendFile(socket, data, mimeType, path); } #endif diff --git a/sdrbase/util/fits.cpp b/sdrbase/util/fits.cpp index afc3c448f..9e4882053 100644 --- a/sdrbase/util/fits.cpp +++ b/sdrbase/util/fits.cpp @@ -40,6 +40,9 @@ FITS::FITS(QString resourceName) : m_fileSize = m_res.uncompressedSize(); #else m_data = QByteArray::fromRawData((const char *)m_res.data(), m_res.size()); + if (res.isCompressed()) { + m_data = qUncompress(m_data); + } m_fileSize = m_res.size(); #endif int hLen = std::min((qint64)m_headerSize * 3, m_fileSize); // Could possibly be bigger diff --git a/sdrbase/webapi/webapirequestmapper.cpp b/sdrbase/webapi/webapirequestmapper.cpp index c43d78f13..0f5034bbe 100644 --- a/sdrbase/webapi/webapirequestmapper.cpp +++ b/sdrbase/webapi/webapirequestmapper.cpp @@ -5145,14 +5145,29 @@ void WebAPIRequestMapper::resetFeatureReport(SWGSDRangel::SWGFeatureReport& feat { featureReport.cleanup(); featureReport.setFeatureType(nullptr); + featureReport.setAfcReport(nullptr); + featureReport.setGs232ControllerReport(nullptr); + featureReport.setPerTesterReport(nullptr); + featureReport.setRigCtlServerReport(nullptr); + featureReport.setMapReport(nullptr); + featureReport.setSatelliteTrackerReport(nullptr); featureReport.setSimplePttReport(nullptr); + featureReport.setStarTrackerReport(nullptr); + featureReport.setVorLocalizerReport(nullptr); } void WebAPIRequestMapper::resetFeatureActions(SWGSDRangel::SWGFeatureActions& featureActions) { featureActions.cleanup(); featureActions.setFeatureType(nullptr); + featureActions.setAfcActions(nullptr); + featureActions.setGs232ControllerActions(nullptr); featureActions.setMapActions(nullptr); + featureActions.setPerTesterActions(nullptr); + featureActions.setRigCtlServerActions(nullptr); + featureActions.setSatelliteTrackerActions(nullptr); featureActions.setSimplePttActions(nullptr); + featureActions.setStarTrackerActions(nullptr); + featureActions.setVorLocalizerActions(nullptr); } diff --git a/swagger/sdrangel/api/swagger/include/FeatureReport.yaml b/swagger/sdrangel/api/swagger/include/FeatureReport.yaml index f9b74f849..468022ad5 100644 --- a/swagger/sdrangel/api/swagger/include/FeatureReport.yaml +++ b/swagger/sdrangel/api/swagger/include/FeatureReport.yaml @@ -11,6 +11,8 @@ FeatureReport: $ref: "http://swgserver:8081/api/swagger/include/AFC.yaml#/AFCReport" GS232ControllerReport: $ref: "http://swgserver:8081/api/swagger/include/GS232Controller.yaml#/GS232ControllerReport" + MapReport: + $ref: "http://swgserver:8081/api/swagger/include/Map.yaml#/MapReport" PERTesterReport: $ref: "http://swgserver:8081/api/swagger/include/PERTester.yaml#/PERTesterReport" RigCtlServerReport: diff --git a/swagger/sdrangel/api/swagger/include/Map.yaml b/swagger/sdrangel/api/swagger/include/Map.yaml index 38a112b99..5909000b5 100644 --- a/swagger/sdrangel/api/swagger/include/Map.yaml +++ b/swagger/sdrangel/api/swagger/include/Map.yaml @@ -22,6 +22,13 @@ MapSettings: rollupState: $ref: "http://swgserver:8081/api/swagger/include/RollupState.yaml#/RollupState" +MapReport: + description: Map + properties: + dateTime: + description: "Current date and time being displayed by 3D map" + type: string + MapActions: description: Map properties: diff --git a/swagger/sdrangel/code/qt5/client/SWGFeatureReport.cpp b/swagger/sdrangel/code/qt5/client/SWGFeatureReport.cpp index 919ec8b20..0aaf03ea2 100644 --- a/swagger/sdrangel/code/qt5/client/SWGFeatureReport.cpp +++ b/swagger/sdrangel/code/qt5/client/SWGFeatureReport.cpp @@ -34,6 +34,8 @@ SWGFeatureReport::SWGFeatureReport() { m_afc_report_isSet = false; gs232_controller_report = nullptr; m_gs232_controller_report_isSet = false; + map_report = nullptr; + m_map_report_isSet = false; per_tester_report = nullptr; m_per_tester_report_isSet = false; rig_ctl_server_report = nullptr; @@ -60,6 +62,8 @@ SWGFeatureReport::init() { m_afc_report_isSet = false; gs232_controller_report = new SWGGS232ControllerReport(); m_gs232_controller_report_isSet = false; + map_report = new SWGMapReport(); + m_map_report_isSet = false; per_tester_report = new SWGPERTesterReport(); m_per_tester_report_isSet = false; rig_ctl_server_report = new SWGRigCtlServerReport(); @@ -85,6 +89,9 @@ SWGFeatureReport::cleanup() { if(gs232_controller_report != nullptr) { delete gs232_controller_report; } + if(map_report != nullptr) { + delete map_report; + } if(per_tester_report != nullptr) { delete per_tester_report; } @@ -122,6 +129,8 @@ SWGFeatureReport::fromJsonObject(QJsonObject &pJson) { ::SWGSDRangel::setValue(&gs232_controller_report, pJson["GS232ControllerReport"], "SWGGS232ControllerReport", "SWGGS232ControllerReport"); + ::SWGSDRangel::setValue(&map_report, pJson["MapReport"], "SWGMapReport", "SWGMapReport"); + ::SWGSDRangel::setValue(&per_tester_report, pJson["PERTesterReport"], "SWGPERTesterReport", "SWGPERTesterReport"); ::SWGSDRangel::setValue(&rig_ctl_server_report, pJson["RigCtlServerReport"], "SWGRigCtlServerReport", "SWGRigCtlServerReport"); @@ -159,6 +168,9 @@ SWGFeatureReport::asJsonObject() { if((gs232_controller_report != nullptr) && (gs232_controller_report->isSet())){ toJsonValue(QString("GS232ControllerReport"), gs232_controller_report, obj, QString("SWGGS232ControllerReport")); } + if((map_report != nullptr) && (map_report->isSet())){ + toJsonValue(QString("MapReport"), map_report, obj, QString("SWGMapReport")); + } if((per_tester_report != nullptr) && (per_tester_report->isSet())){ toJsonValue(QString("PERTesterReport"), per_tester_report, obj, QString("SWGPERTesterReport")); } @@ -211,6 +223,16 @@ SWGFeatureReport::setGs232ControllerReport(SWGGS232ControllerReport* gs232_contr this->m_gs232_controller_report_isSet = true; } +SWGMapReport* +SWGFeatureReport::getMapReport() { + return map_report; +} +void +SWGFeatureReport::setMapReport(SWGMapReport* map_report) { + this->map_report = map_report; + this->m_map_report_isSet = true; +} + SWGPERTesterReport* SWGFeatureReport::getPerTesterReport() { return per_tester_report; @@ -285,6 +307,9 @@ SWGFeatureReport::isSet(){ if(gs232_controller_report && gs232_controller_report->isSet()){ isObjectUpdated = true; break; } + if(map_report && map_report->isSet()){ + isObjectUpdated = true; break; + } if(per_tester_report && per_tester_report->isSet()){ isObjectUpdated = true; break; } diff --git a/swagger/sdrangel/code/qt5/client/SWGFeatureReport.h b/swagger/sdrangel/code/qt5/client/SWGFeatureReport.h index 4e833a729..bc65e2a0c 100644 --- a/swagger/sdrangel/code/qt5/client/SWGFeatureReport.h +++ b/swagger/sdrangel/code/qt5/client/SWGFeatureReport.h @@ -24,6 +24,7 @@ #include "SWGAFCReport.h" #include "SWGGS232ControllerReport.h" +#include "SWGMapReport.h" #include "SWGPERTesterReport.h" #include "SWGRigCtlServerReport.h" #include "SWGSatelliteTrackerReport.h" @@ -59,6 +60,9 @@ public: SWGGS232ControllerReport* getGs232ControllerReport(); void setGs232ControllerReport(SWGGS232ControllerReport* gs232_controller_report); + SWGMapReport* getMapReport(); + void setMapReport(SWGMapReport* map_report); + SWGPERTesterReport* getPerTesterReport(); void setPerTesterReport(SWGPERTesterReport* per_tester_report); @@ -90,6 +94,9 @@ private: SWGGS232ControllerReport* gs232_controller_report; bool m_gs232_controller_report_isSet; + SWGMapReport* map_report; + bool m_map_report_isSet; + SWGPERTesterReport* per_tester_report; bool m_per_tester_report_isSet; diff --git a/swagger/sdrangel/code/qt5/client/SWGModelFactory.h b/swagger/sdrangel/code/qt5/client/SWGModelFactory.h index 00b127339..5043473cc 100644 --- a/swagger/sdrangel/code/qt5/client/SWGModelFactory.h +++ b/swagger/sdrangel/code/qt5/client/SWGModelFactory.h @@ -175,6 +175,7 @@ #include "SWGMapCoordinate.h" #include "SWGMapItem.h" #include "SWGMapItem_2.h" +#include "SWGMapReport.h" #include "SWGMapSettings.h" #include "SWGMetisMISOSettings.h" #include "SWGNFMDemodReport.h" @@ -1124,6 +1125,11 @@ namespace SWGSDRangel { obj->init(); return obj; } + if(QString("SWGMapReport").compare(type) == 0) { + SWGMapReport *obj = new SWGMapReport(); + obj->init(); + return obj; + } if(QString("SWGMapSettings").compare(type) == 0) { SWGMapSettings *obj = new SWGMapSettings(); obj->init();