]> git.lizzy.rs Git - minetest.git/blob - src/script/lua_api/l_mapgen.cpp
Player/LocalPlayer/RemotePlayer inheritance cleanup (part 2 on X)
[minetest.git] / src / script / lua_api / l_mapgen.cpp
1 /*
2 Minetest
3 Copyright (C) 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 #include "lua_api/l_mapgen.h"
21 #include "lua_api/l_internal.h"
22 #include "lua_api/l_vmanip.h"
23 #include "common/c_converter.h"
24 #include "common/c_content.h"
25 #include "cpp_api/s_security.h"
26 #include "util/serialize.h"
27 #include "server.h"
28 #include "environment.h"
29 #include "emerge.h"
30 #include "mg_biome.h"
31 #include "mg_ore.h"
32 #include "mg_decoration.h"
33 #include "mg_schematic.h"
34 #include "mapgen_v5.h"
35 #include "mapgen_v7.h"
36 #include "filesys.h"
37 #include "settings.h"
38 #include "log.h"
39
40 struct EnumString ModApiMapgen::es_BiomeTerrainType[] =
41 {
42         {BIOMETYPE_NORMAL, "normal"},
43         {BIOMETYPE_LIQUID, "liquid"},
44         {BIOMETYPE_NETHER, "nether"},
45         {BIOMETYPE_AETHER, "aether"},
46         {BIOMETYPE_FLAT,   "flat"},
47         {0, NULL},
48 };
49
50 struct EnumString ModApiMapgen::es_DecorationType[] =
51 {
52         {DECO_SIMPLE,    "simple"},
53         {DECO_SCHEMATIC, "schematic"},
54         {DECO_LSYSTEM,   "lsystem"},
55         {0, NULL},
56 };
57
58 struct EnumString ModApiMapgen::es_MapgenObject[] =
59 {
60         {MGOBJ_VMANIP,    "voxelmanip"},
61         {MGOBJ_HEIGHTMAP, "heightmap"},
62         {MGOBJ_BIOMEMAP,  "biomemap"},
63         {MGOBJ_HEATMAP,   "heatmap"},
64         {MGOBJ_HUMIDMAP,  "humiditymap"},
65         {MGOBJ_GENNOTIFY, "gennotify"},
66         {0, NULL},
67 };
68
69 struct EnumString ModApiMapgen::es_OreType[] =
70 {
71         {ORE_SCATTER, "scatter"},
72         {ORE_SHEET,   "sheet"},
73         {ORE_PUFF,    "puff"},
74         {ORE_BLOB,    "blob"},
75         {ORE_VEIN,    "vein"},
76         {0, NULL},
77 };
78
79 struct EnumString ModApiMapgen::es_Rotation[] =
80 {
81         {ROTATE_0,    "0"},
82         {ROTATE_90,   "90"},
83         {ROTATE_180,  "180"},
84         {ROTATE_270,  "270"},
85         {ROTATE_RAND, "random"},
86         {0, NULL},
87 };
88
89 struct EnumString ModApiMapgen::es_SchematicFormatType[] =
90 {
91         {SCHEM_FMT_HANDLE, "handle"},
92         {SCHEM_FMT_MTS,    "mts"},
93         {SCHEM_FMT_LUA,    "lua"},
94         {0, NULL},
95 };
96
97 ObjDef *get_objdef(lua_State *L, int index, ObjDefManager *objmgr);
98
99 Biome *get_or_load_biome(lua_State *L, int index,
100         BiomeManager *biomemgr);
101 Biome *read_biome_def(lua_State *L, int index, INodeDefManager *ndef);
102 size_t get_biome_list(lua_State *L, int index,
103         BiomeManager *biomemgr, UNORDERED_SET<u8> *biome_id_list);
104
105 Schematic *get_or_load_schematic(lua_State *L, int index,
106         SchematicManager *schemmgr, StringMap *replace_names);
107 Schematic *load_schematic(lua_State *L, int index, INodeDefManager *ndef,
108         StringMap *replace_names);
109 Schematic *load_schematic_from_def(lua_State *L, int index,
110         INodeDefManager *ndef, StringMap *replace_names);
111 bool read_schematic_def(lua_State *L, int index,
112         Schematic *schem, std::vector<std::string> *names);
113
114 bool read_deco_simple(lua_State *L, DecoSimple *deco);
115 bool read_deco_schematic(lua_State *L, SchematicManager *schemmgr, DecoSchematic *deco);
116
117
118 ///////////////////////////////////////////////////////////////////////////////
119
120 ObjDef *get_objdef(lua_State *L, int index, ObjDefManager *objmgr)
121 {
122         if (index < 0)
123                 index = lua_gettop(L) + 1 + index;
124
125         // If a number, assume this is a handle to an object def
126         if (lua_isnumber(L, index))
127                 return objmgr->get(lua_tointeger(L, index));
128
129         // If a string, assume a name is given instead
130         if (lua_isstring(L, index))
131                 return objmgr->getByName(lua_tostring(L, index));
132
133         return NULL;
134 }
135
136 ///////////////////////////////////////////////////////////////////////////////
137
138 Schematic *get_or_load_schematic(lua_State *L, int index,
139         SchematicManager *schemmgr, StringMap *replace_names)
140 {
141         if (index < 0)
142                 index = lua_gettop(L) + 1 + index;
143
144         Schematic *schem = (Schematic *)get_objdef(L, index, schemmgr);
145         if (schem)
146                 return schem;
147
148         schem = load_schematic(L, index, schemmgr->getNodeDef(),
149                 replace_names);
150         if (!schem)
151                 return NULL;
152
153         if (schemmgr->add(schem) == OBJDEF_INVALID_HANDLE) {
154                 delete schem;
155                 return NULL;
156         }
157
158         return schem;
159 }
160
161
162 Schematic *load_schematic(lua_State *L, int index, INodeDefManager *ndef,
163         StringMap *replace_names)
164 {
165         if (index < 0)
166                 index = lua_gettop(L) + 1 + index;
167
168         Schematic *schem = NULL;
169
170         if (lua_istable(L, index)) {
171                 schem = load_schematic_from_def(L, index, ndef,
172                         replace_names);
173                 if (!schem) {
174                         delete schem;
175                         return NULL;
176                 }
177         } else if (lua_isnumber(L, index)) {
178                 return NULL;
179         } else if (lua_isstring(L, index)) {
180                 schem = SchematicManager::create(SCHEMATIC_NORMAL);
181
182                 std::string filepath = lua_tostring(L, index);
183                 if (!fs::IsPathAbsolute(filepath))
184                         filepath = ModApiBase::getCurrentModPath(L) + DIR_DELIM + filepath;
185
186                 if (!schem->loadSchematicFromFile(filepath, ndef,
187                                 replace_names)) {
188                         delete schem;
189                         return NULL;
190                 }
191         }
192
193         return schem;
194 }
195
196
197 Schematic *load_schematic_from_def(lua_State *L, int index,
198         INodeDefManager *ndef, StringMap *replace_names)
199 {
200         Schematic *schem = SchematicManager::create(SCHEMATIC_NORMAL);
201
202         if (!read_schematic_def(L, index, schem, &schem->m_nodenames)) {
203                 delete schem;
204                 return NULL;
205         }
206
207         size_t num_nodes = schem->m_nodenames.size();
208
209         schem->m_nnlistsizes.push_back(num_nodes);
210
211         if (replace_names) {
212                 for (size_t i = 0; i != num_nodes; i++) {
213                         StringMap::iterator it = replace_names->find(schem->m_nodenames[i]);
214                         if (it != replace_names->end())
215                                 schem->m_nodenames[i] = it->second;
216                 }
217         }
218
219         if (ndef)
220                 ndef->pendNodeResolve(schem);
221
222         return schem;
223 }
224
225
226 bool read_schematic_def(lua_State *L, int index,
227         Schematic *schem, std::vector<std::string> *names)
228 {
229         if (!lua_istable(L, index))
230                 return false;
231
232         //// Get schematic size
233         lua_getfield(L, index, "size");
234         v3s16 size = check_v3s16(L, -1);
235         lua_pop(L, 1);
236
237         schem->size = size;
238
239         //// Get schematic data
240         lua_getfield(L, index, "data");
241         luaL_checktype(L, -1, LUA_TTABLE);
242
243         u32 numnodes = size.X * size.Y * size.Z;
244         schem->schemdata = new MapNode[numnodes];
245
246         size_t names_base = names->size();
247         UNORDERED_MAP<std::string, content_t> name_id_map;
248
249         u32 i = 0;
250         for (lua_pushnil(L); lua_next(L, -2); i++, lua_pop(L, 1)) {
251                 if (i >= numnodes)
252                         continue;
253
254                 //// Read name
255                 std::string name;
256                 if (!getstringfield(L, -1, "name", name))
257                         throw LuaError("Schematic data definition with missing name field");
258
259                 //// Read param1/prob
260                 u8 param1;
261                 if (!getintfield(L, -1, "param1", param1) &&
262                         !getintfield(L, -1, "prob", param1))
263                         param1 = MTSCHEM_PROB_ALWAYS_OLD;
264
265                 //// Read param2
266                 u8 param2 = getintfield_default(L, -1, "param2", 0);
267
268                 //// Find or add new nodename-to-ID mapping
269                 UNORDERED_MAP<std::string, content_t>::iterator it = name_id_map.find(name);
270                 content_t name_index;
271                 if (it != name_id_map.end()) {
272                         name_index = it->second;
273                 } else {
274                         name_index = names->size() - names_base;
275                         name_id_map[name] = name_index;
276                         names->push_back(name);
277                 }
278
279                 //// Perform probability/force_place fixup on param1
280                 param1 >>= 1;
281                 if (getboolfield_default(L, -1, "force_place", false))
282                         param1 |= MTSCHEM_FORCE_PLACE;
283
284                 //// Actually set the node in the schematic
285                 schem->schemdata[i] = MapNode(name_index, param1, param2);
286         }
287
288         if (i != numnodes) {
289                 errorstream << "read_schematic_def: incorrect number of "
290                         "nodes provided in raw schematic data (got " << i <<
291                         ", expected " << numnodes << ")." << std::endl;
292                 return false;
293         }
294
295         //// Get Y-slice probability values (if present)
296         schem->slice_probs = new u8[size.Y];
297         for (i = 0; i != (u32) size.Y; i++)
298                 schem->slice_probs[i] = MTSCHEM_PROB_ALWAYS;
299
300         lua_getfield(L, index, "yslice_prob");
301         if (lua_istable(L, -1)) {
302                 for (lua_pushnil(L); lua_next(L, -2); lua_pop(L, 1)) {
303                         u16 ypos;
304                         if (!getintfield(L, -1, "ypos", ypos) || (ypos >= size.Y) ||
305                                 !getintfield(L, -1, "prob", schem->slice_probs[ypos]))
306                                 continue;
307
308                         schem->slice_probs[ypos] >>= 1;
309                 }
310         }
311
312         return true;
313 }
314
315
316 void read_schematic_replacements(lua_State *L, int index, StringMap *replace_names)
317 {
318         if (index < 0)
319                 index = lua_gettop(L) + 1 + index;
320
321         lua_pushnil(L);
322         while (lua_next(L, index)) {
323                 std::string replace_from;
324                 std::string replace_to;
325
326                 if (lua_istable(L, -1)) { // Old {{"x", "y"}, ...} format
327                         lua_rawgeti(L, -1, 1);
328                         replace_from = lua_tostring(L, -1);
329                         lua_pop(L, 1);
330
331                         lua_rawgeti(L, -1, 2);
332                         replace_to = lua_tostring(L, -1);
333                         lua_pop(L, 1);
334                 } else { // New {x = "y", ...} format
335                         replace_from = lua_tostring(L, -2);
336                         replace_to = lua_tostring(L, -1);
337                 }
338
339                 replace_names->insert(std::make_pair(replace_from, replace_to));
340                 lua_pop(L, 1);
341         }
342 }
343
344 ///////////////////////////////////////////////////////////////////////////////
345
346 Biome *get_or_load_biome(lua_State *L, int index, BiomeManager *biomemgr)
347 {
348         if (index < 0)
349                 index = lua_gettop(L) + 1 + index;
350
351         Biome *biome = (Biome *)get_objdef(L, index, biomemgr);
352         if (biome)
353                 return biome;
354
355         biome = read_biome_def(L, index, biomemgr->getNodeDef());
356         if (!biome)
357                 return NULL;
358
359         if (biomemgr->add(biome) == OBJDEF_INVALID_HANDLE) {
360                 delete biome;
361                 return NULL;
362         }
363
364         return biome;
365 }
366
367
368 Biome *read_biome_def(lua_State *L, int index, INodeDefManager *ndef)
369 {
370         if (!lua_istable(L, index))
371                 return NULL;
372
373         BiomeType biometype = (BiomeType)getenumfield(L, index, "type",
374                 ModApiMapgen::es_BiomeTerrainType, BIOMETYPE_NORMAL);
375         Biome *b = BiomeManager::create(biometype);
376
377         b->name            = getstringfield_default(L, index, "name", "");
378         b->depth_top       = getintfield_default(L,    index, "depth_top",       0);
379         b->depth_filler    = getintfield_default(L,    index, "depth_filler",    -31000);
380         b->depth_water_top = getintfield_default(L,    index, "depth_water_top", 0);
381         b->depth_riverbed  = getintfield_default(L,    index, "depth_riverbed",  0);
382         b->y_min           = getintfield_default(L,    index, "y_min",           -31000);
383         b->y_max           = getintfield_default(L,    index, "y_max",           31000);
384         b->heat_point      = getfloatfield_default(L,  index, "heat_point",      0.f);
385         b->humidity_point  = getfloatfield_default(L,  index, "humidity_point",  0.f);
386         b->flags           = 0; //reserved
387
388         std::vector<std::string> &nn = b->m_nodenames;
389         nn.push_back(getstringfield_default(L, index, "node_top",         ""));
390         nn.push_back(getstringfield_default(L, index, "node_filler",      ""));
391         nn.push_back(getstringfield_default(L, index, "node_stone",       ""));
392         nn.push_back(getstringfield_default(L, index, "node_water_top",   ""));
393         nn.push_back(getstringfield_default(L, index, "node_water",       ""));
394         nn.push_back(getstringfield_default(L, index, "node_river_water", ""));
395         nn.push_back(getstringfield_default(L, index, "node_riverbed",    ""));
396         nn.push_back(getstringfield_default(L, index, "node_dust",        ""));
397         ndef->pendNodeResolve(b);
398
399         return b;
400 }
401
402
403 size_t get_biome_list(lua_State *L, int index,
404         BiomeManager *biomemgr, UNORDERED_SET<u8> *biome_id_list)
405 {
406         if (index < 0)
407                 index = lua_gettop(L) + 1 + index;
408
409         if (lua_isnil(L, index))
410                 return 0;
411
412         bool is_single = true;
413         if (lua_istable(L, index)) {
414                 lua_getfield(L, index, "name");
415                 is_single = !lua_isnil(L, -1);
416                 lua_pop(L, 1);
417         }
418
419         if (is_single) {
420                 Biome *biome = get_or_load_biome(L, index, biomemgr);
421                 if (!biome) {
422                         errorstream << "get_biome_list: failed to get biome '"
423                                 << (lua_isstring(L, index) ? lua_tostring(L, index) : "")
424                                 << "'." << std::endl;
425                         return 1;
426                 }
427
428                 biome_id_list->insert(biome->index);
429                 return 0;
430         }
431
432         // returns number of failed resolutions
433         size_t fail_count = 0;
434         size_t count = 0;
435
436         for (lua_pushnil(L); lua_next(L, index); lua_pop(L, 1)) {
437                 count++;
438                 Biome *biome = get_or_load_biome(L, -1, biomemgr);
439                 if (!biome) {
440                         fail_count++;
441                         errorstream << "get_biome_list: failed to get biome '"
442                                 << (lua_isstring(L, -1) ? lua_tostring(L, -1) : "")
443                                 << "'" << std::endl;
444                         continue;
445                 }
446
447                 biome_id_list->insert(biome->index);
448         }
449
450         return fail_count;
451 }
452
453 ///////////////////////////////////////////////////////////////////////////////
454
455 // get_biome_id(biomename)
456 // returns the biome id used in biomemap
457 int ModApiMapgen::l_get_biome_id(lua_State *L)
458 {
459         NO_MAP_LOCK_REQUIRED;
460
461         const char *biome_str = lua_tostring(L, 1);
462         if (!biome_str)
463                 return 0;
464
465         BiomeManager *bmgr = getServer(L)->getEmergeManager()->biomemgr;
466
467         if (!bmgr)
468                 return 0;
469
470         Biome *biome = (Biome *)bmgr->getByName(biome_str);
471
472         if (!biome || biome->index == OBJDEF_INVALID_INDEX)
473                 return 0;
474
475         lua_pushinteger(L, biome->index);
476
477         return 1;
478 }
479
480
481 // get_mapgen_object(objectname)
482 // returns the requested object used during map generation
483 int ModApiMapgen::l_get_mapgen_object(lua_State *L)
484 {
485         NO_MAP_LOCK_REQUIRED;
486
487         const char *mgobjstr = lua_tostring(L, 1);
488
489         int mgobjint;
490         if (!string_to_enum(es_MapgenObject, mgobjint, mgobjstr ? mgobjstr : ""))
491                 return 0;
492
493         enum MapgenObject mgobj = (MapgenObject)mgobjint;
494
495         EmergeManager *emerge = getServer(L)->getEmergeManager();
496         Mapgen *mg = emerge->getCurrentMapgen();
497         if (!mg)
498                 throw LuaError("Must only be called in a mapgen thread!");
499
500         size_t maplen = mg->csize.X * mg->csize.Z;
501
502         switch (mgobj) {
503         case MGOBJ_VMANIP: {
504                 MMVManip *vm = mg->vm;
505
506                 // VoxelManip object
507                 LuaVoxelManip *o = new LuaVoxelManip(vm, true);
508                 *(void **)(lua_newuserdata(L, sizeof(void *))) = o;
509                 luaL_getmetatable(L, "VoxelManip");
510                 lua_setmetatable(L, -2);
511
512                 // emerged min pos
513                 push_v3s16(L, vm->m_area.MinEdge);
514
515                 // emerged max pos
516                 push_v3s16(L, vm->m_area.MaxEdge);
517
518                 return 3;
519         }
520         case MGOBJ_HEIGHTMAP: {
521                 if (!mg->heightmap)
522                         return 0;
523
524                 lua_newtable(L);
525                 for (size_t i = 0; i != maplen; i++) {
526                         lua_pushinteger(L, mg->heightmap[i]);
527                         lua_rawseti(L, -2, i + 1);
528                 }
529
530                 return 1;
531         }
532         case MGOBJ_BIOMEMAP: {
533                 if (!mg->biomegen)
534                         return 0;
535
536                 lua_newtable(L);
537                 for (size_t i = 0; i != maplen; i++) {
538                         lua_pushinteger(L, mg->biomegen->biomemap[i]);
539                         lua_rawseti(L, -2, i + 1);
540                 }
541
542                 return 1;
543         }
544         case MGOBJ_HEATMAP: {
545                 if (!mg->biomegen || mg->biomegen->getType() != BIOMEGEN_ORIGINAL)
546                         return 0;
547
548                 BiomeGenOriginal *bg = (BiomeGenOriginal *)mg->biomegen;
549
550                 lua_newtable(L);
551                 for (size_t i = 0; i != maplen; i++) {
552                         lua_pushnumber(L, bg->heatmap[i]);
553                         lua_rawseti(L, -2, i + 1);
554                 }
555
556                 return 1;
557         }
558
559         case MGOBJ_HUMIDMAP: {
560                 if (!mg->biomegen || mg->biomegen->getType() != BIOMEGEN_ORIGINAL)
561                         return 0;
562
563                 BiomeGenOriginal *bg = (BiomeGenOriginal *)mg->biomegen;
564
565                 lua_newtable(L);
566                 for (size_t i = 0; i != maplen; i++) {
567                         lua_pushnumber(L, bg->humidmap[i]);
568                         lua_rawseti(L, -2, i + 1);
569                 }
570
571                 return 1;
572         }
573         case MGOBJ_GENNOTIFY: {
574                 std::map<std::string, std::vector<v3s16> >event_map;
575                 std::map<std::string, std::vector<v3s16> >::iterator it;
576
577                 mg->gennotify.getEvents(event_map);
578
579                 lua_newtable(L);
580                 for (it = event_map.begin(); it != event_map.end(); ++it) {
581                         lua_newtable(L);
582
583                         for (size_t j = 0; j != it->second.size(); j++) {
584                                 push_v3s16(L, it->second[j]);
585                                 lua_rawseti(L, -2, j + 1);
586                         }
587
588                         lua_setfield(L, -2, it->first.c_str());
589                 }
590
591                 return 1;
592         }
593         }
594
595         return 0;
596 }
597
598
599 int ModApiMapgen::l_get_mapgen_params(lua_State *L)
600 {
601         NO_MAP_LOCK_REQUIRED;
602
603         log_deprecated(L, "get_mapgen_params is deprecated; "
604                 "use get_mapgen_setting instead");
605
606         std::string value;
607
608         MapSettingsManager *settingsmgr =
609                 getServer(L)->getEmergeManager()->map_settings_mgr;
610
611         lua_newtable(L);
612
613         settingsmgr->getMapSetting("mg_name", &value);
614         lua_pushstring(L, value.c_str());
615         lua_setfield(L, -2, "mgname");
616
617         settingsmgr->getMapSetting("seed", &value);
618         std::istringstream ss(value);
619         u64 seed;
620         ss >> seed;
621         lua_pushinteger(L, seed);
622         lua_setfield(L, -2, "seed");
623
624         settingsmgr->getMapSetting("water_level", &value);
625         lua_pushinteger(L, stoi(value, -32768, 32767));
626         lua_setfield(L, -2, "water_level");
627
628         settingsmgr->getMapSetting("chunksize", &value);
629         lua_pushinteger(L, stoi(value, -32768, 32767));
630         lua_setfield(L, -2, "chunksize");
631
632         settingsmgr->getMapSetting("mg_flags", &value);
633         lua_pushstring(L, value.c_str());
634         lua_setfield(L, -2, "flags");
635
636         return 1;
637 }
638
639
640 // set_mapgen_params(params)
641 // set mapgen parameters
642 int ModApiMapgen::l_set_mapgen_params(lua_State *L)
643 {
644         NO_MAP_LOCK_REQUIRED;
645
646         log_deprecated(L, "set_mapgen_params is deprecated; "
647                 "use set_mapgen_setting instead");
648
649         if (!lua_istable(L, 1))
650                 return 0;
651
652         MapSettingsManager *settingsmgr =
653                 getServer(L)->getEmergeManager()->map_settings_mgr;
654
655         lua_getfield(L, 1, "mgname");
656         if (lua_isstring(L, -1))
657                 settingsmgr->setMapSetting("mg_name", lua_tostring(L, -1), true);
658
659         lua_getfield(L, 1, "seed");
660         if (lua_isnumber(L, -1))
661                 settingsmgr->setMapSetting("seed", lua_tostring(L, -1), true);
662
663         lua_getfield(L, 1, "water_level");
664         if (lua_isnumber(L, -1))
665                 settingsmgr->setMapSetting("water_level", lua_tostring(L, -1), true);
666
667         lua_getfield(L, 1, "chunksize");
668         if (lua_isnumber(L, -1))
669                 settingsmgr->setMapSetting("chunksize", lua_tostring(L, -1), true);
670
671         warn_if_field_exists(L, 1, "flagmask",
672                 "Deprecated: flags field now includes unset flags.");
673
674         lua_getfield(L, 1, "flags");
675         if (lua_isstring(L, -1))
676                 settingsmgr->setMapSetting("mg_flags", lua_tostring(L, -1), true);
677
678         return 0;
679 }
680
681 // get_mapgen_setting(name)
682 int ModApiMapgen::l_get_mapgen_setting(lua_State *L)
683 {
684         NO_MAP_LOCK_REQUIRED;
685
686         std::string value;
687         MapSettingsManager *settingsmgr =
688                 getServer(L)->getEmergeManager()->map_settings_mgr;
689
690         const char *name = luaL_checkstring(L, 1);
691         if (!settingsmgr->getMapSetting(name, &value))
692                 return 0;
693
694         lua_pushstring(L, value.c_str());
695         return 1;
696 }
697
698 // get_mapgen_setting_noiseparams(name)
699 int ModApiMapgen::l_get_mapgen_setting_noiseparams(lua_State *L)
700 {
701         NO_MAP_LOCK_REQUIRED;
702
703         NoiseParams np;
704         MapSettingsManager *settingsmgr =
705                 getServer(L)->getEmergeManager()->map_settings_mgr;
706
707         const char *name = luaL_checkstring(L, 1);
708         if (!settingsmgr->getMapSettingNoiseParams(name, &np))
709                 return 0;
710
711         push_noiseparams(L, &np);
712         return 1;
713 }
714
715 // set_mapgen_setting(name, value, override_meta)
716 // set mapgen config values
717 int ModApiMapgen::l_set_mapgen_setting(lua_State *L)
718 {
719         NO_MAP_LOCK_REQUIRED;
720
721         MapSettingsManager *settingsmgr =
722                 getServer(L)->getEmergeManager()->map_settings_mgr;
723
724         const char *name   = luaL_checkstring(L, 1);
725         const char *value  = luaL_checkstring(L, 2);
726         bool override_meta = lua_isboolean(L, 3) ? lua_toboolean(L, 3) : false;
727
728         if (!settingsmgr->setMapSetting(name, value, override_meta)) {
729                 errorstream << "set_mapgen_setting: cannot set '"
730                         << name << "' after initialization" << std::endl;
731         }
732
733         return 0;
734 }
735
736
737 // set_mapgen_setting_noiseparams(name, noiseparams, set_default)
738 // set mapgen config values for noise parameters
739 int ModApiMapgen::l_set_mapgen_setting_noiseparams(lua_State *L)
740 {
741         NO_MAP_LOCK_REQUIRED;
742
743         MapSettingsManager *settingsmgr =
744                 getServer(L)->getEmergeManager()->map_settings_mgr;
745
746         const char *name = luaL_checkstring(L, 1);
747
748         NoiseParams np;
749         if (!read_noiseparams(L, 2, &np)) {
750                 errorstream << "set_mapgen_setting_noiseparams: cannot set '" << name
751                         << "'; invalid noiseparams table" << std::endl;
752                 return 0;
753         }
754
755         bool override_meta = lua_isboolean(L, 3) ? lua_toboolean(L, 3) : false;
756
757         if (!settingsmgr->setMapSettingNoiseParams(name, &np, override_meta)) {
758                 errorstream << "set_mapgen_setting_noiseparams: cannot set '"
759                         << name << "' after initialization" << std::endl;
760         }
761
762         return 0;
763 }
764
765
766 // set_noiseparams(name, noiseparams, set_default)
767 // set global config values for noise parameters
768 int ModApiMapgen::l_set_noiseparams(lua_State *L)
769 {
770         NO_MAP_LOCK_REQUIRED;
771
772         const char *name = luaL_checkstring(L, 1);
773
774         NoiseParams np;
775         if (!read_noiseparams(L, 2, &np)) {
776                 errorstream << "set_noiseparams: cannot set '" << name
777                         << "'; invalid noiseparams table" << std::endl;
778                 return 0;
779         }
780
781         bool set_default = lua_isboolean(L, 3) ? lua_toboolean(L, 3) : true;
782
783         g_settings->setNoiseParams(name, np, set_default);
784
785         return 0;
786 }
787
788
789 // get_noiseparams(name)
790 int ModApiMapgen::l_get_noiseparams(lua_State *L)
791 {
792         NO_MAP_LOCK_REQUIRED;
793
794         std::string name = luaL_checkstring(L, 1);
795
796         NoiseParams np;
797         if (!g_settings->getNoiseParams(name, np))
798                 return 0;
799
800         push_noiseparams(L, &np);
801         return 1;
802 }
803
804
805 // set_gen_notify(flags, {deco_id_table})
806 int ModApiMapgen::l_set_gen_notify(lua_State *L)
807 {
808         NO_MAP_LOCK_REQUIRED;
809
810         u32 flags = 0, flagmask = 0;
811         EmergeManager *emerge = getServer(L)->getEmergeManager();
812
813         if (read_flags(L, 1, flagdesc_gennotify, &flags, &flagmask)) {
814                 emerge->gen_notify_on &= ~flagmask;
815                 emerge->gen_notify_on |= flags;
816         }
817
818         if (lua_istable(L, 2)) {
819                 lua_pushnil(L);
820                 while (lua_next(L, 2)) {
821                         if (lua_isnumber(L, -1))
822                                 emerge->gen_notify_on_deco_ids.insert((u32)lua_tonumber(L, -1));
823                         lua_pop(L, 1);
824                 }
825         }
826
827         return 0;
828 }
829
830
831 // get_gen_notify()
832 int ModApiMapgen::l_get_gen_notify(lua_State *L)
833 {
834         NO_MAP_LOCK_REQUIRED;
835
836         EmergeManager *emerge = getServer(L)->getEmergeManager();
837         push_flags_string(L, flagdesc_gennotify, emerge->gen_notify_on,
838                 emerge->gen_notify_on);
839
840         lua_newtable(L);
841         int i = 1;
842         for (std::set<u32>::iterator it = emerge->gen_notify_on_deco_ids.begin();
843                         it != emerge->gen_notify_on_deco_ids.end(); ++it) {
844                 lua_pushnumber(L, *it);
845                 lua_rawseti(L, -2, i);
846                 i++;
847         }
848         return 2;
849 }
850
851
852 // register_biome({lots of stuff})
853 int ModApiMapgen::l_register_biome(lua_State *L)
854 {
855         NO_MAP_LOCK_REQUIRED;
856
857         int index = 1;
858         luaL_checktype(L, index, LUA_TTABLE);
859
860         INodeDefManager *ndef = getServer(L)->getNodeDefManager();
861         BiomeManager *bmgr    = getServer(L)->getEmergeManager()->biomemgr;
862
863         Biome *biome = read_biome_def(L, index, ndef);
864         if (!biome)
865                 return 0;
866
867         ObjDefHandle handle = bmgr->add(biome);
868         if (handle == OBJDEF_INVALID_HANDLE) {
869                 delete biome;
870                 return 0;
871         }
872
873         lua_pushinteger(L, handle);
874         return 1;
875 }
876
877
878 // register_decoration({lots of stuff})
879 int ModApiMapgen::l_register_decoration(lua_State *L)
880 {
881         NO_MAP_LOCK_REQUIRED;
882
883         int index = 1;
884         luaL_checktype(L, index, LUA_TTABLE);
885
886         INodeDefManager *ndef      = getServer(L)->getNodeDefManager();
887         DecorationManager *decomgr = getServer(L)->getEmergeManager()->decomgr;
888         BiomeManager *biomemgr     = getServer(L)->getEmergeManager()->biomemgr;
889         SchematicManager *schemmgr = getServer(L)->getEmergeManager()->schemmgr;
890
891         enum DecorationType decotype = (DecorationType)getenumfield(L, index,
892                                 "deco_type", es_DecorationType, -1);
893
894         Decoration *deco = decomgr->create(decotype);
895         if (!deco) {
896                 errorstream << "register_decoration: decoration placement type "
897                         << decotype << " not implemented" << std::endl;
898                 return 0;
899         }
900
901         deco->name       = getstringfield_default(L, index, "name", "");
902         deco->fill_ratio = getfloatfield_default(L, index, "fill_ratio", 0.02);
903         deco->y_min      = getintfield_default(L, index, "y_min", -31000);
904         deco->y_max      = getintfield_default(L, index, "y_max", 31000);
905         deco->nspawnby   = getintfield_default(L, index, "num_spawn_by", -1);
906         deco->sidelen    = getintfield_default(L, index, "sidelen", 8);
907         if (deco->sidelen <= 0) {
908                 errorstream << "register_decoration: sidelen must be "
909                         "greater than 0" << std::endl;
910                 delete deco;
911                 return 0;
912         }
913
914         //// Get node name(s) to place decoration on
915         size_t nread = getstringlistfield(L, index, "place_on", &deco->m_nodenames);
916         deco->m_nnlistsizes.push_back(nread);
917
918         //// Get decoration flags
919         getflagsfield(L, index, "flags", flagdesc_deco, &deco->flags, NULL);
920
921         //// Get NoiseParams to define how decoration is placed
922         lua_getfield(L, index, "noise_params");
923         if (read_noiseparams(L, -1, &deco->np))
924                 deco->flags |= DECO_USE_NOISE;
925         lua_pop(L, 1);
926
927         //// Get biomes associated with this decoration (if any)
928         lua_getfield(L, index, "biomes");
929         if (get_biome_list(L, -1, biomemgr, &deco->biomes))
930                 errorstream << "register_decoration: couldn't get all biomes " << std::endl;
931         lua_pop(L, 1);
932
933         //// Get node name(s) to 'spawn by'
934         size_t nnames = getstringlistfield(L, index, "spawn_by", &deco->m_nodenames);
935         deco->m_nnlistsizes.push_back(nnames);
936         if (nnames == 0 && deco->nspawnby != -1) {
937                 errorstream << "register_decoration: no spawn_by nodes defined,"
938                         " but num_spawn_by specified" << std::endl;
939         }
940
941         //// Handle decoration type-specific parameters
942         bool success = false;
943         switch (decotype) {
944         case DECO_SIMPLE:
945                 success = read_deco_simple(L, (DecoSimple *)deco);
946                 break;
947         case DECO_SCHEMATIC:
948                 success = read_deco_schematic(L, schemmgr, (DecoSchematic *)deco);
949                 break;
950         case DECO_LSYSTEM:
951                 break;
952         }
953
954         if (!success) {
955                 delete deco;
956                 return 0;
957         }
958
959         ndef->pendNodeResolve(deco);
960
961         ObjDefHandle handle = decomgr->add(deco);
962         if (handle == OBJDEF_INVALID_HANDLE) {
963                 delete deco;
964                 return 0;
965         }
966
967         lua_pushinteger(L, handle);
968         return 1;
969 }
970
971
972 bool read_deco_simple(lua_State *L, DecoSimple *deco)
973 {
974         int index = 1;
975
976         deco->deco_height     = getintfield_default(L, index, "height", 1);
977         deco->deco_height_max = getintfield_default(L, index, "height_max", 0);
978
979         if (deco->deco_height <= 0) {
980                 errorstream << "register_decoration: simple decoration height"
981                         " must be greater than 0" << std::endl;
982                 return false;
983         }
984
985         size_t nnames = getstringlistfield(L, index, "decoration", &deco->m_nodenames);
986         deco->m_nnlistsizes.push_back(nnames);
987         if (nnames == 0) {
988                 errorstream << "register_decoration: no decoration nodes "
989                         "defined" << std::endl;
990                 return false;
991         }
992
993         return true;
994 }
995
996
997 bool read_deco_schematic(lua_State *L, SchematicManager *schemmgr, DecoSchematic *deco)
998 {
999         int index = 1;
1000
1001         deco->rotation = (Rotation)getenumfield(L, index, "rotation",
1002                 ModApiMapgen::es_Rotation, ROTATE_0);
1003
1004         StringMap replace_names;
1005         lua_getfield(L, index, "replacements");
1006         if (lua_istable(L, -1))
1007                 read_schematic_replacements(L, -1, &replace_names);
1008         lua_pop(L, 1);
1009
1010         lua_getfield(L, index, "schematic");
1011         Schematic *schem = get_or_load_schematic(L, -1, schemmgr, &replace_names);
1012         lua_pop(L, 1);
1013
1014         deco->schematic = schem;
1015         return schem != NULL;
1016 }
1017
1018
1019 // register_ore({lots of stuff})
1020 int ModApiMapgen::l_register_ore(lua_State *L)
1021 {
1022         NO_MAP_LOCK_REQUIRED;
1023
1024         int index = 1;
1025         luaL_checktype(L, index, LUA_TTABLE);
1026
1027         INodeDefManager *ndef = getServer(L)->getNodeDefManager();
1028         BiomeManager *bmgr    = getServer(L)->getEmergeManager()->biomemgr;
1029         OreManager *oremgr    = getServer(L)->getEmergeManager()->oremgr;
1030
1031         enum OreType oretype = (OreType)getenumfield(L, index,
1032                                 "ore_type", es_OreType, ORE_SCATTER);
1033         Ore *ore = oremgr->create(oretype);
1034         if (!ore) {
1035                 errorstream << "register_ore: ore_type " << oretype << " not implemented\n";
1036                 return 0;
1037         }
1038
1039         ore->name           = getstringfield_default(L, index, "name", "");
1040         ore->ore_param2     = (u8)getintfield_default(L, index, "ore_param2", 0);
1041         ore->clust_scarcity = getintfield_default(L, index, "clust_scarcity", 1);
1042         ore->clust_num_ores = getintfield_default(L, index, "clust_num_ores", 1);
1043         ore->clust_size     = getintfield_default(L, index, "clust_size", 0);
1044         ore->noise          = NULL;
1045         ore->flags          = 0;
1046
1047         //// Get noise_threshold
1048         warn_if_field_exists(L, index, "noise_threshhold",
1049                 "Deprecated: new name is \"noise_threshold\".");
1050
1051         float nthresh;
1052         if (!getfloatfield(L, index, "noise_threshold", nthresh) &&
1053                         !getfloatfield(L, index, "noise_threshhold", nthresh))
1054                 nthresh = 0;
1055         ore->nthresh = nthresh;
1056
1057         //// Get y_min/y_max
1058         warn_if_field_exists(L, index, "height_min",
1059                 "Deprecated: new name is \"y_min\".");
1060         warn_if_field_exists(L, index, "height_max",
1061                 "Deprecated: new name is \"y_max\".");
1062
1063         int ymin, ymax;
1064         if (!getintfield(L, index, "y_min", ymin) &&
1065                 !getintfield(L, index, "height_min", ymin))
1066                 ymin = -31000;
1067         if (!getintfield(L, index, "y_max", ymax) &&
1068                 !getintfield(L, index, "height_max", ymax))
1069                 ymax = 31000;
1070         ore->y_min = ymin;
1071         ore->y_max = ymax;
1072
1073         if (ore->clust_scarcity <= 0 || ore->clust_num_ores <= 0) {
1074                 errorstream << "register_ore: clust_scarcity and clust_num_ores"
1075                         "must be greater than 0" << std::endl;
1076                 delete ore;
1077                 return 0;
1078         }
1079
1080         //// Get flags
1081         getflagsfield(L, index, "flags", flagdesc_ore, &ore->flags, NULL);
1082
1083         //// Get biomes associated with this decoration (if any)
1084         lua_getfield(L, index, "biomes");
1085         if (get_biome_list(L, -1, bmgr, &ore->biomes))
1086                 errorstream << "register_ore: couldn't get all biomes " << std::endl;
1087         lua_pop(L, 1);
1088
1089         //// Get noise parameters if needed
1090         lua_getfield(L, index, "noise_params");
1091         if (read_noiseparams(L, -1, &ore->np)) {
1092                 ore->flags |= OREFLAG_USE_NOISE;
1093         } else if (ore->NEEDS_NOISE) {
1094                 errorstream << "register_ore: specified ore type requires valid "
1095                         "noise parameters" << std::endl;
1096                 delete ore;
1097                 return 0;
1098         }
1099         lua_pop(L, 1);
1100
1101         //// Get type-specific parameters
1102         switch (oretype) {
1103                 case ORE_SHEET: {
1104                         OreSheet *oresheet = (OreSheet *)ore;
1105
1106                         oresheet->column_height_min = getintfield_default(L, index,
1107                                 "column_height_min", 1);
1108                         oresheet->column_height_max = getintfield_default(L, index,
1109                                 "column_height_max", ore->clust_size);
1110                         oresheet->column_midpoint_factor = getfloatfield_default(L, index,
1111                                 "column_midpoint_factor", 0.5f);
1112
1113                         break;
1114                 }
1115                 case ORE_PUFF: {
1116                         OrePuff *orepuff = (OrePuff *)ore;
1117
1118                         lua_getfield(L, index, "np_puff_top");
1119                         read_noiseparams(L, -1, &orepuff->np_puff_top);
1120                         lua_pop(L, 1);
1121
1122                         lua_getfield(L, index, "np_puff_bottom");
1123                         read_noiseparams(L, -1, &orepuff->np_puff_bottom);
1124                         lua_pop(L, 1);
1125
1126                         break;
1127                 }
1128                 case ORE_VEIN: {
1129                         OreVein *orevein = (OreVein *)ore;
1130
1131                         orevein->random_factor = getfloatfield_default(L, index,
1132                                 "random_factor", 1.f);
1133
1134                         break;
1135                 }
1136                 default:
1137                         break;
1138         }
1139
1140         ObjDefHandle handle = oremgr->add(ore);
1141         if (handle == OBJDEF_INVALID_HANDLE) {
1142                 delete ore;
1143                 return 0;
1144         }
1145
1146         ore->m_nodenames.push_back(getstringfield_default(L, index, "ore", ""));
1147
1148         size_t nnames = getstringlistfield(L, index, "wherein", &ore->m_nodenames);
1149         ore->m_nnlistsizes.push_back(nnames);
1150
1151         ndef->pendNodeResolve(ore);
1152
1153         lua_pushinteger(L, handle);
1154         return 1;
1155 }
1156
1157
1158 // register_schematic({schematic}, replacements={})
1159 int ModApiMapgen::l_register_schematic(lua_State *L)
1160 {
1161         NO_MAP_LOCK_REQUIRED;
1162
1163         SchematicManager *schemmgr = getServer(L)->getEmergeManager()->schemmgr;
1164
1165         StringMap replace_names;
1166         if (lua_istable(L, 2))
1167                 read_schematic_replacements(L, 2, &replace_names);
1168
1169         Schematic *schem = load_schematic(L, 1, schemmgr->getNodeDef(),
1170                 &replace_names);
1171         if (!schem)
1172                 return 0;
1173
1174         ObjDefHandle handle = schemmgr->add(schem);
1175         if (handle == OBJDEF_INVALID_HANDLE) {
1176                 delete schem;
1177                 return 0;
1178         }
1179
1180         lua_pushinteger(L, handle);
1181         return 1;
1182 }
1183
1184
1185 // clear_registered_biomes()
1186 int ModApiMapgen::l_clear_registered_biomes(lua_State *L)
1187 {
1188         NO_MAP_LOCK_REQUIRED;
1189
1190         BiomeManager *bmgr = getServer(L)->getEmergeManager()->biomemgr;
1191         bmgr->clear();
1192         return 0;
1193 }
1194
1195
1196 // clear_registered_decorations()
1197 int ModApiMapgen::l_clear_registered_decorations(lua_State *L)
1198 {
1199         NO_MAP_LOCK_REQUIRED;
1200
1201         DecorationManager *dmgr = getServer(L)->getEmergeManager()->decomgr;
1202         dmgr->clear();
1203         return 0;
1204 }
1205
1206
1207 // clear_registered_ores()
1208 int ModApiMapgen::l_clear_registered_ores(lua_State *L)
1209 {
1210         NO_MAP_LOCK_REQUIRED;
1211
1212         OreManager *omgr = getServer(L)->getEmergeManager()->oremgr;
1213         omgr->clear();
1214         return 0;
1215 }
1216
1217
1218 // clear_registered_schematics()
1219 int ModApiMapgen::l_clear_registered_schematics(lua_State *L)
1220 {
1221         NO_MAP_LOCK_REQUIRED;
1222
1223         SchematicManager *smgr = getServer(L)->getEmergeManager()->schemmgr;
1224         smgr->clear();
1225         return 0;
1226 }
1227
1228
1229 // generate_ores(vm, p1, p2, [ore_id])
1230 int ModApiMapgen::l_generate_ores(lua_State *L)
1231 {
1232         NO_MAP_LOCK_REQUIRED;
1233
1234         EmergeManager *emerge = getServer(L)->getEmergeManager();
1235
1236         Mapgen mg;
1237         mg.seed = emerge->mgparams->seed;
1238         mg.vm   = LuaVoxelManip::checkobject(L, 1)->vm;
1239         mg.ndef = getServer(L)->getNodeDefManager();
1240
1241         v3s16 pmin = lua_istable(L, 2) ? check_v3s16(L, 2) :
1242                         mg.vm->m_area.MinEdge + v3s16(1,1,1) * MAP_BLOCKSIZE;
1243         v3s16 pmax = lua_istable(L, 3) ? check_v3s16(L, 3) :
1244                         mg.vm->m_area.MaxEdge - v3s16(1,1,1) * MAP_BLOCKSIZE;
1245         sortBoxVerticies(pmin, pmax);
1246
1247         u32 blockseed = Mapgen::getBlockSeed(pmin, mg.seed);
1248
1249         emerge->oremgr->placeAllOres(&mg, blockseed, pmin, pmax);
1250
1251         return 0;
1252 }
1253
1254
1255 // generate_decorations(vm, p1, p2, [deco_id])
1256 int ModApiMapgen::l_generate_decorations(lua_State *L)
1257 {
1258         NO_MAP_LOCK_REQUIRED;
1259
1260         EmergeManager *emerge = getServer(L)->getEmergeManager();
1261
1262         Mapgen mg;
1263         mg.seed = emerge->mgparams->seed;
1264         mg.vm   = LuaVoxelManip::checkobject(L, 1)->vm;
1265         mg.ndef = getServer(L)->getNodeDefManager();
1266
1267         v3s16 pmin = lua_istable(L, 2) ? check_v3s16(L, 2) :
1268                         mg.vm->m_area.MinEdge + v3s16(1,1,1) * MAP_BLOCKSIZE;
1269         v3s16 pmax = lua_istable(L, 3) ? check_v3s16(L, 3) :
1270                         mg.vm->m_area.MaxEdge - v3s16(1,1,1) * MAP_BLOCKSIZE;
1271         sortBoxVerticies(pmin, pmax);
1272
1273         u32 blockseed = Mapgen::getBlockSeed(pmin, mg.seed);
1274
1275         emerge->decomgr->placeAllDecos(&mg, blockseed, pmin, pmax);
1276
1277         return 0;
1278 }
1279
1280
1281 // create_schematic(p1, p2, probability_list, filename, y_slice_prob_list)
1282 int ModApiMapgen::l_create_schematic(lua_State *L)
1283 {
1284         MAP_LOCK_REQUIRED;
1285
1286         INodeDefManager *ndef = getServer(L)->getNodeDefManager();
1287
1288         const char *filename = luaL_checkstring(L, 4);
1289         CHECK_SECURE_PATH_OPTIONAL(L, filename);
1290
1291         Map *map = &(getEnv(L)->getMap());
1292         Schematic schem;
1293
1294         v3s16 p1 = check_v3s16(L, 1);
1295         v3s16 p2 = check_v3s16(L, 2);
1296         sortBoxVerticies(p1, p2);
1297
1298         std::vector<std::pair<v3s16, u8> > prob_list;
1299         if (lua_istable(L, 3)) {
1300                 lua_pushnil(L);
1301                 while (lua_next(L, 3)) {
1302                         if (lua_istable(L, -1)) {
1303                                 lua_getfield(L, -1, "pos");
1304                                 v3s16 pos = check_v3s16(L, -1);
1305                                 lua_pop(L, 1);
1306
1307                                 u8 prob = getintfield_default(L, -1, "prob", MTSCHEM_PROB_ALWAYS);
1308                                 prob_list.push_back(std::make_pair(pos, prob));
1309                         }
1310
1311                         lua_pop(L, 1);
1312                 }
1313         }
1314
1315         std::vector<std::pair<s16, u8> > slice_prob_list;
1316         if (lua_istable(L, 5)) {
1317                 lua_pushnil(L);
1318                 while (lua_next(L, 5)) {
1319                         if (lua_istable(L, -1)) {
1320                                 s16 ypos = getintfield_default(L, -1, "ypos", 0);
1321                                 u8 prob  = getintfield_default(L, -1, "prob", MTSCHEM_PROB_ALWAYS);
1322                                 slice_prob_list.push_back(std::make_pair(ypos, prob));
1323                         }
1324
1325                         lua_pop(L, 1);
1326                 }
1327         }
1328
1329         if (!schem.getSchematicFromMap(map, p1, p2)) {
1330                 errorstream << "create_schematic: failed to get schematic "
1331                         "from map" << std::endl;
1332                 return 0;
1333         }
1334
1335         schem.applyProbabilities(p1, &prob_list, &slice_prob_list);
1336
1337         schem.saveSchematicToFile(filename, ndef);
1338         actionstream << "create_schematic: saved schematic file '"
1339                 << filename << "'." << std::endl;
1340
1341         lua_pushboolean(L, true);
1342         return 1;
1343 }
1344
1345
1346 // place_schematic(p, schematic, rotation, replacement)
1347 int ModApiMapgen::l_place_schematic(lua_State *L)
1348 {
1349         MAP_LOCK_REQUIRED;
1350
1351         Map *map = &(getEnv(L)->getMap());
1352         SchematicManager *schemmgr = getServer(L)->getEmergeManager()->schemmgr;
1353
1354         //// Read position
1355         v3s16 p = check_v3s16(L, 1);
1356
1357         //// Read rotation
1358         int rot = ROTATE_0;
1359         const char *enumstr = lua_tostring(L, 3);
1360         if (enumstr)
1361                 string_to_enum(es_Rotation, rot, std::string(enumstr));
1362
1363         //// Read force placement
1364         bool force_placement = true;
1365         if (lua_isboolean(L, 5))
1366                 force_placement = lua_toboolean(L, 5);
1367
1368         //// Read node replacements
1369         StringMap replace_names;
1370         if (lua_istable(L, 4))
1371                 read_schematic_replacements(L, 4, &replace_names);
1372
1373         //// Read schematic
1374         Schematic *schem = get_or_load_schematic(L, 2, schemmgr, &replace_names);
1375         if (!schem) {
1376                 errorstream << "place_schematic: failed to get schematic" << std::endl;
1377                 return 0;
1378         }
1379
1380         schem->placeOnMap(map, p, 0, (Rotation)rot, force_placement);
1381
1382         lua_pushboolean(L, true);
1383         return 1;
1384 }
1385
1386 int ModApiMapgen::l_place_schematic_on_vmanip(lua_State *L)
1387 {
1388         NO_MAP_LOCK_REQUIRED;
1389
1390         SchematicManager *schemmgr = getServer(L)->getEmergeManager()->schemmgr;
1391
1392         //// Read VoxelManip object
1393         MMVManip *vm = LuaVoxelManip::checkobject(L, 1)->vm;
1394
1395         //// Read position
1396         v3s16 p = check_v3s16(L, 2);
1397
1398         //// Read rotation
1399         int rot = ROTATE_0;
1400         const char *enumstr = lua_tostring(L, 4);
1401         if (enumstr)
1402                 string_to_enum(es_Rotation, rot, std::string(enumstr));
1403
1404         //// Read force placement
1405         bool force_placement = true;
1406         if (lua_isboolean(L, 6))
1407                 force_placement = lua_toboolean(L, 6);
1408
1409         //// Read node replacements
1410         StringMap replace_names;
1411         if (lua_istable(L, 5))
1412                 read_schematic_replacements(L, 5, &replace_names);
1413
1414         //// Read schematic
1415         Schematic *schem = get_or_load_schematic(L, 3, schemmgr, &replace_names);
1416         if (!schem) {
1417                 errorstream << "place_schematic: failed to get schematic" << std::endl;
1418                 return 0;
1419         }
1420
1421         bool schematic_did_fit = schem->placeOnVManip(
1422                 vm, p, 0, (Rotation)rot, force_placement);
1423
1424         lua_pushboolean(L, schematic_did_fit);
1425         return 1;
1426 }
1427
1428 // serialize_schematic(schematic, format, options={...})
1429 int ModApiMapgen::l_serialize_schematic(lua_State *L)
1430 {
1431         NO_MAP_LOCK_REQUIRED;
1432
1433         SchematicManager *schemmgr = getServer(L)->getEmergeManager()->schemmgr;
1434
1435         //// Read options
1436         bool use_comments = getboolfield_default(L, 3, "lua_use_comments", false);
1437         u32 indent_spaces = getintfield_default(L, 3, "lua_num_indent_spaces", 0);
1438
1439         //// Get schematic
1440         bool was_loaded = false;
1441         Schematic *schem = (Schematic *)get_objdef(L, 1, schemmgr);
1442         if (!schem) {
1443                 schem = load_schematic(L, 1, NULL, NULL);
1444                 was_loaded = true;
1445         }
1446         if (!schem) {
1447                 errorstream << "serialize_schematic: failed to get schematic" << std::endl;
1448                 return 0;
1449         }
1450
1451         //// Read format of definition to save as
1452         int schem_format = SCHEM_FMT_MTS;
1453         const char *enumstr = lua_tostring(L, 2);
1454         if (enumstr)
1455                 string_to_enum(es_SchematicFormatType, schem_format, std::string(enumstr));
1456
1457         //// Serialize to binary string
1458         std::ostringstream os(std::ios_base::binary);
1459         switch (schem_format) {
1460         case SCHEM_FMT_MTS:
1461                 schem->serializeToMts(&os, schem->m_nodenames);
1462                 break;
1463         case SCHEM_FMT_LUA:
1464                 schem->serializeToLua(&os, schem->m_nodenames,
1465                         use_comments, indent_spaces);
1466                 break;
1467         default:
1468                 return 0;
1469         }
1470
1471         if (was_loaded)
1472                 delete schem;
1473
1474         std::string ser = os.str();
1475         lua_pushlstring(L, ser.c_str(), ser.length());
1476         return 1;
1477 }
1478
1479
1480 void ModApiMapgen::Initialize(lua_State *L, int top)
1481 {
1482         API_FCT(get_biome_id);
1483         API_FCT(get_mapgen_object);
1484
1485         API_FCT(get_mapgen_params);
1486         API_FCT(set_mapgen_params);
1487         API_FCT(get_mapgen_setting);
1488         API_FCT(set_mapgen_setting);
1489         API_FCT(get_mapgen_setting_noiseparams);
1490         API_FCT(set_mapgen_setting_noiseparams);
1491         API_FCT(set_noiseparams);
1492         API_FCT(get_noiseparams);
1493         API_FCT(set_gen_notify);
1494         API_FCT(get_gen_notify);
1495
1496         API_FCT(register_biome);
1497         API_FCT(register_decoration);
1498         API_FCT(register_ore);
1499         API_FCT(register_schematic);
1500
1501         API_FCT(clear_registered_biomes);
1502         API_FCT(clear_registered_decorations);
1503         API_FCT(clear_registered_ores);
1504         API_FCT(clear_registered_schematics);
1505
1506         API_FCT(generate_ores);
1507         API_FCT(generate_decorations);
1508         API_FCT(create_schematic);
1509         API_FCT(place_schematic);
1510         API_FCT(place_schematic_on_vmanip);
1511         API_FCT(serialize_schematic);
1512 }