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

tile_info.hpp « drape_frontend - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43f245cbc844548aed6a456735feb72d82d18015 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#pragma once

#include "drape_frontend/custom_features_context.hpp"
#include "drape_frontend/engine_context.hpp"
#include "drape_frontend/tile_key.hpp"

#include "indexer/feature_decl.hpp"

#include "base/exception.hpp"
#include "base/macros.hpp"

#include <atomic>
#include <set>
#include <vector>

class FeatureType;

namespace df
{
class MapDataProvider;
class Stylist;

class TileInfo
{
public:
  DECLARE_EXCEPTION(ReadCanceledException, RootException);

  TileInfo(drape_ptr<EngineContext> && engineContext);

  void ReadFeatures(MapDataProvider const & model);
  void Cancel();
  bool IsCancelled() const;

  m2::RectD GetGlobalRect() const;
  TileKey const & GetTileKey() const { return m_context->GetTileKey(); }
  bool operator <(TileInfo const & other) const { return GetTileKey() < other.GetTileKey(); }

private:
  void ReadFeatureIndex(MapDataProvider const & model);
  void InitStylist(int8_t deviceLang, FeatureType const & f, Stylist & s);
  void CheckCanceled() const;
  bool DoNeedReadIndex() const;

  int GetZoomLevel() const;

private:
  drape_ptr<EngineContext> m_context;
  std::vector<FeatureID> m_featureInfo;
  std::atomic<bool> m_isCanceled;
  std::set<MwmSet::MwmId> m_mwms;

  DISALLOW_COPY_AND_MOVE(TileInfo);
};
}  // namespace df