mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 15:30:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			184 lines
		
	
	
	
		
			4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			184 lines
		
	
	
	
		
			4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include <scwx/qt/map/map_context.hpp>
 | 
						|
#include <scwx/qt/map/map_settings.hpp>
 | 
						|
#include <scwx/qt/view/overlay_product_view.hpp>
 | 
						|
#include <scwx/qt/view/radar_product_view.hpp>
 | 
						|
 | 
						|
namespace scwx
 | 
						|
{
 | 
						|
namespace qt
 | 
						|
{
 | 
						|
namespace map
 | 
						|
{
 | 
						|
 | 
						|
class MapContext::Impl
 | 
						|
{
 | 
						|
public:
 | 
						|
   explicit Impl(std::shared_ptr<view::RadarProductView> radarProductView) :
 | 
						|
       radarProductView_ {radarProductView}
 | 
						|
   {
 | 
						|
   }
 | 
						|
 | 
						|
   ~Impl() {}
 | 
						|
 | 
						|
   std::weak_ptr<QMapLibre::Map> map_ {};
 | 
						|
   MapSettings                   settings_ {};
 | 
						|
   float                         pixelRatio_ {1.0f};
 | 
						|
   common::RadarProductGroup     radarProductGroup_ {
 | 
						|
      common::RadarProductGroup::Unknown};
 | 
						|
   std::string                            radarProduct_ {"???"};
 | 
						|
   int16_t                                radarProductCode_ {0};
 | 
						|
   QMapLibre::CustomLayerRenderParameters renderParameters_ {};
 | 
						|
 | 
						|
   MapProvider mapProvider_ {MapProvider::Unknown};
 | 
						|
   std::string mapCopyrights_ {};
 | 
						|
 | 
						|
   QMargins           colorTableMargins_ {};
 | 
						|
   common::Coordinate mouseCoordinate_ {};
 | 
						|
 | 
						|
   std::shared_ptr<view::OverlayProductView> overlayProductView_ {nullptr};
 | 
						|
   std::shared_ptr<view::RadarProductView>   radarProductView_;
 | 
						|
};
 | 
						|
 | 
						|
MapContext::MapContext(
 | 
						|
   std::shared_ptr<view::RadarProductView> radarProductView) :
 | 
						|
    p(std::make_unique<Impl>(radarProductView))
 | 
						|
{
 | 
						|
}
 | 
						|
MapContext::~MapContext() = default;
 | 
						|
 | 
						|
MapContext::MapContext(MapContext&&) noexcept            = default;
 | 
						|
MapContext& MapContext::operator=(MapContext&&) noexcept = default;
 | 
						|
 | 
						|
std::weak_ptr<QMapLibre::Map> MapContext::map() const
 | 
						|
{
 | 
						|
   return p->map_;
 | 
						|
}
 | 
						|
 | 
						|
std::string MapContext::map_copyrights() const
 | 
						|
{
 | 
						|
   return p->mapCopyrights_;
 | 
						|
}
 | 
						|
 | 
						|
MapProvider MapContext::map_provider() const
 | 
						|
{
 | 
						|
   return p->mapProvider_;
 | 
						|
}
 | 
						|
 | 
						|
MapSettings& MapContext::settings()
 | 
						|
{
 | 
						|
   return p->settings_;
 | 
						|
}
 | 
						|
 | 
						|
QMargins MapContext::color_table_margins() const
 | 
						|
{
 | 
						|
   return p->colorTableMargins_;
 | 
						|
}
 | 
						|
 | 
						|
float MapContext::pixel_ratio() const
 | 
						|
{
 | 
						|
   return p->pixelRatio_;
 | 
						|
}
 | 
						|
 | 
						|
common::Coordinate MapContext::mouse_coordinate() const
 | 
						|
{
 | 
						|
   return p->mouseCoordinate_;
 | 
						|
}
 | 
						|
 | 
						|
std::shared_ptr<view::OverlayProductView>
 | 
						|
MapContext::overlay_product_view() const
 | 
						|
{
 | 
						|
   return p->overlayProductView_;
 | 
						|
}
 | 
						|
 | 
						|
std::shared_ptr<view::RadarProductView> MapContext::radar_product_view() const
 | 
						|
{
 | 
						|
   return p->radarProductView_;
 | 
						|
}
 | 
						|
 | 
						|
common::RadarProductGroup MapContext::radar_product_group() const
 | 
						|
{
 | 
						|
   return p->radarProductGroup_;
 | 
						|
}
 | 
						|
 | 
						|
std::string MapContext::radar_product() const
 | 
						|
{
 | 
						|
   return p->radarProduct_;
 | 
						|
}
 | 
						|
 | 
						|
int16_t MapContext::radar_product_code() const
 | 
						|
{
 | 
						|
   return p->radarProductCode_;
 | 
						|
}
 | 
						|
 | 
						|
QMapLibre::CustomLayerRenderParameters MapContext::render_parameters() const
 | 
						|
{
 | 
						|
   return p->renderParameters_;
 | 
						|
}
 | 
						|
 | 
						|
void MapContext::set_map(const std::shared_ptr<QMapLibre::Map>& map)
 | 
						|
{
 | 
						|
   p->map_ = map;
 | 
						|
}
 | 
						|
 | 
						|
void MapContext::set_map_copyrights(const std::string& copyrights)
 | 
						|
{
 | 
						|
   p->mapCopyrights_ = copyrights;
 | 
						|
}
 | 
						|
 | 
						|
void MapContext::set_map_provider(MapProvider provider)
 | 
						|
{
 | 
						|
   p->mapProvider_ = provider;
 | 
						|
}
 | 
						|
 | 
						|
void MapContext::set_color_table_margins(const QMargins& margins)
 | 
						|
{
 | 
						|
   p->colorTableMargins_ = margins;
 | 
						|
}
 | 
						|
 | 
						|
void MapContext::set_mouse_coordinate(const common::Coordinate& coordinate)
 | 
						|
{
 | 
						|
   p->mouseCoordinate_ = coordinate;
 | 
						|
}
 | 
						|
 | 
						|
void MapContext::set_overlay_product_view(
 | 
						|
   const std::shared_ptr<view::OverlayProductView>& overlayProductView)
 | 
						|
{
 | 
						|
   p->overlayProductView_ = overlayProductView;
 | 
						|
}
 | 
						|
 | 
						|
void MapContext::set_pixel_ratio(float pixelRatio)
 | 
						|
{
 | 
						|
   p->pixelRatio_ = pixelRatio;
 | 
						|
}
 | 
						|
 | 
						|
void MapContext::set_radar_product_view(
 | 
						|
   const std::shared_ptr<view::RadarProductView>& radarProductView)
 | 
						|
{
 | 
						|
   p->radarProductView_ = radarProductView;
 | 
						|
}
 | 
						|
 | 
						|
void MapContext::set_radar_product_group(
 | 
						|
   common::RadarProductGroup radarProductGroup)
 | 
						|
{
 | 
						|
   p->radarProductGroup_ = radarProductGroup;
 | 
						|
}
 | 
						|
 | 
						|
void MapContext::set_radar_product(const std::string& radarProduct)
 | 
						|
{
 | 
						|
   p->radarProduct_ = radarProduct;
 | 
						|
}
 | 
						|
 | 
						|
void MapContext::set_radar_product_code(int16_t radarProductCode)
 | 
						|
{
 | 
						|
   p->radarProductCode_ = radarProductCode;
 | 
						|
}
 | 
						|
 | 
						|
void MapContext::set_render_parameters(
 | 
						|
   const QMapLibre::CustomLayerRenderParameters& params)
 | 
						|
{
 | 
						|
   p->renderParameters_ = params;
 | 
						|
}
 | 
						|
 | 
						|
} // namespace map
 | 
						|
} // namespace qt
 | 
						|
} // namespace scwx
 |