diff --git a/drape/overlay_handle.cpp b/drape/overlay_handle.cpp index 6ef511873b..1ad5da9162 100644 --- a/drape/overlay_handle.cpp +++ b/drape/overlay_handle.cpp @@ -230,9 +230,10 @@ std::string SquareHandle::GetOverlayDebugInfo() /// @param[in] minZoomLevel Minimum visible zoom level (less is better) /// @param[in] rank Rank of the feature (bigger is better) /// @param[in] depth Manual priority from styles (bigger is better) +/// @todo remove minZoomLevel param from everywhere, its not used anymore. uint64_t CalculateOverlayPriority(int minZoomLevel, uint8_t rank, float depth) { - ASSERT(0 <= depth && depth <= 100000, (depth)); + ASSERT(0 <= depth && depth <= 190000, (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, ()); diff --git a/drape_frontend/apply_feature_functors.cpp b/drape_frontend/apply_feature_functors.cpp index 39db19ad85..7b1f8bee87 100644 --- a/drape_frontend/apply_feature_functors.cpp +++ b/drape_frontend/apply_feature_functors.cpp @@ -218,6 +218,8 @@ m2::PointF GetOffset(int offsetX, int offsetY) return { static_cast(offsetX * vs), static_cast(offsetY * vs) }; } +// TODO : review following exceptions for navigation mode priorities. +// Shields and highway pathtexts could be made the highest in the prios.txt file directly. uint16_t CalculateNavigationPoiPriority() { // All navigation POI have maximum priority in navigation mode. @@ -472,6 +474,8 @@ void ApplyPointFeature::ProcessPointRule(Stylist::TRuleWrapper const & rule) params.m_depthLayer = m_depthLayer; params.m_depthTestEnabled = m_depthLayer != DepthLayer::NavigationLayer && m_depthLayer != DepthLayer::OverlayLayer; + // @todo: m_depthTestEnabled is false always? + ASSERT(!params.m_depthTestEnabled, (params.m_titleDecl.m_primaryText)); params.m_minVisibleScale = m_minVisibleScale; params.m_rank = m_rank; params.m_posZ = m_posZ; @@ -508,6 +512,8 @@ void ApplyPointFeature::Finish(ref_ptr texMng) params.m_tileCenter = m_tileRect.Center(); params.m_depthTestEnabled = m_depthLayer != DepthLayer::NavigationLayer && m_depthLayer != DepthLayer::OverlayLayer; + // @todo: m_depthTestEnabled is false always? + ASSERT(!params.m_depthTestEnabled, (params.m_featureId)); params.m_depth = m_symbolDepth; params.m_depthLayer = m_depthLayer; params.m_minVisibleScale = m_minVisibleScale; @@ -529,7 +535,7 @@ void ApplyPointFeature::Finish(ref_ptr texMng) symbolSize = region.GetPixelSize(); if (region.IsValid()) - m_insertShape(make_unique_dp(m2::PointD(m_centerPoint), params, m_tileKey, 0 /* text index */)); + m_insertShape(make_unique_dp(m2::PointD(m_centerPoint), params, m_tileKey, 0 /* textIndex */)); else LOG(LERROR, ("Style error. Symbol name must be valid for feature", m_id)); } diff --git a/drape_frontend/poi_symbol_shape.cpp b/drape_frontend/poi_symbol_shape.cpp index 19bda73299..58e4fe7f5b 100644 --- a/drape_frontend/poi_symbol_shape.cpp +++ b/drape_frontend/poi_symbol_shape.cpp @@ -173,6 +173,12 @@ void PoiSymbolShape::Draw(ref_ptr context, ref_ptrGetSymbolRegion(m_params.m_symbolName, region); glsl::vec2 const pt = glsl::ToVec2(ConvertToLocal(m_pt, m_params.m_tileCenter, kShapeCoordScalar)); + // TODO: if m_params.m_depthTestEnabled == false then passing a real + // m_params.m_depth value to OGL doesn't make sense, but could lead to + // elements out of [dp::kMinDepth, dp::kMaxDepth] depth range being + // not rendered at all. E.g. depth values for overlays are derived from priorities + // hence it leads to unnecessary restriction of overlays priorities range. + // The same is true for TextShape, ColoredSymbolShape etc. glsl::vec4 const position = glsl::vec4(pt, m_params.m_depth, -m_params.m_posZ); auto const createOverlayHandle = [this](auto const & vertexes) -> drape_ptr diff --git a/drape_frontend/rule_drawer.cpp b/drape_frontend/rule_drawer.cpp index cb2a3e55e2..a52abe5654 100644 --- a/drape_frontend/rule_drawer.cpp +++ b/drape_frontend/rule_drawer.cpp @@ -303,12 +303,6 @@ 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); - } - ApplyAreaFeature apply(m_context->GetTileKey(), insertShape, f.GetID(), m_currentScaleGtoP, isBuilding, m_context->Is3dBuildingsEnabled() && isBuildingOutline, @@ -452,7 +446,6 @@ void RuleDrawer::ProcessPointStyle(FeatureType & f, Stylist const & s, if (isSpeedCamera) depthLayer = DepthLayer::NavigationLayer; - minVisibleScale = feature::GetMinDrawableScale(f); 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,7 +492,7 @@ void RuleDrawer::operator()(FeatureType & f) } #endif - /// @todo Call feature::GetMinDrawableScale() here. + /// @todo Remove passing of minVisibleScale arg everywhere. int minVisibleScale = 0; auto insertShape = [this, &minVisibleScale](drape_ptr && shape) { @@ -559,7 +552,7 @@ void RuleDrawer::DrawTileNet() p.m_baseGtoPScale = 1.0; p.m_cap = dp::ButtCap; p.m_color = dp::Color::Blue(); - p.m_depth = 20000; + p.m_depth = dp::kMaxDepth; p.m_depthLayer = DepthLayer::GeometryLayer; p.m_width = 1; p.m_join = dp::RoundJoin; @@ -574,7 +567,7 @@ void RuleDrawer::DrawTileNet() tp.m_markId = kml::kDebugMarkId; tp.m_tileCenter = m_globalRect.Center(); tp.m_titleDecl.m_anchor = dp::Center; - tp.m_depth = 20000; + tp.m_depth = dp::kMaxDepth; tp.m_depthLayer = DepthLayer::OverlayLayer; tp.m_titleDecl.m_primaryText = key.Coord2String(); diff --git a/drape_frontend/shape_view_params.hpp b/drape_frontend/shape_view_params.hpp index 2977fc905e..fe2c8bd439 100644 --- a/drape_frontend/shape_view_params.hpp +++ b/drape_frontend/shape_view_params.hpp @@ -43,6 +43,8 @@ enum class SpecialDisplacement : uint8_t struct CommonOverlayViewParams : public CommonViewParams { + // TODO : review if HouseNumber and navigation SpecialMode are needed still + // or desired priorities could be set in prio.txt files directly. SpecialDisplacement m_specialDisplacement = SpecialDisplacement::None; uint16_t m_specialPriority = std::numeric_limits::max(); uint8_t m_startOverlayRank = 0; diff --git a/drape_frontend/stylist.cpp b/drape_frontend/stylist.cpp index 947ab2bca8..da6e512a30 100644 --- a/drape_frontend/stylist.cpp +++ b/drape_frontend/stylist.cpp @@ -186,6 +186,7 @@ private: // Skip lines with zero width. Lines can have zero width only if they have // path symbols along. + /// @todo should never happen, change to assert. auto const lineRule = dRule->GetLine(); if (lineRule != nullptr && (lineRule->width() < 1e-5 && !lineRule->has_pathsym())) return; @@ -314,6 +315,7 @@ void CaptionDescription::ProcessMainTextType(drule::text_type_t const & mainText if (mainTextType == drule::text_type_housenumber) { + /// @todo this code path is never used, probably need to have e.g. "text: housenumber" in styles for it. m_mainText.swap(m_houseNumber); m_houseNumber.clear(); m_isHouseNumberInMainText = true; diff --git a/drape_frontend/text_shape.cpp b/drape_frontend/text_shape.cpp index a8e03eae74..52b861bb18 100644 --- a/drape_frontend/text_shape.cpp +++ b/drape_frontend/text_shape.cpp @@ -445,6 +445,7 @@ uint64_t TextShape::GetOverlayPriority() const return dp::CalculateUserMarkPriority(m_params.m_minVisibleScale, m_params.m_specialPriority); // Set up minimal priority for house numbers. + /// @todo move this exception to kothic. if (m_params.m_specialDisplacement == SpecialDisplacement::HouseNumber) return 0; diff --git a/indexer/displacement_manager.hpp b/indexer/displacement_manager.hpp index 11a33d2645..355894a8fd 100644 --- a/indexer/displacement_manager.hpp +++ b/indexer/displacement_manager.hpp @@ -174,11 +174,11 @@ private: depth = k.m_priority; } - float const kMinDepth = -100000.0f; - float const kMaxDepth = 100000.0f; - float const d = base::Clamp(depth, kMinDepth, kMaxDepth) - kMinDepth; + // @todo: make sure features are prioritised the same way as in the run-time displacer, + // see overlay_handle.cpp::CalculateOverlayPriority() + ASSERT(0 <= depth && depth <= 190000, (depth)); uint8_t rank = ft.GetRank(); - m_priority = (static_cast(d) << 8) | rank; + m_priority = (static_cast(depth) << 8) | rank; } // Same to dynamic displacement behaviour.