libosmscout  1.1.1
sweep_context.h
Go to the documentation of this file.
1 /*
2  * Poly2Tri Copyright (c) 2009-2010, Poly2Tri Contributors
3  * http://code.google.com/p/poly2tri/
4  *
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without modification,
8  * are permitted provided that the following conditions are met:
9  *
10  * * Redistributions of source code must retain the above copyright notice,
11  * this list of conditions and the following disclaimer.
12  * * Redistributions in binary form must reproduce the above copyright notice,
13  * this list of conditions and the following disclaimer in the documentation
14  * and/or other materials provided with the distribution.
15  * * Neither the name of Poly2Tri nor the names of its contributors may be
16  * used to endorse or promote products derived from this software without specific
17  * prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #ifndef SWEEP_CONTEXT_H
33 #define SWEEP_CONTEXT_H
34 
35 #include <list>
36 #include <vector>
37 #include <cstddef>
38 
39 namespace p2t {
40 
41 // Inital triangle factor, seed triangle will extend 30% of
42 // PointSet width to both left and right.
43 const double kAlpha = 0.3;
44 
45 struct Point;
46 class Triangle;
47 struct Node;
48 struct Edge;
49 class AdvancingFront;
50 
51 class SweepContext {
52 public:
53 
55 explicit SweepContext(const std::vector<Point*> &polyline);
58 
59 void set_head(Point* p1);
60 
61 Point* head();
62 
63 void set_tail(Point* p1);
64 
65 Point* tail();
66 
67 int point_count();
68 
69 Node& LocateNode(Point& point);
70 
71 void RemoveNode(Node* node);
72 
73 void CreateAdvancingFront(std::vector<Node*> nodes);
74 
77 
78 void AddToMap(Triangle* triangle);
79 
80 Point* GetPoint(const int& index);
81 
82 Point* GetPoints();
83 
84 void RemoveFromMap(Triangle* triangle);
85 
86 void AddHole(std::vector<Point*> polyline);
87 
88 void AddPoint(Point* point);
89 
91 
92 void MeshClean(Triangle& triangle);
93 
94 std::vector<Triangle*> GetTriangles();
95 std::list<Triangle*> GetMap();
96 
97 std::vector<Edge*> edge_list;
98 
99 struct Basin {
103  double width;
105 
106  Basin() : left_node(nullptr), bottom_node(nullptr), right_node(nullptr), width(0.0), left_highest(false)
107  {
108  }
109 
110  void Clear()
111  {
112  left_node = nullptr;
113  bottom_node = nullptr;
114  right_node = nullptr;
115  width = 0.0;
116  left_highest = false;
117  }
118 };
119 
120 struct EdgeEvent {
122  bool right;
123 
124  EdgeEvent() : constrained_edge(nullptr), right(false)
125  {
126  }
127 };
128 
131 
132 private:
133 
134 friend class Sweep;
135 
136 std::vector<Triangle*> triangles_;
137 std::list<Triangle*> map_;
138 std::vector<Point*> points_;
139 
140 // Advancing front
141 AdvancingFront* front_;
142 // head point used with advancing front
143 Point* head_;
144 // tail point used with advancing front
145 Point* tail_;
146 
147 Node *af_head_, *af_middle_, *af_tail_;
148 
149 void InitTriangulation();
150 void InitEdges(std::vector<Point*> polyline);
151 
152 };
153 
155 {
156  return front_;
157 }
158 
160 {
161  return points_.size();
162 }
163 
165 {
166  head_ = p1;
167 }
168 
170 {
171  return head_;
172 }
173 
175 {
176  tail_ = p1;
177 }
178 
180 {
181  return tail_;
182 }
183 
184 }
185 
186 #endif
void set_head(Point *p1)
Definition: sweep_context.h:164
void AddToMap(Triangle *triangle)
void RemoveFromMap(Triangle *triangle)
std::vector< Triangle * > GetTriangles()
void AddHole(std::vector< Point *> polyline)
int point_count()
Definition: sweep_context.h:159
Definition: sweep_context.h:99
Basin()
Definition: sweep_context.h:106
EdgeEvent edge_event
Definition: sweep_context.h:130
bool right
Definition: sweep_context.h:122
void set_tail(Point *p1)
Definition: sweep_context.h:174
Node * right_node
Definition: sweep_context.h:102
Definition: advancing_front.h:62
void AddPoint(Point *point)
Node * bottom_node
Definition: sweep_context.h:101
Edge * constrained_edge
Definition: sweep_context.h:121
void MeshClean(Triangle &triangle)
double width
Definition: sweep_context.h:103
const double kAlpha
Definition: sweep_context.h:43
Definition: advancing_front.h:42
Definition: shapes.h:150
Node * left_node
Definition: sweep_context.h:100
Point * GetPoint(const int &index)
std::vector< Edge * > edge_list
Definition: sweep_context.h:97
void CreateAdvancingFront(std::vector< Node *> nodes)
Node & LocateNode(Point &point)
void MapTriangleToNodes(Triangle &t)
Try to map a node to all sides of this triangle that don&#39;t have a neighbor.
Definition: sweep_context.h:120
AdvancingFront * front()
Definition: sweep_context.h:154
void RemoveNode(Node *node)
Basin basin
Definition: sweep_context.h:129
Definition: shapes.h:123
Point * head()
Definition: sweep_context.h:169
~SweepContext()
Destructor.
Definition: sweep.h:52
SweepContext(const std::vector< Point *> &polyline)
Constructor.
Point * tail()
Definition: sweep_context.h:179
Definition: sweep_context.h:51
Point * GetPoints()
Definition: shapes.h:41
bool left_highest
Definition: sweep_context.h:104
Definition: shapes.h:45
EdgeEvent()
Definition: sweep_context.h:124
void Clear()
Definition: sweep_context.h:110
std::list< Triangle * > GetMap()