author | unC0Rr |
Tue, 10 Sep 2024 13:56:51 +0200 | |
branch | transitional_engine |
changeset 16032 | 31cc1e450273 |
parent 16029 | 9cbd18220eb7 |
child 16035 | 0caa3dfb3ba2 |
permissions | -rw-r--r-- |
14069 | 1 |
use itertools::Itertools; |
14081 | 2 |
use std::cmp::min; |
14069 | 3 |
|
15828 | 4 |
use integral_geometry::{Line, Point, Polygon, Ray, Rect, Size}; |
14069 | 5 |
use land2d::Land2D; |
6 |
||
15921 | 7 |
use super::outline_template::OutlineTemplate; |
14069 | 8 |
|
9 |
pub struct OutlinePoints { |
|
14124 | 10 |
pub islands: Vec<Polygon>, |
14069 | 11 |
pub fill_points: Vec<Point>, |
12 |
pub size: Size, |
|
14137
3119d665d3c6
collapse rectangle types back together with consistent usage of size
alfadur
parents:
14135
diff
changeset
|
13 |
pub play_box: Rect, |
16032 | 14 |
pub intersections_box: Rect, |
14069 | 15 |
} |
16 |
||
17 |
impl OutlinePoints { |
|
18 |
pub fn from_outline_template<I: Iterator<Item = u32>>( |
|
19 |
outline_template: &OutlineTemplate, |
|
14137
3119d665d3c6
collapse rectangle types back together with consistent usage of size
alfadur
parents:
14135
diff
changeset
|
20 |
play_box: Rect, |
14078 | 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))| { |
|
14137
3119d665d3c6
collapse rectangle types back together with consistent usage of size
alfadur
parents:
14135
diff
changeset
|
34 |
play_box.top_left() + rect.quotient(rnd_a as usize, rnd_b as usize) |
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(), |
14137
3119d665d3c6
collapse rectangle types back together with consistent usage of size
alfadur
parents:
14135
diff
changeset
|
41 |
intersections_box: Rect::at_origin(size) |
14125 | 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 |
||
14134
09f62bb046ef
actually there is a way to preserve mutable polygon iterator
alfadur
parents:
14133
diff
changeset
|
57 |
pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut Point> { |
09f62bb046ef
actually there is a way to preserve mutable polygon iterator
alfadur
parents:
14133
diff
changeset
|
58 |
self.islands |
09f62bb046ef
actually there is a way to preserve mutable polygon iterator
alfadur
parents:
14133
diff
changeset
|
59 |
.iter_mut() |
09f62bb046ef
actually there is a way to preserve mutable polygon iterator
alfadur
parents:
14133
diff
changeset
|
60 |
.flat_map(|i| i.iter_mut()) |
09f62bb046ef
actually there is a way to preserve mutable polygon iterator
alfadur
parents:
14133
diff
changeset
|
61 |
.chain(self.fill_points.iter_mut()) |
14069 | 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, |
16032 | 68 |
distortion_limiting_factor: u32, |
14069 | 69 |
random_numbers: &mut I, |
70 |
) -> Option<Point> { |
|
14100 | 71 |
#[inline] |
14131 | 72 |
fn intersects(ray: &Ray, edge: &Line) -> bool { |
73 |
ray.orientation(edge.start) != ray.orientation(edge.end) |
|
14100 | 74 |
} |
75 |
||
76 |
#[inline] |
|
14135
7f5a591e1c43
separate rectangle types based on right/bottom edge inclusivity
alfadur
parents:
14134
diff
changeset
|
77 |
fn solve_intersection( |
14137
3119d665d3c6
collapse rectangle types back together with consistent usage of size
alfadur
parents:
14135
diff
changeset
|
78 |
intersections_box: &Rect, |
14135
7f5a591e1c43
separate rectangle types based on right/bottom edge inclusivity
alfadur
parents:
14134
diff
changeset
|
79 |
ray: &Ray, |
15828 | 80 |
edge: &Line, |
81 |
) -> Option<(i32, u32)> { |
|
14131 | 82 |
let edge_dir = edge.scaled_direction(); |
83 |
let aqpb = ray.direction.cross(edge_dir) as i64; |
|
14100 | 84 |
|
85 |
if aqpb != 0 { |
|
15828 | 86 |
let mut iy = ((((edge.start.x - ray.start.x) as i64 * ray.direction.y as i64 |
87 |
+ ray.start.y as i64 * ray.direction.x as i64) |
|
14131 | 88 |
* edge_dir.y as i64 |
89 |
- edge.start.y as i64 * edge_dir.x as i64 * ray.direction.y as i64) |
|
14100 | 90 |
/ aqpb) as i32; |
14125 | 91 |
|
92 |
// is there better way to do it? |
|
93 |
if iy < intersections_box.top() { |
|
94 |
iy = intersections_box.top(); |
|
95 |
} else if iy > intersections_box.bottom() { |
|
96 |
iy = intersections_box.bottom(); |
|
97 |
} |
|
98 |
||
14131 | 99 |
let ix = if ray.direction.y.abs() > edge_dir.y.abs() { |
14142 | 100 |
ray.start.x + ray.direction.cotangent_mul(iy - ray.start.y) |
14100 | 101 |
} else { |
14142 | 102 |
edge.start.x + edge_dir.cotangent_mul(iy - edge.start.y) |
14100 | 103 |
}; |
104 |
||
14132 | 105 |
let intersection_point = Point::new(ix, iy).clamp(intersections_box); |
14131 | 106 |
let diff_point = ray.start - intersection_point; |
107 |
let t = ray.direction.dot(diff_point); |
|
14132 | 108 |
|
14122
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
109 |
if diff_point.max_norm() >= std::i16::MAX as i32 { |
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
110 |
Some((t, std::i32::MAX as u32)) |
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
111 |
} else { |
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
112 |
let d = diff_point.integral_norm(); |
14100 | 113 |
|
14122
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
114 |
Some((t, d)) |
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
115 |
} |
14100 | 116 |
} else { |
117 |
None |
|
118 |
} |
|
119 |
} |
|
120 |
||
16028
509ecce37522
Make outline template generator behave more like old engine
unC0Rr
parents:
15926
diff
changeset
|
121 |
let min_distance = distance_divisor as i32; |
14081 | 122 |
// new point should fall inside this box |
123 |
let map_box = self.play_box.with_margin(min_distance); |
|
124 |
||
14131 | 125 |
let normal = segment.scaled_normal(); |
126 |
let normal_len = normal.integral_norm(); |
|
14081 | 127 |
let mid_point = segment.center(); |
128 |
||
14131 | 129 |
if (normal_len < min_distance as u32 * 3) || !map_box.contains_inside(mid_point) { |
14081 | 130 |
return None; |
131 |
} |
|
132 |
||
14131 | 133 |
let normal_ray = Ray::new(mid_point, normal); |
14081 | 134 |
let mut dist_left = (self.size.width + self.size.height) as u32; |
135 |
let mut dist_right = dist_left; |
|
136 |
||
137 |
// find distances to map borders |
|
14131 | 138 |
if normal.x != 0 { |
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
139 |
// where the normal line intersects the left map border |
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
140 |
let left_intersection = Point::new( |
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
141 |
map_box.left(), |
14142 | 142 |
mid_point.y + normal.tangent_mul(map_box.left() - mid_point.x), |
14122
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
143 |
); |
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
144 |
dist_left = (mid_point - left_intersection).integral_norm(); |
14081 | 145 |
|
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
146 |
// same for the right border |
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
147 |
let right_intersection = Point::new( |
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
148 |
map_box.right(), |
15828 | 149 |
mid_point.y + normal.tangent_mul(map_box.right() - mid_point.x), |
14122
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
150 |
); |
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
151 |
dist_right = (mid_point - right_intersection).integral_norm(); |
14081 | 152 |
|
14131 | 153 |
if normal.x > 0 { |
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
154 |
std::mem::swap(&mut dist_left, &mut dist_right); |
14081 | 155 |
} |
156 |
} |
|
157 |
||
14131 | 158 |
if normal.y != 0 { |
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
159 |
// where the normal line intersects the top map border |
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
160 |
let top_intersection = Point::new( |
14142 | 161 |
mid_point.x + normal.cotangent_mul(map_box.top() - mid_point.y), |
14122
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
162 |
map_box.top(), |
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
163 |
); |
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
164 |
let dl = (mid_point - top_intersection).integral_norm(); |
14081 | 165 |
|
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
166 |
// same for the bottom border |
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
167 |
let bottom_intersection = Point::new( |
14142 | 168 |
mid_point.x + normal.cotangent_mul(map_box.bottom() - mid_point.y), |
14122
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
169 |
map_box.bottom(), |
c27461e6a9eb
Implement non-overflowing calculations for high values
unc0rr
parents:
14121
diff
changeset
|
170 |
); |
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
171 |
let dr = (mid_point - bottom_intersection).integral_norm(); |
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
172 |
|
14131 | 173 |
if normal.y < 0 { |
14081 | 174 |
dist_left = min(dist_left, dl); |
175 |
dist_right = min(dist_right, dr); |
|
176 |
} else { |
|
177 |
dist_left = min(dist_left, dr); |
|
14110
21642eb0ff29
import some clarity into border distance computation
alfadur
parents:
14109
diff
changeset
|
178 |
dist_right = min(dist_right, dl); |
14081 | 179 |
} |
180 |
} |
|
181 |
||
182 |
// now go through all other segments |
|
14100 | 183 |
for s in self.segments_iter() { |
15926 | 184 |
if s != segment && intersects(&normal_ray, &s) { |
185 |
if let Some((t, d)) = solve_intersection(&self.intersections_box, &normal_ray, &s) { |
|
186 |
if t > 0 { |
|
187 |
dist_right = min(dist_right, d); |
|
188 |
} else { |
|
189 |
dist_left = min(dist_left, d); |
|
14100 | 190 |
} |
191 |
} |
|
192 |
} |
|
193 |
} |
|
14081 | 194 |
|
14100 | 195 |
// go through all points, including fill points |
14126 | 196 |
for pi in self.iter().cloned() { |
15926 | 197 |
if pi != segment.start |
198 |
&& pi != segment.end |
|
199 |
&& intersects(&pi.ray_with_dir(normal), &segment) |
|
200 |
{ |
|
201 |
// ray from segment.start |
|
202 |
if let Some((t, d)) = solve_intersection( |
|
203 |
&self.intersections_box, |
|
204 |
&normal_ray, |
|
205 |
&segment.start.line_to(pi), |
|
206 |
) { |
|
207 |
if t > 0 { |
|
208 |
dist_right = min(dist_right, d); |
|
209 |
} else { |
|
210 |
dist_left = min(dist_left, d); |
|
14100 | 211 |
} |
15926 | 212 |
} |
14100 | 213 |
|
15926 | 214 |
// ray from segment.end |
215 |
if let Some((t, d)) = solve_intersection( |
|
216 |
&self.intersections_box, |
|
217 |
&normal_ray, |
|
218 |
&segment.end.line_to(pi), |
|
219 |
) { |
|
220 |
if t > 0 { |
|
221 |
dist_right = min(dist_right, d); |
|
222 |
} else { |
|
223 |
dist_left = min(dist_left, d); |
|
14100 | 224 |
} |
225 |
} |
|
226 |
} |
|
227 |
} |
|
228 |
||
16032 | 229 |
let max_dist = normal_len * 128 / distortion_limiting_factor; |
14100 | 230 |
dist_left = min(dist_left, max_dist); |
231 |
dist_right = min(dist_right, max_dist); |
|
232 |
||
233 |
if dist_right + dist_left < min_distance as u32 * 2 + 10 { |
|
234 |
// limits are too narrow, just divide |
|
235 |
Some(mid_point) |
|
236 |
} else { |
|
14113
be4419243735
fix normal offset for split points and make directions more consistent
alfadur
parents:
14111
diff
changeset
|
237 |
// 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
|
238 |
let d = -(dist_right as i32) |
14100 | 239 |
+ min_distance |
240 |
+ random_numbers.next().unwrap() as i32 |
|
241 |
% (dist_right as i32 + dist_left as i32 - min_distance * 2); |
|
242 |
||
14131 | 243 |
Some(mid_point + normal * d / normal_len as i32) |
14100 | 244 |
} |
14069 | 245 |
} |
246 |
||
14100 | 247 |
fn divide_edges<I: Iterator<Item = u32>>( |
248 |
&mut self, |
|
249 |
distance_divisor: u32, |
|
16032 | 250 |
distortion_limiting_factor: u32, |
14100 | 251 |
random_numbers: &mut I, |
252 |
) { |
|
14069 | 253 |
for is in 0..self.islands.len() { |
254 |
let mut i = 0; |
|
14124 | 255 |
while i < self.islands[is].edges_count() { |
256 |
let segment = self.islands[is].get_edge(i); |
|
16029 | 257 |
if let Some(new_point) = self.divide_edge( |
258 |
segment, |
|
259 |
distance_divisor, |
|
16032 | 260 |
distortion_limiting_factor, |
16029 | 261 |
random_numbers, |
262 |
) { |
|
14124 | 263 |
self.islands[is].split_edge(i, new_point); |
14069 | 264 |
i += 2; |
265 |
} else { |
|
266 |
i += 1; |
|
267 |
} |
|
268 |
} |
|
269 |
} |
|
270 |
} |
|
271 |
||
14140 | 272 |
pub fn bezierize(&mut self, segments_number: u32) { |
273 |
for island in &mut self.islands { |
|
274 |
island.bezierize(segments_number); |
|
275 |
} |
|
276 |
} |
|
14069 | 277 |
|
14100 | 278 |
pub fn distort<I: Iterator<Item = u32>>( |
279 |
&mut self, |
|
280 |
distance_divisor: u32, |
|
281 |
random_numbers: &mut I, |
|
282 |
) { |
|
16032 | 283 |
let distortion_limiting_factor = 100 + random_numbers.next().unwrap() as u32 % 8 * 10; |
16028
509ecce37522
Make outline template generator behave more like old engine
unC0Rr
parents:
15926
diff
changeset
|
284 |
|
14069 | 285 |
loop { |
286 |
let old_len = self.total_len(); |
|
16032 | 287 |
self.divide_edges(distance_divisor, distortion_limiting_factor, random_numbers); |
14069 | 288 |
|
14093 | 289 |
if self.total_len() == old_len { |
14069 | 290 |
break; |
291 |
} |
|
292 |
} |
|
293 |
} |
|
294 |
||
15912 | 295 |
pub fn draw<T: Copy + PartialEq + Default>(&self, land: &mut Land2D<T>, value: T) { |
14076
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14069
diff
changeset
|
296 |
for segment in self.segments_iter() { |
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14069
diff
changeset
|
297 |
land.draw_line(segment, value); |
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14069
diff
changeset
|
298 |
} |
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14069
diff
changeset
|
299 |
} |
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14069
diff
changeset
|
300 |
|
14124 | 301 |
fn segments_iter<'a>(&'a self) -> impl Iterator<Item = Line> + 'a { |
302 |
self.islands.iter().flat_map(|p| p.iter_edges()) |
|
14069 | 303 |
} |
14095 | 304 |
|
305 |
pub fn mirror(&mut self) { |
|
14100 | 306 |
let r = self.size.width as i32 - 1; |
14134
09f62bb046ef
actually there is a way to preserve mutable polygon iterator
alfadur
parents:
14133
diff
changeset
|
307 |
|
09f62bb046ef
actually there is a way to preserve mutable polygon iterator
alfadur
parents:
14133
diff
changeset
|
308 |
self.iter_mut().for_each(|p| p.x = r - p.x); |
14095 | 309 |
} |
310 |
||
311 |
pub fn flip(&mut self) { |
|
14100 | 312 |
let t = self.size.height as i32 - 1; |
14134
09f62bb046ef
actually there is a way to preserve mutable polygon iterator
alfadur
parents:
14133
diff
changeset
|
313 |
|
09f62bb046ef
actually there is a way to preserve mutable polygon iterator
alfadur
parents:
14133
diff
changeset
|
314 |
self.iter_mut().for_each(|p| p.y = t - p.y); |
14095 | 315 |
} |
14069 | 316 |
} |
14076
e5904ead4864
Introduce OutlineSegmentsIterator, some refactoring
unC0Rr
parents:
14069
diff
changeset
|
317 |
|
15755 | 318 |
#[test] |
14078 | 319 |
fn points_test() { |
14135
7f5a591e1c43
separate rectangle types based on right/bottom edge inclusivity
alfadur
parents:
14134
diff
changeset
|
320 |
let size = Size::square(100); |
14078 | 321 |
let mut points = OutlinePoints { |
322 |
islands: vec![ |
|
14124 | 323 |
Polygon::new(&[Point::new(0, 0), Point::new(20, 0), Point::new(30, 30)]), |
324 |
Polygon::new(&[Point::new(10, 15), Point::new(15, 20), Point::new(20, 15)]), |
|
14078 | 325 |
], |
326 |
fill_points: vec![Point::new(1, 1)], |
|
14137
3119d665d3c6
collapse rectangle types back together with consistent usage of size
alfadur
parents:
14135
diff
changeset
|
327 |
play_box: Rect::at_origin(size).with_margin(10), |
14078 | 328 |
size: Size::square(100), |
14137
3119d665d3c6
collapse rectangle types back together with consistent usage of size
alfadur
parents:
14135
diff
changeset
|
329 |
intersections_box: Rect::at_origin(size), |
14078 | 330 |
}; |
331 |
||
332 |
let segments: Vec<Line> = points.segments_iter().collect(); |
|
333 |
assert_eq!( |
|
334 |
segments.first(), |
|
335 |
Some(&Line::new(Point::new(0, 0), Point::new(20, 0))) |
|
336 |
); |
|
337 |
assert_eq!( |
|
338 |
segments.last(), |
|
339 |
Some(&Line::new(Point::new(20, 15), Point::new(10, 15))) |
|
340 |
); |
|
341 |
||
14134
09f62bb046ef
actually there is a way to preserve mutable polygon iterator
alfadur
parents:
14133
diff
changeset
|
342 |
points.iter_mut().for_each(|p| p.x = 2); |
14125 | 343 |
|
14078 | 344 |
assert_eq!(points.fill_points[0].x, 2); |
14124 | 345 |
assert_eq!(points.islands[0].get_edge(0).start.x, 2); |
14078 | 346 |
} |