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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
use num_traits::{NumCast, PrimInt, Signed};
use rand::{Rand, Rng, SeedableRng, XorShiftRng};
use std::fmt;
use math;
const TABLE_SIZE: usize = 256;
#[derive(Copy)]
pub struct PermutationTable {
values: [u8; TABLE_SIZE],
}
impl Rand for PermutationTable {
fn rand<R: Rng>(rng: &mut R) -> PermutationTable {
let mut seq: Vec<u8> = (0..TABLE_SIZE).map(|x| x as u8).collect();
rng.shuffle(&mut *seq);
let mut perm_table = PermutationTable { values: [0; TABLE_SIZE] };
let seq_it = seq.iter();
for (x, y) in perm_table.values.iter_mut().zip(seq_it) {
*x = *y
}
perm_table
}
}
impl PermutationTable {
pub fn new(seed: u32) -> PermutationTable {
let mut rng: XorShiftRng = SeedableRng::from_seed([1, seed, seed, seed]);
rng.gen()
}
#[inline(always)]
pub fn get1<T: Signed + PrimInt + NumCast>(&self, x: T) -> usize {
let x: usize = math::cast(x & math::cast(0xff));
self.values[x] as usize
}
#[inline(always)]
pub fn get2<T: Signed + PrimInt + NumCast>(&self, pos: math::Point2<T>) -> usize {
let y: usize = math::cast(pos[1] & math::cast(0xff));
self.values[self.get1(pos[0]) ^ y] as usize
}
#[inline(always)]
pub fn get3<T: Signed + PrimInt + NumCast>(&self, pos: math::Point3<T>) -> usize {
let z: usize = math::cast(pos[2] & math::cast(0xff));
self.values[self.get2([pos[0], pos[1]]) ^ z] as usize
}
#[inline(always)]
pub fn get4<T: Signed + PrimInt + NumCast>(&self, pos: math::Point4<T>) -> usize {
let w: usize = math::cast(pos[3] & math::cast(0xff));
self.values[self.get3([pos[0], pos[1], pos[2]]) ^ w] as usize
}
}
impl Clone for PermutationTable {
fn clone(&self) -> PermutationTable {
PermutationTable { values: self.values }
}
}
impl fmt::Debug for PermutationTable {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "PermutationTable {{ .. }}")
}
}
#[cfg(test)]
mod tests {
use rand::random;
use perlin::perlin3;
use super::PermutationTable;
#[test]
fn test_random_seed() {
let _ = perlin3::<f32>(&random(), &[1.0, 2.0, 3.0]);
}
#[test]
fn test_negative_params() {
let _ = perlin3::<f32>(&PermutationTable::new(0), &[-1.0, 2.0, 3.0]);
}
}