From 253dfcef7a5286870a9fd876ec71c190f27c1520 Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Sun, 24 Dec 2023 15:08:31 -0300 Subject: [PATCH] [drape] Factor out skipAreaGeometry flag. Signed-off-by: Viktor Govako --- drape_frontend/apply_feature_functors.cpp | 16 +++++++++------- drape_frontend/apply_feature_functors.hpp | 3 +-- drape_frontend/rule_drawer.cpp | 15 +++++++++------ 3 files changed, 19 insertions(+), 15 deletions(-) diff --git a/drape_frontend/apply_feature_functors.cpp b/drape_frontend/apply_feature_functors.cpp index 0fe0736c26..a82daa9839 100644 --- a/drape_frontend/apply_feature_functors.cpp +++ b/drape_frontend/apply_feature_functors.cpp @@ -539,12 +539,11 @@ void ApplyPointFeature::ProcessPointRules(SymbolRuleProto const * symbolRule, Ca ApplyAreaFeature::ApplyAreaFeature(TileKey const & tileKey, TInsertShapeFn const & insertShape, FeatureType & f, double currentScaleGtoP, bool isBuilding, - bool skipAreaGeometry, float minPosZ, float posZ, + float minPosZ, float posZ, CaptionDescription const & captions) : TBase(tileKey, insertShape, f, captions) , m_minPosZ(minPosZ) , m_isBuilding(isBuilding) - , m_skipAreaGeometry(skipAreaGeometry) , m_currentScaleGtoP(currentScaleGtoP) { m_posZ = posZ; @@ -554,8 +553,9 @@ void ApplyAreaFeature::operator()(m2::PointD const & p1, m2::PointD const & p2, { if (m_isBuilding) { - if (!m_skipAreaGeometry) - ProcessBuildingPolygon(p1, p2, p3); + /// @todo I suppose that we don't intersect triangles with tile rect because of _simple_ + /// 3D and outline algo. It makes sense only if buildings have _not many_ triangles. + ProcessBuildingPolygon(p1, p2, p3); return; } @@ -728,7 +728,7 @@ void ApplyAreaFeature::ProcessAreaRules(AreaRuleProto const * areaRule, AreaRule if (hatchingRule) { ASSERT_GREATER_OR_EQUAL(hatchingRule->priority(), drule::kBasePriorityFg, (m_f.DebugString())); - ProcessRule(*hatchingRule, areaDepth, true); + ProcessRule(*hatchingRule, areaDepth, true /* isHatching */); } if (areaRule) @@ -736,7 +736,7 @@ void ApplyAreaFeature::ProcessAreaRules(AreaRuleProto const * areaRule, AreaRule // Calculate areaDepth for BG-by-size areas only. if (areaRule->priority() < drule::kBasePriorityBgTop) areaDepth = drule::CalcAreaBySizeDepth(m_f); - ProcessRule(*areaRule, areaDepth, false); + ProcessRule(*areaRule, areaDepth, false /* isHatching */); } } @@ -769,7 +769,9 @@ void ApplyAreaFeature::ProcessRule(AreaRuleProto const & areaRule, double areaDe params.m_is3D = !outline.m_indices.empty() && calculateNormals; } - m_insertShape(make_unique_dp(m_triangles, std::move(outline), params)); + // see ProcessAreaRules: isHatching first, - !isHatching last. + m_insertShape(make_unique_dp(!isHatching ? std::move(m_triangles) : m_triangles, + std::move(outline), params)); } ApplyLineFeatureGeometry::ApplyLineFeatureGeometry(TileKey const & tileKey, TInsertShapeFn const & insertShape, diff --git a/drape_frontend/apply_feature_functors.hpp b/drape_frontend/apply_feature_functors.hpp index 9c4632c554..b094581b9c 100644 --- a/drape_frontend/apply_feature_functors.hpp +++ b/drape_frontend/apply_feature_functors.hpp @@ -81,7 +81,7 @@ class ApplyAreaFeature : public ApplyPointFeature public: ApplyAreaFeature(TileKey const & tileKey, TInsertShapeFn const & insertShape, FeatureType & f, double currentScaleGtoP, bool isBuilding, - bool skipAreaGeometry, float minPosZ, float posZ, + float minPosZ, float posZ, CaptionDescription const & captions); void operator()(m2::PointD const & p1, m2::PointD const & p2, m2::PointD const & p3); @@ -134,7 +134,6 @@ private: float const m_minPosZ; bool const m_isBuilding; - bool const m_skipAreaGeometry; double const m_currentScaleGtoP; }; diff --git a/drape_frontend/rule_drawer.cpp b/drape_frontend/rule_drawer.cpp index 7356c0d97c..73f3d7aee9 100644 --- a/drape_frontend/rule_drawer.cpp +++ b/drape_frontend/rule_drawer.cpp @@ -258,7 +258,7 @@ void RuleDrawer::ProcessAreaAndPointStyle(FeatureType & f, Stylist const & s, TI !IsBridgeOrTunnelChecker::Instance()(types); isBuildingOutline = isBuilding && hasParts && !isPart; - is3dBuilding = m_context->Is3dBuildingsEnabled() && (isBuilding && !isBuildingOutline); + is3dBuilding = isBuilding && !isBuildingOutline && m_context->Is3dBuildingsEnabled(); } m2::PointD featureCenter; @@ -292,16 +292,19 @@ void RuleDrawer::ProcessAreaAndPointStyle(FeatureType & f, Stylist const & s, TI applyPointStyle = m_globalRect.IsPointInside(featureCenter); } + bool const skipTriangles = isBuildingOutline && m_context->Is3dBuildingsEnabled(); + ApplyAreaFeature apply(m_context->GetTileKey(), insertShape, f, m_currentScaleGtoP, isBuilding, - m_context->Is3dBuildingsEnabled() && isBuildingOutline /* skipAreaGeometry */, areaMinHeight /* minPosZ */, areaHeight /* posZ */, s.GetCaptionDescription()); - if (s.m_areaRule || s.m_hatchingRule) - f.ForEachTriangle(apply, m_zoomLevel); - if (apply.HasGeometry()) - apply.ProcessAreaRules(s.m_areaRule, s.m_hatchingRule); + if (!skipTriangles && (s.m_areaRule || s.m_hatchingRule)) + { + f.ForEachTriangle(apply, m_zoomLevel); + if (apply.HasGeometry()) + apply.ProcessAreaRules(s.m_areaRule, s.m_hatchingRule); + } /// @todo Can we put this check in the beginning of this function? if (applyPointStyle && !IsDiscardCustomFeature(f.GetID()))