]> git.lizzy.rs Git - dragonfireclient.git/blob - src/script/lua_api/l_mapgen.cpp
Add MapSettingsManager and new mapgen setting script API functions
[dragonfireclient.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, std::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         std::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                 std::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, std::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->sidelen    = getintfield_default(L, index, "sidelen", 8);
906         if (deco->sidelen <= 0) {
907                 errorstream << "register_decoration: sidelen must be "
908                         "greater than 0" << std::endl;
909                 delete deco;
910                 return 0;
911         }
912
913         //// Get node name(s) to place decoration on
914         size_t nread = getstringlistfield(L, index, "place_on", &deco->m_nodenames);
915         deco->m_nnlistsizes.push_back(nread);
916
917         //// Get decoration flags
918         getflagsfield(L, index, "flags", flagdesc_deco, &deco->flags, NULL);
919
920         //// Get NoiseParams to define how decoration is placed
921         lua_getfield(L, index, "noise_params");
922         if (read_noiseparams(L, -1, &deco->np))
923                 deco->flags |= DECO_USE_NOISE;
924         lua_pop(L, 1);
925
926         //// Get biomes associated with this decoration (if any)
927         lua_getfield(L, index, "biomes");
928         if (get_biome_list(L, -1, biomemgr, &deco->biomes))
929                 errorstream << "register_decoration: couldn't get all biomes " << std::endl;
930         lua_pop(L, 1);
931
932         //// Handle decoration type-specific parameters
933         bool success = false;
934         switch (decotype) {
935         case DECO_SIMPLE:
936                 success = read_deco_simple(L, (DecoSimple *)deco);
937                 break;
938         case DECO_SCHEMATIC:
939                 success = read_deco_schematic(L, schemmgr, (DecoSchematic *)deco);
940                 break;
941         case DECO_LSYSTEM:
942                 break;
943         }
944
945         if (!success) {
946                 delete deco;
947                 return 0;
948         }
949
950         ndef->pendNodeResolve(deco);
951
952         ObjDefHandle handle = decomgr->add(deco);
953         if (handle == OBJDEF_INVALID_HANDLE) {
954                 delete deco;
955                 return 0;
956         }
957
958         lua_pushinteger(L, handle);
959         return 1;
960 }
961
962
963 bool read_deco_simple(lua_State *L, DecoSimple *deco)
964 {
965         size_t nnames;
966         int index = 1;
967
968         deco->deco_height     = getintfield_default(L, index, "height", 1);
969         deco->deco_height_max = getintfield_default(L, index, "height_max", 0);
970         deco->nspawnby        = getintfield_default(L, index, "num_spawn_by", -1);
971
972         if (deco->deco_height <= 0) {
973                 errorstream << "register_decoration: simple decoration height"
974                         " must be greater than 0" << std::endl;
975                 return false;
976         }
977
978         nnames = getstringlistfield(L, index, "decoration", &deco->m_nodenames);
979         deco->m_nnlistsizes.push_back(nnames);
980         if (nnames == 0) {
981                 errorstream << "register_decoration: no decoration nodes "
982                         "defined" << std::endl;
983                 return false;
984         }
985
986         nnames = getstringlistfield(L, index, "spawn_by", &deco->m_nodenames);
987         deco->m_nnlistsizes.push_back(nnames);
988         if (nnames == 0 && deco->nspawnby != -1) {
989                 errorstream << "register_decoration: no spawn_by nodes defined,"
990                         " but num_spawn_by specified" << std::endl;
991                 return false;
992         }
993
994         return true;
995 }
996
997
998 bool read_deco_schematic(lua_State *L, SchematicManager *schemmgr, DecoSchematic *deco)
999 {
1000         int index = 1;
1001
1002         deco->rotation = (Rotation)getenumfield(L, index, "rotation",
1003                 ModApiMapgen::es_Rotation, ROTATE_0);
1004
1005         StringMap replace_names;
1006         lua_getfield(L, index, "replacements");
1007         if (lua_istable(L, -1))
1008                 read_schematic_replacements(L, -1, &replace_names);
1009         lua_pop(L, 1);
1010
1011         lua_getfield(L, index, "schematic");
1012         Schematic *schem = get_or_load_schematic(L, -1, schemmgr, &replace_names);
1013         lua_pop(L, 1);
1014
1015         deco->schematic = schem;
1016         return schem != NULL;
1017 }
1018
1019
1020 // register_ore({lots of stuff})
1021 int ModApiMapgen::l_register_ore(lua_State *L)
1022 {
1023         NO_MAP_LOCK_REQUIRED;
1024
1025         int index = 1;
1026         luaL_checktype(L, index, LUA_TTABLE);
1027
1028         INodeDefManager *ndef = getServer(L)->getNodeDefManager();
1029         BiomeManager *bmgr    = getServer(L)->getEmergeManager()->biomemgr;
1030         OreManager *oremgr    = getServer(L)->getEmergeManager()->oremgr;
1031
1032         enum OreType oretype = (OreType)getenumfield(L, index,
1033                                 "ore_type", es_OreType, ORE_SCATTER);
1034         Ore *ore = oremgr->create(oretype);
1035         if (!ore) {
1036                 errorstream << "register_ore: ore_type " << oretype << " not implemented\n";
1037                 return 0;
1038         }
1039
1040         ore->name           = getstringfield_default(L, index, "name", "");
1041         ore->ore_param2     = (u8)getintfield_default(L, index, "ore_param2", 0);
1042         ore->clust_scarcity = getintfield_default(L, index, "clust_scarcity", 1);
1043         ore->clust_num_ores = getintfield_default(L, index, "clust_num_ores", 1);
1044         ore->clust_size     = getintfield_default(L, index, "clust_size", 0);
1045         ore->noise          = NULL;
1046         ore->flags          = 0;
1047
1048         //// Get noise_threshold
1049         warn_if_field_exists(L, index, "noise_threshhold",
1050                 "Deprecated: new name is \"noise_threshold\".");
1051
1052         float nthresh;
1053         if (!getfloatfield(L, index, "noise_threshold", nthresh) &&
1054                         !getfloatfield(L, index, "noise_threshhold", nthresh))
1055                 nthresh = 0;
1056         ore->nthresh = nthresh;
1057
1058         //// Get y_min/y_max
1059         warn_if_field_exists(L, index, "height_min",
1060                 "Deprecated: new name is \"y_min\".");
1061         warn_if_field_exists(L, index, "height_max",
1062                 "Deprecated: new name is \"y_max\".");
1063
1064         int ymin, ymax;
1065         if (!getintfield(L, index, "y_min", ymin) &&
1066                 !getintfield(L, index, "height_min", ymin))
1067                 ymin = -31000;
1068         if (!getintfield(L, index, "y_max", ymax) &&
1069                 !getintfield(L, index, "height_max", ymax))
1070                 ymax = 31000;
1071         ore->y_min = ymin;
1072         ore->y_max = ymax;
1073
1074         if (ore->clust_scarcity <= 0 || ore->clust_num_ores <= 0) {
1075                 errorstream << "register_ore: clust_scarcity and clust_num_ores"
1076                         "must be greater than 0" << std::endl;
1077                 delete ore;
1078                 return 0;
1079         }
1080
1081         //// Get flags
1082         getflagsfield(L, index, "flags", flagdesc_ore, &ore->flags, NULL);
1083
1084         //// Get biomes associated with this decoration (if any)
1085         lua_getfield(L, index, "biomes");
1086         if (get_biome_list(L, -1, bmgr, &ore->biomes))
1087                 errorstream << "register_ore: couldn't get all biomes " << std::endl;
1088         lua_pop(L, 1);
1089
1090         //// Get noise parameters if needed
1091         lua_getfield(L, index, "noise_params");
1092         if (read_noiseparams(L, -1, &ore->np)) {
1093                 ore->flags |= OREFLAG_USE_NOISE;
1094         } else if (ore->NEEDS_NOISE) {
1095                 errorstream << "register_ore: specified ore type requires valid "
1096                         "noise parameters" << std::endl;
1097                 delete ore;
1098                 return 0;
1099         }
1100         lua_pop(L, 1);
1101
1102         //// Get type-specific parameters
1103         switch (oretype) {
1104                 case ORE_SHEET: {
1105                         OreSheet *oresheet = (OreSheet *)ore;
1106
1107                         oresheet->column_height_min = getintfield_default(L, index,
1108                                 "column_height_min", 1);
1109                         oresheet->column_height_max = getintfield_default(L, index,
1110                                 "column_height_max", ore->clust_size);
1111                         oresheet->column_midpoint_factor = getfloatfield_default(L, index,
1112                                 "column_midpoint_factor", 0.5f);
1113
1114                         break;
1115                 }
1116                 case ORE_PUFF: {
1117                         OrePuff *orepuff = (OrePuff *)ore;
1118
1119                         lua_getfield(L, index, "np_puff_top");
1120                         read_noiseparams(L, -1, &orepuff->np_puff_top);
1121                         lua_pop(L, 1);
1122
1123                         lua_getfield(L, index, "np_puff_bottom");
1124                         read_noiseparams(L, -1, &orepuff->np_puff_bottom);
1125                         lua_pop(L, 1);
1126
1127                         break;
1128                 }
1129                 case ORE_VEIN: {
1130                         OreVein *orevein = (OreVein *)ore;
1131
1132                         orevein->random_factor = getfloatfield_default(L, index,
1133                                 "random_factor", 1.f);
1134
1135                         break;
1136                 }
1137                 default:
1138                         break;
1139         }
1140
1141         ObjDefHandle handle = oremgr->add(ore);
1142         if (handle == OBJDEF_INVALID_HANDLE) {
1143                 delete ore;
1144                 return 0;
1145         }
1146
1147         ore->m_nodenames.push_back(getstringfield_default(L, index, "ore", ""));
1148
1149         size_t nnames = getstringlistfield(L, index, "wherein", &ore->m_nodenames);
1150         ore->m_nnlistsizes.push_back(nnames);
1151
1152         ndef->pendNodeResolve(ore);
1153
1154         lua_pushinteger(L, handle);
1155         return 1;
1156 }
1157
1158
1159 // register_schematic({schematic}, replacements={})
1160 int ModApiMapgen::l_register_schematic(lua_State *L)
1161 {
1162         NO_MAP_LOCK_REQUIRED;
1163
1164         SchematicManager *schemmgr = getServer(L)->getEmergeManager()->schemmgr;
1165
1166         StringMap replace_names;
1167         if (lua_istable(L, 2))
1168                 read_schematic_replacements(L, 2, &replace_names);
1169
1170         Schematic *schem = load_schematic(L, 1, schemmgr->getNodeDef(),
1171                 &replace_names);
1172         if (!schem)
1173                 return 0;
1174
1175         ObjDefHandle handle = schemmgr->add(schem);
1176         if (handle == OBJDEF_INVALID_HANDLE) {
1177                 delete schem;
1178                 return 0;
1179         }
1180
1181         lua_pushinteger(L, handle);
1182         return 1;
1183 }
1184
1185
1186 // clear_registered_biomes()
1187 int ModApiMapgen::l_clear_registered_biomes(lua_State *L)
1188 {
1189         NO_MAP_LOCK_REQUIRED;
1190
1191         BiomeManager *bmgr = getServer(L)->getEmergeManager()->biomemgr;
1192         bmgr->clear();
1193         return 0;
1194 }
1195
1196
1197 // clear_registered_decorations()
1198 int ModApiMapgen::l_clear_registered_decorations(lua_State *L)
1199 {
1200         NO_MAP_LOCK_REQUIRED;
1201
1202         DecorationManager *dmgr = getServer(L)->getEmergeManager()->decomgr;
1203         dmgr->clear();
1204         return 0;
1205 }
1206
1207
1208 // clear_registered_ores()
1209 int ModApiMapgen::l_clear_registered_ores(lua_State *L)
1210 {
1211         NO_MAP_LOCK_REQUIRED;
1212
1213         OreManager *omgr = getServer(L)->getEmergeManager()->oremgr;
1214         omgr->clear();
1215         return 0;
1216 }
1217
1218
1219 // clear_registered_schematics()
1220 int ModApiMapgen::l_clear_registered_schematics(lua_State *L)
1221 {
1222         NO_MAP_LOCK_REQUIRED;
1223
1224         SchematicManager *smgr = getServer(L)->getEmergeManager()->schemmgr;
1225         smgr->clear();
1226         return 0;
1227 }
1228
1229
1230 // generate_ores(vm, p1, p2, [ore_id])
1231 int ModApiMapgen::l_generate_ores(lua_State *L)
1232 {
1233         NO_MAP_LOCK_REQUIRED;
1234
1235         EmergeManager *emerge = getServer(L)->getEmergeManager();
1236
1237         Mapgen mg;
1238         mg.seed = emerge->mgparams->seed;
1239         mg.vm   = LuaVoxelManip::checkobject(L, 1)->vm;
1240         mg.ndef = getServer(L)->getNodeDefManager();
1241
1242         v3s16 pmin = lua_istable(L, 2) ? check_v3s16(L, 2) :
1243                         mg.vm->m_area.MinEdge + v3s16(1,1,1) * MAP_BLOCKSIZE;
1244         v3s16 pmax = lua_istable(L, 3) ? check_v3s16(L, 3) :
1245                         mg.vm->m_area.MaxEdge - v3s16(1,1,1) * MAP_BLOCKSIZE;
1246         sortBoxVerticies(pmin, pmax);
1247
1248         u32 blockseed = Mapgen::getBlockSeed(pmin, mg.seed);
1249
1250         emerge->oremgr->placeAllOres(&mg, blockseed, pmin, pmax);
1251
1252         return 0;
1253 }
1254
1255
1256 // generate_decorations(vm, p1, p2, [deco_id])
1257 int ModApiMapgen::l_generate_decorations(lua_State *L)
1258 {
1259         NO_MAP_LOCK_REQUIRED;
1260
1261         EmergeManager *emerge = getServer(L)->getEmergeManager();
1262
1263         Mapgen mg;
1264         mg.seed = emerge->mgparams->seed;
1265         mg.vm   = LuaVoxelManip::checkobject(L, 1)->vm;
1266         mg.ndef = getServer(L)->getNodeDefManager();
1267
1268         v3s16 pmin = lua_istable(L, 2) ? check_v3s16(L, 2) :
1269                         mg.vm->m_area.MinEdge + v3s16(1,1,1) * MAP_BLOCKSIZE;
1270         v3s16 pmax = lua_istable(L, 3) ? check_v3s16(L, 3) :
1271                         mg.vm->m_area.MaxEdge - v3s16(1,1,1) * MAP_BLOCKSIZE;
1272         sortBoxVerticies(pmin, pmax);
1273
1274         u32 blockseed = Mapgen::getBlockSeed(pmin, mg.seed);
1275
1276         emerge->decomgr->placeAllDecos(&mg, blockseed, pmin, pmax);
1277
1278         return 0;
1279 }
1280
1281
1282 // create_schematic(p1, p2, probability_list, filename, y_slice_prob_list)
1283 int ModApiMapgen::l_create_schematic(lua_State *L)
1284 {
1285         MAP_LOCK_REQUIRED;
1286
1287         INodeDefManager *ndef = getServer(L)->getNodeDefManager();
1288
1289         const char *filename = luaL_checkstring(L, 4);
1290         CHECK_SECURE_PATH_OPTIONAL(L, filename);
1291
1292         Map *map = &(getEnv(L)->getMap());
1293         Schematic schem;
1294
1295         v3s16 p1 = check_v3s16(L, 1);
1296         v3s16 p2 = check_v3s16(L, 2);
1297         sortBoxVerticies(p1, p2);
1298
1299         std::vector<std::pair<v3s16, u8> > prob_list;
1300         if (lua_istable(L, 3)) {
1301                 lua_pushnil(L);
1302                 while (lua_next(L, 3)) {
1303                         if (lua_istable(L, -1)) {
1304                                 lua_getfield(L, -1, "pos");
1305                                 v3s16 pos = check_v3s16(L, -1);
1306                                 lua_pop(L, 1);
1307
1308                                 u8 prob = getintfield_default(L, -1, "prob", MTSCHEM_PROB_ALWAYS);
1309                                 prob_list.push_back(std::make_pair(pos, prob));
1310                         }
1311
1312                         lua_pop(L, 1);
1313                 }
1314         }
1315
1316         std::vector<std::pair<s16, u8> > slice_prob_list;
1317         if (lua_istable(L, 5)) {
1318                 lua_pushnil(L);
1319                 while (lua_next(L, 5)) {
1320                         if (lua_istable(L, -1)) {
1321                                 s16 ypos = getintfield_default(L, -1, "ypos", 0);
1322                                 u8 prob  = getintfield_default(L, -1, "prob", MTSCHEM_PROB_ALWAYS);
1323                                 slice_prob_list.push_back(std::make_pair(ypos, prob));
1324                         }
1325
1326                         lua_pop(L, 1);
1327                 }
1328         }
1329
1330         if (!schem.getSchematicFromMap(map, p1, p2)) {
1331                 errorstream << "create_schematic: failed to get schematic "
1332                         "from map" << std::endl;
1333                 return 0;
1334         }
1335
1336         schem.applyProbabilities(p1, &prob_list, &slice_prob_list);
1337
1338         schem.saveSchematicToFile(filename, ndef);
1339         actionstream << "create_schematic: saved schematic file '"
1340                 << filename << "'." << std::endl;
1341
1342         lua_pushboolean(L, true);
1343         return 1;
1344 }
1345
1346
1347 // place_schematic(p, schematic, rotation, replacement)
1348 int ModApiMapgen::l_place_schematic(lua_State *L)
1349 {
1350         MAP_LOCK_REQUIRED;
1351
1352         Map *map = &(getEnv(L)->getMap());
1353         SchematicManager *schemmgr = getServer(L)->getEmergeManager()->schemmgr;
1354
1355         //// Read position
1356         v3s16 p = check_v3s16(L, 1);
1357
1358         //// Read rotation
1359         int rot = ROTATE_0;
1360         const char *enumstr = lua_tostring(L, 3);
1361         if (enumstr)
1362                 string_to_enum(es_Rotation, rot, std::string(enumstr));
1363
1364         //// Read force placement
1365         bool force_placement = true;
1366         if (lua_isboolean(L, 5))
1367                 force_placement = lua_toboolean(L, 5);
1368
1369         //// Read node replacements
1370         StringMap replace_names;
1371         if (lua_istable(L, 4))
1372                 read_schematic_replacements(L, 4, &replace_names);
1373
1374         //// Read schematic
1375         Schematic *schem = get_or_load_schematic(L, 2, schemmgr, &replace_names);
1376         if (!schem) {
1377                 errorstream << "place_schematic: failed to get schematic" << std::endl;
1378                 return 0;
1379         }
1380
1381         schem->placeOnMap(map, p, 0, (Rotation)rot, force_placement);
1382
1383         lua_pushboolean(L, true);
1384         return 1;
1385 }
1386
1387 int ModApiMapgen::l_place_schematic_on_vmanip(lua_State *L)
1388 {
1389         NO_MAP_LOCK_REQUIRED;
1390
1391         SchematicManager *schemmgr = getServer(L)->getEmergeManager()->schemmgr;
1392
1393         //// Read VoxelManip object
1394         MMVManip *vm = LuaVoxelManip::checkobject(L, 1)->vm;
1395
1396         //// Read position
1397         v3s16 p = check_v3s16(L, 2);
1398
1399         //// Read rotation
1400         int rot = ROTATE_0;
1401         const char *enumstr = lua_tostring(L, 4);
1402         if (enumstr)
1403                 string_to_enum(es_Rotation, rot, std::string(enumstr));
1404
1405         //// Read force placement
1406         bool force_placement = true;
1407         if (lua_isboolean(L, 6))
1408                 force_placement = lua_toboolean(L, 6);
1409
1410         //// Read node replacements
1411         StringMap replace_names;
1412         if (lua_istable(L, 5))
1413                 read_schematic_replacements(L, 5, &replace_names);
1414
1415         //// Read schematic
1416         Schematic *schem = get_or_load_schematic(L, 3, schemmgr, &replace_names);
1417         if (!schem) {
1418                 errorstream << "place_schematic: failed to get schematic" << std::endl;
1419                 return 0;
1420         }
1421
1422         bool schematic_did_fit = schem->placeOnVManip(
1423                 vm, p, 0, (Rotation)rot, force_placement);
1424
1425         lua_pushboolean(L, schematic_did_fit);
1426         return 1;
1427 }
1428
1429 // serialize_schematic(schematic, format, options={...})
1430 int ModApiMapgen::l_serialize_schematic(lua_State *L)
1431 {
1432         NO_MAP_LOCK_REQUIRED;
1433
1434         SchematicManager *schemmgr = getServer(L)->getEmergeManager()->schemmgr;
1435
1436         //// Read options
1437         bool use_comments = getboolfield_default(L, 3, "lua_use_comments", false);
1438         u32 indent_spaces = getintfield_default(L, 3, "lua_num_indent_spaces", 0);
1439
1440         //// Get schematic
1441         bool was_loaded = false;
1442         Schematic *schem = (Schematic *)get_objdef(L, 1, schemmgr);
1443         if (!schem) {
1444                 schem = load_schematic(L, 1, NULL, NULL);
1445                 was_loaded = true;
1446         }
1447         if (!schem) {
1448                 errorstream << "serialize_schematic: failed to get schematic" << std::endl;
1449                 return 0;
1450         }
1451
1452         //// Read format of definition to save as
1453         int schem_format = SCHEM_FMT_MTS;
1454         const char *enumstr = lua_tostring(L, 2);
1455         if (enumstr)
1456                 string_to_enum(es_SchematicFormatType, schem_format, std::string(enumstr));
1457
1458         //// Serialize to binary string
1459         std::ostringstream os(std::ios_base::binary);
1460         switch (schem_format) {
1461         case SCHEM_FMT_MTS:
1462                 schem->serializeToMts(&os, schem->m_nodenames);
1463                 break;
1464         case SCHEM_FMT_LUA:
1465                 schem->serializeToLua(&os, schem->m_nodenames,
1466                         use_comments, indent_spaces);
1467                 break;
1468         default:
1469                 return 0;
1470         }
1471
1472         if (was_loaded)
1473                 delete schem;
1474
1475         std::string ser = os.str();
1476         lua_pushlstring(L, ser.c_str(), ser.length());
1477         return 1;
1478 }
1479
1480
1481 void ModApiMapgen::Initialize(lua_State *L, int top)
1482 {
1483         API_FCT(get_biome_id);
1484         API_FCT(get_mapgen_object);
1485
1486         API_FCT(get_mapgen_params);
1487         API_FCT(set_mapgen_params);
1488         API_FCT(get_mapgen_setting);
1489         API_FCT(set_mapgen_setting);
1490         API_FCT(get_mapgen_setting_noiseparams);
1491         API_FCT(set_mapgen_setting_noiseparams);
1492         API_FCT(set_noiseparams);
1493         API_FCT(get_noiseparams);
1494         API_FCT(set_gen_notify);
1495         API_FCT(get_gen_notify);
1496
1497         API_FCT(register_biome);
1498         API_FCT(register_decoration);
1499         API_FCT(register_ore);
1500         API_FCT(register_schematic);
1501
1502         API_FCT(clear_registered_biomes);
1503         API_FCT(clear_registered_decorations);
1504         API_FCT(clear_registered_ores);
1505         API_FCT(clear_registered_schematics);
1506
1507         API_FCT(generate_ores);
1508         API_FCT(generate_decorations);
1509         API_FCT(create_schematic);
1510         API_FCT(place_schematic);
1511         API_FCT(place_schematic_on_vmanip);
1512         API_FCT(serialize_schematic);
1513 }