]> git.lizzy.rs Git - minetest.git/blob - src/mapgen.cpp
Add emerge completion callback mechanism
[minetest.git] / src / mapgen.cpp
1 /*
2 Minetest
3 Copyright (C) 2010-2015 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
4 Copyright (C) 2010-2015 celeron55, Perttu Ahola <celeron55@gmail.com>
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 #include "mapgen.h"
22 #include "voxel.h"
23 #include "noise.h"
24 #include "gamedef.h"
25 #include "mg_biome.h"
26 #include "mapblock.h"
27 #include "mapnode.h"
28 #include "map.h"
29 #include "content_sao.h"
30 #include "nodedef.h"
31 #include "emerge.h"
32 #include "voxelalgorithms.h"
33 #include "porting.h"
34 #include "profiler.h"
35 #include "settings.h"
36 #include "treegen.h"
37 #include "serialization.h"
38 #include "util/serialize.h"
39 #include "util/numeric.h"
40 #include "filesys.h"
41 #include "log.h"
42
43 FlagDesc flagdesc_mapgen[] = {
44         {"trees",    MG_TREES},
45         {"caves",    MG_CAVES},
46         {"dungeons", MG_DUNGEONS},
47         {"flat",     MG_FLAT},
48         {"light",    MG_LIGHT},
49         {NULL,       0}
50 };
51
52 FlagDesc flagdesc_gennotify[] = {
53         {"dungeon",          1 << GENNOTIFY_DUNGEON},
54         {"temple",           1 << GENNOTIFY_TEMPLE},
55         {"cave_begin",       1 << GENNOTIFY_CAVE_BEGIN},
56         {"cave_end",         1 << GENNOTIFY_CAVE_END},
57         {"large_cave_begin", 1 << GENNOTIFY_LARGECAVE_BEGIN},
58         {"large_cave_end",   1 << GENNOTIFY_LARGECAVE_END},
59         {"decoration",       1 << GENNOTIFY_DECORATION},
60         {NULL,               0}
61 };
62
63
64 ////
65 //// Mapgen
66 ////
67
68 Mapgen::Mapgen()
69 {
70         generating  = false;
71         id          = -1;
72         seed        = 0;
73         water_level = 0;
74         flags       = 0;
75
76         vm        = NULL;
77         ndef      = NULL;
78         heightmap = NULL;
79         biomemap  = NULL;
80         heatmap   = NULL;
81         humidmap  = NULL;
82 }
83
84
85 Mapgen::Mapgen(int mapgenid, MapgenParams *params, EmergeManager *emerge) :
86         gennotify(emerge->gen_notify_on, &emerge->gen_notify_on_deco_ids)
87 {
88         generating  = false;
89         id          = mapgenid;
90         seed        = (int)params->seed;
91         water_level = params->water_level;
92         flags       = params->flags;
93         csize       = v3s16(1, 1, 1) * (params->chunksize * MAP_BLOCKSIZE);
94
95         vm        = NULL;
96         ndef      = NULL;
97         heightmap = NULL;
98         biomemap  = NULL;
99         heatmap   = NULL;
100         humidmap  = NULL;
101 }
102
103
104 Mapgen::~Mapgen()
105 {
106 }
107
108
109 u32 Mapgen::getBlockSeed(v3s16 p, int seed)
110 {
111         return (u32)seed   +
112                 p.Z * 38134234 +
113                 p.Y * 42123    +
114                 p.X * 23;
115 }
116
117
118 u32 Mapgen::getBlockSeed2(v3s16 p, int seed)
119 {
120         u32 n = 1619 * p.X + 31337 * p.Y + 52591 * p.Z + 1013 * seed;
121         n = (n >> 13) ^ n;
122         return (n * (n * n * 60493 + 19990303) + 1376312589);
123 }
124
125
126 // Returns Y one under area minimum if not found
127 s16 Mapgen::findGroundLevelFull(v2s16 p2d)
128 {
129         v3s16 em = vm->m_area.getExtent();
130         s16 y_nodes_max = vm->m_area.MaxEdge.Y;
131         s16 y_nodes_min = vm->m_area.MinEdge.Y;
132         u32 i = vm->m_area.index(p2d.X, y_nodes_max, p2d.Y);
133         s16 y;
134
135         for (y = y_nodes_max; y >= y_nodes_min; y--) {
136                 MapNode &n = vm->m_data[i];
137                 if (ndef->get(n).walkable)
138                         break;
139
140                 vm->m_area.add_y(em, i, -1);
141         }
142         return (y >= y_nodes_min) ? y : y_nodes_min - 1;
143 }
144
145
146 // Returns -MAX_MAP_GENERATION_LIMIT if not found
147 s16 Mapgen::findGroundLevel(v2s16 p2d, s16 ymin, s16 ymax)
148 {
149         v3s16 em = vm->m_area.getExtent();
150         u32 i = vm->m_area.index(p2d.X, ymax, p2d.Y);
151         s16 y;
152
153         for (y = ymax; y >= ymin; y--) {
154                 MapNode &n = vm->m_data[i];
155                 if (ndef->get(n).walkable)
156                         break;
157
158                 vm->m_area.add_y(em, i, -1);
159         }
160         return (y >= ymin) ? y : -MAX_MAP_GENERATION_LIMIT;
161 }
162
163
164 void Mapgen::updateHeightmap(v3s16 nmin, v3s16 nmax)
165 {
166         if (!heightmap)
167                 return;
168
169         //TimeTaker t("Mapgen::updateHeightmap", NULL, PRECISION_MICRO);
170         int index = 0;
171         for (s16 z = nmin.Z; z <= nmax.Z; z++) {
172                 for (s16 x = nmin.X; x <= nmax.X; x++, index++) {
173                         s16 y = findGroundLevel(v2s16(x, z), nmin.Y, nmax.Y);
174
175                         heightmap[index] = y;
176                 }
177         }
178         //printf("updateHeightmap: %dus\n", t.stop());
179 }
180
181
182 void Mapgen::updateLiquid(UniqueQueue<v3s16> *trans_liquid, v3s16 nmin, v3s16 nmax)
183 {
184         bool isliquid, wasliquid;
185         v3s16 em  = vm->m_area.getExtent();
186
187         for (s16 z = nmin.Z; z <= nmax.Z; z++) {
188                 for (s16 x = nmin.X; x <= nmax.X; x++) {
189                         wasliquid = true;
190
191                         u32 i = vm->m_area.index(x, nmax.Y, z);
192                         for (s16 y = nmax.Y; y >= nmin.Y; y--) {
193                                 isliquid = ndef->get(vm->m_data[i]).isLiquid();
194
195                                 // there was a change between liquid and nonliquid, add to queue.
196                                 if (isliquid != wasliquid)
197                                         trans_liquid->push_back(v3s16(x, y, z));
198
199                                 wasliquid = isliquid;
200                                 vm->m_area.add_y(em, i, -1);
201                         }
202                 }
203         }
204 }
205
206
207 void Mapgen::setLighting(u8 light, v3s16 nmin, v3s16 nmax)
208 {
209         ScopeProfiler sp(g_profiler, "EmergeThread: mapgen lighting update", SPT_AVG);
210         VoxelArea a(nmin, nmax);
211
212         for (int z = a.MinEdge.Z; z <= a.MaxEdge.Z; z++) {
213                 for (int y = a.MinEdge.Y; y <= a.MaxEdge.Y; y++) {
214                         u32 i = vm->m_area.index(a.MinEdge.X, y, z);
215                         for (int x = a.MinEdge.X; x <= a.MaxEdge.X; x++, i++)
216                                 vm->m_data[i].param1 = light;
217                 }
218         }
219 }
220
221
222 void Mapgen::lightSpread(VoxelArea &a, v3s16 p, u8 light)
223 {
224         if (light <= 1 || !a.contains(p))
225                 return;
226
227         u32 vi = vm->m_area.index(p);
228         MapNode &nn = vm->m_data[vi];
229
230         light--;
231         // should probably compare masked, but doesn't seem to make a difference
232         if (light <= nn.param1 || !ndef->get(nn).light_propagates)
233                 return;
234
235         nn.param1 = light;
236
237         lightSpread(a, p + v3s16(0, 0, 1), light);
238         lightSpread(a, p + v3s16(0, 1, 0), light);
239         lightSpread(a, p + v3s16(1, 0, 0), light);
240         lightSpread(a, p - v3s16(0, 0, 1), light);
241         lightSpread(a, p - v3s16(0, 1, 0), light);
242         lightSpread(a, p - v3s16(1, 0, 0), light);
243 }
244
245
246 void Mapgen::calcLighting(v3s16 nmin, v3s16 nmax, v3s16 full_nmin, v3s16 full_nmax)
247 {
248         ScopeProfiler sp(g_profiler, "EmergeThread: mapgen lighting update", SPT_AVG);
249         //TimeTaker t("updateLighting");
250
251         propagateSunlight(nmin, nmax);
252         spreadLight(full_nmin, full_nmax);
253
254         //printf("updateLighting: %dms\n", t.stop());
255 }
256
257
258
259 void Mapgen::calcLighting(v3s16 nmin, v3s16 nmax)
260 {
261         ScopeProfiler sp(g_profiler, "EmergeThread: mapgen lighting update", SPT_AVG);
262         //TimeTaker t("updateLighting");
263
264         propagateSunlight(
265                 nmin - v3s16(1, 1, 1) * MAP_BLOCKSIZE,
266                 nmax + v3s16(1, 0, 1) * MAP_BLOCKSIZE);
267
268         spreadLight(
269                 nmin - v3s16(1, 1, 1) * MAP_BLOCKSIZE,
270                 nmax + v3s16(1, 1, 1) * MAP_BLOCKSIZE);
271
272         //printf("updateLighting: %dms\n", t.stop());
273 }
274
275
276 void Mapgen::propagateSunlight(v3s16 nmin, v3s16 nmax)
277 {
278         //TimeTaker t("propagateSunlight");
279         VoxelArea a(nmin, nmax);
280         bool block_is_underground = (water_level >= nmax.Y);
281         v3s16 em = vm->m_area.getExtent();
282
283         for (int z = a.MinEdge.Z; z <= a.MaxEdge.Z; z++) {
284                 for (int x = a.MinEdge.X; x <= a.MaxEdge.X; x++) {
285                         // see if we can get a light value from the overtop
286                         u32 i = vm->m_area.index(x, a.MaxEdge.Y + 1, z);
287                         if (vm->m_data[i].getContent() == CONTENT_IGNORE) {
288                                 if (block_is_underground)
289                                         continue;
290                         } else if ((vm->m_data[i].param1 & 0x0F) != LIGHT_SUN) {
291                                 continue;
292                         }
293                         vm->m_area.add_y(em, i, -1);
294
295                         for (int y = a.MaxEdge.Y; y >= a.MinEdge.Y; y--) {
296                                 MapNode &n = vm->m_data[i];
297                                 if (!ndef->get(n).sunlight_propagates)
298                                         break;
299                                 n.param1 = LIGHT_SUN;
300                                 vm->m_area.add_y(em, i, -1);
301                         }
302                 }
303         }
304         //printf("propagateSunlight: %dms\n", t.stop());
305 }
306
307
308
309 void Mapgen::spreadLight(v3s16 nmin, v3s16 nmax)
310 {
311         //TimeTaker t("spreadLight");
312         VoxelArea a(nmin, nmax);
313
314         for (int z = a.MinEdge.Z; z <= a.MaxEdge.Z; z++) {
315                 for (int y = a.MinEdge.Y; y <= a.MaxEdge.Y; y++) {
316                         u32 i = vm->m_area.index(a.MinEdge.X, y, z);
317                         for (int x = a.MinEdge.X; x <= a.MaxEdge.X; x++, i++) {
318                                 MapNode &n = vm->m_data[i];
319                                 if (n.getContent() == CONTENT_IGNORE ||
320                                         !ndef->get(n).light_propagates)
321                                         continue;
322
323                                 u8 light_produced = ndef->get(n).light_source & 0x0F;
324                                 if (light_produced)
325                                         n.param1 = light_produced;
326
327                                 u8 light = n.param1 & 0x0F;
328                                 if (light) {
329                                         lightSpread(a, v3s16(x,     y,     z + 1), light);
330                                         lightSpread(a, v3s16(x,     y + 1, z    ), light);
331                                         lightSpread(a, v3s16(x + 1, y,     z    ), light);
332                                         lightSpread(a, v3s16(x,     y,     z - 1), light);
333                                         lightSpread(a, v3s16(x,     y - 1, z    ), light);
334                                         lightSpread(a, v3s16(x - 1, y,     z    ), light);
335                                 }
336                         }
337                 }
338         }
339
340         //printf("spreadLight: %dms\n", t.stop());
341 }
342
343
344 ////
345 //// GenerateNotifier
346 ////
347
348 GenerateNotifier::GenerateNotifier()
349 {
350         m_notify_on = 0;
351 }
352
353
354 GenerateNotifier::GenerateNotifier(u32 notify_on,
355         std::set<u32> *notify_on_deco_ids)
356 {
357         m_notify_on = notify_on;
358         m_notify_on_deco_ids = notify_on_deco_ids;
359 }
360
361
362 void GenerateNotifier::setNotifyOn(u32 notify_on)
363 {
364         m_notify_on = notify_on;
365 }
366
367
368 void GenerateNotifier::setNotifyOnDecoIds(std::set<u32> *notify_on_deco_ids)
369 {
370         m_notify_on_deco_ids = notify_on_deco_ids;
371 }
372
373
374 bool GenerateNotifier::addEvent(GenNotifyType type, v3s16 pos, u32 id)
375 {
376         if (!(m_notify_on & (1 << type)))
377                 return false;
378
379         if (type == GENNOTIFY_DECORATION &&
380                 m_notify_on_deco_ids->find(id) == m_notify_on_deco_ids->end())
381                 return false;
382
383         GenNotifyEvent gne;
384         gne.type = type;
385         gne.pos  = pos;
386         gne.id   = id;
387         m_notify_events.push_back(gne);
388
389         return true;
390 }
391
392
393 void GenerateNotifier::getEvents(
394         std::map<std::string, std::vector<v3s16> > &event_map,
395         bool peek_events)
396 {
397         std::list<GenNotifyEvent>::iterator it;
398
399         for (it = m_notify_events.begin(); it != m_notify_events.end(); ++it) {
400                 GenNotifyEvent &gn = *it;
401                 std::string name = (gn.type == GENNOTIFY_DECORATION) ?
402                         "decoration#"+ itos(gn.id) :
403                         flagdesc_gennotify[gn.type].name;
404
405                 event_map[name].push_back(gn.pos);
406         }
407
408         if (!peek_events)
409                 m_notify_events.clear();
410 }
411
412
413 ////
414 //// MapgenParams
415 ////
416
417 void MapgenParams::load(const Settings &settings)
418 {
419         std::string seed_str;
420         const char *seed_name = (&settings == g_settings) ? "fixed_map_seed" : "seed";
421
422         if (settings.getNoEx(seed_name, seed_str) && !seed_str.empty())
423                 seed = read_seed(seed_str.c_str());
424         else
425                 myrand_bytes(&seed, sizeof(seed));
426
427         settings.getNoEx("mg_name", mg_name);
428         settings.getS16NoEx("water_level", water_level);
429         settings.getS16NoEx("chunksize", chunksize);
430         settings.getFlagStrNoEx("mg_flags", flags, flagdesc_mapgen);
431         settings.getNoiseParams("mg_biome_np_heat", np_biome_heat);
432         settings.getNoiseParams("mg_biome_np_heat_blend", np_biome_heat_blend);
433         settings.getNoiseParams("mg_biome_np_humidity", np_biome_humidity);
434         settings.getNoiseParams("mg_biome_np_humidity_blend", np_biome_humidity_blend);
435
436         delete sparams;
437         MapgenFactory *mgfactory = EmergeManager::getMapgenFactory(mg_name);
438         if (mgfactory) {
439                 sparams = mgfactory->createMapgenParams();
440                 sparams->readParams(&settings);
441         }
442 }
443
444
445 void MapgenParams::save(Settings &settings) const
446 {
447         settings.set("mg_name", mg_name);
448         settings.setU64("seed", seed);
449         settings.setS16("water_level", water_level);
450         settings.setS16("chunksize", chunksize);
451         settings.setFlagStr("mg_flags", flags, flagdesc_mapgen, U32_MAX);
452         settings.setNoiseParams("mg_biome_np_heat", np_biome_heat);
453         settings.setNoiseParams("mg_biome_np_heat_blend", np_biome_heat_blend);
454         settings.setNoiseParams("mg_biome_np_humidity", np_biome_humidity);
455         settings.setNoiseParams("mg_biome_np_humidity_blend", np_biome_humidity_blend);
456
457         if (sparams)
458                 sparams->writeParams(&settings);
459 }