Performance fix + SAO factorization
[oweals/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 MapgenParams {
37         u32 spflags;
38         float cave_width;
39         u16 fractal;
40         u16 iterations;
41         v3f scale;
42         v3f offset;
43         float slice_w;
44         float julia_x;
45         float julia_y;
46         float julia_z;
47         float julia_w;
48         NoiseParams np_seabed;
49         NoiseParams np_filler_depth;
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 MapgenBasic {
61 public:
62         MapgenFractal(int mapgenid, MapgenFractalParams *params, EmergeManager *emerge);
63         ~MapgenFractal();
64
65         virtual MapgenType getType() const { return MAPGEN_FRACTAL; }
66
67         virtual void makeChunk(BlockMakeData *data);
68         int getSpawnLevelAtPoint(v2s16 p);
69         bool getFractalAtPoint(s16 x, s16 y, s16 z);
70         s16 generateTerrain();
71
72 private:
73         u16 formula;
74         bool julia;
75
76         u16 fractal;
77         u16 iterations;
78         v3f scale;
79         v3f offset;
80         float slice_w;
81         float julia_x;
82         float julia_y;
83         float julia_z;
84         float julia_w;
85         Noise *noise_seabed;
86 };
87
88 #endif