diff --git a/base/buffer_vector.hpp b/base/buffer_vector.hpp index f29f89ad1b..6c5b884d2b 100644 --- a/base/buffer_vector.hpp +++ b/base/buffer_vector.hpp @@ -92,11 +92,19 @@ public: T const * begin() const { return data(); } T const * end() const { return (data() + m_size); } + T * begin () {return data();} + T * end() {return (data() + m_size); } + T const * data() const { return (m_size > N ? &m_dynamic[0] : m_static.data()); } + T * data() + { + return (m_size > N ? &m_dynamic[0] : m_static.data()); + } + bool empty() const { return m_size == 0; } size_t size() const { return m_size; } diff --git a/map/drawer_yg.cpp b/map/drawer_yg.cpp index 66a82bb049..dae7afe15b 100644 --- a/map/drawer_yg.cpp +++ b/map/drawer_yg.cpp @@ -137,7 +137,7 @@ void DrawerYG::drawSymbol(m2::PointD const & pt, rule_ptr_t pRule, yg::EPosition m_pScreen->drawSymbol(pt, id, pos, depth); } -void DrawerYG::drawPath(vector const & pts, di::DrawRule const * rules, size_t count) +void DrawerYG::drawPath(vector const *> const & pathes, di::DrawRule const * rules, size_t count) { // if any rule needs caching - cache as a whole vector bool flag = false; @@ -185,9 +185,16 @@ void DrawerYG::drawPath(vector const & pts, di::DrawRule const * rul } } - // draw path with array of rules - for (size_t i = 0; i < count; ++i) - m_pScreen->drawPath(&pts[0], pts.size(), 0, rules[i].m_rule->GetID(), rules[i].m_depth); + // draw every path in order with array of rules. + for (size_t i = 0; i < pathes.size(); ++i) + { + for (size_t j = 0; j < count; ++j) + m_pScreen->drawPath(&pathes[i]->at(0), pathes[i]->size(), 0, rules[j].m_rule->GetID(), rules[j].m_depth); + } + +/* for (size_t j = 0; j < count; ++j) + for (size_t i = 0; i < pathes.size(); ++i) + m_pScreen->drawPath(&pathes[i]->at(0), pathes[i]->size(), 0, rules[j].m_rule->GetID(), rules[j].m_depth);*/ } void DrawerYG::drawArea(vector const & pts, rule_ptr_t pRule, int depth) @@ -302,8 +309,11 @@ void DrawerYG::Draw(di::DrawInfo const * pInfo, di::DrawRule const * rules, size if (!pathRules.empty()) { + vector const *> pathes; for (list::const_iterator i = pInfo->m_pathes.begin(); i != pInfo->m_pathes.end(); ++i) - drawPath(i->m_path, pathRules.data(), pathRules.size()); + pathes.push_back(&i->m_path); + + drawPath(pathes, pathRules.data(), pathRules.size()); } for (unsigned i = 0; i < count; ++i) diff --git a/map/drawer_yg.hpp b/map/drawer_yg.hpp index ad65b789db..e2b8835781 100644 --- a/map/drawer_yg.hpp +++ b/map/drawer_yg.hpp @@ -75,7 +75,7 @@ class DrawerYG protected: void drawSymbol(m2::PointD const & pt, rule_ptr_t pRule, yg::EPosition pos, int depth); void drawCircle(m2::PointD const & pt, rule_ptr_t pRule, yg::EPosition pos, int depth); - void drawPath(vector const & pts, di::DrawRule const * rules, size_t count); + void drawPath(vector const * > const & pathes, di::DrawRule const * rules, size_t count); void drawArea(vector const & pts, rule_ptr_t pRule, int depth); void drawText(m2::PointD const & pt, string const & name, rule_ptr_t pRule, yg::EPosition pos, int depth); diff --git a/map/framework.cpp b/map/framework.cpp index 94aa261281..57969affd5 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -63,6 +63,14 @@ namespace fwork namespace { + struct less_depth + { + bool operator() (di::DrawRule const & r1, di::DrawRule const & r2) + { + return r1.m_depth < r2.m_depth; + } + }; + struct less_key { bool operator() (drule::Key const & r1, drule::Key const & r2) const @@ -178,6 +186,8 @@ namespace fwork rules[i] = di::DrawRule(drule::rules().Find(m_keys[i]), depth); } + sort(rules.begin(), rules.end(), less_depth()); + #ifdef PROFILER_DRAWING m_drawCount += m_keys.size(); #endif