]> git.lizzy.rs Git - minetest.git/blob - src/mapgen_fractal.h
8c21a8a4ed5f247a32abd6b7570c3338837a02a9
[minetest.git] / src / 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 Fractal formulas from http://www.bugman123.com/Hypercomplex/index.html
7 by Paul Nylander, and from http://www.fractalforums.com, thank you.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU Lesser General Public License as published by
11 the Free Software Foundation; either version 2.1 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 GNU Lesser General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public License along
20 with this program; if not, write to the Free Software Foundation, Inc.,
21 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 */
23
24 #ifndef MAPGEN_FRACTAL_HEADER
25 #define MAPGEN_FRACTAL_HEADER
26
27 #include "mapgen.h"
28
29 #define MGFRACTAL_LARGE_CAVE_DEPTH -33
30
31 class BiomeManager;
32
33 extern FlagDesc flagdesc_mapgen_fractal[];
34
35
36 struct MapgenFractalParams : public MapgenSpecificParams {
37         u32 spflags;
38
39         u16 fractal;
40         u16 iterations;
41         v3f scale;
42         v3f offset;
43         float slice_w;
44
45         float julia_x;
46         float julia_y;
47         float julia_z;
48         float julia_w;
49
50         NoiseParams np_seabed;
51         NoiseParams np_filler_depth;
52         NoiseParams np_cave1;
53         NoiseParams np_cave2;
54
55         MapgenFractalParams();
56         ~MapgenFractalParams() {}
57
58         void readParams(const Settings *settings);
59         void writeParams(Settings *settings) const;
60 };
61
62 class MapgenFractal : public Mapgen {
63 public:
64         EmergeManager *m_emerge;
65         BiomeManager *bmgr;
66
67         int ystride;
68         int zstride_1d;
69         u16 formula;
70         bool julia;
71
72         v3s16 node_min;
73         v3s16 node_max;
74         v3s16 full_node_min;
75         v3s16 full_node_max;
76
77         u32 spflags;
78
79         u16 fractal;
80         u16 iterations;
81         v3f scale;
82         v3f offset;
83         float slice_w;
84
85         float julia_x;
86         float julia_y;
87         float julia_z;
88         float julia_w;
89
90         Noise *noise_seabed;
91         Noise *noise_filler_depth;
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 getSpawnLevelAtPoint(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