small refactoring mwm traits

This commit is contained in:
Добрый Ээх 2017-03-01 18:04:26 +03:00
parent aaa7e9c665
commit 75dbfa1464
2 changed files with 7 additions and 4 deletions

View file

@ -8,24 +8,24 @@ MwmTraits::MwmTraits(MwmVersion const & version) : m_version(version) {}
MwmTraits::SearchIndexFormat MwmTraits::GetSearchIndexFormat() const
{
if (m_version.GetFormat() < version::Format::v7)
if (GetFormat() < version::Format::v7)
return SearchIndexFormat::FeaturesWithRankAndCenter;
return SearchIndexFormat::CompressedBitVector;
}
MwmTraits::HouseToStreetTableFormat MwmTraits::GetHouseToStreetTableFormat() const
{
if (m_version.GetFormat() < version::Format::v7)
if (GetFormat() < version::Format::v7)
return HouseToStreetTableFormat::Unknown;
return HouseToStreetTableFormat::Fixed3BitsDDVector;
}
bool MwmTraits::HasOffsetsTable() const { return m_version.GetFormat() >= version::Format::v6; }
bool MwmTraits::HasOffsetsTable() const { return GetFormat() >= version::Format::v6; }
bool MwmTraits::HasRoutingIndex() const
{
uint32_t constexpr kFirstVersionWithRoutingIndex = 161206;
return m_version.GetVersion() >= kFirstVersionWithRoutingIndex;
return GetVersion() >= kFirstVersionWithRoutingIndex;
}
string DebugPrint(MwmTraits::SearchIndexFormat format)

View file

@ -51,6 +51,9 @@ public:
bool HasRoutingIndex() const;
private:
Format GetFormat() const { return m_version.GetFormat(); }
uint32_t GetVersion() const { return m_version.GetVersion(); }
MwmVersion m_version;
};