]> git.lizzy.rs Git - minetest.git/blob - src/mapgen_v5.h
bf8efad143674b3c8f92f40d2ddc38e631a2a5f2
[minetest.git] / src / mapgen_v5.h
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 #ifndef MAPGEN_V5_HEADER
21 #define MAPGEN_V5_HEADER
22
23 #include "mapgen.h"
24
25 /////////////////// Mapgen V5 flags
26 #define MGV5_BLOBS 0x01
27
28 extern FlagDesc flagdesc_mapgen_v5[];
29
30
31 struct MapgenV5Params : public MapgenSpecificParams {
32         u32 spflags;
33         NoiseParams np_filler_depth;
34         NoiseParams np_factor;
35         NoiseParams np_height;
36         NoiseParams np_cave1;
37         NoiseParams np_cave2;
38         NoiseParams np_ground;
39         NoiseParams np_crumble;
40         NoiseParams np_wetness;
41
42         MapgenV5Params();
43         ~MapgenV5Params() {}
44
45         void readParams(Settings *settings);
46         void writeParams(Settings *settings);
47 };
48
49
50 class MapgenV5 : public Mapgen {
51 public:
52         EmergeManager *m_emerge;
53         BiomeManager *bmgr;
54
55         int ystride;
56         int zstride;
57         u32 spflags;
58
59         v3s16 node_min;
60         v3s16 node_max;
61         v3s16 full_node_min;
62         v3s16 full_node_max;
63
64         Noise *noise_filler_depth;
65         Noise *noise_factor;
66         Noise *noise_height;
67         Noise *noise_cave1;
68         Noise *noise_cave2;
69         Noise *noise_ground;
70         Noise *noise_crumble;
71         Noise *noise_wetness;
72         Noise *noise_heat;
73         Noise *noise_humidity;
74
75         content_t c_stone;
76         content_t c_dirt;
77         content_t c_dirt_with_grass;
78         content_t c_sand;
79         content_t c_water_source;
80         content_t c_lava_source;
81         content_t c_ice;
82         content_t c_gravel;
83         content_t c_cobble;
84         content_t c_desert_sand;
85         content_t c_desert_stone;
86         content_t c_mossycobble;
87         content_t c_sandbrick;
88         content_t c_stair_cobble;
89         content_t c_stair_sandstone;
90
91         MapgenV5(int mapgenid, MapgenParams *params, EmergeManager *emerge);
92         ~MapgenV5();
93
94         virtual void makeChunk(BlockMakeData *data);
95         int getGroundLevelAtPoint(v2s16 p);
96         void calculateNoise();
97         int generateBaseTerrain();
98         void generateBlobs();
99         void generateBiomes();
100         void generateCaves();
101         void dustTopNodes();
102 };
103
104
105 struct MapgenFactoryV5 : public MapgenFactory {
106         Mapgen *createMapgen(int mgid, MapgenParams *params, EmergeManager *emerge)
107         {
108                 return new MapgenV5(mgid, params, emerge);
109         };
110
111         MapgenSpecificParams *createMapgenParams()
112         {
113                 return new MapgenV5Params();
114         };
115 };
116
117 #endif