-
Notifications
You must be signed in to change notification settings - Fork 398
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
132 additions
and
533 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
#define LUA_LIB | ||
|
||
//#include "meshbase/meshbase.h" | ||
#include <glm/glm.hpp> | ||
|
||
extern "C" { | ||
#include <lua.h> | ||
#include <lualib.h> | ||
#include <lauxlib.h> | ||
} | ||
|
||
/* static const unsigned char hash[] = { | ||
208,34,231,213,32,248,233,56,161,78,24,140,71,48,140,254,245,255, | ||
247,247,40, 185,248,251,245,28,124,204,204,76,36,1,107,28,234,163, | ||
202,224,245,128,167,204,9,92,217,54,239,174,173,102,193,189,190,121, | ||
100,108,167,44,43,77,180,204,8,81,70,223,11,38,24,254,210,210,177, | ||
32,81,195,243,125,8,169,112,32,97,53,195,13,203,9,47,104,125,117, | ||
114,124,165,203,181,235,193,206,70,180,174,0,167,181,41,164,30,116, | ||
127,198,245,146,87,224,149,206,57,4,192,210,65,210,129,240,178,105, | ||
228,108,245,148,140,40,35,195,38,58,65,207,215,253,65,85,208,76,62, | ||
3,237,55,89,232,50,217,64,244,157,199,121,252,90,17,212,203,149,152, | ||
140,187,234,177,73,174,193,100,192,143,97,53,145,135,19,103,13,90, | ||
135,151,199,91,239,247,33,39,145,101,120,99,3,186,86,99,41,237,203, | ||
111,79,220,135,158,42,30,154,120,67,87,167,135,176,183,191,253,115, | ||
184,21,233,58,129,233,142,39,128,211,118,137,139,255,114,20,218,113, | ||
154,27,127,246,250,1,8,198,250,209,92,222,173,21,88,102,219 | ||
}; */ | ||
|
||
static const uint8_t hash[] = { | ||
151,160,137,91,90,15, | ||
131,13,201,95,96,53,194,233,7,225,140,36,103,30,69,142,8,99,37,240,21,10,23, | ||
190,6,148,247,120,234,75,0,26,197,62,94,252,219,203,117,35,11,32,57,177,33, | ||
88,237,149,56,87,174,20,125,136,171,168,68,175,74,165,71,134,139,48,27,166, | ||
77,146,158,231,83,111,229,122,60,211,133,230,220,105,92,41,55,46,245,40,244, | ||
102,143,54,65,25,63,161,1,216,80,73,209,76,132,187,208,89,18,169,200,196, | ||
135,130,116,188,159,86,164,100,109,198,173,186,3,64,52,217,226,250,124,123, | ||
5,202,38,147,118,126,255,82,85,212,207,206,59,227,47,16,58,17,182,189,28,42, | ||
223,183,170,213,119,248,152,2,44,154,163,70,221,153,101,155,167,43,172,9, | ||
129,22,39,253,19,98,108,110,79,113,224,232,178,185,112,104,218,246,97,228, | ||
251,34,242,193,238,210,144,12,191,179,162,241,81,51,145,235,249,14,239,107, | ||
49,192,214,31,181,199,106,157,184,84,204,176,115,121,50,45,127,4,150,254, | ||
138,236,205,93,222,114,67,29,24,72,243,141,128,195,78,66,215,61,156,180 | ||
}; | ||
|
||
static int noise2(int x, int y, int seed) { | ||
int yindex = (y + seed) % 256; | ||
if (yindex < 0) { | ||
yindex += 256; | ||
} | ||
int xindex = (hash[yindex] + x) % 256; | ||
if (xindex < 0) { | ||
xindex += 256; | ||
} | ||
return (int) hash[xindex]; | ||
} | ||
|
||
static double lin_inter(double x, double y, double s) { | ||
return x + s * (y-x); | ||
} | ||
|
||
static double smooth_inter(double x, double y, double s) { | ||
return lin_inter(x, y, s * s * (3.0-2.0*s)); | ||
} | ||
|
||
static double noise2d(double x, double y, int seed) { | ||
double x_int, y_int; | ||
double x_frac = std::modf(x, &x_int); | ||
double y_frac = std::modf(y, &y_int); | ||
|
||
//use double | ||
const double s = (double)noise2((int)x_int, (int)y_int, seed); | ||
const double t = (double)noise2((int)x_int+1, (int)y_int, seed); | ||
const double u = (double)noise2((int)x_int, (int)y_int+1, seed); | ||
const double v = (double)noise2((int)x_int+1, (int)y_int+1, seed); | ||
|
||
const double low = smooth_inter(s, t, x_frac); | ||
const double high = smooth_inter(u, v, x_frac); | ||
return smooth_inter(low, high, y_frac); | ||
} | ||
|
||
static double perlin2d(double x, double y, double freq, int depth, int seed, double ox, double oy) { | ||
double xa = x*freq + ox; | ||
double ya = y*freq + oy; | ||
double amp = 1.0; | ||
double fin = 0; | ||
double div = 0.0; | ||
|
||
for(int i=0; i<depth; i++) { | ||
div += 256.0 * amp; | ||
fin += noise2d(xa, ya, seed) * amp; | ||
amp /= 2; | ||
xa *= 2; | ||
ya *= 2; | ||
} | ||
|
||
return fin/div; | ||
} | ||
|
||
static int lperlin2d(lua_State *L) { | ||
const double x = luaL_checknumber(L, 1); | ||
const double y = luaL_checknumber(L, 2); | ||
const double freq = luaL_checknumber(L, 3); | ||
const int depth = (int)luaL_checkinteger(L, 4); | ||
const int seed = (int)luaL_checkinteger(L, 5); | ||
const double offsetx= luaL_checknumber(L, 6); | ||
const double offsety= luaL_checknumber(L, 7); | ||
lua_pushnumber(L, perlin2d(x, y, freq, depth, seed, offsetx, offsety)); | ||
return 1; | ||
} | ||
|
||
extern "C" { | ||
LUAMOD_API int | ||
luaopen_noise(lua_State *L) { | ||
luaL_checkversion(L); | ||
luaL_Reg l[] = { | ||
{ "perlin2d", lperlin2d }, | ||
{ nullptr, nullptr}, | ||
}; | ||
luaL_newlib(L, l); | ||
return 1; | ||
} | ||
} | ||
|
||
|
||
|
||
|
Oops, something went wrong.