diff --git a/drape_frontend/color_constants.cpp b/drape_frontend/color_constants.cpp new file mode 100644 index 0000000000..6fd3d0abe4 --- /dev/null +++ b/drape_frontend/color_constants.cpp @@ -0,0 +1,56 @@ +#include "drape_frontend/color_constants.hpp" + +#include "base/assert.hpp" + +#include "std/array.hpp" +#include "std/unordered_map.hpp" + +namespace df +{ + +unordered_map> kColorConstants = +{ + { MapStyleClear, + { + { DownloadButton, dp::Color(0, 0, 0, 0.44 * 255) }, + { DownloadButtonRouting, dp::Color(32, 152, 82, 255) }, + { DownloadButtonPressed, dp::Color(0, 0, 0, 0.72 * 255) }, + { DownloadButtonRoutingPressed, dp::Color(24, 128, 68, 255) }, + { GuiText, dp::Color(0x4D, 0x4D, 0x4D, 0xDD) }, + { MyPositionAccuracy, dp::Color(30, 150, 240, 20) }, + { Selection, dp::Color(0x17, 0xBF, 0x8E, 0x6F) }, + { Route, dp::Color(30, 150, 240, 204) }, + { RoutePedestrian, dp::Color(5, 105, 175, 204) }, + } + }, + { MapStyleDark, + { + { DownloadButton, dp::Color(0, 0, 0, 0.44 * 255) }, + { DownloadButtonRouting, dp::Color(32, 152, 82, 255) }, + { DownloadButtonPressed, dp::Color(0, 0, 0, 0.72 * 255) }, + { DownloadButtonRoutingPressed, dp::Color(24, 128, 68, 255) }, + { GuiText, dp::Color(0x4D, 0x4D, 0x4D, 0xDD) }, + { MyPositionAccuracy, dp::Color(30, 150, 240, 20) }, + { Selection, dp::Color(0x17, 0xBF, 0x8E, 0x6F) }, + { Route, dp::Color(30, 150, 240, 204) }, + { RoutePedestrian, dp::Color(5, 105, 175, 204) }, + } + }, +}; + +dp::Color GetColorConstant(MapStyle style, ColorConstant constant) +{ + // "Light" and "clear" theme share the same colors. + if (style == MapStyle::MapStyleLight) + style = MapStyle::MapStyleClear; + + int const styleIndex = static_cast(style); + int const colorIndex = static_cast(constant); + + ASSERT(kColorConstants.find(styleIndex) != kColorConstants.end(), ()); + ASSERT(kColorConstants[styleIndex].find(colorIndex) != kColorConstants[styleIndex].end(), ()); + + return kColorConstants[styleIndex][colorIndex]; +} + +} // namespace df diff --git a/drape_frontend/color_constants.hpp b/drape_frontend/color_constants.hpp new file mode 100644 index 0000000000..1d2ad01082 --- /dev/null +++ b/drape_frontend/color_constants.hpp @@ -0,0 +1,25 @@ +#pragma once + +#include "drape/color.hpp" + +#include "indexer/map_style.hpp" + +namespace df +{ + +enum ColorConstant +{ + DownloadButton, + DownloadButtonRouting, + DownloadButtonPressed, + DownloadButtonRoutingPressed, + GuiText, + MyPositionAccuracy, + Selection, + Route, + RoutePedestrian, +}; + +dp::Color GetColorConstant(MapStyle style, ColorConstant constant); + +} // namespace df diff --git a/drape_frontend/drape_frontend.pro b/drape_frontend/drape_frontend.pro index 5c9dae59bb..0561c426d7 100755 --- a/drape_frontend/drape_frontend.pro +++ b/drape_frontend/drape_frontend.pro @@ -38,6 +38,7 @@ SOURCES += \ base_renderer.cpp \ batchers_pool.cpp \ circle_shape.cpp \ + color_constants.cpp \ drape_engine.cpp \ engine_context.cpp \ framebuffer.cpp \ @@ -124,6 +125,7 @@ HEADERS += \ base_renderer.hpp \ batchers_pool.hpp \ circle_shape.hpp \ + color_constants.hpp \ drape_engine.hpp \ engine_context.hpp \ framebuffer.hpp \ diff --git a/drape_frontend/gui/country_status.cpp b/drape_frontend/gui/country_status.cpp index daea647abf..1b5e1ca936 100644 --- a/drape_frontend/gui/country_status.cpp +++ b/drape_frontend/gui/country_status.cpp @@ -3,11 +3,14 @@ #include "drape_gui.hpp" #include "gui_text.hpp" +#include "drape_frontend/color_constants.hpp" #include "drape_frontend/visual_params.hpp" #include "drape/batcher.hpp" #include "drape/glsl_func.hpp" +#include "indexer/map_style_reader.hpp" + #include "std/algorithm.hpp" #include "std/bind.hpp" @@ -211,12 +214,13 @@ drape_ptr CountryStatus::Draw(ref_ptr tex, params.m_margin = 5.0f * visualScale; params.m_facet = 8.0f * visualScale; - auto color = dp::Color(0, 0, 0, 0.44 * 255); - auto pressedColor = dp::Color(0, 0, 0, 0.72 * 255); + MapStyle style = GetStyleReader().GetCurrentStyle(); + auto color = df::GetColorConstant(style, df::DownloadButton); + auto pressedColor = df::GetColorConstant(style, df::DownloadButtonPressed); if (control.m_buttonType == CountryStatusHelper::BUTTON_TYPE_MAP_ROUTING) { - color = dp::Color(32, 152, 82, 255); - pressedColor = dp::Color(24, 128, 68, 255); + color = df::GetColorConstant(style, df::DownloadButtonRouting); + pressedColor = df::GetColorConstant(style, df::DownloadButtonRoutingPressed); } auto const buttonHandlerIt = buttonHandlers.find(control.m_buttonType); diff --git a/drape_frontend/gui/drape_gui.cpp b/drape_frontend/gui/drape_gui.cpp index e3a565edc0..55f31a72ae 100644 --- a/drape_frontend/gui/drape_gui.cpp +++ b/drape_frontend/gui/drape_gui.cpp @@ -2,8 +2,11 @@ #include "drape_gui.hpp" #include "ruler_helper.hpp" +#include "drape_frontend/color_constants.hpp" #include "drape_frontend/visual_params.hpp" +#include "indexer/map_style_reader.hpp" + #include "base/assert.hpp" namespace gui @@ -42,10 +45,9 @@ CountryStatusHelper & DrapeGui::GetCountryStatusHelper() return Instance().GetCountryStatusHelperImpl(); } -dp::FontDecl const & DrapeGui::GetGuiTextFont() +dp::FontDecl DrapeGui::GetGuiTextFont() { - static dp::FontDecl font(dp::Color(0x4D, 0x4D, 0x4D, 0xDD), 14); - return font; + return dp::FontDecl(df::GetColorConstant(GetStyleReader().GetCurrentStyle(), df::GuiText), 14); } void DrapeGui::Destroy() diff --git a/drape_frontend/gui/drape_gui.hpp b/drape_frontend/gui/drape_gui.hpp index 4e4b35ad35..16c789ab04 100644 --- a/drape_frontend/gui/drape_gui.hpp +++ b/drape_frontend/gui/drape_gui.hpp @@ -31,7 +31,7 @@ public: static RulerHelper & GetRulerHelper(); static CountryStatusHelper & GetCountryStatusHelper(); - static dp::FontDecl const & GetGuiTextFont(); + static dp::FontDecl GetGuiTextFont(); void SetLocalizator(TLocalizeStringFn const & fn); void Destroy(); diff --git a/drape_frontend/my_position.cpp b/drape_frontend/my_position.cpp index 52f3a9dd50..925d6e0a15 100644 --- a/drape_frontend/my_position.cpp +++ b/drape_frontend/my_position.cpp @@ -1,4 +1,5 @@ -#include "my_position.hpp" +#include "drape_frontend/my_position.hpp" +#include "drape_frontend/color_constants.hpp" #include "drape/depth_constants.hpp" #include "drape/glsl_func.hpp" @@ -7,6 +8,8 @@ #include "drape/render_bucket.hpp" #include "drape/shader_def.hpp" +#include "indexer/map_style_reader.hpp" + namespace df { @@ -128,7 +131,7 @@ void MyPosition::CacheAccuracySector(ref_ptr mng) float const etalonSector = math::twicePi / static_cast(TriangleCount); dp::TextureManager::ColorRegion color; - mng->GetColorRegion(dp::Color(30, 150, 240, 20), color); + mng->GetColorRegion(df::GetColorConstant(GetStyleReader().GetCurrentStyle(), df::MyPositionAccuracy), color); glsl::vec2 colorCoord = glsl::ToVec2(color.GetTexRect().Center()); buffer_vector buffer; diff --git a/drape_frontend/selection_shape.cpp b/drape_frontend/selection_shape.cpp index ec2fde739d..dd5a6ebb4d 100644 --- a/drape_frontend/selection_shape.cpp +++ b/drape_frontend/selection_shape.cpp @@ -1,5 +1,6 @@ -#include "selection_shape.hpp" -#include "visual_params.hpp" +#include "drape_frontend/selection_shape.hpp" +#include "drape_frontend/color_constants.hpp" +#include "drape_frontend/visual_params.hpp" #include "drape/attribute_provider.hpp" #include "drape/batcher.hpp" @@ -11,6 +12,8 @@ #include "drape/texture_manager.hpp" #include "drape/uniform_values_storage.hpp" +#include "indexer/map_style_reader.hpp" + namespace df { @@ -63,7 +66,7 @@ SelectionShape::SelectionShape(ref_ptr mng) float const etalonSector = math::twicePi / static_cast(TriangleCount); dp::TextureManager::ColorRegion color; - mng->GetColorRegion(dp::Color(0x17, 0xBF, 0x8E, 0x6F), color); + mng->GetColorRegion(df::GetColorConstant(GetStyleReader().GetCurrentStyle(), df::Selection), color); glsl::vec2 colorCoord = glsl::ToVec2(color.GetTexRect().Center()); buffer_vector buffer; diff --git a/map/framework.cpp b/map/framework.cpp index d7a036d944..4d8b687a8f 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -18,9 +18,11 @@ #include "search/search_engine.hpp" #include "search/search_query_factory.hpp" +#include "drape_frontend/color_constants.hpp" #include "drape_frontend/gps_track_point.hpp" #include "drape_frontend/gui/country_status_helper.hpp" #include "drape_frontend/visual_params.hpp" +#include "drape_frontend/gui/country_status_helper.hpp" #include "drape_frontend/watch/cpu_drawer.hpp" #include "drape_frontend/watch/feature_processor.hpp" @@ -2043,9 +2045,9 @@ void Framework::InsertRoute(Route const & route) dp::Color routeColor; if (m_currentRouterType == RouterType::Pedestrian) - routeColor = dp::Color(5, 105, 175, 204); + routeColor = df::GetColorConstant(GetMapStyle(), df::RoutePedestrian); else - routeColor = dp::Color(30, 150, 240, 204); + routeColor = df::GetColorConstant(GetMapStyle(), df::Route); m_drapeEngine->AddRoute(route.GetPoly(), turns, routeColor); }