diff --git a/indexer/feature.cpp b/indexer/feature.cpp index 4e2e7ffd63..17208550b7 100644 --- a/indexer/feature.cpp +++ b/indexer/feature.cpp @@ -290,13 +290,13 @@ double FeatureType::GetPopulationDrawRank() const if (n == 1) return 0.0; // Do not return rank for countries. - if (feature::IsCountry(m_Types, m_Types + GetTypesCount())) - return 0.0; - else + if (feature::UsePopulationRank(m_Types, m_Types + GetTypesCount())) { double const upperBound = 3.0E6; return min(upperBound, static_cast(n)) / upperBound; } + else + return 0.0; } namespace diff --git a/indexer/feature_visibility.cpp b/indexer/feature_visibility.cpp index b86d6ee277..d5ead6d4bd 100644 --- a/indexer/feature_visibility.cpp +++ b/indexer/feature_visibility.cpp @@ -335,24 +335,42 @@ bool IsHighway(vector const & types) return false; } -bool IsCountry(uint32_t type) +bool UsePopulationRank(uint32_t type) { - class checker_t + class CheckerT { - public: - uint32_t m_type; + uint32_t m_types[3]; - checker_t() + public: + CheckerT() { + Classificator & c = classif(); + vector vec; vec.push_back("place"); - vec.push_back("country"); - m_type = classif().GetTypeByPath(vec); + vec.push_back("city"); + m_types[0] = c.GetTypeByPath(vec); + + vec.push_back("capital"); + m_types[1] = c.GetTypeByPath(vec); + + vec.clear(); + vec.push_back("place"); + vec.push_back("town"); + m_types[2] = c.GetTypeByPath(vec); + } + + bool IsMyType(uint32_t t) const + { + for (size_t i = 0; i < ARRAY_SIZE(m_types); ++i) + if (t == m_types[i]) + return true; + return false; } }; - static checker_t checker; - return (type == checker.m_type); + static CheckerT checker; + return (checker.IsMyType(type)); } } diff --git a/indexer/feature_visibility.hpp b/indexer/feature_visibility.hpp index 9ba42164a2..27b15c136e 100644 --- a/indexer/feature_visibility.hpp +++ b/indexer/feature_visibility.hpp @@ -33,13 +33,14 @@ namespace feature bool IsHighway(vector const & types); - bool IsCountry(uint32_t type); + bool UsePopulationRank(uint32_t type); + template - inline bool IsCountry(IterT beg, IterT end) + inline bool UsePopulationRank(IterT beg, IterT end) { while (beg != end) { - if (IsCountry(*beg++)) + if (UsePopulationRank(*beg++)) return true; } return false;