forked from organicmaps/organicmaps-tmp
Render building parts only in 3d mode.
This commit is contained in:
parent
1b7f5d8257
commit
3339b9bc1f
7 changed files with 40 additions and 9 deletions
|
@ -134,7 +134,10 @@ void RuleDrawer::operator()(FeatureType const & f)
|
|||
|
||||
if (s.AreaStyleExists())
|
||||
{
|
||||
bool const is3dBuilding = m_is3dBuidings ? (ftypes::IsBuildingChecker::Instance()(f) && f.GetLayer() >= 0) : false;
|
||||
bool const is3dBuilding =
|
||||
m_is3dBuidings ? ((ftypes::IsBuildingChecker::Instance()(f) ||
|
||||
ftypes::IsBuildingPartChecker::Instance()(f)) && f.GetLayer() >= 0)
|
||||
: false;
|
||||
|
||||
float areaHeight = 0.0f;
|
||||
float areaMinHeight = 0.0f;
|
||||
|
|
|
@ -333,8 +333,12 @@ CaptionDescription & Stylist::GetCaptionDescriptionImpl()
|
|||
return m_captionDescriptor;
|
||||
}
|
||||
|
||||
bool InitStylist(FeatureType const & f, int const zoomLevel, Stylist & s)
|
||||
bool InitStylist(FeatureType const & f, int const zoomLevel, bool buildings3d, Stylist & s)
|
||||
{
|
||||
if (!buildings3d && ftypes::IsBuildingPartChecker::Instance()(f) &&
|
||||
!ftypes::IsBuildingChecker::Instance()(f))
|
||||
return false;
|
||||
|
||||
drule::KeysT keys;
|
||||
pair<int, bool> geomType = feature::GetDrawRule(f, zoomLevel, keys);
|
||||
|
||||
|
|
|
@ -63,6 +63,7 @@ public:
|
|||
private:
|
||||
friend bool InitStylist(FeatureType const &,
|
||||
int const,
|
||||
bool buildings3d,
|
||||
Stylist &);
|
||||
|
||||
void RaiseCoastlineFlag();
|
||||
|
@ -82,6 +83,7 @@ private:
|
|||
|
||||
bool InitStylist(FeatureType const & f,
|
||||
int const zoomLevel,
|
||||
bool buildings3d,
|
||||
Stylist & s);
|
||||
|
||||
} // namespace df
|
||||
|
|
|
@ -16,7 +16,7 @@ namespace df
|
|||
|
||||
TileInfo::TileInfo(drape_ptr<EngineContext> && context)
|
||||
: m_context(move(context))
|
||||
, m_is3dBuidings(false)
|
||||
, m_is3dBuildings(false)
|
||||
, m_isCanceled(false)
|
||||
{
|
||||
}
|
||||
|
@ -74,7 +74,7 @@ void TileInfo::ReadFeatures(MapDataProvider const & model, MemoryFeatureIndex &
|
|||
RuleDrawer drawer(bind(&TileInfo::InitStylist, this, _1 ,_2),
|
||||
bind(&TileInfo::IsCancelled, this),
|
||||
model.m_isCountryLoadedByNameFn,
|
||||
make_ref(m_context), m_is3dBuidings);
|
||||
make_ref(m_context), m_is3dBuildings);
|
||||
model.ReadFeatures(bind<void>(ref(drawer), _1), featuresToRead);
|
||||
}
|
||||
}
|
||||
|
@ -100,7 +100,7 @@ void TileInfo::ProcessID(FeatureID const & id)
|
|||
void TileInfo::InitStylist(FeatureType const & f, Stylist & s)
|
||||
{
|
||||
CheckCanceled();
|
||||
df::InitStylist(f, m_context->GetTileKey().m_styleZoomLevel, s);
|
||||
df::InitStylist(f, m_context->GetTileKey().m_styleZoomLevel, m_is3dBuildings, s);
|
||||
}
|
||||
|
||||
bool TileInfo::DoNeedReadIndex() const
|
||||
|
|
|
@ -31,8 +31,8 @@ public:
|
|||
void Cancel(MemoryFeatureIndex & memIndex);
|
||||
bool IsCancelled() const;
|
||||
|
||||
void Set3dBuildings(bool buildings3d) { m_is3dBuidings = buildings3d; }
|
||||
bool Get3dBuildings() const { return m_is3dBuidings; }
|
||||
void Set3dBuildings(bool buildings3d) { m_is3dBuildings = buildings3d; }
|
||||
bool Get3dBuildings() const { return m_is3dBuildings; }
|
||||
|
||||
m2::RectD GetGlobalRect() const;
|
||||
TileKey const & GetTileKey() const { return m_context->GetTileKey(); }
|
||||
|
@ -50,7 +50,7 @@ private:
|
|||
private:
|
||||
drape_ptr<EngineContext> m_context;
|
||||
TFeaturesInfo m_featureInfo;
|
||||
bool m_is3dBuidings;
|
||||
bool m_is3dBuildings;
|
||||
|
||||
atomic<bool> m_isCanceled;
|
||||
};
|
||||
|
|
|
@ -172,7 +172,6 @@ IsBuildingChecker::IsBuildingChecker()
|
|||
Classificator const & c = classif();
|
||||
|
||||
m_types.push_back(c.GetTypeByPath({ "building" }));
|
||||
m_types.push_back(c.GetTypeByPath({ "building:part" }));
|
||||
m_types.push_back(c.GetTypeByPath({ "building", "address" }));
|
||||
}
|
||||
|
||||
|
@ -200,6 +199,21 @@ IsLocalityChecker::IsLocalityChecker()
|
|||
m_types.push_back(c.GetTypeByPath(vector<string>(arr[i], arr[i] + 2)));
|
||||
}
|
||||
|
||||
IsBuildingPartChecker::IsBuildingPartChecker() : BaseChecker(3)
|
||||
{
|
||||
}
|
||||
|
||||
IsBuildingPartChecker const & IsBuildingPartChecker::Instance()
|
||||
{
|
||||
static const IsBuildingPartChecker inst;
|
||||
return inst;
|
||||
}
|
||||
|
||||
bool IsBuildingPartChecker::IsMatched(uint32_t type) const
|
||||
{
|
||||
return IsTypeConformed(type, {"building:part"});
|
||||
}
|
||||
|
||||
IsBridgeChecker::IsBridgeChecker() : BaseChecker(3)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -101,6 +101,14 @@ public:
|
|||
uint32_t GetMainType() const { return m_types[0]; }
|
||||
};
|
||||
|
||||
class IsBuildingPartChecker : public BaseChecker
|
||||
{
|
||||
virtual bool IsMatched(uint32_t type) const;
|
||||
public:
|
||||
IsBuildingPartChecker();
|
||||
static IsBuildingPartChecker const & Instance();
|
||||
};
|
||||
|
||||
class IsBridgeChecker : public BaseChecker
|
||||
{
|
||||
virtual bool IsMatched(uint32_t type) const;
|
||||
|
|
Loading…
Add table
Reference in a new issue