-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathrand.ts
48 lines (44 loc) · 1.4 KB
/
rand.ts
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
import {createNoise2D} from "simplex-noise";
// Seeded random number generator.
// https://stackoverflow.com/a/47593316/3053361
export const rand = (seed: string) => {
const xfnv1a = (str: string) => {
let h = 2166136261 >>> 0;
for (let i = 0; i < str.length; i++) {
h = Math.imul(h ^ str.charCodeAt(i), 16777619);
}
return () => {
h += h << 13;
h ^= h >>> 7;
h += h << 3;
h ^= h >>> 17;
return (h += h << 5) >>> 0;
};
};
const sfc32 = (a: number, b: number, c: number, d: number) => () => {
a >>>= 0;
b >>>= 0;
c >>>= 0;
d >>>= 0;
var t = (a + b) | 0;
a = b ^ (b >>> 9);
b = (c + (c << 3)) | 0;
c = (c << 21) | (c >>> 11);
d = (d + 1) | 0;
t = (t + d) | 0;
c = (c + t) | 0;
return (t >>> 0) / 4294967296;
};
const seedGenerator = xfnv1a(seed);
return sfc32(seedGenerator(), seedGenerator(), seedGenerator(), seedGenerator());
};
// Simplex noise.
// TODO(2023-01-08) implement to remove dep
// TODO(2023-02-16) https://asserttrue.blogspot.com/2011/12/perlin-noise-in-javascript_31.html
// https://en.wikipedia.org/wiki/Simplex_noise
export const noise = (seed: string) => {
const noise2D = createNoise2D(rand(seed));
return (x: number, y: number) => {
return noise2D(x, y);
};
};