diff --git a/generator/feature_builder.cpp b/generator/feature_builder.cpp index a71fa637b0..607300990b 100644 --- a/generator/feature_builder.cpp +++ b/generator/feature_builder.cpp @@ -172,7 +172,7 @@ bool FeatureBuilder1::PreSerialize() case GEOM_LINE: // We need refs for road's numbers. - if (!feature::IsHighway(m_Params.m_Types)) + if (!IsHighway(m_Params.m_Types)) m_Params.ref = string(); m_Params.rank = 0; @@ -191,7 +191,7 @@ bool FeatureBuilder1::PreSerialize() // Clear name for features with invisible texts. int64_t dummy; if (!m_Params.name.IsEmpty() && !GetCoastCell(dummy) && - (feature::GetDrawableScaleRangeForText(GetFeatureBase()).first == -1)) + (GetDrawableScaleRangeForRules(GetFeatureBase(), RULE_TEXT).first == -1)) { m_Params.name.Clear(); } diff --git a/indexer/feature_utils.cpp b/indexer/feature_utils.cpp index a1220968b3..8c14d3999a 100644 --- a/indexer/feature_utils.cpp +++ b/indexer/feature_utils.cpp @@ -53,7 +53,7 @@ public: void CorrectScaleForVisibility(TypesHolder const & types, int & scale) const { - pair const scaleR = feature::GetDrawableScaleRangeForText(types); + pair const scaleR = GetDrawableScaleRangeForRules(types, RULE_TEXT); ASSERT_LESS_OR_EQUAL ( scaleR.first, scaleR.second, () ); // Result types can be without visible texts (matched by category). @@ -77,7 +77,7 @@ public: m2::RectD GetViewport(TypesHolder const & types, m2::RectD const & limitRect) const { - if (types.GetGeoType() != feature::GEOM_POINT) + if (types.GetGeoType() != GEOM_POINT) return CorrectRectForScales(types, limitRect); int const upperScale = scales::GetUpperScale(); diff --git a/indexer/feature_visibility.cpp b/indexer/feature_visibility.cpp index 78fad1f28a..a32f9b13b9 100644 --- a/indexer/feature_visibility.cpp +++ b/indexer/feature_visibility.cpp @@ -189,15 +189,18 @@ namespace } }; - class TextRulesChecker + class IsDrawableRulesChecker { int m_scale; ClassifObject::FeatureGeoType m_ft; + bool m_arr[2]; public: - TextRulesChecker(int scale, feature::EGeomType ft) + IsDrawableRulesChecker(int scale, feature::EGeomType ft, int rules) : m_scale(scale), m_ft(ClassifObject::FeatureGeoType(ft)) { + m_arr[0] = rules & RULE_TEXT; + m_arr[1] = rules & RULE_SYMBOL; } typedef bool ResultType; @@ -209,11 +212,14 @@ namespace p->GetSuitable(m_scale, m_ft, keys); for (size_t i = 0; i < keys.size(); ++i) - if (keys[i].m_type == drule::caption || keys[i].m_type == drule::pathtext) + { + if ((m_arr[0] && (keys[i].m_type == drule::caption || keys[i].m_type == drule::pathtext)) || + (m_arr[1] && keys[i].m_type == drule::symbol)) { res = true; return true; } + } return false; } @@ -351,11 +357,11 @@ pair GetDrawableScaleRange(TypesHolder const & types) namespace { - bool IsDrawableText(feature::TypesHolder const & types, int level) + bool IsDrawableForRules(feature::TypesHolder const & types, int level, int rules) { Classificator const & c = classif(); - TextRulesChecker doCheck(level, types.GetGeoType()); + IsDrawableRulesChecker doCheck(level, types.GetGeoType(), rules); for (size_t i = 0; i < types.Size(); ++i) if (c.ProcessObjects(types[i], doCheck)) return true; @@ -364,13 +370,13 @@ namespace } } -pair GetDrawableScaleRangeForText(feature::TypesHolder const & types) +pair GetDrawableScaleRangeForRules(feature::TypesHolder const & types, int rules) { int const upBound = scales::GetUpperScale(); int lowL = -1; for (int level = 0; level <= upBound; ++level) { - if (IsDrawableText(types, level)) + if (IsDrawableForRules(types, level, rules)) { lowL = level; break; @@ -383,7 +389,7 @@ pair GetDrawableScaleRangeForText(feature::TypesHolder const & types) int highL = lowL; for (int level = upBound; level > lowL; --level) { - if (IsDrawableText(types, level)) + if (IsDrawableForRules(types, level, rules)) { highL = level; break; @@ -393,9 +399,9 @@ pair GetDrawableScaleRangeForText(feature::TypesHolder const & types) return make_pair(lowL, highL); } -pair GetDrawableScaleRangeForText(FeatureBase const & f) +pair GetDrawableScaleRangeForRules(FeatureBase const & f, int rules) { - return GetDrawableScaleRangeForText(TypesHolder(f)); + return GetDrawableScaleRangeForRules(TypesHolder(f), rules); } bool IsHighway(vector const & types) diff --git a/indexer/feature_visibility.hpp b/indexer/feature_visibility.hpp index 081a38ba43..65d28220e7 100644 --- a/indexer/feature_visibility.hpp +++ b/indexer/feature_visibility.hpp @@ -18,7 +18,8 @@ namespace feature /// @note do not change this values. Should be equal with EGeomType. /// Used for checking visibility (by drawing style) for feature's geometry type /// (for Area - check only area type, but can draw symbol or caption). - enum FeatureGeoType { + enum FeatureGeoType + { FEATURE_TYPE_POINT = 0, FEATURE_TYPE_LINE = 1, FEATURE_TYPE_AREA = 2 @@ -43,8 +44,13 @@ namespace feature pair GetDrawableScaleRange(TypesHolder const & types); /// @name Get scale range when feature's text is visible. - pair GetDrawableScaleRangeForText(TypesHolder const & types); - pair GetDrawableScaleRangeForText(FeatureBase const & f); + enum + { + RULE_TEXT = 1, RULE_SYMBOL = 2 + }; + + pair GetDrawableScaleRangeForRules(TypesHolder const & types, int rules); + pair GetDrawableScaleRangeForRules(FeatureBase const & f, int rules); //@} /// @return (geometry type, is coastline) diff --git a/map/address_finder.cpp b/map/address_finder.cpp index 3337259333..ab1e72e533 100644 --- a/map/address_finder.cpp +++ b/map/address_finder.cpp @@ -316,8 +316,9 @@ namespace virtual double NeedProcess(feature::TypesHolder const & types) const { + using namespace feature; // we need features with texts for address lookup - pair const r = feature::GetDrawableScaleRangeForText(types); + pair const r = GetDrawableScaleRangeForRules(types, RULE_TEXT | RULE_SYMBOL); return my::between_s(r.first, r.second, m_scale); }