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
use num_traits::Float;
use math::interp;
use NoiseModule;
#[derive(Clone, Copy, Debug)]
pub struct Select<Source1, Source2, Control, T> {
pub source1: Source1,
pub source2: Source2,
pub control: Control,
pub edge_falloff: T,
pub lower_bound: T,
pub upper_bound: T,
}
impl<Source1, Source2, Control, T> Select<Source1, Source2, Control, T> {
pub fn new(source1: Source1,
source2: Source2,
control: Control,
falloff: T,
lower: T,
upper: T)
-> Select<Source1, Source2, Control, T> {
Select {
source1: source1,
source2: source2,
control: control,
edge_falloff: falloff,
lower_bound: lower,
upper_bound: upper,
}
}
}
impl<Source1, Source2, Control, T, U> NoiseModule<T> for Select<Source1, Source2, Control, U>
where Source1: NoiseModule<T, Output = U>,
Source2: NoiseModule<T, Output = U>,
Control: NoiseModule<T, Output = U>,
T: Copy,
U: Float,
{
type Output = U;
fn get(&self, point: T) -> Self::Output {
let control_value = self.control.get(point);
if self.edge_falloff > U::zero() {
match () {
_ if control_value < (self.lower_bound - self.edge_falloff) => {
self.source1.get(point)
},
_ if control_value < (self.lower_bound + self.edge_falloff) => {
let lower_curve: U = self.lower_bound - self.edge_falloff;
let upper_curve: U = self.lower_bound + self.edge_falloff;
let alpha = interp::s_curve3((control_value - lower_curve) /
(upper_curve - lower_curve));
interp::linear(self.source1.get(point), self.source2.get(point), alpha)
},
_ if control_value < (self.upper_bound - self.edge_falloff) => {
self.source2.get(point)
},
_ if control_value < (self.upper_bound + self.edge_falloff) => {
let lower_curve: U = self.upper_bound - self.edge_falloff;
let upper_curve: U = self.upper_bound + self.edge_falloff;
let alpha = interp::s_curve3((control_value - lower_curve) /
(upper_curve - lower_curve));
interp::linear(self.source2.get(point), self.source1.get(point), alpha)
},
_ => self.source1.get(point),
}
} else {
if control_value < self.lower_bound || control_value > self.upper_bound {
self.source1.get(point)
} else {
self.source2.get(point)
}
}
}
}