ab9fca2bacbd7d6bcbfa01b4532551b4e82f6e3f
[oweals/minetest.git] / src / emerge.h
1 /*
2 Minetest
3 Copyright (C) 2010-2013 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
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 #pragma once
21
22 #include <map>
23 #include <mutex>
24 #include "network/networkprotocol.h"
25 #include "irr_v3d.h"
26 #include "util/container.h"
27 #include "mapgen/mapgen.h" // for MapgenParams
28 #include "map.h"
29
30 #define BLOCK_EMERGE_ALLOW_GEN   (1 << 0)
31 #define BLOCK_EMERGE_FORCE_QUEUE (1 << 1)
32
33 #define EMERGE_DBG_OUT(x) {                            \
34         if (enable_mapgen_debug_info)                      \
35                 infostream << "EmergeThread: " x << std::endl; \
36 }
37
38 class EmergeThread;
39 class NodeDefManager;
40 class Settings;
41
42 class BiomeManager;
43 class OreManager;
44 class DecorationManager;
45 class SchematicManager;
46 class Server;
47
48 // Structure containing inputs/outputs for chunk generation
49 struct BlockMakeData {
50         MMVManip *vmanip = nullptr;
51         u64 seed = 0;
52         v3s16 blockpos_min;
53         v3s16 blockpos_max;
54         v3s16 blockpos_requested;
55         UniqueQueue<v3s16> transforming_liquid;
56         const NodeDefManager *nodedef = nullptr;
57
58         BlockMakeData() = default;
59
60         ~BlockMakeData() { delete vmanip; }
61 };
62
63 // Result from processing an item on the emerge queue
64 enum EmergeAction {
65         EMERGE_CANCELLED,
66         EMERGE_ERRORED,
67         EMERGE_FROM_MEMORY,
68         EMERGE_FROM_DISK,
69         EMERGE_GENERATED,
70 };
71
72 // Callback
73 typedef void (*EmergeCompletionCallback)(
74         v3s16 blockpos, EmergeAction action, void *param);
75
76 typedef std::vector<
77         std::pair<
78                 EmergeCompletionCallback,
79                 void *
80         >
81 > EmergeCallbackList;
82
83 struct BlockEmergeData {
84         u16 peer_requested;
85         u16 flags;
86         EmergeCallbackList callbacks;
87 };
88
89 class EmergeParams {
90         friend class EmergeManager;
91 public:
92         EmergeParams() = delete;
93         ~EmergeParams();
94         DISABLE_CLASS_COPY(EmergeParams);
95
96         const NodeDefManager *ndef; // shared
97         bool enable_mapgen_debug_info;
98
99         u32 gen_notify_on;
100         const std::set<u32> *gen_notify_on_deco_ids; // shared
101
102         BiomeManager *biomemgr;
103         OreManager *oremgr;
104         DecorationManager *decomgr;
105         SchematicManager *schemmgr;
106
107 private:
108         EmergeParams(EmergeManager *parent, const BiomeManager *biomemgr,
109                 const OreManager *oremgr, const DecorationManager *decomgr,
110                 const SchematicManager *schemmgr);
111 };
112
113 class EmergeManager {
114 public:
115         const NodeDefManager *ndef;
116         bool enable_mapgen_debug_info;
117
118         // Generation Notify
119         u32 gen_notify_on = 0;
120         std::set<u32> gen_notify_on_deco_ids;
121
122         // Parameters passed to mapgens owned by ServerMap
123         // TODO(hmmmm): Remove this after mapgen helper methods using them
124         // are moved to ServerMap
125         MapgenParams *mgparams;
126
127         // Hackish workaround:
128         // For now, EmergeManager must hold onto a ptr to the Map's setting manager
129         // since the Map can only be accessed through the Environment, and the
130         // Environment is not created until after script initialization.
131         MapSettingsManager *map_settings_mgr;
132
133         // Methods
134         EmergeManager(Server *server);
135         ~EmergeManager();
136         DISABLE_CLASS_COPY(EmergeManager);
137
138         // no usage restrictions
139         const BiomeManager *getBiomeManager() const { return biomemgr; }
140         const OreManager *getOreManager() const { return oremgr; }
141         const DecorationManager *getDecorationManager() const { return decomgr; }
142         const SchematicManager *getSchematicManager() const { return schemmgr; }
143         // only usable before mapgen init
144         BiomeManager *getWritableBiomeManager();
145         OreManager *getWritableOreManager();
146         DecorationManager *getWritableDecorationManager();
147         SchematicManager *getWritableSchematicManager();
148
149         void initMapgens(MapgenParams *mgparams);
150
151         void startThreads();
152         void stopThreads();
153         bool isRunning();
154
155         bool enqueueBlockEmerge(
156                 session_t peer_id,
157                 v3s16 blockpos,
158                 bool allow_generate,
159                 bool ignore_queue_limits=false);
160
161         bool enqueueBlockEmergeEx(
162                 v3s16 blockpos,
163                 session_t peer_id,
164                 u16 flags,
165                 EmergeCompletionCallback callback,
166                 void *callback_param);
167
168         v3s16 getContainingChunk(v3s16 blockpos);
169
170         Mapgen *getCurrentMapgen();
171
172         // Mapgen helpers methods
173         int getSpawnLevelAtPoint(v2s16 p);
174         int getGroundLevelAtPoint(v2s16 p);
175         bool isBlockUnderground(v3s16 blockpos);
176
177         static v3s16 getContainingChunk(v3s16 blockpos, s16 chunksize);
178
179 private:
180         std::vector<Mapgen *> m_mapgens;
181         std::vector<EmergeThread *> m_threads;
182         bool m_threads_active = false;
183
184         std::mutex m_queue_mutex;
185         std::map<v3s16, BlockEmergeData> m_blocks_enqueued;
186         std::unordered_map<u16, u16> m_peer_queue_count;
187
188         u16 m_qlimit_total;
189         u16 m_qlimit_diskonly;
190         u16 m_qlimit_generate;
191
192         // Managers of various map generation-related components
193         // Note that each Mapgen gets a copy(!) of these to work with
194         BiomeManager *biomemgr;
195         OreManager *oremgr;
196         DecorationManager *decomgr;
197         SchematicManager *schemmgr;
198
199         // Requires m_queue_mutex held
200         EmergeThread *getOptimalThread();
201
202         bool pushBlockEmergeData(
203                 v3s16 pos,
204                 u16 peer_requested,
205                 u16 flags,
206                 EmergeCompletionCallback callback,
207                 void *callback_param,
208                 bool *entry_already_exists);
209
210         bool popBlockEmergeData(v3s16 pos, BlockEmergeData *bedata);
211
212         friend class EmergeThread;
213 };