]> git.lizzy.rs Git - dragonfireclient.git/blob - src/mapgen_v7.cpp
Noise: Create a deep copy of NoiseParams
[dragonfireclient.git] / src / mapgen_v7.cpp
1 /*
2 Minetest
3 Copyright (C) 2010-2013 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser 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
21 #include "mapgen.h"
22 #include "voxel.h"
23 #include "noise.h"
24 #include "mapblock.h"
25 #include "mapnode.h"
26 #include "map.h"
27 #include "content_sao.h"
28 #include "nodedef.h"
29 #include "voxelalgorithms.h"
30 #include "profiler.h"
31 #include "settings.h" // For g_settings
32 #include "main.h" // For g_profiler
33 #include "emerge.h"
34 #include "dungeongen.h"
35 #include "cavegen.h"
36 #include "treegen.h"
37 #include "mg_biome.h"
38 #include "mg_ore.h"
39 #include "mg_decoration.h"
40 #include "mapgen_v7.h"
41
42
43 FlagDesc flagdesc_mapgen_v7[] = {
44         {"mountains", MGV7_MOUNTAINS},
45         {"ridges",    MGV7_RIDGES},
46         {NULL,        0}
47 };
48
49 ///////////////////////////////////////////////////////////////////////////////
50
51
52 MapgenV7::MapgenV7(int mapgenid, MapgenParams *params, EmergeManager *emerge)
53         : Mapgen(mapgenid, params, emerge)
54 {
55         this->emerge = emerge;
56         this->bmgr   = emerge->biomemgr;
57
58         //// amount of elements to skip for the next index
59         //// for noise/height/biome maps (not vmanip)
60         this->ystride = csize.X;
61         this->zstride = csize.X * csize.Y;
62
63         this->biomemap  = new u8[csize.X * csize.Z];
64         this->heightmap = new s16[csize.X * csize.Z];
65         this->ridge_heightmap = new s16[csize.X * csize.Z];
66
67         MapgenV7Params *sp = (MapgenV7Params *)params->sparams;
68         this->spflags = sp->spflags;
69
70         //// Terrain noise
71         noise_terrain_base    = new Noise(&sp->np_terrain_base,    seed, csize.X, csize.Z);
72         noise_terrain_alt     = new Noise(&sp->np_terrain_alt,     seed, csize.X, csize.Z);
73         noise_terrain_persist = new Noise(&sp->np_terrain_persist, seed, csize.X, csize.Z);
74         noise_height_select   = new Noise(&sp->np_height_select,   seed, csize.X, csize.Z);
75         noise_filler_depth    = new Noise(&sp->np_filler_depth,    seed, csize.X, csize.Z);
76         noise_mount_height    = new Noise(&sp->np_mount_height,    seed, csize.X, csize.Z);
77         noise_ridge_uwater    = new Noise(&sp->np_ridge_uwater,    seed, csize.X, csize.Z);
78
79         //// 3d terrain noise
80         noise_mountain = new Noise(&sp->np_mountain, seed, csize.X, csize.Y, csize.Z);
81         noise_ridge    = new Noise(&sp->np_ridge,    seed, csize.X, csize.Y, csize.Z);
82
83         //// Biome noise
84         noise_heat     = new Noise(&params->np_biome_heat,     seed, csize.X, csize.Z);
85         noise_humidity = new Noise(&params->np_biome_humidity, seed, csize.X, csize.Z);
86
87         //// Resolve nodes to be used
88         INodeDefManager *ndef = emerge->ndef;
89
90         c_stone           = ndef->getId("mapgen_stone");
91         c_dirt            = ndef->getId("mapgen_dirt");
92         c_dirt_with_grass = ndef->getId("mapgen_dirt_with_grass");
93         c_sand            = ndef->getId("mapgen_sand");
94         c_water_source    = ndef->getId("mapgen_water_source");
95         c_lava_source     = ndef->getId("mapgen_lava_source");
96         c_ice             = ndef->getId("default:ice");
97         if (c_ice == CONTENT_IGNORE)
98                 c_ice = CONTENT_AIR;
99 }
100
101
102 MapgenV7::~MapgenV7() {
103         delete noise_terrain_base;
104         delete noise_terrain_persist;
105         delete noise_height_select;
106         delete noise_terrain_alt;
107         delete noise_filler_depth;
108         delete noise_mount_height;
109         delete noise_ridge_uwater;
110         delete noise_mountain;
111         delete noise_ridge;
112
113         delete noise_heat;
114         delete noise_humidity;
115
116         delete[] ridge_heightmap;
117         delete[] heightmap;
118         delete[] biomemap;
119 }
120
121
122 MapgenV7Params::MapgenV7Params() {
123         spflags = MGV7_MOUNTAINS | MGV7_RIDGES;
124
125         np_terrain_base    = NoiseParams(4,    70,  v3f(300, 300, 300), 82341, 6, 0.7, 2.0);
126         np_terrain_alt     = NoiseParams(4,    25,  v3f(600, 600, 600), 5934,  5, 0.6, 2.0);
127         np_terrain_persist = NoiseParams(0.6,  0.1, v3f(500, 500, 500), 539,   3, 0.6, 2.0);
128         np_height_select   = NoiseParams(-0.5, 1,   v3f(250, 250, 250), 4213,  5, 0.69, 2.0);
129         np_filler_depth    = NoiseParams(0,    1.2, v3f(150, 150, 150), 261,   4, 0.7, 2.0);
130         np_mount_height    = NoiseParams(100,  30,  v3f(500, 500, 500), 72449, 4, 0.6, 2.0);
131         np_ridge_uwater    = NoiseParams(0,    1,   v3f(500, 500, 500), 85039, 4, 0.6, 2.0);
132         np_mountain        = NoiseParams(0,    1,   v3f(250, 350, 250), 5333,  5, 0.68, 2.0);
133         np_ridge           = NoiseParams(0,    1,   v3f(100, 100, 100), 6467,  4, 0.75, 2.0);
134 }
135
136
137 void MapgenV7Params::readParams(Settings *settings) {
138         settings->getFlagStrNoEx("mgv7_spflags", spflags, flagdesc_mapgen_v7);
139
140         settings->getNoiseParams("mgv7_np_terrain_base",    np_terrain_base);
141         settings->getNoiseParams("mgv7_np_terrain_alt",     np_terrain_alt);
142         settings->getNoiseParams("mgv7_np_terrain_persist", np_terrain_persist);
143         settings->getNoiseParams("mgv7_np_height_select",   np_height_select);
144         settings->getNoiseParams("mgv7_np_filler_depth",    np_filler_depth);
145         settings->getNoiseParams("mgv7_np_mount_height",    np_mount_height);
146         settings->getNoiseParams("mgv7_np_ridge_uwater",    np_ridge_uwater);
147         settings->getNoiseParams("mgv7_np_mountain",        np_mountain);
148         settings->getNoiseParams("mgv7_np_ridge",           np_ridge);
149 }
150
151
152 void MapgenV7Params::writeParams(Settings *settings) {
153         settings->setFlagStr("mgv7_spflags", spflags, flagdesc_mapgen_v7, (u32)-1);
154
155         settings->setNoiseParams("mgv7_np_terrain_base",    np_terrain_base);
156         settings->setNoiseParams("mgv7_np_terrain_alt",     np_terrain_alt);
157         settings->setNoiseParams("mgv7_np_terrain_persist", np_terrain_persist);
158         settings->setNoiseParams("mgv7_np_height_select",   np_height_select);
159         settings->setNoiseParams("mgv7_np_filler_depth",    np_filler_depth);
160         settings->setNoiseParams("mgv7_np_mount_height",    np_mount_height);
161         settings->setNoiseParams("mgv7_np_ridge_uwater",    np_ridge_uwater);
162         settings->setNoiseParams("mgv7_np_mountain",        np_mountain);
163         settings->setNoiseParams("mgv7_np_ridge",           np_ridge);
164 }
165
166
167 ///////////////////////////////////////
168
169
170 int MapgenV7::getGroundLevelAtPoint(v2s16 p) {
171         // Base terrain calculation
172         s16 y = baseTerrainLevelAtPoint(p.X, p.Y);
173
174         // Ridge/river terrain calculation
175         float width = 0.3;
176         float uwatern = NoisePerlin2DNoTxfm(&noise_ridge_uwater->np, p.X, p.Y, seed) * 2;
177         // actually computing the depth of the ridge is much more expensive;
178         // if inside a river, simply guess
179         if (uwatern >= -width && uwatern <= width)
180                 return water_level - 10;
181
182         // Mountain terrain calculation
183         int iters = 128; // don't even bother iterating more than 128 times..
184         while (iters--) {
185                 //current point would have been air
186                 if (!getMountainTerrainAtPoint(p.X, y, p.Y))
187                         return y;
188
189                 y++;
190         }
191
192         return y;
193 }
194
195
196 void MapgenV7::makeChunk(BlockMakeData *data) {
197         assert(data->vmanip);
198         assert(data->nodedef);
199         assert(data->blockpos_requested.X >= data->blockpos_min.X &&
200                    data->blockpos_requested.Y >= data->blockpos_min.Y &&
201                    data->blockpos_requested.Z >= data->blockpos_min.Z);
202         assert(data->blockpos_requested.X <= data->blockpos_max.X &&
203                    data->blockpos_requested.Y <= data->blockpos_max.Y &&
204                    data->blockpos_requested.Z <= data->blockpos_max.Z);
205
206         this->generating = true;
207         this->vm   = data->vmanip;
208         this->ndef = data->nodedef;
209         //TimeTaker t("makeChunk");
210
211         v3s16 blockpos_min = data->blockpos_min;
212         v3s16 blockpos_max = data->blockpos_max;
213         node_min = blockpos_min * MAP_BLOCKSIZE;
214         node_max = (blockpos_max + v3s16(1, 1, 1)) * MAP_BLOCKSIZE - v3s16(1, 1, 1);
215         full_node_min = (blockpos_min - 1) * MAP_BLOCKSIZE;
216         full_node_max = (blockpos_max + 2) * MAP_BLOCKSIZE - v3s16(1, 1, 1);
217
218         blockseed = emerge->getBlockSeed(full_node_min);  //////use getBlockSeed2()!
219
220         // Make some noise
221         calculateNoise();
222
223         // Generate base terrain, mountains, and ridges with initial heightmaps
224         s16 stone_surface_max_y = generateTerrain();
225
226         updateHeightmap(node_min, node_max);
227
228         // Calculate biomes
229         bmgr->calcBiomes(csize.X, csize.Z, noise_heat->result,
230                 noise_humidity->result, heightmap, biomemap);
231
232         // Actually place the biome-specific nodes and what not
233         generateBiomes();
234
235         if (flags & MG_CAVES)
236                 generateCaves(stone_surface_max_y);
237
238         if (flags & MG_DUNGEONS) {
239                 DungeonGen dgen(this, NULL);
240                 dgen.generate(blockseed, full_node_min, full_node_max);
241         }
242
243         // Generate the registered decorations
244         emerge->decomgr->placeAllDecos(this, blockseed, node_min, node_max);
245
246         // Generate the registered ores
247         emerge->oremgr->placeAllOres(this, blockseed, node_min, node_max);
248
249         // Sprinkle some dust on top after everything else was generated
250         dustTopNodes();
251
252         //printf("makeChunk: %dms\n", t.stop());
253
254         updateLiquid(&data->transforming_liquid, full_node_min, full_node_max);
255
256         if (flags & MG_LIGHT)
257                 calcLighting(node_min - v3s16(1, 0, 1) * MAP_BLOCKSIZE,
258                                          node_max + v3s16(1, 0, 1) * MAP_BLOCKSIZE);
259         //setLighting(node_min - v3s16(1, 0, 1) * MAP_BLOCKSIZE,
260         //                      node_max + v3s16(1, 0, 1) * MAP_BLOCKSIZE, 0xFF);
261
262         this->generating = false;
263 }
264
265
266 void MapgenV7::calculateNoise() {
267         //TimeTaker t("calculateNoise", NULL, PRECISION_MICRO);
268         int x = node_min.X;
269         int y = node_min.Y;
270         int z = node_min.Z;
271
272         noise_height_select->perlinMap2D(x, z);
273         noise_height_select->transformNoiseMap();
274
275         noise_terrain_persist->perlinMap2D(x, z);
276         noise_terrain_persist->transformNoiseMap();
277         float *persistmap = noise_terrain_persist->result;
278         for (int i = 0; i != csize.X * csize.Z; i++)
279                 persistmap[i] = rangelim(persistmap[i], 0.4, 0.9);
280
281         noise_terrain_base->perlinMap2D(x, z, persistmap);
282         noise_terrain_base->transformNoiseMap();
283
284         noise_terrain_alt->perlinMap2D(x, z, persistmap);
285         noise_terrain_alt->transformNoiseMap();
286
287         noise_filler_depth->perlinMap2D(x, z);
288
289         if (spflags & MGV7_MOUNTAINS) {
290                 noise_mountain->perlinMap3D(x, y, z);
291                 noise_mount_height->perlinMap2D(x, z);
292                 noise_mount_height->transformNoiseMap();
293         }
294
295         if (spflags & MGV7_RIDGES) {
296                 noise_ridge->perlinMap3D(x, y, z);
297                 noise_ridge_uwater->perlinMap2D(x, z);
298         }
299
300         noise_heat->perlinMap2D(x, z);
301         noise_humidity->perlinMap2D(x, z);
302
303         //printf("calculateNoise: %dus\n", t.stop());
304 }
305
306
307 Biome *MapgenV7::getBiomeAtPoint(v3s16 p) {
308         float heat      = NoisePerlin2D(&noise_heat->np, p.X, p.Z, seed);
309         float humidity  = NoisePerlin2D(&noise_humidity->np, p.X, p.Z, seed);
310         s16 groundlevel = baseTerrainLevelAtPoint(p.X, p.Z);
311
312         return bmgr->getBiome(heat, humidity, groundlevel);
313 }
314
315 //needs to be updated
316 float MapgenV7::baseTerrainLevelAtPoint(int x, int z) {
317         float hselect = NoisePerlin2D(&noise_height_select->np, x, z, seed);
318         hselect = rangelim(hselect, 0.0, 1.0);
319
320         float persist = NoisePerlin2D(&noise_terrain_persist->np, x, z, seed);
321         persist = rangelim(persist, 0.4, 0.9);
322
323         noise_terrain_base->np.persist = persist;
324         float height_base = NoisePerlin2D(&noise_terrain_base->np, x, z, seed);
325
326         noise_terrain_alt->np.persist = persist;
327         float height_alt = NoisePerlin2D(&noise_terrain_alt->np, x, z, seed);
328
329         if (height_alt > height_base)
330                 return height_alt;
331
332         return (height_base * hselect) + (height_alt * (1.0 - hselect));
333 }
334
335
336 float MapgenV7::baseTerrainLevelFromMap(int index) {
337         float hselect     = rangelim(noise_height_select->result[index], 0.0, 1.0);
338         float height_base = noise_terrain_base->result[index];
339         float height_alt  = noise_terrain_alt->result[index];
340
341         if (height_alt > height_base)
342                 return height_alt;
343
344         return (height_base * hselect) + (height_alt * (1.0 - hselect));
345 }
346
347
348 bool MapgenV7::getMountainTerrainAtPoint(int x, int y, int z) {
349         float mnt_h_n = NoisePerlin2D(&noise_mount_height->np, x, z, seed);
350         float height_modifier = -((float)y / rangelim(mnt_h_n, 80.0, 150.0));
351         float mnt_n = NoisePerlin3D(&noise_mountain->np, x, y, z, seed);
352
353         return mnt_n + height_modifier >= 0.6;
354 }
355
356
357 bool MapgenV7::getMountainTerrainFromMap(int idx_xyz, int idx_xz, int y) {
358         float mounthn = noise_mount_height->result[idx_xz];
359         float height_modifier = -((float)y / rangelim(mounthn, 80.0, 150.0));
360         return (noise_mountain->result[idx_xyz] + height_modifier >= 0.6);
361 }
362
363
364 #if 0
365 void MapgenV7::carveRivers() {
366         MapNode n_air(CONTENT_AIR), n_water_source(c_water_source);
367         MapNode n_stone(c_stone);
368         u32 index = 0;
369
370         int river_depth = 4;
371
372         for (s16 z = node_min.Z; z <= node_max.Z; z++)
373         for (s16 x = node_min.X; x <= node_max.X; x++, index++) {
374                 float terrain_mod  = noise_terrain_mod->result[index];
375                 NoiseParams *np = noise_terrain_river->np;
376                 np.persist = noise_terrain_persist->result[index];
377                 float terrain_river = NoisePerlin2DNoTxfm(np, x, z, seed);
378                 float height = terrain_river * (1 - abs(terrain_mod)) *
379                                                 noise_terrain_river->np.scale;
380                 height = log(height * height); //log(h^3) is pretty interesting for terrain
381
382                 s16 y = heightmap[index];
383                 if (height < 1.0 && y > river_depth &&
384                         y - river_depth >= node_min.Y && y <= node_max.Y) {
385
386                         for (s16 ry = y; ry != y - river_depth; ry--) {
387                                 u32 vi = vm->m_area.index(x, ry, z);
388                                 vm->m_data[vi] = n_air;
389                         }
390
391                         u32 vi = vm->m_area.index(x, y - river_depth, z);
392                         vm->m_data[vi] = n_water_source;
393                 }
394         }
395 }
396 #endif
397
398
399 int MapgenV7::generateTerrain() {
400         int ymax = generateBaseTerrain();
401
402         if (spflags & MGV7_MOUNTAINS)
403                 generateMountainTerrain();
404
405         if (spflags & MGV7_RIDGES)
406                 generateRidgeTerrain();
407
408         return ymax;
409 }
410
411
412 int MapgenV7::generateBaseTerrain() {
413         MapNode n_air(CONTENT_AIR);
414         MapNode n_stone(c_stone);
415         MapNode n_water(c_water_source);
416
417         int stone_surface_max_y = -MAP_GENERATION_LIMIT;
418         v3s16 em = vm->m_area.getExtent();
419         u32 index = 0;
420
421         for (s16 z = node_min.Z; z <= node_max.Z; z++)
422         for (s16 x = node_min.X; x <= node_max.X; x++, index++) {
423                 float surface_height = baseTerrainLevelFromMap(index);
424                 s16 surface_y = (s16)surface_height;
425
426                 heightmap[index]       = surface_y;
427                 ridge_heightmap[index] = surface_y;
428
429                 if (surface_y > stone_surface_max_y)
430                         stone_surface_max_y = surface_y;
431
432                 u32 i = vm->m_area.index(x, node_min.Y, z);
433                 for (s16 y = node_min.Y; y <= node_max.Y; y++) {
434                         if (vm->m_data[i].getContent() == CONTENT_IGNORE) {
435                                 if (y <= surface_y)
436                                         vm->m_data[i] = n_stone;
437                                 else if (y <= water_level)
438                                         vm->m_data[i] = n_water;
439                                 else
440                                         vm->m_data[i] = n_air;
441                         }
442                         vm->m_area.add_y(em, i, 1);
443                 }
444         }
445
446         return stone_surface_max_y;
447 }
448
449
450 void MapgenV7::generateMountainTerrain() {
451         if (node_max.Y <= water_level)
452                 return;
453
454         MapNode n_stone(c_stone);
455         u32 j = 0;
456
457         for (s16 z = node_min.Z; z <= node_max.Z; z++)
458         for (s16 y = node_min.Y; y <= node_max.Y; y++) {
459                 u32 vi = vm->m_area.index(node_min.X, y, z);
460                 for (s16 x = node_min.X; x <= node_max.X; x++) {
461                         int index = (z - node_min.Z) * csize.X + (x - node_min.X);
462
463                         if (getMountainTerrainFromMap(j, index, y))
464                                 vm->m_data[vi] = n_stone;
465
466                         vi++;
467                         j++;
468                 }
469         }
470 }
471
472
473 void MapgenV7::generateRidgeTerrain() {
474         MapNode n_water(c_water_source);
475         MapNode n_air(CONTENT_AIR);
476         u32 index = 0;
477
478         for (s16 z = node_min.Z; z <= node_max.Z; z++)
479         for (s16 y = node_min.Y; y <= node_max.Y; y++) {
480                 u32 vi = vm->m_area.index(node_min.X, y, z);
481                 for (s16 x = node_min.X; x <= node_max.X; x++, index++, vi++) {
482                         int j = (z - node_min.Z) * csize.X + (x - node_min.X);
483
484                         if (heightmap[j] < water_level - 4)
485                                 continue;
486
487                         float widthn = (noise_terrain_persist->result[j] - 0.6) / 0.1;
488                         //widthn = rangelim(widthn, -0.05, 0.5);
489
490                         float width = 0.3; // TODO: figure out acceptable perlin noise values
491                         float uwatern = noise_ridge_uwater->result[j] * 2;
492                         if (uwatern < -width || uwatern > width)
493                                 continue;
494
495                         float height_mod = (float)(y + 17) / 2.5;
496                         float width_mod  = (width - fabs(uwatern));
497                         float nridge = noise_ridge->result[index] * (float)y / 7.0;
498
499                         if (y < water_level)
500                                 nridge = -fabs(nridge) * 3.0 * widthn * 0.3;
501
502                         if (nridge + width_mod * height_mod < 0.6)
503                                 continue;
504
505                         if (y < ridge_heightmap[j])
506                                 ridge_heightmap[j] = y - 1;
507
508                         vm->m_data[vi] = (y > water_level) ? n_air : n_water;
509                 }
510         }
511 }
512
513
514 void MapgenV7::generateBiomes() {
515         if (node_max.Y < water_level)
516                 return;
517
518         MapNode n_air(CONTENT_AIR);
519         MapNode n_stone(c_stone);
520         MapNode n_water(c_water_source);
521
522         v3s16 em = vm->m_area.getExtent();
523         u32 index = 0;
524
525         for (s16 z = node_min.Z; z <= node_max.Z; z++)
526         for (s16 x = node_min.X; x <= node_max.X; x++, index++) {
527                 Biome *biome  = (Biome *)bmgr->get(biomemap[index]);
528                 s16 dfiller   = biome->depth_filler + noise_filler_depth->result[index];
529                 s16 y0_top    = biome->depth_top;
530                 s16 y0_filler = biome->depth_top + dfiller;
531
532                 s16 nplaced = 0;
533                 u32 i = vm->m_area.index(x, node_max.Y, z);
534
535                 content_t c_above = vm->m_data[i + em.X].getContent();
536                 bool have_air = c_above == CONTENT_AIR;
537
538                 for (s16 y = node_max.Y; y >= node_min.Y; y--) {
539                         content_t c = vm->m_data[i].getContent();
540
541                         // It could be the case that the elevation is equal to the chunk
542                         // boundary, but the chunk above has not been generated yet
543                         if (y == node_max.Y && c_above == CONTENT_IGNORE &&
544                                 y == heightmap[index] && c == c_stone) {
545                                 int j = (z - node_min.Z) * zstride +
546                                                 (y - node_min.Y) * ystride +
547                                                 (x - node_min.X);
548                                 have_air = !getMountainTerrainFromMap(j, index, y);
549                         }
550
551                         if (c == c_stone && have_air) {
552                                 content_t c_below = vm->m_data[i - em.X].getContent();
553
554                                 if (c_below != CONTENT_AIR) {
555                                         if (nplaced < y0_top) {
556                                                 if(y < water_level)
557                                                         vm->m_data[i] = MapNode(biome->c_filler);
558                                                 else
559                                                         vm->m_data[i] = MapNode(biome->c_top);
560                                                 nplaced++;
561                                         } else if (nplaced < y0_filler && nplaced >= y0_top) {
562                                                 vm->m_data[i] = MapNode(biome->c_filler);
563                                                 nplaced++;
564                                         } else if (c == c_stone) {
565                                                 have_air = false;
566                                                 nplaced  = 0;
567                                                 vm->m_data[i] = MapNode(biome->c_stone);
568                                         } else {
569                                                 have_air = false;
570                                                 nplaced  = 0;
571                                         }
572                                 } else if (c == c_stone) {
573                                         have_air = false;
574                                         nplaced = 0;
575                                         vm->m_data[i] = MapNode(biome->c_stone);
576                                 }
577                         } else if (c == c_stone) {
578                                 have_air = false;
579                                 nplaced = 0;
580                                 vm->m_data[i] = MapNode(biome->c_stone);
581                         } else if (c == c_water_source) {
582                                 have_air = true;
583                                 nplaced = 0;
584                                 vm->m_data[i] = MapNode(biome->c_water);
585                         } else if (c == CONTENT_AIR) {
586                                 have_air = true;
587                                 nplaced = 0;
588                         }
589
590                         vm->m_area.add_y(em, i, -1);
591                 }
592         }
593 }
594
595
596 void MapgenV7::dustTopNodes() {
597         v3s16 em = vm->m_area.getExtent();
598         u32 index = 0;
599
600         if (water_level > node_max.Y)
601                 return;
602
603         for (s16 z = node_min.Z; z <= node_max.Z; z++)
604         for (s16 x = node_min.X; x <= node_max.X; x++, index++) {
605                 Biome *biome = (Biome *)bmgr->get(biomemap[index]);
606
607                 if (biome->c_dust == CONTENT_IGNORE)
608                         continue;
609
610                 s16 y = node_max.Y;
611                 u32 vi = vm->m_area.index(x, y, z);
612                 for (; y >= node_min.Y; y--) {
613                         if (vm->m_data[vi].getContent() != CONTENT_AIR)
614                                 break;
615
616                         vm->m_area.add_y(em, vi, -1);
617                 }
618
619                 content_t c = vm->m_data[vi].getContent();
620                 if (c == biome->c_water && biome->c_dust_water != CONTENT_IGNORE) {
621                         if (y < node_min.Y)
622                                 continue;
623
624                         vm->m_data[vi] = MapNode(biome->c_dust_water);
625                 } else if (!ndef->get(c).buildable_to && c != CONTENT_IGNORE) {
626                         if (y == node_max.Y)
627                                 continue;
628
629                         vm->m_area.add_y(em, vi, 1);
630                         vm->m_data[vi] = MapNode(biome->c_dust);
631                 }
632         }
633 }
634
635
636 #if 0
637 void MapgenV7::addTopNodes() {
638         v3s16 em = vm->m_area.getExtent();
639         s16 ntopnodes;
640         u32 index = 0;
641
642         for (s16 z = node_min.Z; z <= node_max.Z; z++)
643         for (s16 x = node_min.X; x <= node_max.X; x++, index++) {
644                 Biome *biome = bmgr->biomes[biomemap[index]];
645
646                 //////////////////// First, add top nodes below the ridge
647                 s16 y = ridge_heightmap[index];
648
649                 // This cutoff is good enough, but not perfect.
650                 // It will cut off potentially placed top nodes at chunk boundaries
651                 if (y < node_min.Y)
652                         continue;
653                 if (y > node_max.Y) {
654                         y = node_max.Y; // Let's see if we can still go downward anyway
655                         u32 vi = vm->m_area.index(x, y, z);
656                         content_t c = vm->m_data[vi].getContent();
657                         if (ndef->get(c).walkable)
658                                 continue;
659                 }
660
661                 // N.B.  It is necessary to search downward since ridge_heightmap[i]
662                 // might not be the actual height, just the lowest part in the chunk
663                 // where a ridge had been carved
664                 u32 i = vm->m_area.index(x, y, z);
665                 for (; y >= node_min.Y; y--) {
666                         content_t c = vm->m_data[i].getContent();
667                         if (ndef->get(c).walkable)
668                                 break;
669                         vm->m_area.add_y(em, i, -1);
670                 }
671
672                 if (y != node_min.Y - 1 && y >= water_level) {
673                         ridge_heightmap[index] = y; //update ridgeheight
674                         ntopnodes = biome->top_depth;
675                         for (; y <= node_max.Y && ntopnodes; y++) {
676                                 ntopnodes--;
677                                 vm->m_data[i] = MapNode(biome->c_top);
678                                 vm->m_area.add_y(em, i, 1);
679                         }
680                         // If dirt, grow grass on it.
681                         if (y > water_level - 10 &&
682                                 vm->m_data[i].getContent() == CONTENT_AIR) {
683                                 vm->m_area.add_y(em, i, -1);
684                                 if (vm->m_data[i].getContent() == c_dirt)
685                                         vm->m_data[i] = MapNode(c_dirt_with_grass);
686                         }
687                 }
688
689                 //////////////////// Now, add top nodes on top of the ridge
690                 y = heightmap[index];
691                 if (y > node_max.Y) {
692                         y = node_max.Y; // Let's see if we can still go downward anyway
693                         u32 vi = vm->m_area.index(x, y, z);
694                         content_t c = vm->m_data[vi].getContent();
695                         if (ndef->get(c).walkable)
696                                 continue;
697                 }
698
699                 i = vm->m_area.index(x, y, z);
700                 for (; y >= node_min.Y; y--) {
701                         content_t c = vm->m_data[i].getContent();
702                         if (ndef->get(c).walkable)
703                                 break;
704                         vm->m_area.add_y(em, i, -1);
705                 }
706
707                 if (y != node_min.Y - 1) {
708                         ntopnodes = biome->top_depth;
709                         // Let's see if we've already added it...
710                         if (y == ridge_heightmap[index] + ntopnodes - 1)
711                                 continue;
712
713                         for (; y <= node_max.Y && ntopnodes; y++) {
714                                 ntopnodes--;
715                                 vm->m_data[i] = MapNode(biome->c_top);
716                                 vm->m_area.add_y(em, i, 1);
717                         }
718                         // If dirt, grow grass on it.
719                         if (y > water_level - 10 &&
720                                 vm->m_data[i].getContent() == CONTENT_AIR) {
721                                 vm->m_area.add_y(em, i, -1);
722                                 if (vm->m_data[i].getContent() == c_dirt)
723                                         vm->m_data[i] = MapNode(c_dirt_with_grass);
724                         }
725                 }
726         }
727 }
728 #endif
729
730
731 NoiseParams nparams_v7_def_cave(6, 6.0, v3f(250.0, 250.0, 250.0), 34329, 3, 0.50, 2.0);
732
733 void MapgenV7::generateCaves(int max_stone_y) {
734         PseudoRandom ps(blockseed + 21343);
735
736         int volume_nodes = (node_max.X - node_min.X + 1) *
737                                            (node_max.Y - node_min.Y + 1) *
738                                            (node_max.Z - node_min.Z + 1);
739         float cave_amount = NoisePerlin2D(&nparams_v7_def_cave,
740                                                                 node_min.X, node_min.Y, seed);
741
742         u32 caves_count = MYMAX(0.0, cave_amount) * volume_nodes / 250000;
743         for (u32 i = 0; i < caves_count; i++) {
744                 CaveV7 cave(this, &ps, false);
745                 cave.makeCave(node_min, node_max, max_stone_y);
746         }
747
748         u32 bruises_count = (ps.range(1, 8) == 1) ? ps.range(0, ps.range(0, 2)) : 1;
749         for (u32 i = 0; i < bruises_count; i++) {
750                 CaveV7 cave(this, &ps, true);
751                 cave.makeCave(node_min, node_max, max_stone_y);
752         }
753 }