Mapgen: Combine generateBiomes, dustTopNodes, and generateCaves
[oweals/minetest.git] / src / mapgen_v7.h
1 /*
2 Minetest
3 Copyright (C) 2010-2015 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
4 Copyright (C) 2010-2015 paramat, Matt Gregory
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_V7_HEADER
22 #define MAPGEN_V7_HEADER
23
24 #include "mapgen.h"
25
26 /////////////////// Mapgen V7 flags
27 #define MGV7_MOUNTAINS   0x01
28 #define MGV7_RIDGES      0x02
29
30 class BiomeManager;
31
32 extern FlagDesc flagdesc_mapgen_v7[];
33
34
35 struct MapgenV7Params : public MapgenSpecificParams {
36         u32 spflags;
37         float cave_width;
38         NoiseParams np_terrain_base;
39         NoiseParams np_terrain_alt;
40         NoiseParams np_terrain_persist;
41         NoiseParams np_height_select;
42         NoiseParams np_filler_depth;
43         NoiseParams np_mount_height;
44         NoiseParams np_ridge_uwater;
45         NoiseParams np_mountain;
46         NoiseParams np_ridge;
47         NoiseParams np_cave1;
48         NoiseParams np_cave2;
49
50         MapgenV7Params();
51         ~MapgenV7Params() {}
52
53         void readParams(const Settings *settings);
54         void writeParams(Settings *settings) const;
55 };
56
57 class MapgenV7 : public MapgenBasic {
58 public:
59         int zstride_1u1d;
60
61         s16 *ridge_heightmap;
62
63         u32 spflags;
64         Noise *noise_terrain_base;
65         Noise *noise_terrain_alt;
66         Noise *noise_terrain_persist;
67         Noise *noise_height_select;
68         Noise *noise_mount_height;
69         Noise *noise_ridge_uwater;
70         Noise *noise_mountain;
71         Noise *noise_ridge;
72
73         content_t c_lava_source;
74         content_t c_ice;
75
76         content_t c_cobble;
77         content_t c_stair_cobble;
78         content_t c_mossycobble;
79         content_t c_sandstonebrick;
80         content_t c_stair_sandstonebrick;
81
82         MapgenV7(int mapgenid, MapgenParams *params, EmergeManager *emerge);
83         ~MapgenV7();
84
85         virtual void makeChunk(BlockMakeData *data);
86         int getSpawnLevelAtPoint(v2s16 p);
87
88         float baseTerrainLevelAtPoint(s16 x, s16 z);
89         float baseTerrainLevelFromMap(int index);
90         bool getMountainTerrainAtPoint(s16 x, s16 y, s16 z);
91         bool getMountainTerrainFromMap(int idx_xyz, int idx_xz, s16 y);
92
93         void calculateNoise();
94
95         int generateTerrain();
96         void generateRidgeTerrain();
97 };
98
99 struct MapgenFactoryV7 : public MapgenFactory {
100         Mapgen *createMapgen(int mgid, MapgenParams *params, EmergeManager *emerge)
101         {
102                 return new MapgenV7(mgid, params, emerge);
103         };
104
105         MapgenSpecificParams *createMapgenParams()
106         {
107                 return new MapgenV7Params();
108         };
109 };
110
111 #endif