author | alfadur |
Mon, 05 Nov 2018 19:53:26 +0300 | |
changeset 14131 | c416d32764b7 |
parent 14126 | 32383b888309 |
child 14132 | 95360f56db38 |
permissions | -rw-r--r-- |
14069 | 1 |
use itertools::Itertools; |
14081 | 2 |
use std::cmp::min; |
14069 | 3 |
|
14131 | 4 |
use integral_geometry::{Line, Ray, Point, Polygon, Rect, Size}; |
14069 | 5 |
use land2d::Land2D; |
6 |
||
7 |
use outline_template::OutlineTemplate; |
|
8 |
||
9 |
pub struct OutlinePoints { |
|
14124 | 10 |
pub islands: Vec<Polygon>, |
14069 | 11 |
pub fill_points: Vec<Point>, |
12 |
pub size: Size, |
|
14078 | 13 |
pub play_box: Rect, |
14125 | 14 |
intersections_box: Rect, |
14069 | 15 |
} |
16 |
||
17 |
impl OutlinePoints { |
|
18 |
pub fn from_outline_template<I: Iterator<Item = u32>>( |
|
19 |
outline_template: &OutlineTemplate, |
|
14078 | 20 |
play_box: Rect, |
21 |
size: Size, |
|
14069 | 22 |
random_numbers: &mut I, |
23 |
) -> Self { |
|
24 |
Self { |
|
14078 | 25 |
play_box, |
26 |
size, |
|
14069 | 27 |
islands: outline_template |
28 |
.islands |
|
29 |
.iter() |
|
30 |
.map(|i| { |
|
31 |
i.iter() |
|
32 |
.zip(random_numbers.tuples()) |
|
33 |
.map(|(rect, (rnd_a, rnd_b))| { |
|
14131 | 34 |
play_box.top_left() + rect.quotient(rnd_a, rnd_b) |
14122
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
35 |
}) |
14125 | 36 |
.collect::<Vec<_>>() |
37 |
.into() |
|
14122
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
38 |
}) |
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
39 |
.collect(), |
14069 | 40 |
fill_points: outline_template.fill_points.clone(), |
14125 | 41 |
intersections_box: Rect::at_origin(size) |
42 |
.with_margin(size.to_square().width as i32 * -2), |
|
14069 | 43 |
} |
44 |
} |
|
45 |
||
46 |
pub fn total_len(&self) -> usize { |
|
14124 | 47 |
self.islands.iter().map(|i| i.edges_count()).sum::<usize>() + self.fill_points.len() |
14069 | 48 |
} |
49 |
||
14100 | 50 |
pub fn iter(&self) -> impl Iterator<Item = &Point> { |
51 |
self.islands |
|
52 |
.iter() |
|
14124 | 53 |
.flat_map(|p| p.iter()) |
14100 | 54 |
.chain(self.fill_points.iter()) |
55 |
} |
|
56 |
||
14069 | 57 |
pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut Point> { |
58 |
self.islands |
|
59 |
.iter_mut() |
|
60 |
.flat_map(|i| i.iter_mut()) |
|
61 |
.chain(self.fill_points.iter_mut()) |
|
62 |
} |
|
63 |
||
64 |
fn divide_edge<I: Iterator<Item = u32>>( |
|
65 |
&self, |
|
14076
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14069
diff
changeset
|
66 |
segment: Line, |
14100 | 67 |
distance_divisor: u32, |
14069 | 68 |
random_numbers: &mut I, |
69 |
) -> Option<Point> { |
|
14100 | 70 |
#[inline] |
14131 | 71 |
fn intersects(ray: &Ray, edge: &Line) -> bool { |
72 |
ray.orientation(edge.start) != ray.orientation(edge.end) |
|
14100 | 73 |
} |
74 |
||
75 |
#[inline] |
|
14131 | 76 |
fn solve_intersection(intersections_box: &Rect, ray: &Ray, edge: &Line) -> Option<(i32, u32)> |
77 |
{ |
|
78 |
let edge_dir = edge.scaled_direction(); |
|
79 |
let aqpb = ray.direction.cross(edge_dir) as i64; |
|
14100 | 80 |
|
81 |
if aqpb != 0 { |
|
14131 | 82 |
let mut iy = |
83 |
((((edge.start.x - ray.start.x) as i64 * ray.direction.y as i64 |
|
84 |
+ ray.start.y as i64 * ray.direction.x as i64) |
|
85 |
* edge_dir.y as i64 |
|
86 |
- edge.start.y as i64 * edge_dir.x as i64 * ray.direction.y as i64) |
|
14100 | 87 |
/ aqpb) as i32; |
14125 | 88 |
|
89 |
// is there better way to do it? |
|
90 |
if iy < intersections_box.top() { |
|
91 |
iy = intersections_box.top(); |
|
92 |
} else if iy > intersections_box.bottom() { |
|
93 |
iy = intersections_box.bottom(); |
|
94 |
} |
|
95 |
||
14131 | 96 |
let ix = if ray.direction.y.abs() > edge_dir.y.abs() { |
97 |
(iy - ray.start.y) * ray.direction.cotangent() + ray.start.x |
|
14100 | 98 |
} else { |
14131 | 99 |
(iy - edge.start.y) * edge_dir.cotangent() + edge.start.x |
14100 | 100 |
}; |
101 |
||
102 |
let intersection_point = Point::new(ix, iy); |
|
14131 | 103 |
let diff_point = ray.start - intersection_point; |
104 |
let t = ray.direction.dot(diff_point); |
|
14122
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
105 |
if diff_point.max_norm() >= std::i16::MAX as i32 { |
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
106 |
Some((t, std::i32::MAX as u32)) |
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
107 |
} else { |
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
108 |
let d = diff_point.integral_norm(); |
14100 | 109 |
|
14122
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
110 |
Some((t, d)) |
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
111 |
} |
14100 | 112 |
} else { |
113 |
None |
|
114 |
} |
|
115 |
} |
|
116 |
||
14081 | 117 |
let min_distance = 40; |
118 |
// new point should fall inside this box |
|
119 |
let map_box = self.play_box.with_margin(min_distance); |
|
120 |
||
14131 | 121 |
let normal = segment.scaled_normal(); |
122 |
let normal_len = normal.integral_norm(); |
|
14081 | 123 |
let mid_point = segment.center(); |
124 |
||
14131 | 125 |
if (normal_len < min_distance as u32 * 3) || !map_box.contains_inside(mid_point) { |
14081 | 126 |
return None; |
127 |
} |
|
128 |
||
14131 | 129 |
let normal_ray = Ray::new(mid_point, normal); |
14081 | 130 |
let mut dist_left = (self.size.width + self.size.height) as u32; |
131 |
let mut dist_right = dist_left; |
|
132 |
||
133 |
// find distances to map borders |
|
14131 | 134 |
if normal.x != 0 { |
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
135 |
// where the normal line intersects the left map border |
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
136 |
let left_intersection = Point::new( |
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
137 |
map_box.left(), |
14131 | 138 |
(map_box.left() - mid_point.x) * normal.tangent() + mid_point.y, |
14122
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
139 |
); |
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
140 |
dist_left = (mid_point - left_intersection).integral_norm(); |
14081 | 141 |
|
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
142 |
// same for the right border |
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
143 |
let right_intersection = Point::new( |
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
144 |
map_box.right(), |
14131 | 145 |
(map_box.right() - mid_point.x) * normal.tangent() + mid_point.y, |
14122
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
146 |
); |
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
147 |
dist_right = (mid_point - right_intersection).integral_norm(); |
14081 | 148 |
|
14131 | 149 |
if normal.x > 0 { |
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
150 |
std::mem::swap(&mut dist_left, &mut dist_right); |
14081 | 151 |
} |
152 |
} |
|
153 |
||
14131 | 154 |
if normal.y != 0 { |
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
155 |
// where the normal line intersects the top map border |
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
156 |
let top_intersection = Point::new( |
14131 | 157 |
(map_box.top() - mid_point.y) * normal.cotangent() + mid_point.x, |
14122
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
158 |
map_box.top(), |
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
159 |
); |
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
160 |
let dl = (mid_point - top_intersection).integral_norm(); |
14081 | 161 |
|
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
162 |
// same for the bottom border |
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
163 |
let bottom_intersection = Point::new( |
14131 | 164 |
(map_box.bottom() - mid_point.y) * normal.cotangent() + mid_point.x, |
14122
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
165 |
map_box.bottom(), |
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
166 |
); |
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
167 |
let dr = (mid_point - bottom_intersection).integral_norm(); |
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
168 |
|
14131 | 169 |
if normal.y < 0 { |
14081 | 170 |
dist_left = min(dist_left, dl); |
171 |
dist_right = min(dist_right, dr); |
|
172 |
} else { |
|
173 |
dist_left = min(dist_left, dr); |
|
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
174 |
dist_right = min(dist_right, dl); |
14081 | 175 |
} |
176 |
} |
|
177 |
||
178 |
// now go through all other segments |
|
14100 | 179 |
for s in self.segments_iter() { |
180 |
if s != segment { |
|
14131 | 181 |
if intersects(&normal_ray, &s) { |
182 |
if let Some((t, d)) = |
|
183 |
solve_intersection(&self.intersections_box, &normal_ray, &s) |
|
184 |
{ |
|
14100 | 185 |
if t > 0 { |
14113
be4419243735
fix normal offset for split points and make directions more consistent
alfadur
parents:
14111
diff
changeset
|
186 |
dist_right = min(dist_right, d); |
14100 | 187 |
} else { |
14113
be4419243735
fix normal offset for split points and make directions more consistent
alfadur
parents:
14111
diff
changeset
|
188 |
dist_left = min(dist_left, d); |
14100 | 189 |
} |
190 |
} |
|
191 |
} |
|
192 |
} |
|
193 |
} |
|
14081 | 194 |
|
14100 | 195 |
// go through all points, including fill points |
14126 | 196 |
for pi in self.iter().cloned() { |
197 |
if pi != segment.start && pi != segment.end { |
|
14131 | 198 |
if intersects(&pi.ray_to(normal), &segment) { |
14100 | 199 |
// ray from segment.start |
14125 | 200 |
if let Some((t, d)) = solve_intersection( |
14131 | 201 |
&self.intersections_box, &normal_ray, &segment.start.line_to(pi), |
14125 | 202 |
) { |
14100 | 203 |
if t > 0 { |
14113
be4419243735
fix normal offset for split points and make directions more consistent
alfadur
parents:
14111
diff
changeset
|
204 |
dist_right = min(dist_right, d); |
14100 | 205 |
} else { |
14113
be4419243735
fix normal offset for split points and make directions more consistent
alfadur
parents:
14111
diff
changeset
|
206 |
dist_left = min(dist_left, d); |
14100 | 207 |
} |
208 |
} |
|
209 |
||
210 |
// ray from segment.end |
|
14125 | 211 |
if let Some((t, d)) = solve_intersection( |
14131 | 212 |
&self.intersections_box, &normal_ray, &segment.end.line_to(pi) |
14125 | 213 |
) { |
14100 | 214 |
if t > 0 { |
14113
be4419243735
fix normal offset for split points and make directions more consistent
alfadur
parents:
14111
diff
changeset
|
215 |
dist_right = min(dist_right, d); |
14100 | 216 |
} else { |
14113
be4419243735
fix normal offset for split points and make directions more consistent
alfadur
parents:
14111
diff
changeset
|
217 |
dist_left = min(dist_left, d); |
14100 | 218 |
} |
219 |
} |
|
220 |
} |
|
221 |
} |
|
222 |
} |
|
223 |
||
14131 | 224 |
let max_dist = normal_len * 100 / distance_divisor; |
14100 | 225 |
dist_left = min(dist_left, max_dist); |
226 |
dist_right = min(dist_right, max_dist); |
|
227 |
||
228 |
if dist_right + dist_left < min_distance as u32 * 2 + 10 { |
|
229 |
// limits are too narrow, just divide |
|
230 |
Some(mid_point) |
|
231 |
} else { |
|
14113
be4419243735
fix normal offset for split points and make directions more consistent
alfadur
parents:
14111
diff
changeset
|
232 |
// select distance within [-dist_right; dist_left], keeping min_distance in mind |
be4419243735
fix normal offset for split points and make directions more consistent
alfadur
parents:
14111
diff
changeset
|
233 |
let d = -(dist_right as i32) |
14100 | 234 |
+ min_distance |
235 |
+ random_numbers.next().unwrap() as i32 |
|
236 |
% (dist_right as i32 + dist_left as i32 - min_distance * 2); |
|
237 |
||
14131 | 238 |
Some(mid_point + normal * d / normal_len as i32) |
14100 | 239 |
} |
14069 | 240 |
} |
241 |
||
14100 | 242 |
fn divide_edges<I: Iterator<Item = u32>>( |
243 |
&mut self, |
|
244 |
distance_divisor: u32, |
|
245 |
random_numbers: &mut I, |
|
246 |
) { |
|
14069 | 247 |
for is in 0..self.islands.len() { |
248 |
let mut i = 0; |
|
14124 | 249 |
while i < self.islands[is].edges_count() { |
250 |
let segment = self.islands[is].get_edge(i); |
|
14125 | 251 |
if let Some(new_point) = self.divide_edge(segment, distance_divisor, random_numbers) |
252 |
{ |
|
14124 | 253 |
self.islands[is].split_edge(i, new_point); |
14069 | 254 |
i += 2; |
255 |
} else { |
|
256 |
i += 1; |
|
257 |
} |
|
258 |
} |
|
259 |
} |
|
260 |
} |
|
261 |
||
14100 | 262 |
pub fn bezierize(&mut self) {} |
14069 | 263 |
|
14100 | 264 |
pub fn distort<I: Iterator<Item = u32>>( |
265 |
&mut self, |
|
266 |
distance_divisor: u32, |
|
267 |
random_numbers: &mut I, |
|
268 |
) { |
|
14069 | 269 |
loop { |
270 |
let old_len = self.total_len(); |
|
14100 | 271 |
self.divide_edges(distance_divisor, random_numbers); |
14069 | 272 |
|
14093 | 273 |
if self.total_len() == old_len { |
14069 | 274 |
break; |
275 |
} |
|
276 |
} |
|
277 |
} |
|
278 |
||
279 |
pub fn draw<T: Copy + PartialEq>(&self, land: &mut Land2D<T>, value: T) { |
|
14076
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14069
diff
changeset
|
280 |
for segment in self.segments_iter() { |
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14069
diff
changeset
|
281 |
land.draw_line(segment, value); |
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14069
diff
changeset
|
282 |
} |
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14069
diff
changeset
|
283 |
} |
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14069
diff
changeset
|
284 |
|
14124 | 285 |
fn segments_iter<'a>(&'a self) -> impl Iterator<Item = Line> + 'a { |
286 |
self.islands.iter().flat_map(|p| p.iter_edges()) |
|
14069 | 287 |
} |
14095 | 288 |
|
289 |
pub fn mirror(&mut self) { |
|
14100 | 290 |
let r = self.size.width as i32 - 1; |
291 |
||
292 |
self.iter_mut().for_each(|p| p.x = r - p.x); |
|
14095 | 293 |
} |
294 |
||
295 |
pub fn flip(&mut self) { |
|
14100 | 296 |
let t = self.size.height as i32 - 1; |
297 |
||
298 |
self.iter_mut().for_each(|p| p.y = t - p.y); |
|
14095 | 299 |
} |
14069 | 300 |
} |
14076
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14069
diff
changeset
|
301 |
|
14078 | 302 |
#[test()] |
303 |
fn points_test() { |
|
304 |
let mut points = OutlinePoints { |
|
305 |
islands: vec![ |
|
14124 | 306 |
Polygon::new(&[Point::new(0, 0), Point::new(20, 0), Point::new(30, 30)]), |
307 |
Polygon::new(&[Point::new(10, 15), Point::new(15, 20), Point::new(20, 15)]), |
|
14078 | 308 |
], |
309 |
fill_points: vec![Point::new(1, 1)], |
|
310 |
play_box: Rect::from_box(0, 100, 0, 100).with_margin(10), |
|
311 |
size: Size::square(100), |
|
14125 | 312 |
intersections_box: Rect::from_box(0, 0, 100, 100), |
14078 | 313 |
}; |
314 |
||
315 |
let segments: Vec<Line> = points.segments_iter().collect(); |
|
316 |
assert_eq!( |
|
317 |
segments.first(), |
|
318 |
Some(&Line::new(Point::new(0, 0), Point::new(20, 0))) |
|
319 |
); |
|
320 |
assert_eq!( |
|
321 |
segments.last(), |
|
322 |
Some(&Line::new(Point::new(20, 15), Point::new(10, 15))) |
|
323 |
); |
|
324 |
||
325 |
points.iter_mut().for_each(|p| p.x = 2); |
|
14125 | 326 |
|
14078 | 327 |
assert_eq!(points.fill_points[0].x, 2); |
14124 | 328 |
assert_eq!(points.islands[0].get_edge(0).start.x, 2); |
14078 | 329 |
} |