Skip to content

Commit

Permalink
Cave liquids: Use a more precise point for calculating biome
Browse files Browse the repository at this point in the history
Use the centre point of the route being carved for a more precise match
between cave liquids and biome.
  • Loading branch information
paramat committed Apr 21, 2018
1 parent cb92cdf commit 5abd0ef
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/mapgen/cavegen.cpp
Expand Up @@ -497,28 +497,29 @@ void CavesRandomWalk::carveRoute(v3f vec, float f, bool randomize_xz)
v3s16 startp(orp.X, orp.Y, orp.Z);
startp += of;

// Get biome at 'startp', use 'node_cave_liquid' if stated, otherwise
// fallback to classic behaviour.
v3f fp = orp + vec * f;
fp.X += 0.1f * ps->range(-10, 10);
fp.Z += 0.1f * ps->range(-10, 10);
v3s16 cp(fp.X, fp.Y, fp.Z);

// Get biome at 'cp + of', the absolute centre point of this route
v3s16 cpabs = cp + of;
MapNode liquidnode = CONTENT_IGNORE;

if (bmgn) {
Biome *biome = (Biome *)bmgn->calcBiomeAtPoint(startp);
Biome *biome = (Biome *)bmgn->calcBiomeAtPoint(cpabs);
if (biome->c_cave_liquid != CONTENT_IGNORE)
liquidnode = biome->c_cave_liquid;
}

if (liquidnode == CONTENT_IGNORE) {
// Fallback to classic behaviour using point 'startp'
float nval = NoisePerlin3D(np_caveliquids, startp.X,
startp.Y, startp.Z, seed);
liquidnode = (nval < 0.40f && node_max.Y < lava_depth) ?
lavanode : waternode;
}

v3f fp = orp + vec * f;
fp.X += 0.1f * ps->range(-10, 10);
fp.Z += 0.1f * ps->range(-10, 10);
v3s16 cp(fp.X, fp.Y, fp.Z);

s16 d0 = -rs / 2;
s16 d1 = d0 + rs;
if (randomize_xz) {
Expand Down

0 comments on commit 5abd0ef

Please sign in to comment.