Mgv7: Lower base of mountain generation to -112 and define constant
[oweals/minetest.git] / src / mapgen_v7.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_V7_HEADER
21 #define MAPGEN_V7_HEADER
22
23 #include "mapgen.h"
24
25 #define MOUNTAIN_BASE -112
26
27 /////////////////// Mapgen V7 flags
28 #define MGV7_MOUNTAINS   0x01
29 #define MGV7_RIDGES      0x02
30
31 class BiomeManager;
32
33 extern FlagDesc flagdesc_mapgen_v7[];
34
35
36 struct MapgenV7Params : public MapgenSpecificParams {
37         u32 spflags;
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 Mapgen {
58 public:
59         EmergeManager *m_emerge;
60         BiomeManager *bmgr;
61
62         int ystride;
63         int zstride;
64         u32 spflags;
65
66         v3s16 node_min;
67         v3s16 node_max;
68         v3s16 full_node_min;
69         v3s16 full_node_max;
70
71         s16 *ridge_heightmap;
72
73         Noise *noise_terrain_base;
74         Noise *noise_terrain_alt;
75         Noise *noise_terrain_persist;
76         Noise *noise_height_select;
77         Noise *noise_filler_depth;
78         Noise *noise_mount_height;
79         Noise *noise_ridge_uwater;
80         Noise *noise_mountain;
81         Noise *noise_ridge;
82         Noise *noise_cave1;
83         Noise *noise_cave2;
84
85         Noise *noise_heat;
86         Noise *noise_humidity;
87         Noise *noise_heat_blend;
88         Noise *noise_humidity_blend;
89
90         content_t c_stone;
91         content_t c_water_source;
92         content_t c_lava_source;
93         content_t c_desert_stone;
94         content_t c_ice;
95         content_t c_sandstone;
96
97         content_t c_cobble;
98         content_t c_stair_cobble;
99         content_t c_mossycobble;
100         content_t c_sandstonebrick;
101         content_t c_stair_sandstonebrick;
102
103         MapgenV7(int mapgenid, MapgenParams *params, EmergeManager *emerge);
104         ~MapgenV7();
105
106         virtual void makeChunk(BlockMakeData *data);
107         int getGroundLevelAtPoint(v2s16 p);
108         Biome *getBiomeAtPoint(v3s16 p);
109
110         float baseTerrainLevelAtPoint(int x, int z);
111         float baseTerrainLevelFromMap(int index);
112         bool getMountainTerrainAtPoint(int x, int y, int z);
113         bool getMountainTerrainFromMap(int idx_xyz, int idx_xz, int y);
114
115         void calculateNoise();
116
117         virtual int generateTerrain();
118         int generateBaseTerrain();
119         int generateMountainTerrain(int ymax);
120         void generateRidgeTerrain();
121
122         MgStoneType generateBiomes(float *heat_map, float *humidity_map);
123         void dustTopNodes();
124
125         //void addTopNodes();
126
127         void generateCaves(int max_stone_y);
128 };
129
130 struct MapgenFactoryV7 : public MapgenFactory {
131         Mapgen *createMapgen(int mgid, MapgenParams *params, EmergeManager *emerge)
132         {
133                 return new MapgenV7(mgid, params, emerge);
134         };
135
136         MapgenSpecificParams *createMapgenParams()
137         {
138                 return new MapgenV7Params();
139         };
140 };
141
142 #endif