forked from organicmaps/organicmaps-tmp
Add scales to filter mwm files in index.
This commit is contained in:
parent
a3585d1b99
commit
9e0c9222a0
5 changed files with 27 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
#include "data_header.hpp"
|
||||
|
||||
#include "../indexer/point_to_int64.hpp"
|
||||
#include "point_to_int64.hpp"
|
||||
#include "scales.hpp"
|
||||
|
||||
#include "../coding/file_reader.hpp"
|
||||
#include "../coding/file_writer.hpp"
|
||||
|
@ -42,6 +42,20 @@ namespace feature
|
|||
m_scales[i] = static_cast<uint8_t>(arr[i]);
|
||||
}
|
||||
|
||||
pair<int, int> DataHeader::GetScaleRange() const
|
||||
{
|
||||
pair<int, int> ret(0, scales::GetUpperScale());
|
||||
|
||||
int const bound = scales::GetUpperWorldScale();
|
||||
|
||||
if (m_scales.front() > bound)
|
||||
ret.first = bound+1;
|
||||
if (m_scales.back() <= bound)
|
||||
ret.second = bound;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
void DataHeader::Save(FileWriter & w) const
|
||||
{
|
||||
WriteToSink(w, m_base);
|
||||
|
|
|
@ -36,6 +36,7 @@ namespace feature
|
|||
void SetScales(int * arr);
|
||||
size_t GetScalesCount() const { return m_scales.size(); }
|
||||
int GetScale(int i) const { return m_scales[i]; }
|
||||
pair<int, int> GetScaleRange() const;
|
||||
|
||||
/// @name Serialization
|
||||
//@{
|
||||
|
|
|
@ -22,7 +22,7 @@ namespace feature
|
|||
}
|
||||
|
||||
|
||||
static int g_arrWorldScales[] = { 2, 4, 5, 6 }; // 6 = upper scale for world.mwm visibility
|
||||
static int g_arrWorldScales[] = { 2, 4, 5, 6 }; // 6 = scales::GetUpperWorldScale()
|
||||
static int g_arrCountryScales[] = { 7, 10, 14, 17 }; // 17 = scales::GetUpperScale()
|
||||
|
||||
inline string GetTagForIndex(char const * prefix, int ind)
|
||||
|
|
|
@ -219,14 +219,16 @@ private:
|
|||
// TODO: If path is cellid-style-square, make rect from cellid and don't open the file.
|
||||
feature::DataHeader header;
|
||||
header.Load(FilesContainerR(path).GetReader(HEADER_FILE_TAG));
|
||||
|
||||
m_Rect = header.GetBounds();
|
||||
m_scaleRange = header.GetScaleRange();
|
||||
}
|
||||
|
||||
// TODO: GetIndex(), Open() and Close() make Index single-threaded!
|
||||
IndexT * GetIndex(uint32_t /*scale*/, m2::RectD const & occlusionRect)
|
||||
IndexT * GetIndex(uint32_t scale, m2::RectD const & occlusionRect)
|
||||
{
|
||||
// TODO: Scale should also be taken into account, to skip irrelevant mwm files.
|
||||
if (m_Rect.IsIntersect(occlusionRect))
|
||||
if ((m_scaleRange.first <= scale && scale <= m_scaleRange.second) &&
|
||||
m_Rect.IsIntersect(occlusionRect))
|
||||
{
|
||||
Open();
|
||||
m_QueriesSkipped = 0;
|
||||
|
@ -278,8 +280,10 @@ private:
|
|||
}
|
||||
}
|
||||
|
||||
m2::RectD m_Rect;
|
||||
string m_Path; // TODO: Store prefix and suffix of path in MultiIndexAdapter.
|
||||
m2::RectD m_Rect;
|
||||
pair<int, int> m_scaleRange;
|
||||
|
||||
IndexT * m_pIndex;
|
||||
uint8_t m_QueriesSkipped;
|
||||
};
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
namespace scales
|
||||
{
|
||||
inline int GetUpperScale() { return 17; }
|
||||
inline int GetUpperWorldScale() { return 6; }
|
||||
|
||||
double GetM2PFactor(int level);
|
||||
int GetScaleLevel(double ratio);
|
||||
|
|
Loading…
Add table
Reference in a new issue