]> git.lizzy.rs Git - minetest.git/blob - src/mapgen_math.h
Fix msvc2012 build
[minetest.git] / src / mapgen_math.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_MATH_HEADER
21 #define MAPGEN_MATH_HEADER
22
23 #include "mapgen.h"
24 #include "mapgen_v7.h"
25 #include "json/json.h"
26
27 struct MapgenMathParams : public MapgenV7Params {
28
29         MapgenMathParams() {}
30         ~MapgenMathParams() {}
31
32         Json::Value params;
33
34         void readParams(Settings *settings);
35         void writeParams(Settings *settings);
36 };
37
38 class MapgenMath : public MapgenV7 {
39         public:
40                 MapgenMathParams * mg_params;
41
42                 MapgenMath(int mapgenid, MapgenParams *mg_params, EmergeManager *emerge);
43                 ~MapgenMath();
44
45                 int generateTerrain();
46                 int getGroundLevelAtPoint(v2s16 p);
47
48                 bool invert;
49                 double size;
50                 double scale;
51                 v3f center;
52                 int iterations;
53                 double distance;
54                 double (*func)(double, double, double, double, int);
55
56 };
57
58 struct MapgenFactoryMath : public MapgenFactory {
59         Mapgen *createMapgen(int mgid, MapgenParams *params, EmergeManager *emerge) {
60                 return new MapgenMath(mgid, params, emerge);
61         };
62
63         MapgenSpecificParams *createMapgenParams() {
64                 return new MapgenMathParams();
65         };
66 };
67
68 #endif