2011-02-05 07:56:01 -05:00
|
|
|
/*
|
2014-10-27 21:17:07 -04:00
|
|
|
* Minetest
|
|
|
|
* Copyright (C) 2010-2014 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
* Copyright (C) 2010-2014 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification, are
|
|
|
|
* permitted provided that the following conditions are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
|
|
* conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
|
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
|
|
|
* provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR
|
|
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2011-02-05 07:56:01 -05:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include "noise.h"
|
2011-02-08 03:11:26 -05:00
|
|
|
#include <iostream>
|
2013-08-10 22:09:45 -04:00
|
|
|
#include <string.h> // memset
|
2011-04-26 08:38:42 -04:00
|
|
|
#include "debug.h"
|
2012-11-25 21:16:48 -05:00
|
|
|
#include "util/numeric.h"
|
2011-02-05 07:56:01 -05:00
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
#define NOISE_MAGIC_X 1619
|
|
|
|
#define NOISE_MAGIC_Y 31337
|
|
|
|
#define NOISE_MAGIC_Z 52591
|
2011-02-05 07:56:01 -05:00
|
|
|
#define NOISE_MAGIC_SEED 1013
|
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
typedef float (*Interp3dFxn)(
|
|
|
|
float v000, float v100, float v010, float v110,
|
|
|
|
float v001, float v101, float v011, float v111,
|
|
|
|
float x, float y, float z);
|
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
float cos_lookup[16] = {
|
|
|
|
1.0, 0.9238, 0.7071, 0.3826, 0, -0.3826, -0.7071, -0.9238,
|
|
|
|
1.0, -0.9238, -0.7071, -0.3826, 0, 0.3826, 0.7071, 0.9238
|
2011-02-05 07:56:01 -05:00
|
|
|
};
|
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
//noise poly: p(n) = 60493n^3 + 19990303n + 137612589
|
2014-10-27 02:02:38 -04:00
|
|
|
float noise2d(int x, int y, int seed)
|
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
int n = (NOISE_MAGIC_X * x + NOISE_MAGIC_Y * y
|
|
|
|
+ NOISE_MAGIC_SEED * seed) & 0x7fffffff;
|
|
|
|
n = (n >> 13) ^ n;
|
|
|
|
n = (n * (n * n * 60493 + 19990303) + 1376312589) & 0x7fffffff;
|
|
|
|
return 1.f - (float)n / 0x40000000;
|
2011-02-05 07:56:01 -05:00
|
|
|
}
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
float noise3d(int x, int y, int z, int seed)
|
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
int n = (NOISE_MAGIC_X * x + NOISE_MAGIC_Y * y + NOISE_MAGIC_Z * z
|
|
|
|
+ NOISE_MAGIC_SEED * seed) & 0x7fffffff;
|
|
|
|
n = (n >> 13) ^ n;
|
|
|
|
n = (n * (n * n * 60493 + 19990303) + 1376312589) & 0x7fffffff;
|
|
|
|
return 1.f - (float)n / 0x40000000;
|
2011-02-05 07:56:01 -05:00
|
|
|
}
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
float dotProduct(float vx, float vy, float wx, float wy)
|
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
return vx * wx + vy * wy;
|
2011-02-05 07:56:01 -05:00
|
|
|
}
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
inline float linearInterpolation(float v0, float v1, float t)
|
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
return v0 + (v1 - v0) * t;
|
2011-02-05 07:56:01 -05:00
|
|
|
}
|
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
float biLinearInterpolation(
|
|
|
|
float v00, float v10,
|
|
|
|
float v01, float v11,
|
|
|
|
float x, float y)
|
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
float tx = easeCurve(x);
|
|
|
|
float ty = easeCurve(y);
|
|
|
|
float u = linearInterpolation(v00, v10, tx);
|
|
|
|
float v = linearInterpolation(v01, v11, tx);
|
|
|
|
return linearInterpolation(u, v, ty);
|
2011-02-26 13:16:47 -05:00
|
|
|
}
|
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
float biLinearInterpolationNoEase(
|
|
|
|
float x0y0, float x1y0,
|
|
|
|
float x0y1, float x1y1,
|
|
|
|
float x, float y)
|
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
float u = linearInterpolation(x0y0, x1y0, x);
|
|
|
|
float v = linearInterpolation(x0y1, x1y1, x);
|
|
|
|
return linearInterpolation(u, v, y);
|
2011-02-05 07:56:01 -05:00
|
|
|
}
|
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
/*
|
2012-11-25 21:16:48 -05:00
|
|
|
float triLinearInterpolation(
|
|
|
|
float v000, float v100, float v010, float v110,
|
|
|
|
float v001, float v101, float v011, float v111,
|
2014-10-27 02:02:38 -04:00
|
|
|
float x, float y, float z)
|
|
|
|
{
|
|
|
|
float u = biLinearInterpolation(v000, v100, v010, v110, x, y);
|
|
|
|
float v = biLinearInterpolation(v001, v101, v011, v111, x, y);
|
|
|
|
return linearInterpolation(u, v, z);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
float triLinearInterpolationNoEase(
|
|
|
|
float v000, float v100, float v010, float v110,
|
|
|
|
float v001, float v101, float v011, float v111,
|
|
|
|
float x, float y, float z)
|
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
float u = biLinearInterpolationNoEase(v000, v100, v010, v110, x, y);
|
|
|
|
float v = biLinearInterpolationNoEase(v001, v101, v011, v111, x, y);
|
|
|
|
return linearInterpolation(u, v, z);
|
|
|
|
}
|
2014-10-27 02:02:38 -04:00
|
|
|
*/
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
|
|
|
|
float triLinearInterpolation(
|
|
|
|
float v000, float v100, float v010, float v110,
|
|
|
|
float v001, float v101, float v011, float v111,
|
|
|
|
float x, float y, float z)
|
2011-02-26 13:16:47 -05:00
|
|
|
{
|
2014-10-27 02:02:38 -04:00
|
|
|
float tx = easeCurve(x);
|
2012-11-25 21:16:48 -05:00
|
|
|
float ty = easeCurve(y);
|
2014-10-27 02:02:38 -04:00
|
|
|
float tz = easeCurve(z);
|
|
|
|
|
|
|
|
return (
|
|
|
|
v000 * (1 - tx) * (1 - ty) * (1 - tz) +
|
|
|
|
v100 * tx * (1 - ty) * (1 - tz) +
|
|
|
|
v010 * (1 - tx) * ty * (1 - tz) +
|
|
|
|
v110 * tx * ty * (1 - tz) +
|
|
|
|
v001 * (1 - tx) * (1 - ty) * tz +
|
|
|
|
v101 * tx * (1 - ty) * tz +
|
|
|
|
v011 * (1 - tx) * ty * tz +
|
|
|
|
v111 * tx * ty * tz
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
float triLinearInterpolationNoEase(
|
|
|
|
float v000, float v100, float v010, float v110,
|
|
|
|
float v001, float v101, float v011, float v111,
|
|
|
|
float x, float y, float z)
|
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
float tx = x;
|
|
|
|
float ty = y;
|
|
|
|
float tz = z;
|
2014-10-27 02:02:38 -04:00
|
|
|
return (
|
2012-11-25 21:16:48 -05:00
|
|
|
v000 * (1 - tx) * (1 - ty) * (1 - tz) +
|
|
|
|
v100 * tx * (1 - ty) * (1 - tz) +
|
|
|
|
v010 * (1 - tx) * ty * (1 - tz) +
|
|
|
|
v110 * tx * ty * (1 - tz) +
|
|
|
|
v001 * (1 - tx) * (1 - ty) * tz +
|
|
|
|
v101 * tx * (1 - ty) * tz +
|
|
|
|
v011 * (1 - tx) * ty * tz +
|
|
|
|
v111 * tx * ty * tz
|
|
|
|
);
|
2011-02-26 13:16:47 -05:00
|
|
|
}
|
2012-11-25 21:16:48 -05:00
|
|
|
|
2011-02-26 13:16:47 -05:00
|
|
|
|
2011-02-28 18:32:54 -05:00
|
|
|
#if 0
|
2012-11-25 21:16:48 -05:00
|
|
|
float noise2d_gradient(float x, float y, int seed)
|
2011-02-05 07:56:01 -05:00
|
|
|
{
|
2011-02-26 13:16:47 -05:00
|
|
|
// Calculate the integer coordinates
|
2011-02-05 07:56:01 -05:00
|
|
|
int x0 = (x > 0.0 ? (int)x : (int)x - 1);
|
|
|
|
int y0 = (y > 0.0 ? (int)y : (int)y - 1);
|
2011-02-26 13:16:47 -05:00
|
|
|
// Calculate the remaining part of the coordinates
|
2012-11-25 21:16:48 -05:00
|
|
|
float xl = x - (float)x0;
|
|
|
|
float yl = y - (float)y0;
|
2011-02-26 13:16:47 -05:00
|
|
|
// Calculate random cosine lookup table indices for the integer corners.
|
|
|
|
// They are looked up as unit vector gradients from the lookup table.
|
2011-02-05 07:56:01 -05:00
|
|
|
int n00 = (int)((noise2d(x0, y0, seed)+1)*8);
|
|
|
|
int n10 = (int)((noise2d(x0+1, y0, seed)+1)*8);
|
|
|
|
int n01 = (int)((noise2d(x0, y0+1, seed)+1)*8);
|
|
|
|
int n11 = (int)((noise2d(x0+1, y0+1, seed)+1)*8);
|
2011-02-26 13:16:47 -05:00
|
|
|
// Make a dot product for the gradients and the positions, to get the values
|
2012-11-25 21:16:48 -05:00
|
|
|
float s = dotProduct(cos_lookup[n00], cos_lookup[(n00+12)%16], xl, yl);
|
|
|
|
float u = dotProduct(-cos_lookup[n10], cos_lookup[(n10+12)%16], 1.-xl, yl);
|
|
|
|
float v = dotProduct(cos_lookup[n01], -cos_lookup[(n01+12)%16], xl, 1.-yl);
|
|
|
|
float w = dotProduct(-cos_lookup[n11], -cos_lookup[(n11+12)%16], 1.-xl, 1.-yl);
|
2011-02-26 13:16:47 -05:00
|
|
|
// Interpolate between the values
|
2011-02-05 07:56:01 -05:00
|
|
|
return biLinearInterpolation(s,u,v,w,xl,yl);
|
|
|
|
}
|
2011-02-26 17:59:56 -05:00
|
|
|
#endif
|
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
float noise2d_gradient(float x, float y, int seed)
|
2011-02-26 17:59:56 -05:00
|
|
|
{
|
|
|
|
// Calculate the integer coordinates
|
2012-11-25 21:16:48 -05:00
|
|
|
int x0 = myfloor(x);
|
|
|
|
int y0 = myfloor(y);
|
2011-02-26 17:59:56 -05:00
|
|
|
// Calculate the remaining part of the coordinates
|
2012-11-25 21:16:48 -05:00
|
|
|
float xl = x - (float)x0;
|
|
|
|
float yl = y - (float)y0;
|
|
|
|
// Get values for corners of square
|
|
|
|
float v00 = noise2d(x0, y0, seed);
|
|
|
|
float v10 = noise2d(x0+1, y0, seed);
|
|
|
|
float v01 = noise2d(x0, y0+1, seed);
|
|
|
|
float v11 = noise2d(x0+1, y0+1, seed);
|
2011-02-26 17:59:56 -05:00
|
|
|
// Interpolate
|
2014-10-27 02:02:38 -04:00
|
|
|
return biLinearInterpolation(v00, v10, v01, v11, xl, yl);
|
2011-02-26 17:59:56 -05:00
|
|
|
}
|
2011-02-05 07:56:01 -05:00
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
|
2014-11-12 23:49:45 -05:00
|
|
|
float noise3d_gradient(float x, float y, float z, int seed, bool eased)
|
2011-02-26 13:16:47 -05:00
|
|
|
{
|
|
|
|
// Calculate the integer coordinates
|
2012-11-25 21:16:48 -05:00
|
|
|
int x0 = myfloor(x);
|
|
|
|
int y0 = myfloor(y);
|
|
|
|
int z0 = myfloor(z);
|
2011-02-26 13:16:47 -05:00
|
|
|
// Calculate the remaining part of the coordinates
|
2012-11-25 21:16:48 -05:00
|
|
|
float xl = x - (float)x0;
|
|
|
|
float yl = y - (float)y0;
|
|
|
|
float zl = z - (float)z0;
|
2011-02-26 13:16:47 -05:00
|
|
|
// Get values for corners of cube
|
2012-11-25 21:16:48 -05:00
|
|
|
float v000 = noise3d(x0, y0, z0, seed);
|
|
|
|
float v100 = noise3d(x0 + 1, y0, z0, seed);
|
|
|
|
float v010 = noise3d(x0, y0 + 1, z0, seed);
|
|
|
|
float v110 = noise3d(x0 + 1, y0 + 1, z0, seed);
|
|
|
|
float v001 = noise3d(x0, y0, z0 + 1, seed);
|
|
|
|
float v101 = noise3d(x0 + 1, y0, z0 + 1, seed);
|
|
|
|
float v011 = noise3d(x0, y0 + 1, z0 + 1, seed);
|
|
|
|
float v111 = noise3d(x0 + 1, y0 + 1, z0 + 1, seed);
|
2011-02-26 13:16:47 -05:00
|
|
|
// Interpolate
|
2014-11-12 23:49:45 -05:00
|
|
|
if (eased) {
|
|
|
|
return triLinearInterpolation(
|
|
|
|
v000, v100, v010, v110,
|
|
|
|
v001, v101, v011, v111,
|
|
|
|
xl, yl, zl);
|
|
|
|
} else {
|
|
|
|
return triLinearInterpolationNoEase(
|
|
|
|
v000, v100, v010, v110,
|
|
|
|
v001, v101, v011, v111,
|
|
|
|
xl, yl, zl);
|
|
|
|
}
|
2011-02-26 13:16:47 -05:00
|
|
|
}
|
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
float noise2d_perlin(float x, float y, int seed,
|
|
|
|
int octaves, float persistence)
|
2011-02-05 07:56:01 -05:00
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
float a = 0;
|
|
|
|
float f = 1.0;
|
|
|
|
float g = 1.0;
|
|
|
|
for (int i = 0; i < octaves; i++)
|
2011-02-05 07:56:01 -05:00
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
a += g * noise2d_gradient(x * f, y * f, seed + i);
|
2011-02-05 07:56:01 -05:00
|
|
|
f *= 2.0;
|
|
|
|
g *= persistence;
|
|
|
|
}
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
float noise2d_perlin_abs(float x, float y, int seed,
|
|
|
|
int octaves, float persistence)
|
2011-02-27 19:01:40 -05:00
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
float a = 0;
|
|
|
|
float f = 1.0;
|
|
|
|
float g = 1.0;
|
|
|
|
for (int i = 0; i < octaves; i++)
|
2011-02-27 19:01:40 -05:00
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
a += g * fabs(noise2d_gradient(x * f, y * f, seed + i));
|
2011-02-27 19:01:40 -05:00
|
|
|
f *= 2.0;
|
|
|
|
g *= persistence;
|
|
|
|
}
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
float noise3d_perlin(float x, float y, float z, int seed,
|
2014-11-12 23:49:45 -05:00
|
|
|
int octaves, float persistence, bool eased)
|
2011-02-26 13:16:47 -05:00
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
float a = 0;
|
|
|
|
float f = 1.0;
|
|
|
|
float g = 1.0;
|
|
|
|
for (int i = 0; i < octaves; i++)
|
2011-02-26 13:16:47 -05:00
|
|
|
{
|
2014-11-12 23:49:45 -05:00
|
|
|
a += g * noise3d_gradient(x * f, y * f, z * f, seed + i, eased);
|
2011-02-26 13:16:47 -05:00
|
|
|
f *= 2.0;
|
|
|
|
g *= persistence;
|
|
|
|
}
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
float noise3d_perlin_abs(float x, float y, float z, int seed,
|
2014-11-12 23:49:45 -05:00
|
|
|
int octaves, float persistence, bool eased)
|
2011-02-27 19:01:40 -05:00
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
float a = 0;
|
|
|
|
float f = 1.0;
|
|
|
|
float g = 1.0;
|
|
|
|
for (int i = 0; i < octaves; i++)
|
2011-02-27 19:01:40 -05:00
|
|
|
{
|
2014-11-12 23:49:45 -05:00
|
|
|
a += g * fabs(noise3d_gradient(x * f, y * f, z * f, seed + i, eased));
|
2011-02-27 19:01:40 -05:00
|
|
|
f *= 2.0;
|
|
|
|
g *= persistence;
|
|
|
|
}
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
float contour(float v)
|
2011-06-24 21:25:14 -04:00
|
|
|
{
|
|
|
|
v = fabs(v);
|
|
|
|
if(v >= 1.0)
|
|
|
|
return 0.0;
|
2014-10-27 02:02:38 -04:00
|
|
|
return (1.0 - v);
|
2011-06-24 21:25:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
///////////////////////// [ New perlin stuff ] ////////////////////////////
|
2011-06-24 21:25:14 -04:00
|
|
|
|
2011-04-26 08:38:42 -04:00
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
Noise::Noise(NoiseParams *np, int seed, int sx, int sy, int sz)
|
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
this->np = np;
|
|
|
|
this->seed = seed;
|
|
|
|
this->sx = sx;
|
|
|
|
this->sy = sy;
|
|
|
|
this->sz = sz;
|
2012-12-18 16:45:50 -05:00
|
|
|
|
|
|
|
this->noisebuf = NULL;
|
|
|
|
resizeNoiseBuf(sz > 1);
|
|
|
|
|
2012-12-22 00:34:35 -05:00
|
|
|
this->buf = new float[sx * sy * sz];
|
|
|
|
this->result = new float[sx * sy * sz];
|
2011-04-26 08:38:42 -04:00
|
|
|
}
|
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
Noise::~Noise()
|
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
delete[] buf;
|
|
|
|
delete[] result;
|
|
|
|
delete[] noisebuf;
|
2011-04-26 08:38:42 -04:00
|
|
|
}
|
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
void Noise::setSize(int sx, int sy, int sz)
|
|
|
|
{
|
2012-12-18 16:45:50 -05:00
|
|
|
this->sx = sx;
|
|
|
|
this->sy = sy;
|
|
|
|
this->sz = sz;
|
|
|
|
|
2012-12-22 00:34:35 -05:00
|
|
|
this->noisebuf = NULL;
|
2012-12-18 16:45:50 -05:00
|
|
|
resizeNoiseBuf(sz > 1);
|
|
|
|
|
|
|
|
delete[] buf;
|
|
|
|
delete[] result;
|
2012-12-22 00:34:35 -05:00
|
|
|
this->buf = new float[sx * sy * sz];
|
2013-01-06 14:40:24 -05:00
|
|
|
this->result = new float[sx * sy * sz];
|
2012-12-18 16:45:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
void Noise::setSpreadFactor(v3f spread)
|
|
|
|
{
|
2012-12-18 16:45:50 -05:00
|
|
|
this->np->spread = spread;
|
|
|
|
|
|
|
|
resizeNoiseBuf(sz > 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
void Noise::setOctaves(int octaves)
|
|
|
|
{
|
2012-12-18 16:45:50 -05:00
|
|
|
this->np->octaves = octaves;
|
|
|
|
|
|
|
|
resizeNoiseBuf(sz > 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
void Noise::resizeNoiseBuf(bool is3d)
|
|
|
|
{
|
2012-12-18 16:45:50 -05:00
|
|
|
int nlx, nly, nlz;
|
|
|
|
float ofactor;
|
|
|
|
|
|
|
|
//maximum possible spread value factor
|
|
|
|
ofactor = (float)(1 << (np->octaves - 1));
|
|
|
|
|
|
|
|
//noise lattice point count
|
|
|
|
//(int)(sz * spread * ofactor) is # of lattice points crossed due to length
|
|
|
|
// + 2 for the two initial endpoints
|
|
|
|
// + 1 for potentially crossing a boundary due to offset
|
|
|
|
nlx = (int)(sx * ofactor / np->spread.X) + 3;
|
|
|
|
nly = (int)(sy * ofactor / np->spread.Y) + 3;
|
|
|
|
nlz = is3d ? (int)(sz * ofactor / np->spread.Z) + 3 : 1;
|
|
|
|
|
|
|
|
if (noisebuf)
|
|
|
|
delete[] noisebuf;
|
|
|
|
noisebuf = new float[nlx * nly * nlz];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
/*
|
|
|
|
* NB: This algorithm is not optimal in terms of space complexity. The entire
|
|
|
|
* integer lattice of noise points could be done as 2 lines instead, and for 3D,
|
|
|
|
* 2 lines + 2 planes.
|
|
|
|
* However, this would require the noise calls to be interposed with the
|
|
|
|
* interpolation loops, which may trash the icache, leading to lower overall
|
|
|
|
* performance.
|
|
|
|
* Another optimization that could save half as many noise calls is to carry over
|
|
|
|
* values from the previous noise lattice as midpoints in the new lattice for the
|
|
|
|
* next octave.
|
|
|
|
*/
|
2013-01-29 11:43:06 -05:00
|
|
|
#define idx(x, y) ((y) * nlx + (x))
|
2014-10-27 02:02:38 -04:00
|
|
|
void Noise::gradientMap2D(
|
|
|
|
float x, float y,
|
|
|
|
float step_x, float step_y,
|
|
|
|
int seed)
|
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
float v00, v01, v10, v11, u, v, orig_u;
|
|
|
|
int index, i, j, x0, y0, noisex, noisey;
|
|
|
|
int nlx, nly;
|
|
|
|
|
|
|
|
x0 = floor(x);
|
|
|
|
y0 = floor(y);
|
|
|
|
u = x - (float)x0;
|
|
|
|
v = y - (float)y0;
|
|
|
|
orig_u = u;
|
|
|
|
|
|
|
|
//calculate noise point lattice
|
|
|
|
nlx = (int)(u + sx * step_x) + 2;
|
|
|
|
nly = (int)(v + sy * step_y) + 2;
|
|
|
|
index = 0;
|
|
|
|
for (j = 0; j != nly; j++)
|
|
|
|
for (i = 0; i != nlx; i++)
|
|
|
|
noisebuf[index++] = noise2d(x0 + i, y0 + j, seed);
|
|
|
|
|
|
|
|
//calculate interpolations
|
2013-01-29 11:43:06 -05:00
|
|
|
index = 0;
|
2012-11-25 21:16:48 -05:00
|
|
|
noisey = 0;
|
|
|
|
for (j = 0; j != sy; j++) {
|
2013-01-29 11:43:06 -05:00
|
|
|
v00 = noisebuf[idx(0, noisey)];
|
|
|
|
v10 = noisebuf[idx(1, noisey)];
|
|
|
|
v01 = noisebuf[idx(0, noisey + 1)];
|
|
|
|
v11 = noisebuf[idx(1, noisey + 1)];
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
u = orig_u;
|
|
|
|
noisex = 0;
|
|
|
|
for (i = 0; i != sx; i++) {
|
2013-01-29 11:43:06 -05:00
|
|
|
buf[index++] = biLinearInterpolation(v00, v10, v01, v11, u, v);
|
2012-11-25 21:16:48 -05:00
|
|
|
u += step_x;
|
|
|
|
if (u >= 1.0) {
|
|
|
|
u -= 1.0;
|
|
|
|
noisex++;
|
|
|
|
v00 = v10;
|
|
|
|
v01 = v11;
|
2013-01-29 11:43:06 -05:00
|
|
|
v10 = noisebuf[idx(noisex + 1, noisey)];
|
|
|
|
v11 = noisebuf[idx(noisex + 1, noisey + 1)];
|
2012-11-25 21:16:48 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
v += step_y;
|
|
|
|
if (v >= 1.0) {
|
|
|
|
v -= 1.0;
|
|
|
|
noisey++;
|
|
|
|
}
|
2011-06-24 21:25:14 -04:00
|
|
|
}
|
|
|
|
}
|
2013-01-29 11:43:06 -05:00
|
|
|
#undef idx
|
2011-06-24 21:25:14 -04:00
|
|
|
|
|
|
|
|
2013-01-29 11:43:06 -05:00
|
|
|
#define idx(x, y, z) ((z) * nly * nlx + (y) * nlx + (x))
|
2014-10-27 02:02:38 -04:00
|
|
|
void Noise::gradientMap3D(
|
|
|
|
float x, float y, float z,
|
|
|
|
float step_x, float step_y, float step_z,
|
|
|
|
int seed, bool eased)
|
|
|
|
{
|
2012-11-25 21:16:48 -05:00
|
|
|
float v000, v010, v100, v110;
|
|
|
|
float v001, v011, v101, v111;
|
2013-01-29 11:43:06 -05:00
|
|
|
float u, v, w, orig_u, orig_v;
|
2012-11-25 21:16:48 -05:00
|
|
|
int index, i, j, k, x0, y0, z0, noisex, noisey, noisez;
|
|
|
|
int nlx, nly, nlz;
|
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
Interp3dFxn interpolate = eased ?
|
|
|
|
triLinearInterpolation : triLinearInterpolationNoEase;
|
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
x0 = floor(x);
|
|
|
|
y0 = floor(y);
|
|
|
|
z0 = floor(z);
|
|
|
|
u = x - (float)x0;
|
|
|
|
v = y - (float)y0;
|
|
|
|
w = z - (float)z0;
|
|
|
|
orig_u = u;
|
2013-01-29 11:43:06 -05:00
|
|
|
orig_v = v;
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
//calculate noise point lattice
|
|
|
|
nlx = (int)(u + sx * step_x) + 2;
|
|
|
|
nly = (int)(v + sy * step_y) + 2;
|
2013-01-29 11:43:06 -05:00
|
|
|
nlz = (int)(w + sz * step_z) + 2;
|
2012-11-25 21:16:48 -05:00
|
|
|
index = 0;
|
|
|
|
for (k = 0; k != nlz; k++)
|
|
|
|
for (j = 0; j != nly; j++)
|
|
|
|
for (i = 0; i != nlx; i++)
|
|
|
|
noisebuf[index++] = noise3d(x0 + i, y0 + j, z0 + k, seed);
|
|
|
|
|
|
|
|
//calculate interpolations
|
2013-01-29 11:43:06 -05:00
|
|
|
index = 0;
|
2012-11-25 21:16:48 -05:00
|
|
|
noisey = 0;
|
|
|
|
noisez = 0;
|
|
|
|
for (k = 0; k != sz; k++) {
|
2013-01-29 11:43:06 -05:00
|
|
|
v = orig_v;
|
2012-11-25 21:16:48 -05:00
|
|
|
noisey = 0;
|
|
|
|
for (j = 0; j != sy; j++) {
|
2013-01-29 11:43:06 -05:00
|
|
|
v000 = noisebuf[idx(0, noisey, noisez)];
|
|
|
|
v100 = noisebuf[idx(1, noisey, noisez)];
|
|
|
|
v010 = noisebuf[idx(0, noisey + 1, noisez)];
|
|
|
|
v110 = noisebuf[idx(1, noisey + 1, noisez)];
|
|
|
|
v001 = noisebuf[idx(0, noisey, noisez + 1)];
|
|
|
|
v101 = noisebuf[idx(1, noisey, noisez + 1)];
|
|
|
|
v011 = noisebuf[idx(0, noisey + 1, noisez + 1)];
|
|
|
|
v111 = noisebuf[idx(1, noisey + 1, noisez + 1)];
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
u = orig_u;
|
|
|
|
noisex = 0;
|
|
|
|
for (i = 0; i != sx; i++) {
|
2014-10-27 02:02:38 -04:00
|
|
|
buf[index++] = interpolate(
|
2012-11-25 21:16:48 -05:00
|
|
|
v000, v100, v010, v110,
|
|
|
|
v001, v101, v011, v111,
|
|
|
|
u, v, w);
|
2014-10-27 02:02:38 -04:00
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
u += step_x;
|
|
|
|
if (u >= 1.0) {
|
|
|
|
u -= 1.0;
|
|
|
|
noisex++;
|
|
|
|
v000 = v100;
|
|
|
|
v010 = v110;
|
2013-01-29 11:43:06 -05:00
|
|
|
v100 = noisebuf[idx(noisex + 1, noisey, noisez)];
|
|
|
|
v110 = noisebuf[idx(noisex + 1, noisey + 1, noisez)];
|
2012-11-25 21:16:48 -05:00
|
|
|
v001 = v101;
|
|
|
|
v011 = v111;
|
2013-01-29 11:43:06 -05:00
|
|
|
v101 = noisebuf[idx(noisex + 1, noisey, noisez + 1)];
|
|
|
|
v111 = noisebuf[idx(noisex + 1, noisey + 1, noisez + 1)];
|
2012-11-25 21:16:48 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
v += step_y;
|
|
|
|
if (v >= 1.0) {
|
|
|
|
v -= 1.0;
|
|
|
|
noisey++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
w += step_z;
|
|
|
|
if (w >= 1.0) {
|
|
|
|
w -= 1.0;
|
|
|
|
noisez++;
|
|
|
|
}
|
2011-04-26 08:38:42 -04:00
|
|
|
}
|
|
|
|
}
|
2013-01-29 11:43:06 -05:00
|
|
|
#undef idx
|
2011-04-26 08:38:42 -04:00
|
|
|
|
2011-06-24 21:25:14 -04:00
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
float *Noise::perlinMap2D(float x, float y)
|
|
|
|
{
|
2013-02-26 01:57:59 -05:00
|
|
|
float f = 1.0, g = 1.0;
|
2014-10-27 02:02:38 -04:00
|
|
|
size_t bufsize = sx * sy;
|
2011-04-26 08:38:42 -04:00
|
|
|
|
2012-11-25 21:16:48 -05:00
|
|
|
x /= np->spread.X;
|
|
|
|
y /= np->spread.Y;
|
2011-06-24 21:25:14 -04:00
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
memset(result, 0, sizeof(float) * bufsize);
|
2011-04-26 08:38:42 -04:00
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
for (int oct = 0; oct < np->octaves; oct++) {
|
2012-11-25 21:16:48 -05:00
|
|
|
gradientMap2D(x * f, y * f,
|
|
|
|
f / np->spread.X, f / np->spread.Y,
|
|
|
|
seed + np->seed + oct);
|
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
for (size_t i = 0; i != bufsize; i++)
|
|
|
|
result[i] += g * buf[i];
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
f *= 2.0;
|
|
|
|
g *= np->persist;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2011-04-26 08:38:42 -04:00
|
|
|
}
|
|
|
|
|
2011-06-24 21:25:14 -04:00
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
float *Noise::perlinMap2DModulated(float x, float y, float *persist_map)
|
|
|
|
{
|
2013-04-06 11:19:59 -04:00
|
|
|
float f = 1.0;
|
2014-10-27 02:02:38 -04:00
|
|
|
size_t bufsize = sx * sy;
|
2013-04-06 11:19:59 -04:00
|
|
|
|
|
|
|
x /= np->spread.X;
|
|
|
|
y /= np->spread.Y;
|
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
memset(result, 0, sizeof(float) * bufsize);
|
|
|
|
|
|
|
|
float *g = new float[bufsize];
|
|
|
|
for (size_t i = 0; i != bufsize; i++)
|
|
|
|
g[i] = 1.0;
|
2013-04-06 11:19:59 -04:00
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
for (int oct = 0; oct < np->octaves; oct++) {
|
2013-04-06 11:19:59 -04:00
|
|
|
gradientMap2D(x * f, y * f,
|
|
|
|
f / np->spread.X, f / np->spread.Y,
|
|
|
|
seed + np->seed + oct);
|
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
for (size_t i = 0; i != bufsize; i++) {
|
|
|
|
result[i] += g[i] * buf[i];
|
|
|
|
g[i] *= persist_map[i];
|
2013-04-06 11:19:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
f *= 2.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete[] g;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
float *Noise::perlinMap3D(float x, float y, float z, bool eased)
|
|
|
|
{
|
2013-02-26 01:57:59 -05:00
|
|
|
float f = 1.0, g = 1.0;
|
2014-10-27 02:02:38 -04:00
|
|
|
size_t bufsize = sx * sy * sz;
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
x /= np->spread.X;
|
|
|
|
y /= np->spread.Y;
|
|
|
|
z /= np->spread.Z;
|
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
memset(result, 0, sizeof(float) * bufsize);
|
2012-11-25 21:16:48 -05:00
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
for (int oct = 0; oct < np->octaves; oct++) {
|
2012-11-25 21:16:48 -05:00
|
|
|
gradientMap3D(x * f, y * f, z * f,
|
|
|
|
f / np->spread.X, f / np->spread.Y, f / np->spread.Z,
|
2014-10-27 02:02:38 -04:00
|
|
|
seed + np->seed + oct, eased);
|
2012-11-25 21:16:48 -05:00
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
for (size_t i = 0; i != bufsize; i++)
|
|
|
|
result[i] += g * buf[i];
|
2012-11-25 21:16:48 -05:00
|
|
|
|
|
|
|
f *= 2.0;
|
|
|
|
g *= np->persist;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2012-12-18 13:23:16 -05:00
|
|
|
|
|
|
|
|
2014-10-27 02:02:38 -04:00
|
|
|
void Noise::transformNoiseMap()
|
|
|
|
{
|
|
|
|
size_t i = 0;
|
|
|
|
|
|
|
|
for (int z = 0; z != sz; z++)
|
|
|
|
for (int y = 0; y != sy; y++)
|
|
|
|
for (int x = 0; x != sx; x++) {
|
|
|
|
result[i] = result[i] * np->scale + np->offset;
|
|
|
|
i++;
|
2012-12-18 13:23:16 -05:00
|
|
|
}
|
|
|
|
}
|
2014-10-16 07:45:55 -04:00
|
|
|
|