]> git.lizzy.rs Git - dragonfireclient.git/blob - src/mapgen_v5.h
Mgv5/v7/fractal: Add 'large_cave_depth' parameter to replace fixed value
[dragonfireclient.git] / src / mapgen_v5.h
1 /*
2 Minetest
3 Copyright (C) 2014-2017 paramat
4 Copyright (C) 2014-2016 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21 #ifndef MAPGEN_V5_HEADER
22 #define MAPGEN_V5_HEADER
23
24 #include "mapgen.h"
25
26 ///////// Mapgen V5 flags
27 #define MGV5_CAVERNS 0x01
28
29 class BiomeManager;
30
31 extern FlagDesc flagdesc_mapgen_v5[];
32
33 struct MapgenV5Params : public MapgenParams
34 {
35         u32 spflags = MGV5_CAVERNS;
36         float cave_width = 0.125f;
37         s16 large_cave_depth = -256;
38         s16 cavern_limit = -256;
39         s16 cavern_taper = 256;
40         float cavern_threshold = 0.7f;
41
42         NoiseParams np_filler_depth;
43         NoiseParams np_factor;
44         NoiseParams np_height;
45         NoiseParams np_ground;
46         NoiseParams np_cave1;
47         NoiseParams np_cave2;
48         NoiseParams np_cavern;
49
50         MapgenV5Params();
51         ~MapgenV5Params() {}
52
53         void readParams(const Settings *settings);
54         void writeParams(Settings *settings) const;
55 };
56
57 class MapgenV5 : public MapgenBasic
58 {
59 public:
60         MapgenV5(int mapgenid, MapgenV5Params *params, EmergeManager *emerge);
61         ~MapgenV5();
62
63         virtual MapgenType getType() const { return MAPGEN_V5; }
64
65         virtual void makeChunk(BlockMakeData *data);
66         int getSpawnLevelAtPoint(v2s16 p);
67         int generateBaseTerrain();
68
69 private:
70         s16 large_cave_depth;
71         Noise *noise_factor;
72         Noise *noise_height;
73         Noise *noise_ground;
74 };
75
76 #endif