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

tree4d.hpp « geometry - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8401ab9e4b55c105801fac1460459f7c84abb37 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#pragma once

#include "rect2d.hpp"
#include "point2d.hpp"

#include "../base/stl_add.hpp"

#include "../std/kdtree.hpp"


namespace m4
{
  template <class T>
  class Tree
  {
    struct value_t
    {
      T m_val;
      double m_pts[4];

      typedef double value_type;

      value_t(T const & t, m2::RectD const & r) : m_val(t)
      {
        m_pts[0] = r.minX();
        m_pts[1] = r.minY();
        m_pts[2] = r.maxX();
        m_pts[3] = r.maxY();
      }

      bool IsIntersect(m2::RectD const & r) const
      {
        return !((m_pts[2] <= r.minX()) || (m_pts[0] >= r.maxX()) ||
                 (m_pts[3] <= r.minY()) || (m_pts[1] >= r.maxY()));
      }

      double operator[](size_t i) const { return m_pts[i]; }
    };

    typedef KDTree::KDTree<4, value_t> tree_t;
    typedef typename tree_t::_Region_ region_t;
    tree_t m_tree;

    typedef vector<value_t const *> store_vec_t;

    class insert_if_intersect
    {
      store_vec_t & m_isect;
      m2::RectD const & m_rect;

    public:
      insert_if_intersect(store_vec_t & isect, m2::RectD const & r)
        : m_isect(isect), m_rect(r)
      {
      }

      void operator() (value_t const & v)
      {
        if (v.IsIntersect(m_rect))
          m_isect.push_back(&v);
      }
    };

  public:

    template <class TCompare>
    void ReplaceIf(T const & obj, m2::RectD const & rect, TCompare comp)
    {
      region_t rgn;
      for (size_t i = 0; i < 4; ++i)
      {
        if (i % 2 == 0)
        {
          rgn._M_low_bounds[i] = rect.minX();
          rgn._M_high_bounds[i] = rect.maxX();
        }
        else
        {
          rgn._M_low_bounds[i] = rect.minY();
          rgn._M_high_bounds[i] = rect.maxY();
        }
      }

      store_vec_t isect;

      m_tree.visit_within_range(rgn, insert_if_intersect(isect, rect));

      for (size_t i = 0; i < isect.size(); ++i)
        if (!comp(obj, isect[i]->m_val))
          return;

      for (typename store_vec_t::const_iterator i = isect.begin(); i != isect.end(); ++i)
        m_tree.erase(**i);

      m_tree.insert(value_t(obj, rect));
    }

    template <class TCompare>
    void ReplaceIf(T const & obj, TCompare comp)
    {
      ReplaceIf(obj, obj.GetLimitRect(), comp);
    }

    template <class ToDo>
    void ForEach(ToDo toDo) const
    {
      for (typename tree_t::const_iterator i = m_tree.begin(); i != m_tree.end(); ++i)
        toDo((*i).m_val);
    }

    void Clear() { m_tree.clear(); }
  };
}