Skip to content
Snippets Groups Projects
Commit ce1a70c7 authored by paramat's avatar paramat
Browse files

Mgv5: getGroundLevelAtPoint searches a larger range

parent 94464fce
No related branches found
No related tags found
No related merge requests found
...@@ -182,23 +182,24 @@ int MapgenV5::getGroundLevelAtPoint(v2s16 p) ...@@ -182,23 +182,24 @@ int MapgenV5::getGroundLevelAtPoint(v2s16 p)
f *= 1.6; f *= 1.6;
float h = NoisePerlin2D(&noise_height->np, p.X, p.Y, seed); float h = NoisePerlin2D(&noise_height->np, p.X, p.Y, seed);
s16 search_top = water_level + 15; s16 search_start = 128; // Only bother searching this range, actual
s16 search_base = water_level; s16 search_end = -128; // ground level is rarely higher or lower.
s16 level = -31000; for (s16 y = search_start; y >= search_end; y--) {
for (s16 y = search_top; y >= search_base; y--) {
float n_ground = NoisePerlin3D(&noise_ground->np, p.X, y, p.Y, seed); float n_ground = NoisePerlin3D(&noise_ground->np, p.X, y, p.Y, seed);
// If solid
if (n_ground * f > y - h) { if (n_ground * f > y - h) {
if (y >= search_top - 7) // If either top 2 nodes of search are solid this is inside a
break; // mountain or floatland with no space for the player to spawn.
if (y >= search_start - 1)
return MAX_MAP_GENERATION_LIMIT;
else else
level = y; return y; // Ground below at least 2 nodes of space
break;
} }
} }
//printf("getGroundLevelAtPoint: %dus\n", t.stop()); //printf("getGroundLevelAtPoint: %dus\n", t.stop());
return level; return -MAX_MAP_GENERATION_LIMIT;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment