]> git.lizzy.rs Git - minetest.git/blob - src/mapgen_fractal.h
Mapgen: Add 4D fractal mapgen
[minetest.git] / src / mapgen_fractal.h
1 /*
2 Minetest
3 Copyright (C) 2010-2013 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
4 Additional development and fractal code by paramat
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 /////////////////// Mapgen Fractal flags
27 #define MGFRACTAL_JULIA 0x01
28
29 class BiomeManager;
30
31 extern FlagDesc flagdesc_mapgen_fractal[];
32
33
34 struct MapgenFractalParams : public MapgenSpecificParams {
35         u32 spflags;
36
37         u16 iterations;
38         float scale_x;
39         float scale_y;
40         float scale_z;
41         float offset_x;
42         float offset_y;
43         float offset_z;
44         float slice_w;
45         float julia_x;
46         float julia_y;
47         float julia_z;
48         float julia_w;
49
50         NoiseParams np_cave1;
51         NoiseParams np_cave2;
52
53         MapgenFractalParams();
54         ~MapgenFractalParams() {}
55
56         void readParams(const Settings *settings);
57         void writeParams(Settings *settings) const;
58 };
59
60 class MapgenFractal : public Mapgen {
61 public:
62         EmergeManager *m_emerge;
63         BiomeManager *bmgr;
64
65         int ystride;
66         int zstride;
67         u32 spflags;
68
69         v3s16 node_min;
70         v3s16 node_max;
71         v3s16 full_node_min;
72         v3s16 full_node_max;
73
74         u16 iterations;
75         float scale_x;
76         float scale_y;
77         float scale_z;
78         float offset_x;
79         float offset_y;
80         float offset_z;
81         float slice_w;
82         float julia_x;
83         float julia_y;
84         float julia_z;
85         float julia_w;
86
87         Noise *noise_cave1;
88         Noise *noise_cave2;
89
90         Noise *noise_heat;
91         Noise *noise_humidity;
92         Noise *noise_heat_blend;
93         Noise *noise_humidity_blend;
94
95         content_t c_stone;
96         content_t c_water_source;
97         content_t c_lava_source;
98         content_t c_desert_stone;
99         content_t c_ice;
100         content_t c_sandstone;
101
102         content_t c_cobble;
103         content_t c_stair_cobble;
104         content_t c_mossycobble;
105         content_t c_sandstonebrick;
106         content_t c_stair_sandstonebrick;
107
108         MapgenFractal(int mapgenid, MapgenParams *params, EmergeManager *emerge);
109         ~MapgenFractal();
110
111         virtual void makeChunk(BlockMakeData *data);
112         int getGroundLevelAtPoint(v2s16 p);
113         void calculateNoise();
114         bool getTerrainAtPoint(s16 x, s16 y, s16 z);
115         s16 generateTerrain();
116         MgStoneType generateBiomes(float *heat_map, float *humidity_map);
117         void dustTopNodes();
118         void generateCaves(s16 max_stone_y);
119 };
120
121 struct MapgenFactoryFractal : public MapgenFactory {
122         Mapgen *createMapgen(int mgid, MapgenParams *params, EmergeManager *emerge)
123         {
124                 return new MapgenFractal(mgid, params, emerge);
125         };
126
127         MapgenSpecificParams *createMapgenParams()
128         {
129                 return new MapgenFractalParams();
130         };
131 };
132
133 #endif