From 2ac04082cb6314d3a147d5db8a588eb4f20c0030 Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Sat, 2 Sep 2023 11:18:47 +0300 Subject: [PATCH 1/2] TMP [drape] Restore old non-working code for bucket discard optimization --- drape/overlay_handle.cpp | 1 + drape_frontend/render_group.cpp | 4 ++++ drape_frontend/rule_drawer.cpp | 8 ++++++++ 3 files changed, 13 insertions(+) diff --git a/drape/overlay_handle.cpp b/drape/overlay_handle.cpp index f9c1623e5b..0af260747f 100644 --- a/drape/overlay_handle.cpp +++ b/drape/overlay_handle.cpp @@ -240,6 +240,7 @@ uint64_t CalculateOverlayPriority(int minZoomLevel, uint8_t rank, float depth) // Even if minZoomLevel < 0 (-1 is not visible), we will get more consistent |minZoom| value (less is worse). ASSERT_GREATER_OR_EQUAL(minZoomLevel, 0, ()); + minZoomLevel = 0; // TMP make sure its not affecting overlays displacement uint8_t const minZoom = 0xFF - static_cast(minZoomLevel); // Pack into uint64_t priority value (bigger is better). diff --git a/drape_frontend/render_group.cpp b/drape_frontend/render_group.cpp index a9d7d92f97..d7bc53d041 100755 --- a/drape_frontend/render_group.cpp +++ b/drape_frontend/render_group.cpp @@ -153,6 +153,10 @@ bool RenderGroup::UpdateCanBeDeletedStatus(bool canBeDeleted, int currentZoom, r bool visibleBucket = !canBeDeleted && (m_renderBuckets[i]->GetMinZoom() <= currentZoom); if (!visibleBucket) { + // TMP DEBUG output + if (m_renderBuckets[i]->GetMinZoom() > currentZoom) + LOG(LINFO, ("Removing not visible bucket", m_renderBuckets[i]->GetMinZoom(), currentZoom, GetDepthLayer(m_state), m_renderBuckets.size())); + m_renderBuckets[i]->RemoveOverlayHandles(tree); std::swap(m_renderBuckets[i], m_renderBuckets.back()); m_renderBuckets.pop_back(); diff --git a/drape_frontend/rule_drawer.cpp b/drape_frontend/rule_drawer.cpp index a52abe5654..c6812ac1c7 100644 --- a/drape_frontend/rule_drawer.cpp +++ b/drape_frontend/rule_drawer.cpp @@ -303,6 +303,12 @@ void RuleDrawer::ProcessAreaStyle(FeatureType & f, Stylist const & s, applyPointStyle = m_globalRect.IsPointInside(featureCenter); } + if (applyPointStyle || is3dBuilding) + { + // At this point a proper geometry is loaded already. + minVisibleScale = feature::GetMinDrawableScale(f); // Doesn't get passed to insertShape(). + } + ApplyAreaFeature apply(m_context->GetTileKey(), insertShape, f.GetID(), m_currentScaleGtoP, isBuilding, m_context->Is3dBuildingsEnabled() && isBuildingOutline, @@ -446,6 +452,7 @@ void RuleDrawer::ProcessPointStyle(FeatureType & f, Stylist const & s, if (isSpeedCamera) depthLayer = DepthLayer::NavigationLayer; + minVisibleScale = feature::GetMinDrawableScale(f); // Doesn't get passed to insertShape(). ApplyPointFeature apply(m_context->GetTileKey(), insertShape, f.GetID(), minVisibleScale, f.GetRank(), s.GetCaptionDescription(), 0.0f /* posZ */, depthLayer); f.ForEachPoint([&apply](m2::PointD const & pt) { apply(pt, false /* hasArea */); }, zoomLevel); @@ -499,6 +506,7 @@ void RuleDrawer::operator()(FeatureType & f) size_t const index = shape->GetType(); ASSERT_LESS(index, m_mapShapes.size(), ()); + // MinZoom is used for optimization in RenderGroup::UpdateCanBeDeletedStatus(). shape->SetFeatureMinZoom(minVisibleScale); m_mapShapes[index].push_back(std::move(shape)); }; -- 2.45.3 From 51d9441a203ce9d15b1430841f604a8e27462d91 Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Sun, 3 Sep 2023 17:10:33 +0300 Subject: [PATCH 2/2] WIP [drape] Re-enable overlays bucket discard optimization --- drape_frontend/rule_drawer.cpp | 6 +++--- drape_frontend/stylist.cpp | 3 +++ drape_frontend/stylist.hpp | 1 + indexer/classificator.cpp | 5 +++++ indexer/classificator.hpp | 5 +++++ 5 files changed, 17 insertions(+), 3 deletions(-) diff --git a/drape_frontend/rule_drawer.cpp b/drape_frontend/rule_drawer.cpp index c6812ac1c7..668ceaaec8 100644 --- a/drape_frontend/rule_drawer.cpp +++ b/drape_frontend/rule_drawer.cpp @@ -499,9 +499,9 @@ void RuleDrawer::operator()(FeatureType & f) } #endif - /// @todo Remove passing of minVisibleScale arg everywhere. - int minVisibleScale = 0; - auto insertShape = [this, &minVisibleScale](drape_ptr && shape) + //int const minVisibleScale = feature::GetMinDrawableScale(f); // original version + int const minVisibleScale = s.m_minOverlaysZoom; // lighter weight version + auto insertShape = [this, minVisibleScale](drape_ptr && shape) { size_t const index = shape->GetType(); ASSERT_LESS(index, m_mapShapes.size(), ()); diff --git a/drape_frontend/stylist.cpp b/drape_frontend/stylist.cpp index f0a3f2afdd..f91ec3d8b2 100644 --- a/drape_frontend/stylist.cpp +++ b/drape_frontend/stylist.cpp @@ -403,6 +403,9 @@ bool InitStylist(FeatureType & f, int8_t deviceLang, int const zoomLevel, bool b } } + if (mainOverlayType != 0) + s.m_minOverlaysZoom = cl.GetObject(mainOverlayType)->GetMinOverlaysZoom(); + feature::FilterRulesByRuntimeSelector(f, zoomLevel, keys); if (keys.empty()) diff --git a/drape_frontend/stylist.hpp b/drape_frontend/stylist.hpp index 4dd373e7cc..c9bdbab626 100644 --- a/drape_frontend/stylist.hpp +++ b/drape_frontend/stylist.hpp @@ -55,6 +55,7 @@ public: bool m_areaStyleExists = false; bool m_lineStyleExists = false; bool m_pointStyleExists = false; + int m_minOverlaysZoom = 0; public: CaptionDescription const & GetCaptionDescription() const; diff --git a/indexer/classificator.cpp b/indexer/classificator.cpp index 81efbe2126..940a19f6dd 100644 --- a/indexer/classificator.cpp +++ b/indexer/classificator.cpp @@ -54,6 +54,11 @@ void ClassifObject::AddDrawRule(drule::Key const & k) if (k == *i) return; // already exists m_drawRules.insert(i, k); + + if ((k.m_scale < m_minOverlaysZoom || m_minOverlaysZoom == 0) && + (k.m_type == drule::symbol || k.m_type == drule::caption || + k.m_type == drule::shield || k.m_type == drule::pathtext)) + m_minOverlaysZoom = k.m_scale; } ClassifObjectPtr ClassifObject::BinaryFind(std::string_view const s) const diff --git a/indexer/classificator.hpp b/indexer/classificator.hpp index 6a4a5ec76e..57bf8f5db3 100644 --- a/indexer/classificator.hpp +++ b/indexer/classificator.hpp @@ -90,6 +90,9 @@ public: std::vector const & GetDrawRules() const { return m_drawRules; } void GetSuitable(int scale, feature::GeomType gt, drule::KeysT & keys) const; + // Returns 0 if there are no overlay drules. + uint8_t GetMinOverlaysZoom() const { return m_minOverlaysZoom; } + bool IsDrawable(int scale) const; bool IsDrawableAny() const; bool IsDrawableLike(feature::GeomType gt, bool emptyName = false) const; @@ -161,6 +164,8 @@ private: std::vector m_drawRules; std::vector m_objs; VisibleMask m_visibility; + + uint8_t m_minOverlaysZoom = 0; }; inline void swap(ClassifObject & r1, ClassifObject & r2) -- 2.45.3