]> git.lizzy.rs Git - minetest.git/blob - src/noise.cpp
fixed 3d noise and made 2d noise faster
[minetest.git] / src / noise.cpp
1 /*
2 Minetest-c55
3 Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include <math.h>
21 #include "noise.h"
22 #include <iostream>
23
24 #define NOISE_MAGIC_X 1619
25 #define NOISE_MAGIC_Y 31337
26 #define NOISE_MAGIC_Z 52591
27 #define NOISE_MAGIC_SEED 1013
28
29 double cos_lookup[16] = {
30         1.0,0.9238,0.7071,0.3826,0,-0.3826,-0.7071,-0.9238,
31         1.0,-0.9238,-0.7071,-0.3826,0,0.3826,0.7071,0.9238
32 };
33
34 double dotProduct(double vx, double vy, double wx, double wy){
35     return vx*wx+vy*wy;
36 }
37  
38 double easeCurve(double t){
39     return 6*pow(t,5)-15*pow(t,4)+10*pow(t,3);
40 }
41  
42 double linearInterpolation(double x0, double x1, double t){
43     return x0+(x1-x0)*t;
44 }
45  
46 double biLinearInterpolation(double x0y0, double x1y0, double x0y1, double x1y1, double x, double y){
47     double tx = easeCurve(x);
48     double ty = easeCurve(y);
49     double u = linearInterpolation(x0y0,x1y0,tx);
50     double v = linearInterpolation(x0y1,x1y1,tx);
51     return linearInterpolation(u,v,ty);
52 }
53
54 double triLinearInterpolation(
55                 double v000, double v100, double v010, double v110,
56                 double v001, double v101, double v011, double v111,
57                 double x, double y, double z)
58 {
59     /*double tx = easeCurve(x);
60     double ty = easeCurve(y);
61     double tz = easeCurve(z);*/
62     double tx = x;
63     double ty = y;
64     double tz = z;
65         return(
66                 v000*(1-tx)*(1-ty)*(1-tz) +
67                 v100*tx*(1-ty)*(1-tz) +
68                 v010*(1-tx)*ty*(1-tz) +
69                 v110*tx*ty*(1-tz) +
70                 v001*(1-tx)*(1-ty)*tz +
71                 v101*tx*(1-ty)*tz +
72                 v011*(1-tx)*ty*tz +
73                 v111*tx*ty*tz
74         );
75 }
76
77 double noise2d(int x, int y, int seed)
78 {
79         int n = (NOISE_MAGIC_X * x + NOISE_MAGIC_Y * y
80                         + NOISE_MAGIC_SEED * seed) & 0x7fffffff;
81         n = (n>>13)^n;
82         n = (n * (n*n*60493+19990303) + 1376312589) & 0x7fffffff;
83         return 1.0 - (double)n/1073741824;
84 }
85
86 double noise3d(int x, int y, int z, int seed)
87 {
88         int n = (NOISE_MAGIC_X * x + NOISE_MAGIC_Y * y + NOISE_MAGIC_Z * z
89                         + NOISE_MAGIC_SEED * seed) & 0x7fffffff;
90         n = (n>>13)^n;
91         n = (n * (n*n*60493+19990303) + 1376312589) & 0x7fffffff;
92         return 1.0 - (double)n/1073741824;
93 }
94
95 #if 0
96 // This is too slow
97 double noise2d_gradient(double x, double y, int seed)
98 {
99         // Calculate the integer coordinates
100         int x0 = (x > 0.0 ? (int)x : (int)x - 1);
101         int y0 = (y > 0.0 ? (int)y : (int)y - 1);
102         // Calculate the remaining part of the coordinates
103         double xl = x - (double)x0;
104         double yl = y - (double)y0;
105         // Calculate random cosine lookup table indices for the integer corners.
106         // They are looked up as unit vector gradients from the lookup table.
107         int n00 = (int)((noise2d(x0, y0, seed)+1)*8);
108         int n10 = (int)((noise2d(x0+1, y0, seed)+1)*8);
109         int n01 = (int)((noise2d(x0, y0+1, seed)+1)*8);
110         int n11 = (int)((noise2d(x0+1, y0+1, seed)+1)*8);
111         // Make a dot product for the gradients and the positions, to get the values
112         double s = dotProduct(cos_lookup[n00], cos_lookup[(n00+12)%16], xl, yl);
113         double u = dotProduct(-cos_lookup[n10], cos_lookup[(n10+12)%16], 1.-xl, yl);
114         double v = dotProduct(cos_lookup[n01], -cos_lookup[(n01+12)%16], xl, 1.-yl);
115         double w = dotProduct(-cos_lookup[n11], -cos_lookup[(n11+12)%16], 1.-xl, 1.-yl);
116         // Interpolate between the values
117         return biLinearInterpolation(s,u,v,w,xl,yl);
118 }
119 #endif
120
121 #if 1
122 double noise2d_gradient(double x, double y, int seed)
123 {
124         // Calculate the integer coordinates
125         int x0 = (x > 0.0 ? (int)x : (int)x - 1);
126         int y0 = (y > 0.0 ? (int)y : (int)y - 1);
127         // Calculate the remaining part of the coordinates
128         double xl = x - (double)x0;
129         double yl = y - (double)y0;
130         // Get values for corners of cube
131         double v00 = noise2d(x0, y0, seed);
132         double v10 = noise2d(x0+1, y0, seed);
133         double v01 = noise2d(x0, y0+1, seed);
134         double v11 = noise2d(x0+1, y0+1, seed);
135         // Interpolate
136         return biLinearInterpolation(v00,v10,v01,v11,xl,yl);
137 }
138 #endif
139
140 double noise3d_gradient(double x, double y, double z, int seed)
141 {
142         // Calculate the integer coordinates
143         int x0 = (x > 0.0 ? (int)x : (int)x - 1);
144         int y0 = (y > 0.0 ? (int)y : (int)y - 1);
145         int z0 = (z > 0.0 ? (int)z : (int)z - 1);
146         // Calculate the remaining part of the coordinates
147         double xl = x - (double)x0;
148         double yl = y - (double)y0;
149         double zl = z - (double)z0;
150         // Get values for corners of cube
151         double v000 = noise3d(x0, y0, z0, seed);
152         double v100 = noise3d(x0+1, y0, z0, seed);
153         double v010 = noise3d(x0, y0+1, z0, seed);
154         double v110 = noise3d(x0+1, y0+1, z0, seed);
155         double v001 = noise3d(x0, y0, z0+1, seed);
156         double v101 = noise3d(x0+1, y0, z0+1, seed);
157         double v011 = noise3d(x0, y0+1, z0+1, seed);
158         double v111 = noise3d(x0+1, y0+1, z0+1, seed);
159         // Interpolate
160         return triLinearInterpolation(v000,v100,v010,v110,v001,v101,v011,v111,xl,yl,zl);
161 }
162
163 double noise2d_perlin(double x, double y, int seed,
164                 int octaves, double persistence)
165 {
166         double a = 0;
167         double f = 1.0;
168         double g = 1.0;
169         for(int i=0; i<octaves; i++)
170         {
171                 a += g * noise2d_gradient(x*f, y*f, seed+i);
172                 f *= 2.0;
173                 g *= persistence;
174         }
175         return a;
176 }
177
178 double noise3d_perlin(double x, double y, double z, int seed,
179                 int octaves, double persistence)
180 {
181         double a = 0;
182         double f = 1.0;
183         double g = 1.0;
184         for(int i=0; i<octaves; i++)
185         {
186                 a += g * noise3d_gradient(x*f, y*f, z*f, seed+i);
187                 f *= 2.0;
188                 g *= persistence;
189         }
190         return a;
191 }
192