From 0ccf5f9d0519c671b1c72b0d93fd355d9005b20c Mon Sep 17 00:00:00 2001 From: Roman Sorokin Date: Thu, 31 Jul 2014 14:39:37 +0300 Subject: [PATCH] syntax fixes --- drape_frontend/apply_feature_functors.cpp | 4 ++-- drape_frontend/path_symbol_shape.hpp | 28 +---------------------- drape_frontend/path_text_shape.cpp | 2 +- drape_frontend/shape_view_params.hpp | 4 ++-- geometry/geometry_tests/spline_test.cpp | 16 ++++++------- geometry/spline.cpp | 2 +- geometry/spline.hpp | 8 +++---- 7 files changed, 19 insertions(+), 45 deletions(-) diff --git a/drape_frontend/apply_feature_functors.cpp b/drape_frontend/apply_feature_functors.cpp index 71a4233a9e..270fb9bfdc 100644 --- a/drape_frontend/apply_feature_functors.cpp +++ b/drape_frontend/apply_feature_functors.cpp @@ -287,8 +287,8 @@ void ApplyLineFeature::ProcessRule(Stylist::rule_wrapper_t const & rule) PathSymbolViewParams params; params.m_depth = depth; params.m_symbolName = symRule.name(); - params.m_Offset = symRule.offset() * df::VisualParams::Instance().GetVisualScale(); - params.m_OffsetStart = symRule.step() * df::VisualParams::Instance().GetVisualScale(); + params.m_step = symRule.offset() * df::VisualParams::Instance().GetVisualScale(); + params.m_offset = symRule.step() * df::VisualParams::Instance().GetVisualScale(); m_context.InsertShape(m_tileKey, MovePointer(new PathSymbolShape(m_path, params, m_nextModelViewScale))); } diff --git a/drape_frontend/path_symbol_shape.hpp b/drape_frontend/path_symbol_shape.hpp index 5ea11365fd..eff982a919 100644 --- a/drape_frontend/path_symbol_shape.hpp +++ b/drape_frontend/path_symbol_shape.hpp @@ -2,9 +2,7 @@ #include "map_shape.hpp" #include "shape_view_params.hpp" -#include "path_text_shape.hpp" - -#include "../drape/overlay_handle.hpp" +#include "common_structures.hpp" #include "../std/vector.hpp" @@ -26,28 +24,4 @@ private: float m_maxScale; }; -class PathSymbolHandle : public OverlayHandle -{ -public: - static const uint8_t PositionAttributeID = 1; - PathSymbolHandle(m2::Spline const & spl, PathSymbolViewParams const & params, int maxCount, float hw, float hh) - : OverlayHandle(FeatureID(), dp::Center, 0.0f), - m_params(params), m_path(spl), m_scaleFactor(1.0f), - m_positions(maxCount * 6), m_maxCount(maxCount), - m_symbolHalfWidth(hw), m_symbolHalfHeight(hh) {} - - virtual void Update(ScreenBase const & screen); - virtual m2::RectD GetPixelRect(ScreenBase const & screen) const; - virtual void GetAttributeMutation(RefPointer mutator) const; - -private: - PathSymbolViewParams m_params; - m2::Spline m_path; - float m_scaleFactor; - mutable vector m_positions; - int m_maxCount; - float m_symbolHalfWidth; - float m_symbolHalfHeight; -}; - } diff --git a/drape_frontend/path_text_shape.cpp b/drape_frontend/path_text_shape.cpp index 51b0190e4a..3b90b6f46e 100644 --- a/drape_frontend/path_text_shape.cpp +++ b/drape_frontend/path_text_shape.cpp @@ -244,7 +244,7 @@ void PathTextHandle::Update(ScreenBase const & screen) ASSERT_NOT_EQUAL(advance, 0.0, ()); entireLength += advance; - if(entireLength >= m_params.m_OffsetEnd * m_scaleFactor || itr.beginAgain()) + if(entireLength >= m_params.m_OffsetEnd * m_scaleFactor || itr.BeginAgain()) return; PointF const pos = itr.m_pos; diff --git a/drape_frontend/shape_view_params.hpp b/drape_frontend/shape_view_params.hpp index b2140256a1..9405e4873e 100644 --- a/drape_frontend/shape_view_params.hpp +++ b/drape_frontend/shape_view_params.hpp @@ -78,8 +78,8 @@ struct PathSymbolViewParams : CommonViewParams { FeatureID m_featureID; string m_symbolName; - float m_OffsetStart; - float m_Offset; + float m_offset; + float m_step; }; diff --git a/geometry/geometry_tests/spline_test.cpp b/geometry/geometry_tests/spline_test.cpp index 7c49e4b212..5e1327634a 100644 --- a/geometry/geometry_tests/spline_test.cpp +++ b/geometry/geometry_tests/spline_test.cpp @@ -163,13 +163,13 @@ UNIT_TEST(BeginAgain) PointF dir1(sqrt2 / 2.0f, sqrt2 / 2.0f); PointF dir2(sqrt2 / 2.0f, -sqrt2 / 2.0f); itr.Attach(spl); - TEST_EQUAL(itr.beginAgain(), false, ()); + TEST_EQUAL(itr.BeginAgain(), false, ()); itr.Step(90.0f); - TEST_EQUAL(itr.beginAgain(), false, ()); + TEST_EQUAL(itr.BeginAgain(), false, ()); itr.Step(90.0f); - TEST_EQUAL(itr.beginAgain(), true, ()); + TEST_EQUAL(itr.BeginAgain(), true, ()); itr.Step(190.0f); - TEST_EQUAL(itr.beginAgain(), true, ()); + TEST_EQUAL(itr.BeginAgain(), true, ()); path.clear(); @@ -181,12 +181,12 @@ UNIT_TEST(BeginAgain) Spline spl2; spl2.FromArray(path); itr.Attach(spl2); - TEST_EQUAL(itr.beginAgain(), false, ()); + TEST_EQUAL(itr.BeginAgain(), false, ()); itr.Step(90.0f); - TEST_EQUAL(itr.beginAgain(), false, ()); + TEST_EQUAL(itr.BeginAgain(), false, ()); itr.Step(90.0f); - TEST_EQUAL(itr.beginAgain(), true, ()); + TEST_EQUAL(itr.BeginAgain(), true, ()); itr.Step(190.0f); - TEST_EQUAL(itr.beginAgain(), true, ()); + TEST_EQUAL(itr.BeginAgain(), true, ()); } diff --git a/geometry/spline.cpp b/geometry/spline.cpp index 05f6a60860..f6702938df 100644 --- a/geometry/spline.cpp +++ b/geometry/spline.cpp @@ -61,7 +61,7 @@ void Spline::iterator::Step(float speed) m_avrDir += m_pos; } -bool Spline::iterator::beginAgain() +bool Spline::iterator::BeginAgain() { return m_checker; } diff --git a/geometry/spline.hpp b/geometry/spline.hpp index fb91f37dad..2375eb656e 100644 --- a/geometry/spline.hpp +++ b/geometry/spline.hpp @@ -17,11 +17,11 @@ public: PointF m_dir; PointF m_avrDir; iterator() - : m_pos(PointF()), m_dir(PointF()), m_avrDir(PointF()), + : m_pos(), m_dir(), m_avrDir(), m_checker(false), m_spl(NULL), m_index(0), m_dist(0) {} void Attach(Spline const & S); void Step(float speed); - bool beginAgain(); + bool BeginAgain(); private: bool m_checker; Spline const * m_spl; @@ -30,10 +30,10 @@ public: }; public: - Spline() : m_lengthAll(0.1f) {} + Spline() : m_lengthAll(0.0f) {} void FromArray(vector const & path); Spline const & operator = (Spline const & spl); - float getLength() const { return m_lengthAll; } + float GetLength() const { return m_lengthAll; } private: float m_lengthAll;