]> git.lizzy.rs Git - minetest.git/blob - src/mg_decoration.h
Snake case for screen options in minetest.conf (#5792)
[minetest.git] / src / mg_decoration.h
1 /*
2 Minetest
3 Copyright (C) 2014-2016 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
4 Copyright (C) 2015-2017 paramat
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 MG_DECORATION_HEADER
22 #define MG_DECORATION_HEADER
23
24 #include "util/cpp11_container.h"
25 #include "objdef.h"
26 #include "noise.h"
27 #include "nodedef.h"
28
29 class Mapgen;
30 class MMVManip;
31 class PcgRandom;
32 class Schematic;
33
34 enum DecorationType {
35         DECO_SIMPLE,
36         DECO_SCHEMATIC,
37         DECO_LSYSTEM
38 };
39
40 #define DECO_PLACE_CENTER_X  0x01
41 #define DECO_PLACE_CENTER_Y  0x02
42 #define DECO_PLACE_CENTER_Z  0x04
43 #define DECO_USE_NOISE       0x08
44 #define DECO_FORCE_PLACEMENT 0x10
45 #define DECO_LIQUID_SURFACE  0x20
46
47 extern FlagDesc flagdesc_deco[];
48
49
50 #if 0
51 struct CutoffData {
52         VoxelArea a;
53         Decoration *deco;
54         //v3s16 p;
55         //v3s16 size;
56         //s16 height;
57
58         CutoffData(s16 x, s16 y, s16 z, s16 h) {
59                 p = v3s16(x, y, z);
60                 height = h;
61         }
62 };
63 #endif
64
65 class Decoration : public ObjDef, public NodeResolver {
66 public:
67         Decoration();
68         virtual ~Decoration();
69
70         virtual void resolveNodeNames();
71
72         bool canPlaceDecoration(MMVManip *vm, v3s16 p);
73         size_t placeDeco(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax);
74         //size_t placeCutoffs(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax);
75
76         virtual size_t generate(MMVManip *vm, PcgRandom *pr, v3s16 p) = 0;
77         virtual int getHeight() = 0;
78
79         u32 flags;
80         int mapseed;
81         std::vector<content_t> c_place_on;
82         s16 sidelen;
83         s16 y_min;
84         s16 y_max;
85         float fill_ratio;
86         NoiseParams np;
87         std::vector<content_t> c_spawnby;
88         s16 nspawnby;
89
90         UNORDERED_SET<u8> biomes;
91         //std::list<CutoffData> cutoffs;
92         //Mutex cutoff_mutex;
93 };
94
95 class DecoSimple : public Decoration {
96 public:
97         virtual void resolveNodeNames();
98         virtual size_t generate(MMVManip *vm, PcgRandom *pr, v3s16 p);
99         virtual int getHeight();
100
101         std::vector<content_t> c_decos;
102         s16 deco_height;
103         s16 deco_height_max;
104         u8 deco_param2;
105 };
106
107 class DecoSchematic : public Decoration {
108 public:
109         DecoSchematic();
110
111         virtual size_t generate(MMVManip *vm, PcgRandom *pr, v3s16 p);
112         virtual int getHeight();
113
114         Rotation rotation;
115         Schematic *schematic;
116 };
117
118
119 /*
120 class DecoLSystem : public Decoration {
121 public:
122         virtual void generate(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax);
123 };
124 */
125
126 class DecorationManager : public ObjDefManager {
127 public:
128         DecorationManager(IGameDef *gamedef);
129         virtual ~DecorationManager() {}
130
131         const char *getObjectTitle() const
132         {
133                 return "decoration";
134         }
135
136         static Decoration *create(DecorationType type)
137         {
138                 switch (type) {
139                 case DECO_SIMPLE:
140                         return new DecoSimple;
141                 case DECO_SCHEMATIC:
142                         return new DecoSchematic;
143                 //case DECO_LSYSTEM:
144                 //      return new DecoLSystem;
145                 default:
146                         return NULL;
147                 }
148         }
149
150         size_t placeAllDecos(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax);
151 };
152
153 #endif