Welcome to mirror list, hosted at ThFree Co, Russian Federation.

benchmark_provider.cpp « map - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 779325ab01207af3685c418f480499e9143848a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include "base/SRC_FIRST.hpp"
#include "map/benchmark_provider.hpp"
#include "geometry/mercator.hpp"

BenchmarkRectProvider::BenchmarkRectProvider(int startLevel, m2::RectD const & startRect, int endLevel)
  : m_endLevel(endLevel)
{
  m_rects.push_back(make_pair(startRect, startLevel));
}

bool BenchmarkRectProvider::hasRect() const
{
  return !m_rects.empty();
}

m2::RectD const BenchmarkRectProvider::nextRect()
{
  pair<m2::RectD, int> const & f = m_rects.front();
  m2::RectD r = f.first;

  if (f.second < m_endLevel)
  {
    int nextLevel = f.second + 1;

    m_rects.push_back(make_pair(m2::RectD(r.minX(), r.minY(), r.minX() + r.SizeX() / 2, r.minY() + r.SizeY() / 2), nextLevel));
    m_rects.push_back(make_pair(m2::RectD(r.minX() + r.SizeX() / 2, r.minY(), r.maxX(), r.minY() + r.SizeY() / 2), nextLevel));
    m_rects.push_back(make_pair(m2::RectD(r.minX(), r.minY() + r.SizeY() / 2, r.minX() + r.SizeX() / 2, r.maxY()), nextLevel));
    m_rects.push_back(make_pair(m2::RectD(r.minX() + r.SizeX() / 2, r.minY() + r.SizeY() / 2, r.maxX(), r.maxY()), nextLevel));
  }

  m_rects.pop_front();
  return r;
}