]> git.lizzy.rs Git - dragonfireclient.git/blob - src/mapgen_v7.h
b6b03689d12582810a035c5fa1997278106a92b7
[dragonfireclient.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 extern NoiseParams nparams_v7_def_terrain_base;
26 extern NoiseParams nparams_v7_def_terrain_alt;
27 extern NoiseParams nparams_v7_def_terrain_mod;
28 extern NoiseParams nparams_v7_def_terrain_persist;
29 extern NoiseParams nparams_v7_def_height_select;
30 extern NoiseParams nparams_v7_def_ridge;
31
32 struct MapgenV7Params : public MapgenParams {
33         NoiseParams np_terrain_base;
34         NoiseParams np_terrain_alt;
35         NoiseParams np_terrain_mod;
36         NoiseParams np_terrain_persist;
37         NoiseParams np_height_select;
38         NoiseParams np_ridge;
39         
40         MapgenV7Params() {
41                 np_terrain_base    = nparams_v7_def_terrain_base;
42                 np_terrain_alt     = nparams_v7_def_terrain_alt;
43                 np_terrain_mod     = nparams_v7_def_terrain_mod;
44                 np_terrain_persist = nparams_v7_def_terrain_persist;
45                 np_height_select   = nparams_v7_def_height_select;
46                 np_ridge           = nparams_v7_def_ridge;
47         }
48         
49         ~MapgenV7Params() {}
50         
51         bool readParams(Settings *settings);
52         void writeParams(Settings *settings);
53 };
54
55 class MapgenV7 : public Mapgen {
56 public:
57         EmergeManager *emerge;
58         BiomeDefManager *bmgr;
59
60         int ystride;
61         v3s16 csize;
62         u32 flags;
63
64         u32 blockseed;
65         v3s16 node_min;
66         v3s16 node_max;
67         v3s16 full_node_min;
68         v3s16 full_node_max;
69         
70         s16 *heightmap;
71         s16 *ridge_heightmap;
72         u8 *biomemap;
73         
74         Noise *noise_terrain_base;
75         Noise *noise_terrain_alt;
76         Noise *noise_terrain_mod;
77         Noise *noise_terrain_persist;
78         Noise *noise_height_select;
79         
80         Noise *noise_ridge;
81         
82         Noise *noise_heat;
83         Noise *noise_humidity;
84         
85         content_t c_stone;
86         content_t c_dirt;
87         content_t c_dirt_with_grass;
88         content_t c_sand;
89         content_t c_water_source;
90         content_t c_lava_source;
91         content_t c_gravel;
92         content_t c_cobble;
93         content_t c_desert_sand;
94         content_t c_desert_stone;
95
96         MapgenV7(int mapgenid, MapgenV7Params *params, EmergeManager *emerge);
97         ~MapgenV7();
98         
99         void makeChunk(BlockMakeData *data);
100         int getGroundLevelAtPoint(v2s16 p);
101         Biome *getBiomeAtPoint(v3s16 p);
102
103         float baseTerrainLevelAtPoint(int x, int z);
104         float baseTerrainLevelFromMap(int index);
105         void calculateNoise();
106         int calcHeightMap();
107         
108         void generateTerrain();
109         void carveRidges();
110         //void carveRivers(); //experimental
111         
112         void testBiomes();
113         void addTopNodes();
114         
115         void generateCaves(int max_stone_y);
116 };
117
118 struct MapgenFactoryV7 : public MapgenFactory {
119         Mapgen *createMapgen(int mgid, MapgenParams *params, EmergeManager *emerge) {
120                 return new MapgenV7(mgid, (MapgenV7Params *)params, emerge);
121         };
122         
123         MapgenParams *createMapgenParams() {
124                 return new MapgenV7Params();
125         };
126 };
127
128 #endif