diff --git a/map/chart_generator.cpp b/map/chart_generator.cpp index 0804840e09..e6688da7f4 100644 --- a/map/chart_generator.cpp +++ b/map/chart_generator.cpp @@ -83,6 +83,24 @@ agg::rgba8 GetCurveColor(MapStyle mapStyle) namespace maps { +void ScaleChartData(vector & chartData, double scale) +{ + for (size_t i = 0; i < chartData.size(); ++i) + chartData[i] *= scale; +} + +void ShiftChartData(vector & chartData, double shift) +{ + for (size_t i = 0; i < chartData.size(); ++i) + chartData[i] += shift; +} + +void ReflectChartData(vector & chartData) +{ + for (size_t i = 0; i < chartData.size(); ++i) + chartData[i] = -chartData[i]; +} + bool NormalizeChartData(vector const & distanceDataM, feature::TAltitudes const & altitudeDataM, size_t resultPointCount, vector & uniformAltitudeDataM) @@ -166,7 +184,8 @@ bool GenerateYAxisChartData(uint32_t height, double minMetersPerPxl, return false; } - double const freeHeightSpacePxl = drawHeightPxl - deltaAltM / metersPerPxl; + double const deltaAltPxl = deltaAltM / metersPerPxl; + double const freeHeightSpacePxl = drawHeightPxl - deltaAltPxl; if (freeHeightSpacePxl < 0 || freeHeightSpacePxl > drawHeightPxl) { LOG(LERROR, ("Number of pixels free of chart points (", freeHeightSpacePxl, @@ -174,11 +193,11 @@ bool GenerateYAxisChartData(uint32_t height, double minMetersPerPxl, return false; } - double const shift = heightIndentPxl + freeHeightSpacePxl / 2.0; - size_t const altitudeDataSize = altitudeDataM.size(); - yAxisDataPxl.resize(altitudeDataSize); - for (size_t i = 0; i < altitudeDataSize; ++i) - yAxisDataPxl[i] = height - shift - (altitudeDataM[i] - minAltM) / metersPerPxl; + double const maxAltPxl = maxAltM / metersPerPxl; + yAxisDataPxl.assign(altitudeDataM.cbegin(), altitudeDataM.cend()); + ScaleChartData(yAxisDataPxl, 1.0 / metersPerPxl); + ReflectChartData(yAxisDataPxl); + ShiftChartData(yAxisDataPxl, maxAltPxl + heightIndentPxl + freeHeightSpacePxl / 2.0); return true; } diff --git a/map/chart_generator.hpp b/map/chart_generator.hpp index 34e56dc92f..e3f5bfc04f 100644 --- a/map/chart_generator.hpp +++ b/map/chart_generator.hpp @@ -10,8 +10,13 @@ namespace maps { + uint32_t constexpr kAltitudeChartBPP = 4; +void ScaleChartData(vector & chartData, double scale); +void ShiftChartData(vector & chartData, double shift); +void ReflectChartData(vector & chartData); + /// \brief fills uniformAltitudeDataM with altitude data which evenly distributed by /// |resultPointCount| points. |distanceDataM| and |altitudeDataM| form a curve of route altitude. /// This method is used to generalize and evenly distribute points of the chart.