b515e4c9329f2a6ad4352bbc97ccc184cf3bc8bb
[oweals/minetest.git] / mapgen_fractal.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_FRACTAL_HEADER
22 #define MAPGEN_FRACTAL_HEADER
23
24 #include "mapgen.h"
25
26 #define MGFRACTAL_LARGE_CAVE_DEPTH -32
27
28 /////////////////// Mapgen Fractal flags
29 #define MGFRACTAL_JULIA 0x01
30
31 class BiomeManager;
32
33 extern FlagDesc flagdesc_mapgen_fractal[];
34
35
36 struct MapgenFractalParams : public MapgenSpecificParams {
37         u32 spflags;
38
39         u16 iterations;
40         v3f scale;
41
42         v3f moffset;
43         float mslice_w;
44
45         v3f joffset;
46         float jslice_w;
47         float julia_x;
48         float julia_y;
49         float julia_z;
50         float julia_w;
51
52         NoiseParams np_seabed;
53         NoiseParams np_cave1;
54         NoiseParams np_cave2;
55
56         MapgenFractalParams();
57         ~MapgenFractalParams() {}
58
59         void readParams(const Settings *settings);
60         void writeParams(Settings *settings) const;
61 };
62
63 class MapgenFractal : public Mapgen {
64 public:
65         EmergeManager *m_emerge;
66         BiomeManager *bmgr;
67
68         int ystride;
69         int zstride;
70         u32 spflags;
71
72         v3s16 node_min;
73         v3s16 node_max;
74         v3s16 full_node_min;
75         v3s16 full_node_max;
76
77         u16 iterations;
78         v3f scale;
79
80         v3f moffset;
81         float mslice_w;
82
83         v3f joffset;
84         float jslice_w;
85         float julia_x;
86         float julia_y;
87         float julia_z;
88         float julia_w;
89
90         Noise *noise_seabed;
91
92         Noise *noise_cave1;
93         Noise *noise_cave2;
94
95         Noise *noise_heat;
96         Noise *noise_humidity;
97         Noise *noise_heat_blend;
98         Noise *noise_humidity_blend;
99
100         content_t c_stone;
101         content_t c_water_source;
102         content_t c_lava_source;
103         content_t c_desert_stone;
104         content_t c_ice;
105         content_t c_sandstone;
106
107         content_t c_cobble;
108         content_t c_stair_cobble;
109         content_t c_mossycobble;
110         content_t c_sandstonebrick;
111         content_t c_stair_sandstonebrick;
112
113         MapgenFractal(int mapgenid, MapgenParams *params, EmergeManager *emerge);
114         ~MapgenFractal();
115
116         virtual void makeChunk(BlockMakeData *data);
117         int getGroundLevelAtPoint(v2s16 p);
118         void calculateNoise();
119         bool getFractalAtPoint(s16 x, s16 y, s16 z);
120         s16 generateTerrain();
121         MgStoneType generateBiomes(float *heat_map, float *humidity_map);
122         void dustTopNodes();
123         void generateCaves(s16 max_stone_y);
124 };
125
126 struct MapgenFactoryFractal : public MapgenFactory {
127         Mapgen *createMapgen(int mgid, MapgenParams *params, EmergeManager *emerge)
128         {
129                 return new MapgenFractal(mgid, params, emerge);
130         };
131
132         MapgenSpecificParams *createMapgenParams()
133         {
134                 return new MapgenFractalParams();
135         };
136 };
137
138 #endif