]> git.lizzy.rs Git - minetest.git/blob - src/mapgen/mapgen_flat.h
cd4a106a629fc95915f99dc410ccf20a40abe4fb
[minetest.git] / src / mapgen / mapgen_flat.h
1 /*
2 Minetest
3 Copyright (C) 2015-2018 paramat
4 Copyright (C) 2015-2018 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
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 #pragma once
22
23 #include "mapgen.h"
24
25 /////// Mapgen Flat flags
26 #define MGFLAT_LAKES 0x01
27 #define MGFLAT_HILLS 0x02
28
29 class BiomeManager;
30
31 extern FlagDesc flagdesc_mapgen_flat[];
32
33 struct MapgenFlatParams : public MapgenParams
34 {
35         u32 spflags = 0;
36         s16 ground_level = 8;
37         s16 large_cave_depth = -33;
38         s16 lava_depth = -256;
39         u16 small_cave_num_min = 0;
40         u16 small_cave_num_max = 0;
41         u16 large_cave_num_min = 0;
42         u16 large_cave_num_max = 2;
43         float large_cave_flooded = 0.5f;
44         float cave_width = 0.09f;
45         float lake_threshold = -0.45f;
46         float lake_steepness = 48.0f;
47         float hill_threshold = 0.45f;
48         float hill_steepness = 64.0f;
49         s16 dungeon_ymin = -31000;
50         s16 dungeon_ymax = 31000;
51
52         NoiseParams np_terrain;
53         NoiseParams np_filler_depth;
54         NoiseParams np_cave1;
55         NoiseParams np_cave2;
56         NoiseParams np_dungeons;
57
58         MapgenFlatParams();
59         ~MapgenFlatParams() = default;
60
61         void readParams(const Settings *settings);
62         void writeParams(Settings *settings) const;
63 };
64
65 class MapgenFlat : public MapgenBasic
66 {
67 public:
68         MapgenFlat(MapgenFlatParams *params, EmergeManager *emerge);
69         ~MapgenFlat();
70
71         virtual MapgenType getType() const { return MAPGEN_FLAT; }
72
73         virtual void makeChunk(BlockMakeData *data);
74         int getSpawnLevelAtPoint(v2s16 p);
75         s16 generateTerrain();
76
77 private:
78         s16 ground_level;
79         s16 large_cave_depth;
80         float lake_threshold;
81         float lake_steepness;
82         float hill_threshold;
83         float hill_steepness;
84         s16 dungeon_ymin;
85         s16 dungeon_ymax;
86
87         Noise *noise_terrain;
88 };