diff --git a/generator/feature_builder.cpp b/generator/feature_builder.cpp index 9621967d21..a82c51c85b 100644 --- a/generator/feature_builder.cpp +++ b/generator/feature_builder.cpp @@ -118,8 +118,7 @@ bool FeatureBuilder1::RemoveInvalidTypes() if (!m_params.FinishAddingTypes()) return false; - return feature::RemoveNoDrawableTypes(m_params.m_Types, - static_cast(m_params.GetGeomType())); + return feature::RemoveNoDrawableTypes(m_params.m_Types, m_params.GetGeomType()); } bool FeatureBuilder1::FormatFullAddress(string & res) const diff --git a/generator/generator_tests/classificator_tests.cpp b/generator/generator_tests/classificator_tests.cpp index 89c9d14f9a..abe95cc757 100644 --- a/generator/generator_tests/classificator_tests.cpp +++ b/generator/generator_tests/classificator_tests.cpp @@ -130,7 +130,7 @@ pair GetMinMax(int level, vector const & types) pair res(numeric_limits::max(), numeric_limits::min()); drule::KeysT keys; - feature::GetDrawRule(types, level, feature::FEATURE_TYPE_AREA, keys); + feature::GetDrawRule(types, level, feature::GEOM_AREA, keys); for (size_t i = 0; i < keys.size(); ++i) { diff --git a/generator/generator_tests/feature_builder_test.cpp b/generator/generator_tests/feature_builder_test.cpp index 9595fa07bb..5c8e51a047 100644 --- a/generator/generator_tests/feature_builder_test.cpp +++ b/generator/generator_tests/feature_builder_test.cpp @@ -78,7 +78,7 @@ UNIT_TEST(FVisibility_RemoveNoDrawableTypes) char const * arr[] = { "amenity", "theatre" }; types.push_back(c.GetTypeByPath(vector(arr, arr + 2))); - TEST(feature::RemoveNoDrawableTypes(types, feature::FEATURE_TYPE_AREA), ()); + TEST(feature::RemoveNoDrawableTypes(types, feature::GEOM_AREA), ()); TEST_EQUAL(types.size(), 2, ()); } diff --git a/generator/osm_element.hpp b/generator/osm_element.hpp index 1e2d851cdb..6a8e9df743 100644 --- a/generator/osm_element.hpp +++ b/generator/osm_element.hpp @@ -302,7 +302,7 @@ class SecondPassParser : public BaseOSMParser //@{ void EmitPoint(m2::PointD const & pt, FeatureParams params, osm::Id id) { - if (feature::RemoveNoDrawableTypes(params.m_Types, feature::FEATURE_TYPE_POINT)) + if (feature::RemoveNoDrawableTypes(params.m_Types, feature::GEOM_POINT)) { FeatureBuilderT ft; ft.SetCenter(pt); @@ -314,7 +314,7 @@ class SecondPassParser : public BaseOSMParser void EmitLine(FeatureBuilderT & ft, FeatureParams params, osm::Id id) { if ((m_coastType != 0 && params.IsTypeExist(m_coastType)) || - feature::RemoveNoDrawableTypes(params.m_Types, feature::FEATURE_TYPE_LINE)) + feature::RemoveNoDrawableTypes(params.m_Types, feature::GEOM_LINE)) { ft.SetLinear(params.m_reverseGeometry); ft.SetOsmId(id); @@ -331,12 +331,12 @@ class SecondPassParser : public BaseOSMParser if (ft.IsGeometryClosed()) { // Key point here is that IsDrawableLike and RemoveNoDrawableTypes - // work a bit different for FEATURE_TYPE_AREA. + // work a bit different for GEOM_AREA. - if (IsDrawableLike(params.m_Types, FEATURE_TYPE_AREA)) + if (IsDrawableLike(params.m_Types, GEOM_AREA)) { // Make the area feature if it has unique area styles. - VERIFY ( RemoveNoDrawableTypes(params.m_Types, FEATURE_TYPE_AREA), (params) ); + VERIFY(RemoveNoDrawableTypes(params.m_Types, GEOM_AREA), (params)); makeFn(ft); diff --git a/indexer/classificator.cpp b/indexer/classificator.cpp index 1fd02b0b8b..d74ae3d903 100644 --- a/indexer/classificator.cpp +++ b/indexer/classificator.cpp @@ -273,9 +273,9 @@ namespace }; } -void ClassifObject::GetSuitable(int scale, FeatureGeoType ft, drule::KeysT & keys) const +void ClassifObject::GetSuitable(int scale, feature::EGeomType ft, drule::KeysT & keys) const { - ASSERT ( ft <= FEATURE_TYPE_AREA, () ); + ASSERT(ft >= 0 && ft <= 2, ()); // 2. Check visibility criterion for scale first. if (!m_visibility[scale]) @@ -296,14 +296,14 @@ bool ClassifObject::IsDrawableAny() const return (m_visibility != visible_mask_t() && !m_drawRule.empty()); } -bool ClassifObject::IsDrawableLike(FeatureGeoType ft) const +bool ClassifObject::IsDrawableLike(feature::EGeomType ft) const { + ASSERT(ft >= 0 && ft <= 2, ()); + // check the very common criterion first if (!IsDrawableAny()) return false; - ASSERT ( ft <= FEATURE_TYPE_AREA, () ); - static const int visible[3][drule::count_of_rules] = { {0, 0, 1, 1, 1, 0, 0}, // fpoint {1, 0, 0, 0, 0, 1, 0}, // fline diff --git a/indexer/classificator.hpp b/indexer/classificator.hpp index b30a1f3607..910b5eaa63 100644 --- a/indexer/classificator.hpp +++ b/indexer/classificator.hpp @@ -2,6 +2,7 @@ #include "drawing_rule_def.hpp" #include "types_mapping.hpp" #include "scales.hpp" +#include "feature_decl.hpp" #include "../std/vector.hpp" #include "../std/string.hpp" @@ -77,13 +78,12 @@ public: void ConcatChildNames(string & s) const; - enum FeatureGeoType { FEATURE_TYPE_POINT = 0, FEATURE_TYPE_LINE, FEATURE_TYPE_AREA }; - void GetSuitable(int scale, FeatureGeoType ft, drule::KeysT & keys) const; + void GetSuitable(int scale, feature::EGeomType ft, drule::KeysT & keys) const; inline vector const & GetDrawingRules() const { return m_drawRule; } bool IsDrawable(int scale) const; bool IsDrawableAny() const; - bool IsDrawableLike(FeatureGeoType ft) const; + bool IsDrawableLike(feature::EGeomType ft) const; pair GetDrawScaleRange() const; diff --git a/indexer/feature.cpp b/indexer/feature.cpp index 22e0c647e9..610e21326f 100644 --- a/indexer/feature.cpp +++ b/indexer/feature.cpp @@ -142,16 +142,16 @@ string FeatureType::DebugString(int scale) const switch (GetFeatureType()) { - case FEATURE_TYPE_POINT: + case GEOM_POINT: s += (" Center:" + DebugPrint(m_center)); break; - case FEATURE_TYPE_LINE: + case GEOM_LINE: s += " Points:"; Points2String(s, m_points); break; - case FEATURE_TYPE_AREA: + case GEOM_AREA: s += " Triangles:"; Points2String(s, m_triangles); break; diff --git a/indexer/feature_data.hpp b/indexer/feature_data.hpp index 04dc68a7ce..798da16241 100644 --- a/indexer/feature_data.hpp +++ b/indexer/feature_data.hpp @@ -16,15 +16,6 @@ class FeatureBase; namespace feature { - enum EGeomType - { - GEOM_UNDEFINED = -1, - // Note! do not change this values. Should be equal with FeatureGeoType. - GEOM_POINT = 0, - GEOM_LINE = 1, - GEOM_AREA = 2 - }; - enum EHeaderMask { HEADER_TYPE_MASK = 7U, diff --git a/indexer/feature_decl.cpp b/indexer/feature_decl.cpp new file mode 100644 index 0000000000..69ccfcaaab --- /dev/null +++ b/indexer/feature_decl.cpp @@ -0,0 +1,11 @@ +#include "feature_decl.hpp" + +#include "../std/sstream.hpp" + + +string DebugPrint(FeatureID const & id) +{ + ostringstream ss; + ss << "{ " << id.m_mwm << ", " << id.m_offset << " }"; + return ss.str(); +} diff --git a/indexer/feature_decl.hpp b/indexer/feature_decl.hpp index 8fa8ffc110..e5d88205fd 100644 --- a/indexer/feature_decl.hpp +++ b/indexer/feature_decl.hpp @@ -1,10 +1,23 @@ #pragma once -#include "../std/sstream.hpp" -#include "../std/string.hpp" #include "../std/stdint.hpp" +#include "../std/string.hpp" +namespace feature +{ + +enum EGeomType +{ + GEOM_UNDEFINED = -1, + // Note! do not change this values. Should be equal with FeatureGeoType. + GEOM_POINT = 0, + GEOM_LINE = 1, + GEOM_AREA = 2 +}; + +} + struct FeatureID { size_t m_mwm; @@ -32,11 +45,6 @@ struct FeatureID { return !(*this == r); } -}; -inline string DebugPrint(FeatureID const & id) -{ - ostringstream ss; - ss << "{ " << id.m_mwm << ", " << id.m_offset << " }"; - return ss.str(); -} + friend string DebugPrint(FeatureID const & id); +}; diff --git a/indexer/feature_visibility.cpp b/indexer/feature_visibility.cpp index f3dc91d1c0..2d119bc3e0 100644 --- a/indexer/feature_visibility.cpp +++ b/indexer/feature_visibility.cpp @@ -100,13 +100,12 @@ namespace class DrawRuleGetter { int m_scale; - ClassifObject::FeatureGeoType m_ft; + EGeomType m_ft; drule::KeysT & m_keys; public: - DrawRuleGetter(int scale, feature::EGeomType ft, - drule::KeysT & keys) - : m_scale(scale), m_ft(ClassifObject::FeatureGeoType(ft)), m_keys(keys) + DrawRuleGetter(int scale, feature::EGeomType ft, drule::KeysT & keys) + : m_scale(scale), m_ft(ft), m_keys(keys) { } @@ -177,13 +176,10 @@ namespace class IsDrawableLikeChecker { - ClassifObject::FeatureGeoType m_type; + EGeomType m_type; public: - IsDrawableLikeChecker(FeatureGeoType type) - : m_type(ClassifObject::FeatureGeoType(type)) - { - } + IsDrawableLikeChecker(EGeomType type) : m_type(type) {} typedef bool ResultType; @@ -202,12 +198,12 @@ namespace class IsDrawableRulesChecker { int m_scale; - ClassifObject::FeatureGeoType m_ft; + EGeomType m_ft; bool m_arr[3]; public: - IsDrawableRulesChecker(int scale, feature::EGeomType ft, int rules) - : m_scale(scale), m_ft(ClassifObject::FeatureGeoType(ft)) + IsDrawableRulesChecker(int scale, EGeomType ft, int rules) + : m_scale(scale), m_ft(ft) { m_arr[0] = rules & RULE_CAPTION; m_arr[1] = rules & RULE_PATH_TEXT; @@ -243,7 +239,7 @@ bool IsDrawableAny(uint32_t type) return classif().GetObject(type)->IsDrawableAny(); } -bool IsDrawableLike(vector const & types, FeatureGeoType ft) +bool IsDrawableLike(vector const & types, EGeomType ft) { Classificator const & c = classif(); @@ -277,13 +273,10 @@ namespace class CheckNonDrawableType { Classificator & m_c; - FeatureGeoType m_type; + EGeomType m_type; public: - CheckNonDrawableType(FeatureGeoType ft) - : m_c(classif()), m_type(ft) - { - } + CheckNonDrawableType(EGeomType ft) : m_c(classif()), m_type(ft) {} bool operator() (uint32_t t) { @@ -293,9 +286,9 @@ namespace // IsDrawableLikeChecker checks only unique area styles, // so we need to take into account point styles too. - if (m_type == FEATURE_TYPE_AREA) + if (m_type == GEOM_AREA) { - IsDrawableLikeChecker doCheck(FEATURE_TYPE_POINT); + IsDrawableLikeChecker doCheck(GEOM_POINT); if (m_c.ProcessObjects(t, doCheck)) return false; } @@ -305,7 +298,7 @@ namespace }; } -bool RemoveNoDrawableTypes(vector & types, FeatureGeoType ft) +bool RemoveNoDrawableTypes(vector & types, EGeomType ft) { types.erase(remove_if(types.begin(), types.end(), CheckNonDrawableType(ft)), types.end()); return !types.empty(); diff --git a/indexer/feature_visibility.hpp b/indexer/feature_visibility.hpp index 0965991ecc..facb8c6723 100644 --- a/indexer/feature_visibility.hpp +++ b/indexer/feature_visibility.hpp @@ -1,6 +1,7 @@ #pragma once #include "drawing_rule_def.hpp" +#include "feature_decl.hpp" #include "../base/base.hpp" @@ -15,23 +16,13 @@ namespace feature { class TypesHolder; - /// @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 - { - FEATURE_TYPE_POINT = 0, - FEATURE_TYPE_LINE = 1, - FEATURE_TYPE_AREA = 2 - }; - bool IsDrawableAny(uint32_t type); bool IsDrawableForIndex(FeatureBase const & f, int level); /// For FEATURE_TYPE_AREA need to have at least one area-filling type. - bool IsDrawableLike(vector const & types, FeatureGeoType ft); + bool IsDrawableLike(vector const & types, EGeomType ft); /// For FEATURE_TYPE_AREA removes line-drawing only types. - bool RemoveNoDrawableTypes(vector & types, FeatureGeoType ft); + bool RemoveNoDrawableTypes(vector & types, EGeomType ft); //@} int GetMinDrawableScale(FeatureBase const & f); diff --git a/indexer/indexer.pro b/indexer/indexer.pro index 4c7c6d3847..6f70a4d57e 100644 --- a/indexer/indexer.pro +++ b/indexer/indexer.pro @@ -44,6 +44,7 @@ SOURCES += \ mwm_version.cpp \ feature_impl.cpp \ ftypes_matcher.cpp \ + feature_decl.cpp \ HEADERS += \ feature.hpp \