From 7c6777c3647530d639c4f3e7a9ba07fa7de0c87e Mon Sep 17 00:00:00 2001 From: vng Date: Thu, 6 Nov 2014 13:24:40 +0300 Subject: [PATCH] [generator] Fixed bug with skipping non-drawable special types. --- generator/feature_merger.cpp | 25 ++++++++++++++++++------- indexer/feature_visibility.cpp | 2 +- 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/generator/feature_merger.cpp b/generator/feature_merger.cpp index a8b2744136..998d65d1c6 100644 --- a/generator/feature_merger.cpp +++ b/generator/feature_merger.cpp @@ -323,10 +323,11 @@ namespace feature class IsInvisibleFn { int m_lowScale, m_upScale; + bool m_leaveSpecialTypes; public: - IsInvisibleFn(int lowScale, int upScale) - : m_lowScale(lowScale), m_upScale(upScale) + IsInvisibleFn(int lowScale, int upScale, bool leaveSpecialTypes) + : m_lowScale(lowScale), m_upScale(upScale), m_leaveSpecialTypes(leaveSpecialTypes) { } @@ -334,9 +335,18 @@ public: { pair const range = feature::GetDrawableScaleRange(type); - // Actually it should not be equal to -1, but leave for safety reasons. - return (range.first == -1 || - range.first > m_upScale || range.second < m_lowScale); + // We have feature types without any drawing rules. + // This case was processed before: + // - feature::TypeAlwaysExists; + // - FeatureBuilder::RemoveInvalidTypes; + // Don't delete them here. + if (m_leaveSpecialTypes && range.first == -1) + { + ASSERT(range.second == -1, ()); + return false; + } + + return (range.first == -1 || (range.first > m_upScale || range.second < m_lowScale)); } }; @@ -344,7 +354,7 @@ bool PreprocessForWorldMap(FeatureBuilder1 & fb) { int const upperScale = scales::GetUpperWorldScale(); - if (fb.RemoveTypesIf(IsInvisibleFn(0, upperScale))) + if (fb.RemoveTypesIf(IsInvisibleFn(0, upperScale, false))) return false; fb.RemoveNameIfInvisible(0, upperScale); @@ -355,7 +365,8 @@ bool PreprocessForWorldMap(FeatureBuilder1 & fb) bool PreprocessForCountryMap(FeatureBuilder1 & fb) { if (fb.RemoveTypesIf(IsInvisibleFn(scales::GetUpperWorldScale() + 1, - scales::GetUpperStyleScale()))) + scales::GetUpperStyleScale(), + true))) { return false; } diff --git a/indexer/feature_visibility.cpp b/indexer/feature_visibility.cpp index 0abb82d63d..ac14aa459b 100644 --- a/indexer/feature_visibility.cpp +++ b/indexer/feature_visibility.cpp @@ -298,7 +298,7 @@ namespace public: IsNonDrawableType(EGeomType ft) : m_c(classif()), m_type(ft) {} - bool operator() (uint32_t t) + bool operator() (uint32_t t) const { if (TypeAlwaysExists(t, m_type)) return false;