diff --git a/map/chart_generator.cpp b/map/chart_generator.cpp index 8f821667a1..da9f704172 100644 --- a/map/chart_generator.cpp +++ b/map/chart_generator.cpp @@ -47,6 +47,38 @@ struct BlendAdaptor } } }; + +agg::rgba8 GetLineColor(MapStyle mapStyle) +{ + switch (mapStyle) + { + case MapStyleCount: + LOG(LERROR, ("Wrong map style param.")); + // No need break or return here. + case MapStyleDark: + return agg::rgba8(255, 230, 140, 255); + case MapStyleLight: + case MapStyleClear: + case MapStyleMerged: + return agg::rgba8(30, 150, 240, 255); + } +} + +agg::rgba8 GetCurveColor(MapStyle mapStyle) +{ + switch (mapStyle) + { + case MapStyleCount: + LOG(LERROR, ("Wrong map style param.")); + // No need break or return here. + case MapStyleDark: + return agg::rgba8(255, 230, 140, 20); + case MapStyleLight: + case MapStyleClear: + case MapStyleMerged: + return agg::rgba8(30, 150, 240, 20); + } +} } // namespace namespace maps @@ -82,13 +114,8 @@ bool NormalizeChartData(vector const & distanceDataM, return static_cast(altitudeDataM.back()); auto const lowerIt = lower_bound(distanceDataM.cbegin(), distanceDataM.cend(), distFormStartM); - if (lowerIt == distanceDataM.cbegin()) - return static_cast(altitudeDataM.front()); - if (lowerIt == distanceDataM.cend()) - return static_cast(altitudeDataM.back()); - size_t const nextPointIdx = distance(distanceDataM.cbegin(), lowerIt); - CHECK_LESS(0, nextPointIdx, ("distFormStartM is greater than 0 but nextPointIdx == 0.")); + ASSERT_LESS(0, nextPointIdx, ("distFormStartM is greater than 0 but nextPointIdx == 0.")); size_t const prevPointIdx = nextPointIdx - 1; if (my::AlmostEqualAbs(distanceDataM[prevPointIdx], distanceDataM[nextPointIdx], kEpsilon)) @@ -102,13 +129,8 @@ bool NormalizeChartData(vector const & distanceDataM, double const routeLenM = distanceDataM.back(); uniformAltitudeDataM.resize(resultPointCount); - if (resultPointCount == 1) - { - uniformAltitudeDataM[0] = calculateAltitude(routeLenM / 2.0); - return true; - } + double const stepLenM = resultPointCount <= 1 ? 0.0 : routeLenM / (resultPointCount - 1); - double const stepLenM = routeLenM / static_cast(resultPointCount - 1); for (size_t i = 0; i < resultPointCount; ++i) uniformAltitudeDataM[i] = calculateAltitude(static_cast(i) * stepLenM); @@ -123,44 +145,43 @@ bool GenerateYAxisChartData(uint32_t height, double minMetersPerPxl, return true; uint32_t constexpr kHeightIndentPxl = 2; - uint32_t heightIndent = kHeightIndentPxl; + uint32_t heightIndentPxl = kHeightIndentPxl; if (height <= 2 * kHeightIndentPxl) { LOG(LERROR, ("Chart height is less or equal than 2 * kHeightIndentPxl (", 2 * kHeightIndentPxl, ")")); - heightIndent = 0; + heightIndentPxl = 0; } auto const minMaxAltitudeIt = minmax_element(altitudeDataM.begin(), altitudeDataM.end()); double const minAltM = *minMaxAltitudeIt.first; double const maxAltM = *minMaxAltitudeIt.second; double const deltaAltM = maxAltM - minAltM; - uint32_t const drawHeightPxl = height - 2 * heightIndent; - double const meterPerPxl = max(minMetersPerPxl, deltaAltM / static_cast(drawHeightPxl)); - if (meterPerPxl == 0.0) + uint32_t const drawHeightPxl = height - 2 * heightIndentPxl; + double const metersPerPxl = max(minMetersPerPxl, deltaAltM / static_cast(drawHeightPxl)); + if (metersPerPxl == 0.0) { - LOG(LERROR, ("meterPerPxl == 0.0")); + LOG(LERROR, ("metersPerPxl == 0.0")); return false; } size_t const altitudeDataSz = altitudeDataM.size(); yAxisDataPxl.resize(altitudeDataSz); for (size_t i = 0; i < altitudeDataSz; ++i) - yAxisDataPxl[i] = height - heightIndent - (altitudeDataM[i] - minAltM) / meterPerPxl; + yAxisDataPxl[i] = height - heightIndentPxl - (altitudeDataM[i] - minAltM) / metersPerPxl; return true; } void GenerateChartByPoints(uint32_t width, uint32_t height, vector const & geometry, - bool lightTheme, vector & frameBuffer) + MapStyle mapStyle, vector & frameBuffer) { frameBuffer.clear(); if (width == 0 || height == 0) return; agg::rgba8 const kBackgroundColor = agg::rgba8(255, 255, 255, 0); - agg::rgba8 const kLineColor = - lightTheme ? agg::rgba8(30, 150, 240, 255) : agg::rgba8(255, 230, 140, 255); - agg::rgba8 const kCurveColor = lightTheme ? agg::rgba8(30, 150, 240, 20) : agg::rgba8(255, 230, 140, 20); + agg::rgba8 const kLineColor = GetLineColor(mapStyle); + agg::rgba8 const kCurveColor = GetCurveColor(mapStyle); double constexpr kLineWidthPxl = 2.0; uint32_t constexpr kBPP = 4; @@ -218,7 +239,7 @@ void GenerateChartByPoints(uint32_t width, uint32_t height, vector c } bool GenerateChart(uint32_t width, uint32_t height, vector const & distanceDataM, - feature::TAltitudes const & altitudeDataM, bool lightTheme, + feature::TAltitudes const & altitudeDataM, MapStyle mapStyle, vector & frameBuffer) { if (distanceDataM.size() != altitudeDataM.size()) @@ -248,7 +269,7 @@ bool GenerateChart(uint32_t width, uint32_t height, vector const & dista } frameBuffer.clear(); - GenerateChartByPoints(width, height, geometry, lightTheme, frameBuffer); + GenerateChartByPoints(width, height, geometry, mapStyle, frameBuffer); return true; } } // namespace maps diff --git a/map/chart_generator.hpp b/map/chart_generator.hpp index d021b629a0..1b4983d12b 100644 --- a/map/chart_generator.hpp +++ b/map/chart_generator.hpp @@ -1,6 +1,7 @@ #pragma once #include "indexer/feature_altitude.hpp" +#include "indexer/map_style.hpp" #include "geometry/point2d.hpp" @@ -30,14 +31,13 @@ bool GenerateYAxisChartData(uint32_t height, double minMetersPerPxl, /// \param width is result image width in pixels. /// \param height is result image height in pixels. /// \param geometry is points which is used to draw a curve of the chart. -/// \param lightTheme is true for light theme image colors -/// and false for night image colors. +/// \param mapStyle is a current map style. /// \param frameBuffer is a vector for a result image. It's resized in this method. /// It's filled with RGBA(8888) image date. void GenerateChartByPoints(uint32_t width, uint32_t height, vector const & geometry, - bool lightTheme, vector & frameBuffer); + MapStyle mapStyle, vector & frameBuffer); bool GenerateChart(uint32_t width, uint32_t height, vector const & distanceDataM, - feature::TAltitudes const & altitudeDataM, bool lightTheme, + feature::TAltitudes const & altitudeDataM, MapStyle mapStyle, vector & frameBuffer); } // namespace maps diff --git a/map/framework.cpp b/map/framework.cpp index 33d6315a92..3f1d73a477 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -1694,11 +1694,6 @@ MapStyle Framework::GetMapStyle() const return GetStyleReader().GetCurrentStyle(); } -bool Framework::IsLightMapTheme() const -{ - return GetMapStyle() != MapStyleDark; -} - void Framework::SetupMeasurementSystem() { GetPlatform().SetupMeasurementSystem(); @@ -2997,10 +2992,10 @@ bool Framework::GenerateRouteAltitudeChart(uint32_t width, uint32_t height, if (!m_routingSession.GetRouteAltitudes(altitudes)) return false; vector segDistanceM; - if (!m_routingSession.GetSegDistanceM(segDistanceM) && segDistanceM.empty()) + if (!m_routingSession.GetSegDistanceM(segDistanceM)) return false; segDistanceM.insert(segDistanceM.begin(), 0.0); return maps::GenerateChart(width, height, segDistanceM, altitudes, - IsLightMapTheme(), imageRGBAData); + GetMapStyle(), imageRGBAData); } diff --git a/map/framework.hpp b/map/framework.hpp index 09f820140d..3701e342b0 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -416,7 +416,6 @@ public: void SetMapStyle(MapStyle mapStyle); void MarkMapStyle(MapStyle mapStyle); MapStyle GetMapStyle() const; - bool IsLightMapTheme() const; void SetupMeasurementSystem(); diff --git a/map/map_tests/chart_generator_tests.cpp b/map/map_tests/chart_generator_tests.cpp index 8f52654dcd..3a933fdda1 100644 --- a/map/map_tests/chart_generator_tests.cpp +++ b/map/map_tests/chart_generator_tests.cpp @@ -116,7 +116,7 @@ UNIT_TEST(GenerateYAxisChartData_EmptyAltitudeDataTest) TEST(yAxisDataPxl.empty(), ()); } -UNIT_TEST(GenerateYAxisChartDataTest) +UNIT_TEST(GenerateYAxisChartData_Test) { vector const altitudeDataM = {0.0, 2.0, 0.0, -2.0, 1.0}; vector yAxisDataPxl; @@ -133,7 +133,7 @@ UNIT_TEST(GenerateChartByPoints_NoGeometryTest) size_t constexpr height = 40; vector frameBuffer; - maps::GenerateChartByPoints(width, height, geometry, true /* lightTheme */, frameBuffer); + maps::GenerateChartByPoints(width, height, geometry, MapStyleLight /* mapStyle */, frameBuffer); TestAngleColors(width, height, frameBuffer, 255 /* expectedR */, 255 /* expectedG */, 255 /* expectedB */, 0 /* expectedA */); } @@ -145,7 +145,7 @@ UNIT_TEST(GenerateChartByPoints_OnePointTest) size_t constexpr height = 40; vector frameBuffer; - maps::GenerateChartByPoints(width, height, geometry, true /* lightTheme */, frameBuffer); + maps::GenerateChartByPoints(width, height, geometry, MapStyleLight /* mapStyle */, frameBuffer); TestAngleColors(width, height, frameBuffer, 255 /* expectedR */, 255 /* expectedG */, 255 /* expectedB */, 0 /* expectedA */); } @@ -158,7 +158,7 @@ UNIT_TEST(GenerateChartByPoints_Test) size_t constexpr height = 40; vector frameBuffer; - maps::GenerateChartByPoints(width, height, geometry, true /* lightTheme */, frameBuffer); + maps::GenerateChartByPoints(width, height, geometry, MapStyleLight /* mapStyle */, frameBuffer); TEST_EQUAL(frameBuffer.size(), width * height * kBPP, ()); TEST(IsColor(frameBuffer, 0 /* startColorIdx */, 30 /* expectedR */, 150 /* expectedG */, @@ -176,7 +176,7 @@ UNIT_TEST(GenerateChart_NoPointsTest) feature::TAltitudes const & altitudeDataM = {}; vector frameBuffer; - TEST(maps::GenerateChart(width, 50 /* height */, distanceDataM, altitudeDataM, false /* lightTheme */, + TEST(maps::GenerateChart(width, 50 /* height */, distanceDataM, altitudeDataM, MapStyleDark /* mapStyle */, frameBuffer), ()); TestAngleColors(width, 50 /* height */, frameBuffer, 255 /* expectedR */, 255 /* expectedG */, @@ -191,7 +191,7 @@ UNIT_TEST(GenerateChart_OnePointTest) feature::TAltitudes const & altitudeDataM = {0}; vector frameBuffer; - TEST(maps::GenerateChart(width, height, distanceDataM, altitudeDataM, false /* lightTheme */, + TEST(maps::GenerateChart(width, height, distanceDataM, altitudeDataM, MapStyleDark /* mapStyle */, frameBuffer), ()); TEST_EQUAL(frameBuffer.size(), width * height * kBPP, ()); @@ -208,7 +208,7 @@ UNIT_TEST(GenerateChart_EmptyRectTest) feature::TAltitudes const & altitudeDataM = {}; vector frameBuffer; - TEST(maps::GenerateChart(width, 50 /* height */, distanceDataM, altitudeDataM, false /* lightTheme */, + TEST(maps::GenerateChart(width, 50 /* height */, distanceDataM, altitudeDataM, MapStyleDark /* mapStyle */, frameBuffer), ()); TEST(frameBuffer.empty(), ()); @@ -221,7 +221,7 @@ UNIT_TEST(GenerateChart_Test) feature::TAltitudes const & altitudeDataM = {0, 1000}; vector frameBuffer; - TEST(maps::GenerateChart(width, 50 /* height */, distanceDataM, altitudeDataM, false /* lightTheme */, + TEST(maps::GenerateChart(width, 50 /* height */, distanceDataM, altitudeDataM, MapStyleDark /* mapStyle */, frameBuffer), ()); TEST(IsColor(frameBuffer, 0 /* startColorIdx */, 255 /* expectedR */, 255 /* expectedG */, diff --git a/routing/route.hpp b/routing/route.hpp index 6e729b855c..634ea55e7a 100644 --- a/routing/route.hpp +++ b/routing/route.hpp @@ -55,7 +55,7 @@ public: Update(); } - inline void SetTurnInstructions(TTurns &&v) { m_turns = move(v); } + inline void SetTurnInstructions(TTurns && v) { m_turns = move(v); } inline void SetSectionTimes(TTimes && v) { m_times = move(v); } inline void SetStreetNames(TStreets && v) { m_streets = move(v); } inline void SetAltitudes(feature::TAltitudes && v) { m_altitudes = move(v); } diff --git a/routing/routing_session.cpp b/routing/routing_session.cpp index 2f918a2079..affe26a4f0 100644 --- a/routing/routing_session.cpp +++ b/routing/routing_session.cpp @@ -525,8 +525,7 @@ void RoutingSession::EmitCloseRoutingEvent() const bool RoutingSession::HasRouteAltitudeImpl() const { - return !m_route.GetAltitudes().empty() - && m_route.GetAltitudes().size() == m_route.GetSegDistanceM().size() + 1; + return m_route.GetAltitudes().size() == m_route.GetSegDistanceM().size() + 1; } bool RoutingSession::HasRouteAltitude() const