author | unc0rr |
Fri, 02 Nov 2018 20:30:22 +0100 | |
changeset 14100 | b2feb190e4bc |
parent 14083 | bf40b5f938b0 |
child 14105 | 4d22be35cfa2 |
permissions | -rw-r--r-- |
14074 | 1 |
use integral_geometry::{Point, Size}; |
14031 | 2 |
use land2d::Land2D; |
3 |
use LandGenerationParameters; |
|
4 |
use LandGenerator; |
|
5 |
||
14074 | 6 |
use outline::OutlinePoints; |
7 |
use outline_template::OutlineTemplate; |
|
14071
649ccb9f8cfd
Commit broken code for divide_edges in hope for salvation
unc0rr
parents:
14059
diff
changeset
|
8 |
|
14059
3185fb34f3b5
update theme editor to use new land generator implementation
alfadur
parents:
14057
diff
changeset
|
9 |
|
3185fb34f3b5
update theme editor to use new land generator implementation
alfadur
parents:
14057
diff
changeset
|
10 |
pub struct TemplatedLandGenerator { |
14031 | 11 |
outline_template: OutlineTemplate, |
12 |
} |
|
13 |
||
14 |
impl TemplatedLandGenerator { |
|
14056
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
15 |
pub fn new(outline_template: OutlineTemplate) -> Self { |
14031 | 16 |
Self { outline_template } |
17 |
} |
|
18 |
} |
|
19 |
||
20 |
impl LandGenerator for TemplatedLandGenerator { |
|
21 |
fn generate_land<T: Copy + PartialEq, I: Iterator<Item = u32>>( |
|
22 |
&self, |
|
23 |
parameters: LandGenerationParameters<T>, |
|
24 |
random_numbers: &mut I, |
|
25 |
) -> Land2D<T> { |
|
14083 | 26 |
let mut land = Land2D::new(self.outline_template.size, parameters.basic); |
14031 | 27 |
|
14083 | 28 |
let mut points = |
29 |
OutlinePoints::from_outline_template(&self.outline_template, land.play_box(), land.size(), random_numbers); |
|
14056
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
30 |
|
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
31 |
// mirror |
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
32 |
if self.outline_template.can_mirror { |
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
33 |
if let Some(b) = random_numbers.next() { |
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
34 |
if b & 1 != 0 { |
14100 | 35 |
points.mirror(); |
14056
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
36 |
} |
14031 | 37 |
} |
38 |
} |
|
39 |
||
14056
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
40 |
// flip |
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
41 |
if self.outline_template.can_flip { |
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
42 |
if let Some(b) = random_numbers.next() { |
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
43 |
if b & 1 != 0 { |
14100 | 44 |
points.flip(); |
14056
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
45 |
} |
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
46 |
} |
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
47 |
} |
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
48 |
|
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
49 |
points.distort(random_numbers); |
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
50 |
|
14071
649ccb9f8cfd
Commit broken code for divide_edges in hope for salvation
unc0rr
parents:
14059
diff
changeset
|
51 |
points.draw(&mut land, parameters.zero); |
14056
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
52 |
|
14071
649ccb9f8cfd
Commit broken code for divide_edges in hope for salvation
unc0rr
parents:
14059
diff
changeset
|
53 |
for p in &points.fill_points { |
649ccb9f8cfd
Commit broken code for divide_edges in hope for salvation
unc0rr
parents:
14059
diff
changeset
|
54 |
land.fill(*p, parameters.zero, parameters.zero) |
14056
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
55 |
} |
8a0d69c16cad
Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents:
14031
diff
changeset
|
56 |
|
14071
649ccb9f8cfd
Commit broken code for divide_edges in hope for salvation
unc0rr
parents:
14059
diff
changeset
|
57 |
points.draw(&mut land, parameters.basic); |
14031 | 58 |
|
59 |
land |
|
60 |
} |
|
61 |
} |