2b98c1f31a703b97efd2dc5da2324fe0eb90ebad
[oweals/minetest.git] / src / mapgen_flat.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_FLAT_HEADER
22 #define MAPGEN_FLAT_HEADER
23
24 #include "mapgen.h"
25
26 /////// Mapgen Flat flags
27 #define MGFLAT_LAKES 0x01
28 #define MGFLAT_HILLS 0x02
29
30 class BiomeManager;
31
32 extern FlagDesc flagdesc_mapgen_flat[];
33
34
35 struct MapgenFlatParams : public MapgenSpecificParams {
36         u32 spflags;
37         s16 ground_level;
38         s16 large_cave_depth;
39         float cave_width;
40         float lake_threshold;
41         float lake_steepness;
42         float hill_threshold;
43         float hill_steepness;
44         NoiseParams np_terrain;
45         NoiseParams np_filler_depth;
46         NoiseParams np_cave1;
47         NoiseParams np_cave2;
48
49         MapgenFlatParams();
50         ~MapgenFlatParams() {}
51
52         void readParams(const Settings *settings);
53         void writeParams(Settings *settings) const;
54 };
55
56 class MapgenFlat : public MapgenBasic {
57 public:
58         u32 spflags;
59         s16 ground_level;
60         s16 large_cave_depth;
61         float lake_threshold;
62         float lake_steepness;
63         float hill_threshold;
64         float hill_steepness;
65         Noise *noise_terrain;
66
67         content_t c_lava_source;
68         content_t c_ice;
69
70         content_t c_cobble;
71         content_t c_stair_cobble;
72         content_t c_mossycobble;
73         content_t c_sandstonebrick;
74         content_t c_stair_sandstonebrick;
75
76         MapgenFlat(int mapgenid, MapgenParams *params, EmergeManager *emerge);
77         ~MapgenFlat();
78
79         virtual void makeChunk(BlockMakeData *data);
80         int getSpawnLevelAtPoint(v2s16 p);
81         void calculateNoise();
82         s16 generateTerrain();
83 };
84
85 struct MapgenFactoryFlat : public MapgenFactory {
86         Mapgen *createMapgen(int mgid, MapgenParams *params, EmergeManager *emerge)
87         {
88                 return new MapgenFlat(mgid, params, emerge);
89         };
90
91         MapgenSpecificParams *createMapgenParams()
92         {
93                 return new MapgenFlatParams();
94         };
95 };
96
97 #endif