mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 14:50:05 +00:00
328 lines
9.8 KiB
C++
328 lines
9.8 KiB
C++
#include <scwx/qt/map/placefile_layer.hpp>
|
|
#include <scwx/qt/gl/draw/placefile_icons.hpp>
|
|
#include <scwx/qt/gl/draw/placefile_polygons.hpp>
|
|
#include <scwx/qt/manager/placefile_manager.hpp>
|
|
#include <scwx/qt/manager/resource_manager.hpp>
|
|
#include <scwx/qt/manager/settings_manager.hpp>
|
|
#include <scwx/qt/util/maplibre.hpp>
|
|
#include <scwx/common/geographic.hpp>
|
|
#include <scwx/util/logger.hpp>
|
|
|
|
#include <boost/units/base_units/metric/nautical_mile.hpp>
|
|
#include <fmt/format.h>
|
|
#include <imgui.h>
|
|
#include <mbgl/util/constants.hpp>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace qt
|
|
{
|
|
namespace map
|
|
{
|
|
|
|
static const std::string logPrefix_ = "scwx::qt::map::placefile_layer";
|
|
static const auto logger_ = scwx::util::Logger::Create(logPrefix_);
|
|
|
|
class PlacefileLayer::Impl
|
|
{
|
|
public:
|
|
explicit Impl(PlacefileLayer* self,
|
|
std::shared_ptr<MapContext> context,
|
|
const std::string& placefileName) :
|
|
self_ {self},
|
|
placefileName_ {placefileName},
|
|
placefileIcons_ {std::make_shared<gl::draw::PlacefileIcons>(context)},
|
|
placefilePolygons_ {
|
|
std::make_shared<gl::draw::PlacefilePolygons>(context)}
|
|
{
|
|
ConnectSignals();
|
|
}
|
|
~Impl() = default;
|
|
|
|
void ConnectSignals();
|
|
|
|
void AddIcon(const std::shared_ptr<gr::Placefile::IconDrawItem>& di);
|
|
void AddPolygon(const std::shared_ptr<gr::Placefile::PolygonDrawItem>& di);
|
|
void
|
|
RenderTextDrawItem(const QMapLibreGL::CustomLayerRenderParameters& params,
|
|
const std::shared_ptr<gr::Placefile::TextDrawItem>& di);
|
|
|
|
void RenderText(const QMapLibreGL::CustomLayerRenderParameters& params,
|
|
const std::string& text,
|
|
const std::string& hoverText,
|
|
boost::gil::rgba8_pixel_t color,
|
|
float x,
|
|
float y);
|
|
|
|
PlacefileLayer* self_;
|
|
|
|
std::string placefileName_;
|
|
bool dirty_ {true};
|
|
|
|
std::uint32_t textId_ {};
|
|
glm::vec2 mapScreenCoordLocation_ {};
|
|
float mapScale_ {1.0f};
|
|
float mapBearingCos_ {1.0f};
|
|
float mapBearingSin_ {0.0f};
|
|
float halfWidth_ {};
|
|
float halfHeight_ {};
|
|
bool thresholded_ {true};
|
|
ImFont* monospaceFont_ {};
|
|
|
|
boost::units::quantity<boost::units::si::length> mapDistance_ {};
|
|
|
|
std::shared_ptr<gl::draw::PlacefileIcons> placefileIcons_;
|
|
std::shared_ptr<gl::draw::PlacefilePolygons> placefilePolygons_;
|
|
};
|
|
|
|
PlacefileLayer::PlacefileLayer(std::shared_ptr<MapContext> context,
|
|
const std::string& placefileName) :
|
|
DrawLayer(context),
|
|
p(std::make_unique<PlacefileLayer::Impl>(this, context, placefileName))
|
|
{
|
|
AddDrawItem(p->placefileIcons_);
|
|
AddDrawItem(p->placefilePolygons_);
|
|
}
|
|
|
|
PlacefileLayer::~PlacefileLayer() = default;
|
|
|
|
void PlacefileLayer::Impl::ConnectSignals()
|
|
{
|
|
auto placefileManager = manager::PlacefileManager::Instance();
|
|
|
|
QObject::connect(placefileManager.get(),
|
|
&manager::PlacefileManager::PlacefileUpdated,
|
|
self_,
|
|
[this](const std::string& name)
|
|
{
|
|
if (name == placefileName_)
|
|
{
|
|
dirty_ = true;
|
|
}
|
|
});
|
|
}
|
|
|
|
std::string PlacefileLayer::placefile_name() const
|
|
{
|
|
return p->placefileName_;
|
|
}
|
|
|
|
void PlacefileLayer::set_placefile_name(const std::string& placefileName)
|
|
{
|
|
p->placefileName_ = placefileName;
|
|
p->dirty_ = true;
|
|
}
|
|
|
|
void PlacefileLayer::Initialize()
|
|
{
|
|
logger_->debug("Initialize()");
|
|
|
|
DrawLayer::Initialize();
|
|
}
|
|
|
|
void PlacefileLayer::Impl::AddIcon(
|
|
const std::shared_ptr<gr::Placefile::IconDrawItem>& di)
|
|
{
|
|
if (!dirty_)
|
|
{
|
|
return;
|
|
}
|
|
|
|
placefileIcons_->AddIcon(di);
|
|
}
|
|
|
|
void PlacefileLayer::Impl::AddPolygon(
|
|
const std::shared_ptr<gr::Placefile::PolygonDrawItem>& di)
|
|
{
|
|
if (!dirty_)
|
|
{
|
|
return;
|
|
};
|
|
|
|
placefilePolygons_->AddPolygon(di);
|
|
}
|
|
|
|
void PlacefileLayer::Impl::RenderTextDrawItem(
|
|
const QMapLibreGL::CustomLayerRenderParameters& params,
|
|
const std::shared_ptr<gr::Placefile::TextDrawItem>& di)
|
|
{
|
|
if (!thresholded_ || mapDistance_ <= di->threshold_)
|
|
{
|
|
const auto screenCoordinates = (util::maplibre::LatLongToScreenCoordinate(
|
|
{di->latitude_, di->longitude_}) -
|
|
mapScreenCoordLocation_) *
|
|
mapScale_;
|
|
|
|
// Rotate text according to map rotation
|
|
float rotatedX = screenCoordinates.x;
|
|
float rotatedY = screenCoordinates.y;
|
|
if (params.bearing != 0.0)
|
|
{
|
|
rotatedX = screenCoordinates.x * mapBearingCos_ -
|
|
screenCoordinates.y * mapBearingSin_;
|
|
rotatedY = screenCoordinates.x * mapBearingSin_ +
|
|
screenCoordinates.y * mapBearingCos_;
|
|
}
|
|
|
|
RenderText(params,
|
|
di->text_,
|
|
di->hoverText_,
|
|
di->color_,
|
|
rotatedX + di->x_ + halfWidth_,
|
|
rotatedY + di->y_ + halfHeight_);
|
|
}
|
|
}
|
|
|
|
void PlacefileLayer::Impl::RenderText(
|
|
const QMapLibreGL::CustomLayerRenderParameters& params,
|
|
const std::string& text,
|
|
const std::string& hoverText,
|
|
boost::gil::rgba8_pixel_t color,
|
|
float x,
|
|
float y)
|
|
{
|
|
const std::string windowName {
|
|
fmt::format("PlacefileText-{}-{}", placefileName_, ++textId_)};
|
|
|
|
// Convert screen to ImGui coordinates
|
|
y = params.height - y;
|
|
|
|
// Setup "window" to hold text
|
|
ImGui::SetNextWindowPos(
|
|
ImVec2 {x, y}, ImGuiCond_Always, ImVec2 {0.5f, 0.5f});
|
|
ImGui::Begin(windowName.c_str(),
|
|
nullptr,
|
|
ImGuiWindowFlags_AlwaysAutoResize |
|
|
ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_NoNav |
|
|
ImGuiWindowFlags_NoBackground);
|
|
|
|
// Render text
|
|
ImGui::PushStyleColor(ImGuiCol_Text,
|
|
IM_COL32(color[0], color[1], color[2], color[3]));
|
|
ImGui::TextUnformatted(text.c_str());
|
|
ImGui::PopStyleColor();
|
|
|
|
// Create tooltip for hover text
|
|
if (!hoverText.empty() && ImGui::IsItemHovered())
|
|
{
|
|
ImGui::BeginTooltip();
|
|
ImGui::PushFont(monospaceFont_);
|
|
ImGui::TextUnformatted(hoverText.c_str());
|
|
ImGui::PopFont();
|
|
ImGui::EndTooltip();
|
|
}
|
|
|
|
// End window
|
|
ImGui::End();
|
|
}
|
|
|
|
void PlacefileLayer::Render(
|
|
const QMapLibreGL::CustomLayerRenderParameters& params)
|
|
{
|
|
gl::OpenGLFunctions& gl = context()->gl();
|
|
|
|
// Set OpenGL blend mode for transparency
|
|
gl.glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
// Reset text ID per frame
|
|
p->textId_ = 0;
|
|
|
|
// Update map screen coordinate and scale information
|
|
p->mapScreenCoordLocation_ = util::maplibre::LatLongToScreenCoordinate(
|
|
{params.latitude, params.longitude});
|
|
p->mapScale_ = std::pow(2.0, params.zoom) * mbgl::util::tileSize_D /
|
|
mbgl::util::DEGREES_MAX;
|
|
p->mapBearingCos_ = cosf(params.bearing * common::kDegreesToRadians);
|
|
p->mapBearingSin_ = sinf(params.bearing * common::kDegreesToRadians);
|
|
p->halfWidth_ = params.width * 0.5f;
|
|
p->halfHeight_ = params.height * 0.5f;
|
|
p->mapDistance_ = util::maplibre::GetMapDistance(params);
|
|
|
|
// Get monospace font pointer
|
|
std::size_t fontSize = 16;
|
|
auto fontSizes =
|
|
manager::SettingsManager::general_settings().font_sizes().GetValue();
|
|
if (fontSizes.size() > 1)
|
|
{
|
|
fontSize = fontSizes[1];
|
|
}
|
|
else if (fontSizes.size() > 0)
|
|
{
|
|
fontSize = fontSizes[0];
|
|
}
|
|
auto monospace =
|
|
manager::ResourceManager::Font(types::Font::Inconsolata_Regular);
|
|
p->monospaceFont_ = monospace->ImGuiFont(fontSize);
|
|
|
|
std::shared_ptr<manager::PlacefileManager> placefileManager =
|
|
manager::PlacefileManager::Instance();
|
|
|
|
auto placefile = placefileManager->placefile(p->placefileName_);
|
|
|
|
// Render placefile
|
|
if (placefile != nullptr)
|
|
{
|
|
p->thresholded_ =
|
|
placefileManager->placefile_thresholded(placefile->name());
|
|
p->placefileIcons_->set_thresholded(p->thresholded_);
|
|
p->placefilePolygons_->set_thresholded(p->thresholded_);
|
|
|
|
if (p->dirty_)
|
|
{
|
|
// Reset Placefile Icons
|
|
p->placefileIcons_->Reset();
|
|
p->placefileIcons_->SetIconFiles(placefile->icon_files(),
|
|
placefile->name());
|
|
|
|
// Reset Placefile Polygons
|
|
p->placefilePolygons_->StartPolygons();
|
|
}
|
|
|
|
for (auto& drawItem : placefile->GetDrawItems())
|
|
{
|
|
switch (drawItem->itemType_)
|
|
{
|
|
case gr::Placefile::ItemType::Text:
|
|
p->RenderTextDrawItem(
|
|
params,
|
|
std::static_pointer_cast<gr::Placefile::TextDrawItem>(drawItem));
|
|
break;
|
|
|
|
case gr::Placefile::ItemType::Icon:
|
|
p->AddIcon(
|
|
std::static_pointer_cast<gr::Placefile::IconDrawItem>(drawItem));
|
|
break;
|
|
|
|
case gr::Placefile::ItemType::Polygon:
|
|
p->AddPolygon(
|
|
std::static_pointer_cast<gr::Placefile::PolygonDrawItem>(
|
|
drawItem));
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (p->dirty_)
|
|
{
|
|
// Finish Placefile Polygons
|
|
p->placefilePolygons_->FinishPolygons();
|
|
}
|
|
}
|
|
|
|
DrawLayer::Render(params);
|
|
|
|
SCWX_GL_CHECK_ERROR();
|
|
}
|
|
|
|
void PlacefileLayer::Deinitialize()
|
|
{
|
|
logger_->debug("Deinitialize()");
|
|
|
|
DrawLayer::Deinitialize();
|
|
}
|
|
|
|
} // namespace map
|
|
} // namespace qt
|
|
} // namespace scwx
|