[generator] Fixed bug with skipping non-drawable special types.

This commit is contained in:
vng 2014-11-06 13:24:40 +03:00 committed by Alex Zolotarev
parent dfb1644047
commit 7c6777c364
2 changed files with 19 additions and 8 deletions

View file

@ -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<int, int> 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;
}

View file

@ -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;