mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 20:30:05 +00:00
Use custom map style from settings
This commit is contained in:
parent
a683778624
commit
45a4d29795
4 changed files with 161 additions and 10 deletions
|
|
@ -139,6 +139,16 @@ public:
|
||||||
}
|
}
|
||||||
~MainWindowImpl()
|
~MainWindowImpl()
|
||||||
{
|
{
|
||||||
|
auto& generalSettings = settings::GeneralSettings::Instance();
|
||||||
|
|
||||||
|
auto& customStyleUrl = generalSettings.custom_style_url();
|
||||||
|
auto& customStyleDrawLayer = generalSettings.custom_style_draw_layer();
|
||||||
|
|
||||||
|
customStyleUrl.UnregisterValueChangedCallback(
|
||||||
|
customStyleUrlChangedCallbackUuid_);
|
||||||
|
customStyleDrawLayer.UnregisterValueChangedCallback(
|
||||||
|
customStyleDrawLayerChangedCallbackUuid_);
|
||||||
|
|
||||||
clockTimer_.stop();
|
clockTimer_.stop();
|
||||||
threadPool_.join();
|
threadPool_.join();
|
||||||
}
|
}
|
||||||
|
|
@ -153,6 +163,7 @@ public:
|
||||||
void ConnectOtherSignals();
|
void ConnectOtherSignals();
|
||||||
void HandleFocusChange(QWidget* focused);
|
void HandleFocusChange(QWidget* focused);
|
||||||
void InitializeLayerDisplayActions();
|
void InitializeLayerDisplayActions();
|
||||||
|
void PopulateCustomMapStyle();
|
||||||
void PopulateMapStyles();
|
void PopulateMapStyles();
|
||||||
void SelectElevation(map::MapWidget* mapWidget, float elevation);
|
void SelectElevation(map::MapWidget* mapWidget, float elevation);
|
||||||
void SelectRadarProduct(map::MapWidget* mapWidget,
|
void SelectRadarProduct(map::MapWidget* mapWidget,
|
||||||
|
|
@ -202,6 +213,10 @@ public:
|
||||||
|
|
||||||
QTimer clockTimer_ {};
|
QTimer clockTimer_ {};
|
||||||
|
|
||||||
|
bool customStyleAvailable_ {false};
|
||||||
|
boost::uuids::uuid customStyleDrawLayerChangedCallbackUuid_ {};
|
||||||
|
boost::uuids::uuid customStyleUrlChangedCallbackUuid_ {};
|
||||||
|
|
||||||
std::shared_ptr<manager::AlertManager> alertManager_;
|
std::shared_ptr<manager::AlertManager> alertManager_;
|
||||||
std::shared_ptr<manager::HotkeyManager> hotkeyManager_ {
|
std::shared_ptr<manager::HotkeyManager> hotkeyManager_ {
|
||||||
manager::HotkeyManager::Instance()};
|
manager::HotkeyManager::Instance()};
|
||||||
|
|
@ -750,7 +765,8 @@ void MainWindowImpl::ConfigureMapStyles()
|
||||||
{
|
{
|
||||||
std::string styleName = mapSettings.map_style(i).GetValue();
|
std::string styleName = mapSettings.map_style(i).GetValue();
|
||||||
|
|
||||||
if (std::find_if(mapProviderInfo.mapStyles_.cbegin(),
|
if ((customStyleAvailable_ && styleName == "Custom") ||
|
||||||
|
std::find_if(mapProviderInfo.mapStyles_.cbegin(),
|
||||||
mapProviderInfo.mapStyles_.cend(),
|
mapProviderInfo.mapStyles_.cend(),
|
||||||
[&](const auto& mapStyle) {
|
[&](const auto& mapStyle) {
|
||||||
return mapStyle.name_ == styleName;
|
return mapStyle.name_ == styleName;
|
||||||
|
|
@ -1262,6 +1278,36 @@ void MainWindowImpl::HandleFocusChange(QWidget* focused)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindowImpl::PopulateCustomMapStyle()
|
||||||
|
{
|
||||||
|
auto& generalSettings = settings::GeneralSettings::Instance();
|
||||||
|
|
||||||
|
auto customStyleUrl = generalSettings.custom_style_url().GetValue();
|
||||||
|
auto customStyleDrawLayer =
|
||||||
|
generalSettings.custom_style_draw_layer().GetValue();
|
||||||
|
|
||||||
|
bool newCustomStyleAvailable =
|
||||||
|
!customStyleUrl.empty() && !customStyleDrawLayer.empty();
|
||||||
|
|
||||||
|
if (newCustomStyleAvailable != customStyleAvailable_)
|
||||||
|
{
|
||||||
|
static const QString kCustom {"Custom"};
|
||||||
|
|
||||||
|
if (newCustomStyleAvailable)
|
||||||
|
{
|
||||||
|
|
||||||
|
mainWindow_->ui->mapStyleComboBox->addItem(kCustom);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
int index = mainWindow_->ui->mapStyleComboBox->findText(kCustom);
|
||||||
|
mainWindow_->ui->mapStyleComboBox->removeItem(index);
|
||||||
|
}
|
||||||
|
|
||||||
|
customStyleAvailable_ = newCustomStyleAvailable;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void MainWindowImpl::PopulateMapStyles()
|
void MainWindowImpl::PopulateMapStyles()
|
||||||
{
|
{
|
||||||
const auto& mapProviderInfo = map::GetMapProviderInfo(mapProvider_);
|
const auto& mapProviderInfo = map::GetMapProviderInfo(mapProvider_);
|
||||||
|
|
@ -1270,6 +1316,22 @@ void MainWindowImpl::PopulateMapStyles()
|
||||||
mainWindow_->ui->mapStyleComboBox->addItem(
|
mainWindow_->ui->mapStyleComboBox->addItem(
|
||||||
QString::fromStdString(mapStyle.name_));
|
QString::fromStdString(mapStyle.name_));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
auto& generalSettings = settings::GeneralSettings::Instance();
|
||||||
|
|
||||||
|
auto& customStyleUrl = generalSettings.custom_style_url();
|
||||||
|
auto& customStyleDrawLayer = generalSettings.custom_style_draw_layer();
|
||||||
|
|
||||||
|
customStyleUrlChangedCallbackUuid_ =
|
||||||
|
customStyleUrl.RegisterValueChangedCallback(
|
||||||
|
[this]([[maybe_unused]] const std::string& value)
|
||||||
|
{ PopulateCustomMapStyle(); });
|
||||||
|
customStyleDrawLayerChangedCallbackUuid_ =
|
||||||
|
customStyleDrawLayer.RegisterValueChangedCallback(
|
||||||
|
[this]([[maybe_unused]] const std::string& value)
|
||||||
|
{ PopulateCustomMapStyle(); });
|
||||||
|
|
||||||
|
PopulateCustomMapStyle();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindowImpl::SelectElevation(map::MapWidget* mapWidget, float elevation)
|
void MainWindowImpl::SelectElevation(map::MapWidget* mapWidget, float elevation)
|
||||||
|
|
|
||||||
|
|
@ -178,6 +178,11 @@ static const std::unordered_map<MapProvider, MapProviderInfo> mapProviderInfo_ {
|
||||||
.drawBelow_ {"aeroway_runway", "Aeroway"}}}}},
|
.drawBelow_ {"aeroway_runway", "Aeroway"}}}}},
|
||||||
{MapProvider::Unknown, MapProviderInfo {}}};
|
{MapProvider::Unknown, MapProviderInfo {}}};
|
||||||
|
|
||||||
|
bool MapStyle::IsValid() const
|
||||||
|
{
|
||||||
|
return !url_.empty() && !drawBelow_.empty();
|
||||||
|
}
|
||||||
|
|
||||||
MapProvider GetMapProvider(const std::string& name)
|
MapProvider GetMapProvider(const std::string& name)
|
||||||
{
|
{
|
||||||
auto result =
|
auto result =
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,8 @@ struct MapStyle
|
||||||
std::string name_;
|
std::string name_;
|
||||||
std::string url_;
|
std::string url_;
|
||||||
std::vector<std::string> drawBelow_;
|
std::vector<std::string> drawBelow_;
|
||||||
|
|
||||||
|
bool IsValid() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct MapProviderInfo
|
struct MapProviderInfo
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,7 @@
|
||||||
#include <boost/algorithm/string/trim.hpp>
|
#include <boost/algorithm/string/trim.hpp>
|
||||||
#include <boost/asio/post.hpp>
|
#include <boost/asio/post.hpp>
|
||||||
#include <boost/asio/thread_pool.hpp>
|
#include <boost/asio/thread_pool.hpp>
|
||||||
|
#include <boost/range/join.hpp>
|
||||||
#include <boost/uuid/random_generator.hpp>
|
#include <boost/uuid/random_generator.hpp>
|
||||||
#include <fmt/format.h>
|
#include <fmt/format.h>
|
||||||
#include <imgui.h>
|
#include <imgui.h>
|
||||||
|
|
@ -117,11 +118,15 @@ public:
|
||||||
// Initialize ImGui Qt backend
|
// Initialize ImGui Qt backend
|
||||||
ImGui_ImplQt_Init();
|
ImGui_ImplQt_Init();
|
||||||
|
|
||||||
|
InitializeCustomStyles();
|
||||||
|
|
||||||
ConnectSignals();
|
ConnectSignals();
|
||||||
}
|
}
|
||||||
|
|
||||||
~MapWidgetImpl()
|
~MapWidgetImpl()
|
||||||
{
|
{
|
||||||
|
DeinitializeCustomStyles();
|
||||||
|
|
||||||
// Set ImGui Context
|
// Set ImGui Context
|
||||||
ImGui::SetCurrentContext(imGuiContext_);
|
ImGui::SetCurrentContext(imGuiContext_);
|
||||||
|
|
||||||
|
|
@ -149,10 +154,12 @@ public:
|
||||||
const std::string& before);
|
const std::string& before);
|
||||||
void ConnectMapSignals();
|
void ConnectMapSignals();
|
||||||
void ConnectSignals();
|
void ConnectSignals();
|
||||||
|
void DeinitializeCustomStyles() const;
|
||||||
void HandleHotkeyPressed(types::Hotkey hotkey, bool isAutoRepeat);
|
void HandleHotkeyPressed(types::Hotkey hotkey, bool isAutoRepeat);
|
||||||
void HandleHotkeyReleased(types::Hotkey hotkey);
|
void HandleHotkeyReleased(types::Hotkey hotkey);
|
||||||
void HandleHotkeyUpdates();
|
void HandleHotkeyUpdates();
|
||||||
void ImGuiCheckFonts();
|
void ImGuiCheckFonts();
|
||||||
|
void InitializeCustomStyles();
|
||||||
void InitializeNewRadarProductView(const std::string& colorPalette);
|
void InitializeNewRadarProductView(const std::string& colorPalette);
|
||||||
void RadarProductManagerConnect();
|
void RadarProductManagerConnect();
|
||||||
void RadarProductManagerDisconnect();
|
void RadarProductManagerDisconnect();
|
||||||
|
|
@ -187,9 +194,15 @@ public:
|
||||||
|
|
||||||
std::vector<std::shared_ptr<GenericLayer>> genericLayers_ {};
|
std::vector<std::shared_ptr<GenericLayer>> genericLayers_ {};
|
||||||
|
|
||||||
|
const std::vector<MapStyle> emptyStyles_ {};
|
||||||
|
std::vector<MapStyle> customStyles_ {
|
||||||
|
MapStyle {.name_ {"Custom"}, .url_ {}, .drawBelow_ {}}};
|
||||||
QStringList styleLayers_;
|
QStringList styleLayers_;
|
||||||
types::LayerVector customLayers_;
|
types::LayerVector customLayers_;
|
||||||
|
|
||||||
|
boost::uuids::uuid customStyleUrlChangedCallbackId_ {};
|
||||||
|
boost::uuids::uuid customStyleDrawBelowChangedCallbackId_ {};
|
||||||
|
|
||||||
ImGuiContext* imGuiContext_;
|
ImGuiContext* imGuiContext_;
|
||||||
std::string imGuiContextName_;
|
std::string imGuiContextName_;
|
||||||
bool imGuiRendererInitialized_;
|
bool imGuiRendererInitialized_;
|
||||||
|
|
@ -269,6 +282,48 @@ MapWidget::~MapWidget()
|
||||||
makeCurrent();
|
makeCurrent();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MapWidgetImpl::InitializeCustomStyles()
|
||||||
|
{
|
||||||
|
auto& generalSettings = settings::GeneralSettings::Instance();
|
||||||
|
|
||||||
|
auto& customStyleUrl = generalSettings.custom_style_url();
|
||||||
|
auto& customStyleDrawLayer = generalSettings.custom_style_draw_layer();
|
||||||
|
|
||||||
|
auto& customStyle = customStyles_.at(0);
|
||||||
|
customStyle.url_ = customStyleUrl.GetValue();
|
||||||
|
customStyle.drawBelow_.push_back(customStyleDrawLayer.GetValue());
|
||||||
|
|
||||||
|
customStyleUrlChangedCallbackId_ =
|
||||||
|
customStyleUrl.RegisterValueChangedCallback(
|
||||||
|
[this](const std::string& url) { customStyles_[0].url_ = url; });
|
||||||
|
customStyleDrawBelowChangedCallbackId_ =
|
||||||
|
customStyleDrawLayer.RegisterValueChangedCallback(
|
||||||
|
[this](const std::string& drawLayer)
|
||||||
|
{
|
||||||
|
if (!drawLayer.empty())
|
||||||
|
{
|
||||||
|
customStyles_[0].drawBelow_ = {drawLayer};
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
customStyles_[0].drawBelow_.clear();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void MapWidgetImpl::DeinitializeCustomStyles() const
|
||||||
|
{
|
||||||
|
auto& generalSettings = settings::GeneralSettings::Instance();
|
||||||
|
|
||||||
|
auto& customStyleUrl = generalSettings.custom_style_url();
|
||||||
|
auto& customStyleDrawLayer = generalSettings.custom_style_draw_layer();
|
||||||
|
|
||||||
|
customStyleUrl.UnregisterValueChangedCallback(
|
||||||
|
customStyleUrlChangedCallbackId_);
|
||||||
|
customStyleDrawLayer.UnregisterValueChangedCallback(
|
||||||
|
customStyleDrawBelowChangedCallbackId_);
|
||||||
|
}
|
||||||
|
|
||||||
void MapWidgetImpl::ConnectMapSignals()
|
void MapWidgetImpl::ConnectMapSignals()
|
||||||
{
|
{
|
||||||
connect(map_.get(),
|
connect(map_.get(),
|
||||||
|
|
@ -283,8 +338,8 @@ void MapWidgetImpl::ConnectMapSignals()
|
||||||
QTextDocument document {};
|
QTextDocument document {};
|
||||||
document.setHtml(copyrightsHtml);
|
document.setHtml(copyrightsHtml);
|
||||||
|
|
||||||
// HTML cannot currently be included in ImGui windows. Where links
|
// HTML cannot currently be included in ImGui windows. Where
|
||||||
// can't be included, remove "Improve this map".
|
// links can't be included, remove "Improve this map".
|
||||||
std::string copyrights {document.toPlainText().toStdString()};
|
std::string copyrights {document.toPlainText().toStdString()};
|
||||||
boost::erase_all(copyrights, "Improve this map");
|
boost::erase_all(copyrights, "Improve this map");
|
||||||
boost::trim_right(copyrights);
|
boost::trim_right(copyrights);
|
||||||
|
|
@ -924,7 +979,16 @@ void MapWidget::SetMapStyle(const std::string& styleName)
|
||||||
{
|
{
|
||||||
const auto mapProvider = p->context_->map_provider();
|
const auto mapProvider = p->context_->map_provider();
|
||||||
const auto& mapProviderInfo = GetMapProviderInfo(mapProvider);
|
const auto& mapProviderInfo = GetMapProviderInfo(mapProvider);
|
||||||
auto& styles = mapProviderInfo.mapStyles_;
|
auto& fixedStyles = mapProviderInfo.mapStyles_;
|
||||||
|
|
||||||
|
auto styles = boost::join(fixedStyles,
|
||||||
|
p->customStyles_[0].IsValid() ? p->customStyles_ :
|
||||||
|
p->emptyStyles_);
|
||||||
|
|
||||||
|
if (p->currentStyleIndex_ >= styles.size())
|
||||||
|
{
|
||||||
|
p->currentStyleIndex_ = 0;
|
||||||
|
}
|
||||||
|
|
||||||
for (size_t i = 0u; i < styles.size(); ++i)
|
for (size_t i = 0u; i < styles.size(); ++i)
|
||||||
{
|
{
|
||||||
|
|
@ -937,7 +1001,7 @@ void MapWidget::SetMapStyle(const std::string& styleName)
|
||||||
|
|
||||||
util::maplibre::SetMapStyleUrl(p->context_, styles[i].url_);
|
util::maplibre::SetMapStyleUrl(p->context_, styles[i].url_);
|
||||||
|
|
||||||
if (++p->currentStyleIndex_ == styles.size())
|
if (++p->currentStyleIndex_ >= styles.size())
|
||||||
{
|
{
|
||||||
p->currentStyleIndex_ = 0;
|
p->currentStyleIndex_ = 0;
|
||||||
}
|
}
|
||||||
|
|
@ -974,7 +1038,16 @@ void MapWidget::changeStyle()
|
||||||
{
|
{
|
||||||
const auto mapProvider = p->context_->map_provider();
|
const auto mapProvider = p->context_->map_provider();
|
||||||
const auto& mapProviderInfo = GetMapProviderInfo(mapProvider);
|
const auto& mapProviderInfo = GetMapProviderInfo(mapProvider);
|
||||||
auto& styles = mapProviderInfo.mapStyles_;
|
auto& fixedStyles = mapProviderInfo.mapStyles_;
|
||||||
|
|
||||||
|
auto styles = boost::join(fixedStyles,
|
||||||
|
p->customStyles_[0].IsValid() ? p->customStyles_ :
|
||||||
|
p->emptyStyles_);
|
||||||
|
|
||||||
|
if (p->currentStyleIndex_ >= styles.size())
|
||||||
|
{
|
||||||
|
p->currentStyleIndex_ = 0;
|
||||||
|
}
|
||||||
|
|
||||||
p->currentStyle_ = &styles[p->currentStyleIndex_];
|
p->currentStyle_ = &styles[p->currentStyleIndex_];
|
||||||
|
|
||||||
|
|
@ -983,7 +1056,7 @@ void MapWidget::changeStyle()
|
||||||
util::maplibre::SetMapStyleUrl(p->context_,
|
util::maplibre::SetMapStyleUrl(p->context_,
|
||||||
styles[p->currentStyleIndex_].url_);
|
styles[p->currentStyleIndex_].url_);
|
||||||
|
|
||||||
if (++p->currentStyleIndex_ == styles.size())
|
if (++p->currentStyleIndex_ >= styles.size())
|
||||||
{
|
{
|
||||||
p->currentStyleIndex_ = 0;
|
p->currentStyleIndex_ = 0;
|
||||||
}
|
}
|
||||||
|
|
@ -1011,7 +1084,16 @@ std::string MapWidgetImpl::FindMapSymbologyLayer()
|
||||||
{
|
{
|
||||||
// Perform case-insensitive matching
|
// Perform case-insensitive matching
|
||||||
RE2 re {"(?i)" + styleLayer};
|
RE2 re {"(?i)" + styleLayer};
|
||||||
return RE2::FullMatch(layer, re);
|
if (re.ok())
|
||||||
|
{
|
||||||
|
return RE2::FullMatch(layer, re);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Fall back to basic comparison if RE
|
||||||
|
// doesn't compile
|
||||||
|
return layer == styleLayer;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if (it != currentStyle_->drawBelow_.cend())
|
if (it != currentStyle_->drawBelow_.cend())
|
||||||
|
|
@ -1618,8 +1700,8 @@ void MapWidgetImpl::RadarProductManagerConnect()
|
||||||
// Select loaded record
|
// Select loaded record
|
||||||
auto record = request->radar_product_record();
|
auto record = request->radar_product_record();
|
||||||
|
|
||||||
// Validate record, and verify current map context still
|
// Validate record, and verify current map context
|
||||||
// displays site and product
|
// still displays site and product
|
||||||
if (record != nullptr &&
|
if (record != nullptr &&
|
||||||
radarProductManager_ != nullptr &&
|
radarProductManager_ != nullptr &&
|
||||||
radarProductManager_->radar_id() ==
|
radarProductManager_->radar_id() ==
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue