c3c209ad155b7c7dbea6b84799d0721d8e78fa66
[oweals/minetest.git] / src / mapgen.h
1 /*
2 Minetest
3 Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #ifndef MAPGEN_HEADER
21 #define MAPGEN_HEADER
22
23 #include "irrlichttypes_extrabloated.h"
24 #include "util/container.h" // UniqueQueue
25 #include "gamedef.h"
26 #include "mapnode.h"
27 #include "noise.h"
28 #include "settings.h"
29 //#include "emerge.h"
30 #include <map>
31
32 /////////////////// Mapgen flags
33 #define MG_TREES         0x01
34 #define MG_CAVES         0x02
35 #define MG_DUNGEONS      0x04
36 #define MGV6_FORESTS     0x08
37 #define MGV6_BIOME_BLEND 0x10
38 #define MG_FLAT          0x20
39
40 extern FlagDesc flagdesc_mapgen[];
41
42 class BiomeDefManager;
43 class Biome;
44 class EmergeManager;
45 class MapBlock;
46 class ManualMapVoxelManipulator;
47 class VoxelManipulator;
48 class INodeDefManager;
49 class BlockMakeData;
50
51 struct MapgenParams {
52         std::string mg_name;
53         int chunksize;
54         u64 seed;
55         int water_level;
56         u32 flags;
57
58         MapgenParams() {
59                 mg_name     = "v6";
60                 seed        = 0;
61                 water_level = 1;
62                 chunksize   = 5;
63                 flags       = MG_TREES | MG_CAVES | MGV6_BIOME_BLEND;
64         }
65         
66         virtual bool readParams(Settings *settings) = 0;
67         virtual void writeParams(Settings *settings) {};
68 };
69
70 class Mapgen {
71 public:
72         int seed;
73         int water_level;
74         bool generating;
75         int id;
76
77         virtual void makeChunk(BlockMakeData *data) {};
78         virtual int getGroundLevelAtPoint(v2s16 p) = 0;
79
80         //Legacy functions for Farmesh (pending removal)
81         static bool get_have_beach(u64 seed, v2s16 p2d);
82         static double tree_amount_2d(u64 seed, v2s16 p);
83         static s16 find_ground_level_from_noise(u64 seed, v2s16 p2d, s16 precision);
84 };
85
86 struct MapgenFactory {
87         virtual Mapgen *createMapgen(int mgid, MapgenParams *params,
88                                                                  EmergeManager *emerge) = 0;
89         virtual MapgenParams *createMapgenParams() = 0;
90 };
91
92 #endif
93