]> git.lizzy.rs Git - dragonfireclient.git/blob - src/script/lua_api/l_env.cpp
Add minetest.get_artificial_light and minetest.get_natural_light (#5680)
[dragonfireclient.git] / src / script / lua_api / l_env.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 <algorithm>
21 #include "lua_api/l_env.h"
22 #include "lua_api/l_internal.h"
23 #include "lua_api/l_nodemeta.h"
24 #include "lua_api/l_nodetimer.h"
25 #include "lua_api/l_noise.h"
26 #include "lua_api/l_vmanip.h"
27 #include "common/c_converter.h"
28 #include "common/c_content.h"
29 #include "scripting_server.h"
30 #include "environment.h"
31 #include "mapblock.h"
32 #include "server.h"
33 #include "nodedef.h"
34 #include "daynightratio.h"
35 #include "util/pointedthing.h"
36 #include "mapgen/treegen.h"
37 #include "emerge.h"
38 #include "pathfinder.h"
39 #include "face_position_cache.h"
40 #include "remoteplayer.h"
41 #include "server/luaentity_sao.h"
42 #include "server/player_sao.h"
43 #include "util/string.h"
44 #include "translation.h"
45 #ifndef SERVER
46 #include "client/client.h"
47 #endif
48
49 struct EnumString ModApiEnvMod::es_ClearObjectsMode[] =
50 {
51         {CLEAR_OBJECTS_MODE_FULL,  "full"},
52         {CLEAR_OBJECTS_MODE_QUICK, "quick"},
53         {0, NULL},
54 };
55
56 ///////////////////////////////////////////////////////////////////////////////
57
58
59 void LuaABM::trigger(ServerEnvironment *env, v3s16 p, MapNode n,
60                 u32 active_object_count, u32 active_object_count_wider)
61 {
62         ServerScripting *scriptIface = env->getScriptIface();
63         scriptIface->realityCheck();
64
65         lua_State *L = scriptIface->getStack();
66         sanity_check(lua_checkstack(L, 20));
67         StackUnroller stack_unroller(L);
68
69         int error_handler = PUSH_ERROR_HANDLER(L);
70
71         // Get registered_abms
72         lua_getglobal(L, "core");
73         lua_getfield(L, -1, "registered_abms");
74         luaL_checktype(L, -1, LUA_TTABLE);
75         lua_remove(L, -2); // Remove core
76
77         // Get registered_abms[m_id]
78         lua_pushinteger(L, m_id);
79         lua_gettable(L, -2);
80         if(lua_isnil(L, -1))
81                 FATAL_ERROR("");
82         lua_remove(L, -2); // Remove registered_abms
83
84         scriptIface->setOriginFromTable(-1);
85
86         // Call action
87         luaL_checktype(L, -1, LUA_TTABLE);
88         lua_getfield(L, -1, "action");
89         luaL_checktype(L, -1, LUA_TFUNCTION);
90         lua_remove(L, -2); // Remove registered_abms[m_id]
91         push_v3s16(L, p);
92         pushnode(L, n, env->getGameDef()->ndef());
93         lua_pushnumber(L, active_object_count);
94         lua_pushnumber(L, active_object_count_wider);
95
96         int result = lua_pcall(L, 4, 0, error_handler);
97         if (result)
98                 scriptIface->scriptError(result, "LuaABM::trigger");
99
100         lua_pop(L, 1); // Pop error handler
101 }
102
103 void LuaLBM::trigger(ServerEnvironment *env, v3s16 p, MapNode n)
104 {
105         ServerScripting *scriptIface = env->getScriptIface();
106         scriptIface->realityCheck();
107
108         lua_State *L = scriptIface->getStack();
109         sanity_check(lua_checkstack(L, 20));
110         StackUnroller stack_unroller(L);
111
112         int error_handler = PUSH_ERROR_HANDLER(L);
113
114         // Get registered_lbms
115         lua_getglobal(L, "core");
116         lua_getfield(L, -1, "registered_lbms");
117         luaL_checktype(L, -1, LUA_TTABLE);
118         lua_remove(L, -2); // Remove core
119
120         // Get registered_lbms[m_id]
121         lua_pushinteger(L, m_id);
122         lua_gettable(L, -2);
123         FATAL_ERROR_IF(lua_isnil(L, -1), "Entry with given id not found in registered_lbms table");
124         lua_remove(L, -2); // Remove registered_lbms
125
126         scriptIface->setOriginFromTable(-1);
127
128         // Call action
129         luaL_checktype(L, -1, LUA_TTABLE);
130         lua_getfield(L, -1, "action");
131         luaL_checktype(L, -1, LUA_TFUNCTION);
132         lua_remove(L, -2); // Remove registered_lbms[m_id]
133         push_v3s16(L, p);
134         pushnode(L, n, env->getGameDef()->ndef());
135
136         int result = lua_pcall(L, 2, 0, error_handler);
137         if (result)
138                 scriptIface->scriptError(result, "LuaLBM::trigger");
139
140         lua_pop(L, 1); // Pop error handler
141 }
142
143 int LuaRaycast::l_next(lua_State *L)
144 {
145         GET_PLAIN_ENV_PTR;
146
147         bool csm = false;
148 #ifndef SERVER
149         csm = getClient(L) != nullptr;
150 #endif
151
152         LuaRaycast *o = checkobject(L, 1);
153         PointedThing pointed;
154         env->continueRaycast(&o->state, &pointed);
155         if (pointed.type == POINTEDTHING_NOTHING)
156                 lua_pushnil(L);
157         else
158                 push_pointed_thing(L, pointed, csm, true);
159
160         return 1;
161 }
162
163 int LuaRaycast::create_object(lua_State *L)
164 {
165         NO_MAP_LOCK_REQUIRED;
166
167         bool objects = true;
168         bool liquids = false;
169
170         v3f pos1 = checkFloatPos(L, 1);
171         v3f pos2 = checkFloatPos(L, 2);
172         if (lua_isboolean(L, 3)) {
173                 objects = readParam<bool>(L, 3);
174         }
175         if (lua_isboolean(L, 4)) {
176                 liquids = readParam<bool>(L, 4);
177         }
178
179         LuaRaycast *o = new LuaRaycast(core::line3d<f32>(pos1, pos2),
180                 objects, liquids);
181
182         *(void **) (lua_newuserdata(L, sizeof(void *))) = o;
183         luaL_getmetatable(L, className);
184         lua_setmetatable(L, -2);
185         return 1;
186 }
187
188 LuaRaycast *LuaRaycast::checkobject(lua_State *L, int narg)
189 {
190         NO_MAP_LOCK_REQUIRED;
191
192         luaL_checktype(L, narg, LUA_TUSERDATA);
193         void *ud = luaL_checkudata(L, narg, className);
194         if (!ud)
195                 luaL_typerror(L, narg, className);
196         return *(LuaRaycast **) ud;
197 }
198
199 int LuaRaycast::gc_object(lua_State *L)
200 {
201         LuaRaycast *o = *(LuaRaycast **) (lua_touserdata(L, 1));
202         delete o;
203         return 0;
204 }
205
206 void LuaRaycast::Register(lua_State *L)
207 {
208         lua_newtable(L);
209         int methodtable = lua_gettop(L);
210         luaL_newmetatable(L, className);
211         int metatable = lua_gettop(L);
212
213         lua_pushliteral(L, "__metatable");
214         lua_pushvalue(L, methodtable);
215         lua_settable(L, metatable);
216
217         lua_pushliteral(L, "__index");
218         lua_pushvalue(L, methodtable);
219         lua_settable(L, metatable);
220
221         lua_pushliteral(L, "__gc");
222         lua_pushcfunction(L, gc_object);
223         lua_settable(L, metatable);
224
225         lua_pushliteral(L, "__call");
226         lua_pushcfunction(L, l_next);
227         lua_settable(L, metatable);
228
229         lua_pop(L, 1);
230
231         luaL_openlib(L, 0, methods, 0);
232         lua_pop(L, 1);
233
234         lua_register(L, className, create_object);
235 }
236
237 const char LuaRaycast::className[] = "Raycast";
238 const luaL_Reg LuaRaycast::methods[] =
239 {
240         luamethod(LuaRaycast, next),
241         { 0, 0 }
242 };
243
244 void LuaEmergeAreaCallback(v3s16 blockpos, EmergeAction action, void *param)
245 {
246         ScriptCallbackState *state = (ScriptCallbackState *)param;
247         assert(state != NULL);
248         assert(state->script != NULL);
249         assert(state->refcount > 0);
250
251         // state must be protected by envlock
252         Server *server = state->script->getServer();
253         MutexAutoLock envlock(server->m_env_mutex);
254
255         state->refcount--;
256
257         state->script->on_emerge_area_completion(blockpos, action, state);
258
259         if (state->refcount == 0)
260                 delete state;
261 }
262
263 // Exported functions
264
265 // set_node(pos, node)
266 // pos = {x=num, y=num, z=num}
267 int ModApiEnvMod::l_set_node(lua_State *L)
268 {
269         GET_ENV_PTR;
270
271         const NodeDefManager *ndef = env->getGameDef()->ndef();
272         // parameters
273         v3s16 pos = read_v3s16(L, 1);
274         MapNode n = readnode(L, 2, ndef);
275         // Do it
276         bool succeeded = env->setNode(pos, n);
277         lua_pushboolean(L, succeeded);
278         return 1;
279 }
280
281 // bulk_set_node([pos1, pos2, ...], node)
282 // pos = {x=num, y=num, z=num}
283 int ModApiEnvMod::l_bulk_set_node(lua_State *L)
284 {
285         GET_ENV_PTR;
286
287         const NodeDefManager *ndef = env->getGameDef()->ndef();
288         // parameters
289         if (!lua_istable(L, 1)) {
290                 return 0;
291         }
292
293         s32 len = lua_objlen(L, 1);
294         if (len == 0) {
295                 lua_pushboolean(L, true);
296                 return 1;
297         }
298
299         MapNode n = readnode(L, 2, ndef);
300
301         // Do it
302         bool succeeded = true;
303         for (s32 i = 1; i <= len; i++) {
304                 lua_rawgeti(L, 1, i);
305                 if (!env->setNode(read_v3s16(L, -1), n))
306                         succeeded = false;
307                 lua_pop(L, 1);
308         }
309
310         lua_pushboolean(L, succeeded);
311         return 1;
312 }
313
314 int ModApiEnvMod::l_add_node(lua_State *L)
315 {
316         return l_set_node(L);
317 }
318
319 // remove_node(pos)
320 // pos = {x=num, y=num, z=num}
321 int ModApiEnvMod::l_remove_node(lua_State *L)
322 {
323         GET_ENV_PTR;
324
325         // parameters
326         v3s16 pos = read_v3s16(L, 1);
327         // Do it
328         bool succeeded = env->removeNode(pos);
329         lua_pushboolean(L, succeeded);
330         return 1;
331 }
332
333 // swap_node(pos, node)
334 // pos = {x=num, y=num, z=num}
335 int ModApiEnvMod::l_swap_node(lua_State *L)
336 {
337         GET_ENV_PTR;
338
339         const NodeDefManager *ndef = env->getGameDef()->ndef();
340         // parameters
341         v3s16 pos = read_v3s16(L, 1);
342         MapNode n = readnode(L, 2, ndef);
343         // Do it
344         bool succeeded = env->swapNode(pos, n);
345         lua_pushboolean(L, succeeded);
346         return 1;
347 }
348
349 // get_node(pos)
350 // pos = {x=num, y=num, z=num}
351 int ModApiEnvMod::l_get_node(lua_State *L)
352 {
353         GET_ENV_PTR;
354
355         // pos
356         v3s16 pos = read_v3s16(L, 1);
357         // Do it
358         MapNode n = env->getMap().getNode(pos);
359         // Return node
360         pushnode(L, n, env->getGameDef()->ndef());
361         return 1;
362 }
363
364 // get_node_or_nil(pos)
365 // pos = {x=num, y=num, z=num}
366 int ModApiEnvMod::l_get_node_or_nil(lua_State *L)
367 {
368         GET_ENV_PTR;
369
370         // pos
371         v3s16 pos = read_v3s16(L, 1);
372         // Do it
373         bool pos_ok;
374         MapNode n = env->getMap().getNode(pos, &pos_ok);
375         if (pos_ok) {
376                 // Return node
377                 pushnode(L, n, env->getGameDef()->ndef());
378         } else {
379                 lua_pushnil(L);
380         }
381         return 1;
382 }
383
384 // get_node_light(pos, timeofday)
385 // pos = {x=num, y=num, z=num}
386 // timeofday: nil = current time, 0 = night, 0.5 = day
387 int ModApiEnvMod::l_get_node_light(lua_State *L)
388 {
389         GET_PLAIN_ENV_PTR;
390
391         // Do it
392         v3s16 pos = read_v3s16(L, 1);
393         u32 time_of_day = env->getTimeOfDay();
394         if(lua_isnumber(L, 2))
395                 time_of_day = 24000.0 * lua_tonumber(L, 2);
396         time_of_day %= 24000;
397         u32 dnr = time_to_daynight_ratio(time_of_day, true);
398
399         bool is_position_ok;
400         MapNode n = env->getMap().getNode(pos, &is_position_ok);
401         if (is_position_ok) {
402                 const NodeDefManager *ndef = env->getGameDef()->ndef();
403                 lua_pushinteger(L, n.getLightBlend(dnr, ndef));
404         } else {
405                 lua_pushnil(L);
406         }
407         return 1;
408 }
409
410
411 // get_natural_light(pos, timeofday)
412 // pos = {x=num, y=num, z=num}
413 // timeofday: nil = current time, 0 = night, 0.5 = day
414 int ModApiEnvMod::l_get_natural_light(lua_State *L)
415 {
416         GET_ENV_PTR;
417
418         v3s16 pos = read_v3s16(L, 1);
419
420         bool is_position_ok;
421         MapNode n = env->getMap().getNode(pos, &is_position_ok);
422         if (!is_position_ok)
423                 return 0;
424
425         // If the daylight is 0, nothing needs to be calculated
426         u8 daylight = n.param1 & 0x0f;
427         if (daylight == 0) {
428                 lua_pushinteger(L, 0);
429                 return 1;
430         }
431
432         u32 time_of_day;
433         if (lua_isnumber(L, 2)) {
434                 time_of_day = 24000.0 * lua_tonumber(L, 2);
435                 time_of_day %= 24000;
436         } else {
437                 time_of_day = env->getTimeOfDay();
438         }
439         u32 dnr = time_to_daynight_ratio(time_of_day, true);
440
441         // If it's the same as the artificial light, the sunlight needs to be
442         // searched for because the value may not emanate from the sun
443         if (daylight == n.param1 >> 4)
444                 daylight = env->findSunlight(pos);
445
446         lua_pushinteger(L, dnr * daylight / 1000);
447         return 1;
448 }
449
450 // place_node(pos, node)
451 // pos = {x=num, y=num, z=num}
452 int ModApiEnvMod::l_place_node(lua_State *L)
453 {
454         GET_ENV_PTR;
455
456         ScriptApiItem *scriptIfaceItem = getScriptApi<ScriptApiItem>(L);
457         Server *server = getServer(L);
458         const NodeDefManager *ndef = server->ndef();
459         IItemDefManager *idef = server->idef();
460
461         v3s16 pos = read_v3s16(L, 1);
462         MapNode n = readnode(L, 2, ndef);
463
464         // Don't attempt to load non-loaded area as of now
465         MapNode n_old = env->getMap().getNode(pos);
466         if(n_old.getContent() == CONTENT_IGNORE){
467                 lua_pushboolean(L, false);
468                 return 1;
469         }
470         // Create item to place
471         ItemStack item(ndef->get(n).name, 1, 0, idef);
472         // Make pointed position
473         PointedThing pointed;
474         pointed.type = POINTEDTHING_NODE;
475         pointed.node_abovesurface = pos;
476         pointed.node_undersurface = pos + v3s16(0,-1,0);
477         // Place it with a NULL placer (appears in Lua as nil)
478         bool success = scriptIfaceItem->item_OnPlace(item, nullptr, pointed);
479         lua_pushboolean(L, success);
480         return 1;
481 }
482
483 // dig_node(pos)
484 // pos = {x=num, y=num, z=num}
485 int ModApiEnvMod::l_dig_node(lua_State *L)
486 {
487         GET_ENV_PTR;
488
489         ScriptApiNode *scriptIfaceNode = getScriptApi<ScriptApiNode>(L);
490
491         v3s16 pos = read_v3s16(L, 1);
492
493         // Don't attempt to load non-loaded area as of now
494         MapNode n = env->getMap().getNode(pos);
495         if(n.getContent() == CONTENT_IGNORE){
496                 lua_pushboolean(L, false);
497                 return 1;
498         }
499         // Dig it out with a NULL digger (appears in Lua as a
500         // non-functional ObjectRef)
501         bool success = scriptIfaceNode->node_on_dig(pos, n, NULL);
502         lua_pushboolean(L, success);
503         return 1;
504 }
505
506 // punch_node(pos)
507 // pos = {x=num, y=num, z=num}
508 int ModApiEnvMod::l_punch_node(lua_State *L)
509 {
510         GET_ENV_PTR;
511
512         ScriptApiNode *scriptIfaceNode = getScriptApi<ScriptApiNode>(L);
513
514         v3s16 pos = read_v3s16(L, 1);
515
516         // Don't attempt to load non-loaded area as of now
517         MapNode n = env->getMap().getNode(pos);
518         if(n.getContent() == CONTENT_IGNORE){
519                 lua_pushboolean(L, false);
520                 return 1;
521         }
522         // Punch it with a NULL puncher (appears in Lua as a non-functional
523         // ObjectRef)
524         bool success = scriptIfaceNode->node_on_punch(pos, n, NULL, PointedThing());
525         lua_pushboolean(L, success);
526         return 1;
527 }
528
529 // get_node_max_level(pos)
530 // pos = {x=num, y=num, z=num}
531 int ModApiEnvMod::l_get_node_max_level(lua_State *L)
532 {
533         GET_PLAIN_ENV_PTR;
534
535         v3s16 pos = read_v3s16(L, 1);
536         MapNode n = env->getMap().getNode(pos);
537         lua_pushnumber(L, n.getMaxLevel(env->getGameDef()->ndef()));
538         return 1;
539 }
540
541 // get_node_level(pos)
542 // pos = {x=num, y=num, z=num}
543 int ModApiEnvMod::l_get_node_level(lua_State *L)
544 {
545         GET_PLAIN_ENV_PTR;
546
547         v3s16 pos = read_v3s16(L, 1);
548         MapNode n = env->getMap().getNode(pos);
549         lua_pushnumber(L, n.getLevel(env->getGameDef()->ndef()));
550         return 1;
551 }
552
553 // set_node_level(pos, level)
554 // pos = {x=num, y=num, z=num}
555 // level: 0..63
556 int ModApiEnvMod::l_set_node_level(lua_State *L)
557 {
558         GET_ENV_PTR;
559
560         v3s16 pos = read_v3s16(L, 1);
561         u8 level = 1;
562         if(lua_isnumber(L, 2))
563                 level = lua_tonumber(L, 2);
564         MapNode n = env->getMap().getNode(pos);
565         lua_pushnumber(L, n.setLevel(env->getGameDef()->ndef(), level));
566         env->setNode(pos, n);
567         return 1;
568 }
569
570 // add_node_level(pos, level)
571 // pos = {x=num, y=num, z=num}
572 // level: -127..127
573 int ModApiEnvMod::l_add_node_level(lua_State *L)
574 {
575         GET_ENV_PTR;
576
577         v3s16 pos = read_v3s16(L, 1);
578         s16 level = 1;
579         if(lua_isnumber(L, 2))
580                 level = lua_tonumber(L, 2);
581         MapNode n = env->getMap().getNode(pos);
582         lua_pushnumber(L, n.addLevel(env->getGameDef()->ndef(), level));
583         env->setNode(pos, n);
584         return 1;
585 }
586
587 // find_nodes_with_meta(pos1, pos2)
588 int ModApiEnvMod::l_find_nodes_with_meta(lua_State *L)
589 {
590         GET_PLAIN_ENV_PTR;
591
592         std::vector<v3s16> positions = env->getMap().findNodesWithMetadata(
593                 check_v3s16(L, 1), check_v3s16(L, 2));
594
595         lua_createtable(L, positions.size(), 0);
596         for (size_t i = 0; i != positions.size(); i++) {
597                 push_v3s16(L, positions[i]);
598                 lua_rawseti(L, -2, i + 1);
599         }
600
601         return 1;
602 }
603
604 // get_meta(pos)
605 int ModApiEnvMod::l_get_meta(lua_State *L)
606 {
607         GET_ENV_PTR;
608
609         // Do it
610         v3s16 p = read_v3s16(L, 1);
611         NodeMetaRef::create(L, p, env);
612         return 1;
613 }
614
615 // get_node_timer(pos)
616 int ModApiEnvMod::l_get_node_timer(lua_State *L)
617 {
618         GET_ENV_PTR;
619
620         // Do it
621         v3s16 p = read_v3s16(L, 1);
622         NodeTimerRef::create(L, p, &env->getServerMap());
623         return 1;
624 }
625
626 // add_entity(pos, entityname, [staticdata]) -> ObjectRef or nil
627 // pos = {x=num, y=num, z=num}
628 int ModApiEnvMod::l_add_entity(lua_State *L)
629 {
630         GET_ENV_PTR;
631
632         v3f pos = checkFloatPos(L, 1);
633         const char *name = luaL_checkstring(L, 2);
634         const char *staticdata = luaL_optstring(L, 3, "");
635
636         ServerActiveObject *obj = new LuaEntitySAO(env, pos, name, staticdata);
637         int objectid = env->addActiveObject(obj);
638         // If failed to add, return nothing (reads as nil)
639         if(objectid == 0)
640                 return 0;
641
642         // If already deleted (can happen in on_activate), return nil
643         if (obj->isGone())
644                 return 0;
645         getScriptApiBase(L)->objectrefGetOrCreate(L, obj);
646         return 1;
647 }
648
649 // add_item(pos, itemstack or itemstring or table) -> ObjectRef or nil
650 // pos = {x=num, y=num, z=num}
651 int ModApiEnvMod::l_add_item(lua_State *L)
652 {
653         GET_ENV_PTR;
654
655         // pos
656         //v3f pos = checkFloatPos(L, 1);
657         // item
658         ItemStack item = read_item(L, 2,getServer(L)->idef());
659         if(item.empty() || !item.isKnown(getServer(L)->idef()))
660                 return 0;
661
662         int error_handler = PUSH_ERROR_HANDLER(L);
663
664         // Use spawn_item to spawn a __builtin:item
665         lua_getglobal(L, "core");
666         lua_getfield(L, -1, "spawn_item");
667         lua_remove(L, -2); // Remove core
668         if(lua_isnil(L, -1))
669                 return 0;
670         lua_pushvalue(L, 1);
671         lua_pushstring(L, item.getItemString().c_str());
672
673         PCALL_RESL(L, lua_pcall(L, 2, 1, error_handler));
674
675         lua_remove(L, error_handler);
676         return 1;
677 }
678
679 // get_connected_players()
680 int ModApiEnvMod::l_get_connected_players(lua_State *L)
681 {
682         ServerEnvironment *env = (ServerEnvironment *) getEnv(L);
683         if (!env) {
684                 log_deprecated(L, "Calling get_connected_players() at mod load time"
685                                 " is deprecated");
686                 lua_createtable(L, 0, 0);
687                 return 1;
688         }
689
690         lua_createtable(L, env->getPlayerCount(), 0);
691         u32 i = 0;
692         for (RemotePlayer *player : env->getPlayers()) {
693                 if (player->getPeerId() == PEER_ID_INEXISTENT)
694                         continue;
695                 PlayerSAO *sao = player->getPlayerSAO();
696                 if (sao && !sao->isGone()) {
697                         getScriptApiBase(L)->objectrefGetOrCreate(L, sao);
698                         lua_rawseti(L, -2, ++i);
699                 }
700         }
701         return 1;
702 }
703
704 // get_player_by_name(name)
705 int ModApiEnvMod::l_get_player_by_name(lua_State *L)
706 {
707         GET_ENV_PTR;
708
709         // Do it
710         const char *name = luaL_checkstring(L, 1);
711         RemotePlayer *player = env->getPlayer(name);
712         if (!player || player->getPeerId() == PEER_ID_INEXISTENT)
713                 return 0;
714         PlayerSAO *sao = player->getPlayerSAO();
715         if (!sao || sao->isGone())
716                 return 0;
717         // Put player on stack
718         getScriptApiBase(L)->objectrefGetOrCreate(L, sao);
719         return 1;
720 }
721
722 // get_objects_inside_radius(pos, radius)
723 int ModApiEnvMod::l_get_objects_inside_radius(lua_State *L)
724 {
725         GET_ENV_PTR;
726         ScriptApiBase *script = getScriptApiBase(L);
727
728         // Do it
729         v3f pos = checkFloatPos(L, 1);
730         float radius = readParam<float>(L, 2) * BS;
731         std::vector<ServerActiveObject *> objs;
732
733         auto include_obj_cb = [](ServerActiveObject *obj){ return !obj->isGone(); };
734         env->getObjectsInsideRadius(objs, pos, radius, include_obj_cb);
735
736         int i = 0;
737         lua_createtable(L, objs.size(), 0);
738         for (const auto obj : objs) {
739                 // Insert object reference into table
740                 script->objectrefGetOrCreate(L, obj);
741                 lua_rawseti(L, -2, ++i);
742         }
743         return 1;
744 }
745
746 // set_timeofday(val)
747 // val = 0...1
748 int ModApiEnvMod::l_set_timeofday(lua_State *L)
749 {
750         GET_ENV_PTR;
751
752         // Do it
753         float timeofday_f = readParam<float>(L, 1);
754         sanity_check(timeofday_f >= 0.0 && timeofday_f <= 1.0);
755         int timeofday_mh = (int)(timeofday_f * 24000.0);
756         // This should be set directly in the environment but currently
757         // such changes aren't immediately sent to the clients, so call
758         // the server instead.
759         //env->setTimeOfDay(timeofday_mh);
760         getServer(L)->setTimeOfDay(timeofday_mh);
761         return 0;
762 }
763
764 // get_timeofday() -> 0...1
765 int ModApiEnvMod::l_get_timeofday(lua_State *L)
766 {
767         GET_PLAIN_ENV_PTR;
768
769         // Do it
770         int timeofday_mh = env->getTimeOfDay();
771         float timeofday_f = (float)timeofday_mh / 24000.0f;
772         lua_pushnumber(L, timeofday_f);
773         return 1;
774 }
775
776 // get_day_count() -> int
777 int ModApiEnvMod::l_get_day_count(lua_State *L)
778 {
779         GET_PLAIN_ENV_PTR;
780
781         lua_pushnumber(L, env->getDayCount());
782         return 1;
783 }
784
785 // get_gametime()
786 int ModApiEnvMod::l_get_gametime(lua_State *L)
787 {
788         GET_ENV_PTR;
789
790         int game_time = env->getGameTime();
791         lua_pushnumber(L, game_time);
792         return 1;
793 }
794
795 void ModApiEnvMod::collectNodeIds(lua_State *L, int idx, const NodeDefManager *ndef,
796         std::vector<content_t> &filter)
797 {
798         if (lua_istable(L, idx)) {
799                 lua_pushnil(L);
800                 while (lua_next(L, idx) != 0) {
801                         // key at index -2 and value at index -1
802                         luaL_checktype(L, -1, LUA_TSTRING);
803                         ndef->getIds(readParam<std::string>(L, -1), filter);
804                         // removes value, keeps key for next iteration
805                         lua_pop(L, 1);
806                 }
807         } else if (lua_isstring(L, idx)) {
808                 ndef->getIds(readParam<std::string>(L, 3), filter);
809         }
810 }
811
812 // find_node_near(pos, radius, nodenames, [search_center]) -> pos or nil
813 // nodenames: eg. {"ignore", "group:tree"} or "default:dirt"
814 int ModApiEnvMod::l_find_node_near(lua_State *L)
815 {
816         GET_PLAIN_ENV_PTR;
817
818         const NodeDefManager *ndef = env->getGameDef()->ndef();
819         Map &map = env->getMap();
820
821         v3s16 pos = read_v3s16(L, 1);
822         int radius = luaL_checkinteger(L, 2);
823         std::vector<content_t> filter;
824         collectNodeIds(L, 3, ndef, filter);
825
826         int start_radius = (lua_isboolean(L, 4) && readParam<bool>(L, 4)) ? 0 : 1;
827
828 #ifndef SERVER
829         // Client API limitations
830         if (Client *client = getClient(L))
831                 radius = client->CSMClampRadius(pos, radius);
832 #endif
833
834         for (int d = start_radius; d <= radius; d++) {
835                 const std::vector<v3s16> &list = FacePositionCache::getFacePositions(d);
836                 for (const v3s16 &i : list) {
837                         v3s16 p = pos + i;
838                         content_t c = map.getNode(p).getContent();
839                         if (CONTAINS(filter, c)) {
840                                 push_v3s16(L, p);
841                                 return 1;
842                         }
843                 }
844         }
845         return 0;
846 }
847
848 // find_nodes_in_area(minp, maxp, nodenames, [grouped])
849 int ModApiEnvMod::l_find_nodes_in_area(lua_State *L)
850 {
851         GET_PLAIN_ENV_PTR;
852
853         v3s16 minp = read_v3s16(L, 1);
854         v3s16 maxp = read_v3s16(L, 2);
855         sortBoxVerticies(minp, maxp);
856
857         const NodeDefManager *ndef = env->getGameDef()->ndef();
858         Map &map = env->getMap();
859
860 #ifndef SERVER
861         if (Client *client = getClient(L)) {
862                 minp = client->CSMClampPos(minp);
863                 maxp = client->CSMClampPos(maxp);
864         }
865 #endif
866
867         v3s16 cube = maxp - minp + 1;
868         // Volume limit equal to 8 default mapchunks, (80 * 2) ^ 3 = 4,096,000
869         if ((u64)cube.X * (u64)cube.Y * (u64)cube.Z > 4096000) {
870                 luaL_error(L, "find_nodes_in_area(): area volume"
871                                 " exceeds allowed value of 4096000");
872                 return 0;
873         }
874
875         std::vector<content_t> filter;
876         collectNodeIds(L, 3, ndef, filter);
877
878         bool grouped = lua_isboolean(L, 4) && readParam<bool>(L, 4);
879
880         if (grouped) {
881                 // create the table we will be returning
882                 lua_createtable(L, 0, filter.size());
883                 int base = lua_gettop(L);
884
885                 // create one table for each filter
886                 std::vector<u32> idx;
887                 idx.resize(filter.size());
888                 for (u32 i = 0; i < filter.size(); i++)
889                         lua_newtable(L);
890
891                 v3s16 p;
892                 for (p.X = minp.X; p.X <= maxp.X; p.X++)
893                 for (p.Y = minp.Y; p.Y <= maxp.Y; p.Y++)
894                 for (p.Z = minp.Z; p.Z <= maxp.Z; p.Z++) {
895                         content_t c = map.getNode(p).getContent();
896
897                         auto it = std::find(filter.begin(), filter.end(), c);
898                         if (it != filter.end()) {
899                                 // Calculate index of the table and append the position
900                                 u32 filt_index = it - filter.begin();
901                                 push_v3s16(L, p);
902                                 lua_rawseti(L, base + 1 + filt_index, ++idx[filt_index]);
903                         }
904                 }
905
906                 // last filter table is at top of stack
907                 u32 i = filter.size() - 1;
908                 do {
909                         if (idx[i] == 0) {
910                                 // No such node found -> drop the empty table
911                                 lua_pop(L, 1);
912                         } else {
913                                 // This node was found -> put table into the return table
914                                 lua_setfield(L, base, ndef->get(filter[i]).name.c_str());
915                         }
916                 } while (i-- != 0);
917
918                 assert(lua_gettop(L) == base);
919                 return 1;
920         } else {
921                 std::vector<u32> individual_count;
922                 individual_count.resize(filter.size());
923
924                 lua_newtable(L);
925                 u32 i = 0;
926                 v3s16 p;
927                 for (p.X = minp.X; p.X <= maxp.X; p.X++)
928                 for (p.Y = minp.Y; p.Y <= maxp.Y; p.Y++)
929                 for (p.Z = minp.Z; p.Z <= maxp.Z; p.Z++) {
930                         content_t c = env->getMap().getNode(p).getContent();
931
932                         auto it = std::find(filter.begin(), filter.end(), c);
933                         if (it != filter.end()) {
934                                 push_v3s16(L, p);
935                                 lua_rawseti(L, -2, ++i);
936
937                                 u32 filt_index = it - filter.begin();
938                                 individual_count[filt_index]++;
939                         }
940                 }
941
942                 lua_createtable(L, 0, filter.size());
943                 for (u32 i = 0; i < filter.size(); i++) {
944                         lua_pushinteger(L, individual_count[i]);
945                         lua_setfield(L, -2, ndef->get(filter[i]).name.c_str());
946                 }
947                 return 2;
948         }
949 }
950
951 // find_nodes_in_area_under_air(minp, maxp, nodenames) -> list of positions
952 // nodenames: e.g. {"ignore", "group:tree"} or "default:dirt"
953 int ModApiEnvMod::l_find_nodes_in_area_under_air(lua_State *L)
954 {
955         /* Note: A similar but generalized (and therefore slower) version of this
956          * function could be created -- e.g. find_nodes_in_area_under -- which
957          * would accept a node name (or ID?) or list of names that the "above node"
958          * should be.
959          * TODO
960          */
961
962         GET_PLAIN_ENV_PTR;
963
964         v3s16 minp = read_v3s16(L, 1);
965         v3s16 maxp = read_v3s16(L, 2);
966         sortBoxVerticies(minp, maxp);
967
968         const NodeDefManager *ndef = env->getGameDef()->ndef();
969         Map &map = env->getMap();
970
971 #ifndef SERVER
972         if (Client *client = getClient(L)) {
973                 minp = client->CSMClampPos(minp);
974                 maxp = client->CSMClampPos(maxp);
975         }
976 #endif
977
978         v3s16 cube = maxp - minp + 1;
979         // Volume limit equal to 8 default mapchunks, (80 * 2) ^ 3 = 4,096,000
980         if ((u64)cube.X * (u64)cube.Y * (u64)cube.Z > 4096000) {
981                 luaL_error(L, "find_nodes_in_area_under_air(): area volume"
982                                 " exceeds allowed value of 4096000");
983                 return 0;
984         }
985
986         std::vector<content_t> filter;
987         collectNodeIds(L, 3, ndef, filter);
988
989         lua_newtable(L);
990         u32 i = 0;
991         v3s16 p;
992         for (p.X = minp.X; p.X <= maxp.X; p.X++)
993         for (p.Z = minp.Z; p.Z <= maxp.Z; p.Z++) {
994                 p.Y = minp.Y;
995                 content_t c = map.getNode(p).getContent();
996                 for (; p.Y <= maxp.Y; p.Y++) {
997                         v3s16 psurf(p.X, p.Y + 1, p.Z);
998                         content_t csurf = map.getNode(psurf).getContent();
999                         if (c != CONTENT_AIR && csurf == CONTENT_AIR &&
1000                                         CONTAINS(filter, c)) {
1001                                 push_v3s16(L, p);
1002                                 lua_rawseti(L, -2, ++i);
1003                         }
1004                         c = csurf;
1005                 }
1006         }
1007         return 1;
1008 }
1009
1010 // get_perlin(seeddiff, octaves, persistence, scale)
1011 // returns world-specific PerlinNoise
1012 int ModApiEnvMod::l_get_perlin(lua_State *L)
1013 {
1014         GET_ENV_PTR_NO_MAP_LOCK;
1015
1016         NoiseParams params;
1017
1018         if (lua_istable(L, 1)) {
1019                 read_noiseparams(L, 1, &params);
1020         } else {
1021                 params.seed    = luaL_checkint(L, 1);
1022                 params.octaves = luaL_checkint(L, 2);
1023                 params.persist = readParam<float>(L, 3);
1024                 params.spread  = v3f(1, 1, 1) * readParam<float>(L, 4);
1025         }
1026
1027         params.seed += (int)env->getServerMap().getSeed();
1028
1029         LuaPerlinNoise *n = new LuaPerlinNoise(&params);
1030         *(void **)(lua_newuserdata(L, sizeof(void *))) = n;
1031         luaL_getmetatable(L, "PerlinNoise");
1032         lua_setmetatable(L, -2);
1033         return 1;
1034 }
1035
1036 // get_perlin_map(noiseparams, size)
1037 // returns world-specific PerlinNoiseMap
1038 int ModApiEnvMod::l_get_perlin_map(lua_State *L)
1039 {
1040         GET_ENV_PTR_NO_MAP_LOCK;
1041
1042         NoiseParams np;
1043         if (!read_noiseparams(L, 1, &np))
1044                 return 0;
1045         v3s16 size = read_v3s16(L, 2);
1046
1047         s32 seed = (s32)(env->getServerMap().getSeed());
1048         LuaPerlinNoiseMap *n = new LuaPerlinNoiseMap(&np, seed, size);
1049         *(void **)(lua_newuserdata(L, sizeof(void *))) = n;
1050         luaL_getmetatable(L, "PerlinNoiseMap");
1051         lua_setmetatable(L, -2);
1052         return 1;
1053 }
1054
1055 // get_voxel_manip()
1056 // returns voxel manipulator
1057 int ModApiEnvMod::l_get_voxel_manip(lua_State *L)
1058 {
1059         GET_ENV_PTR;
1060
1061         Map *map = &(env->getMap());
1062         LuaVoxelManip *o = (lua_istable(L, 1) && lua_istable(L, 2)) ?
1063                 new LuaVoxelManip(map, read_v3s16(L, 1), read_v3s16(L, 2)) :
1064                 new LuaVoxelManip(map);
1065
1066         *(void **)(lua_newuserdata(L, sizeof(void *))) = o;
1067         luaL_getmetatable(L, "VoxelManip");
1068         lua_setmetatable(L, -2);
1069         return 1;
1070 }
1071
1072 // clear_objects([options])
1073 // clear all objects in the environment
1074 // where options = {mode = "full" or "quick"}
1075 int ModApiEnvMod::l_clear_objects(lua_State *L)
1076 {
1077         GET_ENV_PTR;
1078
1079         ClearObjectsMode mode = CLEAR_OBJECTS_MODE_QUICK;
1080         if (lua_istable(L, 1)) {
1081                 mode = (ClearObjectsMode)getenumfield(L, 1, "mode",
1082                         ModApiEnvMod::es_ClearObjectsMode, mode);
1083         }
1084
1085         env->clearObjects(mode);
1086         return 0;
1087 }
1088
1089 // line_of_sight(pos1, pos2) -> true/false, pos
1090 int ModApiEnvMod::l_line_of_sight(lua_State *L)
1091 {
1092         GET_PLAIN_ENV_PTR;
1093
1094         // read position 1 from lua
1095         v3f pos1 = checkFloatPos(L, 1);
1096         // read position 2 from lua
1097         v3f pos2 = checkFloatPos(L, 2);
1098
1099         v3s16 p;
1100
1101         bool success = env->line_of_sight(pos1, pos2, &p);
1102         lua_pushboolean(L, success);
1103         if (!success) {
1104                 push_v3s16(L, p);
1105                 return 2;
1106         }
1107         return 1;
1108 }
1109
1110 // fix_light(p1, p2)
1111 int ModApiEnvMod::l_fix_light(lua_State *L)
1112 {
1113         GET_ENV_PTR;
1114
1115         v3s16 blockpos1 = getContainerPos(read_v3s16(L, 1), MAP_BLOCKSIZE);
1116         v3s16 blockpos2 = getContainerPos(read_v3s16(L, 2), MAP_BLOCKSIZE);
1117         ServerMap &map = env->getServerMap();
1118         std::map<v3s16, MapBlock *> modified_blocks;
1119         bool success = true;
1120         v3s16 blockpos;
1121         for (blockpos.X = blockpos1.X; blockpos.X <= blockpos2.X; blockpos.X++)
1122         for (blockpos.Y = blockpos1.Y; blockpos.Y <= blockpos2.Y; blockpos.Y++)
1123         for (blockpos.Z = blockpos1.Z; blockpos.Z <= blockpos2.Z; blockpos.Z++) {
1124                 success = success & map.repairBlockLight(blockpos, &modified_blocks);
1125         }
1126         if (!modified_blocks.empty()) {
1127                 MapEditEvent event;
1128                 event.type = MEET_OTHER;
1129                 for (auto &modified_block : modified_blocks)
1130                         event.modified_blocks.insert(modified_block.first);
1131
1132                 map.dispatchEvent(event);
1133         }
1134         lua_pushboolean(L, success);
1135
1136         return 1;
1137 }
1138
1139 int ModApiEnvMod::l_raycast(lua_State *L)
1140 {
1141         return LuaRaycast::create_object(L);
1142 }
1143
1144 // load_area(p1, [p2])
1145 // load mapblocks in area p1..p2, but do not generate map
1146 int ModApiEnvMod::l_load_area(lua_State *L)
1147 {
1148         GET_ENV_PTR;
1149         MAP_LOCK_REQUIRED;
1150
1151         Map *map = &(env->getMap());
1152         v3s16 bp1 = getNodeBlockPos(check_v3s16(L, 1));
1153         if (!lua_istable(L, 2)) {
1154                 map->emergeBlock(bp1);
1155         } else {
1156                 v3s16 bp2 = getNodeBlockPos(check_v3s16(L, 2));
1157                 sortBoxVerticies(bp1, bp2);
1158                 for (s16 z = bp1.Z; z <= bp2.Z; z++)
1159                 for (s16 y = bp1.Y; y <= bp2.Y; y++)
1160                 for (s16 x = bp1.X; x <= bp2.X; x++) {
1161                         map->emergeBlock(v3s16(x, y, z));
1162                 }
1163         }
1164
1165         return 0;
1166 }
1167
1168 // emerge_area(p1, p2, [callback, context])
1169 // emerge mapblocks in area p1..p2, calls callback with context upon completion
1170 int ModApiEnvMod::l_emerge_area(lua_State *L)
1171 {
1172         GET_ENV_PTR;
1173
1174         EmergeCompletionCallback callback = NULL;
1175         ScriptCallbackState *state = NULL;
1176
1177         EmergeManager *emerge = getServer(L)->getEmergeManager();
1178
1179         v3s16 bpmin = getNodeBlockPos(read_v3s16(L, 1));
1180         v3s16 bpmax = getNodeBlockPos(read_v3s16(L, 2));
1181         sortBoxVerticies(bpmin, bpmax);
1182
1183         size_t num_blocks = VoxelArea(bpmin, bpmax).getVolume();
1184         assert(num_blocks != 0);
1185
1186         if (lua_isfunction(L, 3)) {
1187                 callback = LuaEmergeAreaCallback;
1188
1189                 lua_pushvalue(L, 3);
1190                 int callback_ref = luaL_ref(L, LUA_REGISTRYINDEX);
1191
1192                 lua_pushvalue(L, 4);
1193                 int args_ref = luaL_ref(L, LUA_REGISTRYINDEX);
1194
1195                 state = new ScriptCallbackState;
1196                 state->script       = getServer(L)->getScriptIface();
1197                 state->callback_ref = callback_ref;
1198                 state->args_ref     = args_ref;
1199                 state->refcount     = num_blocks;
1200                 state->origin       = getScriptApiBase(L)->getOrigin();
1201         }
1202
1203         for (s16 z = bpmin.Z; z <= bpmax.Z; z++)
1204         for (s16 y = bpmin.Y; y <= bpmax.Y; y++)
1205         for (s16 x = bpmin.X; x <= bpmax.X; x++) {
1206                 emerge->enqueueBlockEmergeEx(v3s16(x, y, z), PEER_ID_INEXISTENT,
1207                         BLOCK_EMERGE_ALLOW_GEN | BLOCK_EMERGE_FORCE_QUEUE, callback, state);
1208         }
1209
1210         return 0;
1211 }
1212
1213 // delete_area(p1, p2)
1214 // delete mapblocks in area p1..p2
1215 int ModApiEnvMod::l_delete_area(lua_State *L)
1216 {
1217         GET_ENV_PTR;
1218
1219         v3s16 bpmin = getNodeBlockPos(read_v3s16(L, 1));
1220         v3s16 bpmax = getNodeBlockPos(read_v3s16(L, 2));
1221         sortBoxVerticies(bpmin, bpmax);
1222
1223         ServerMap &map = env->getServerMap();
1224
1225         MapEditEvent event;
1226         event.type = MEET_OTHER;
1227
1228         bool success = true;
1229         for (s16 z = bpmin.Z; z <= bpmax.Z; z++)
1230         for (s16 y = bpmin.Y; y <= bpmax.Y; y++)
1231         for (s16 x = bpmin.X; x <= bpmax.X; x++) {
1232                 v3s16 bp(x, y, z);
1233                 if (map.deleteBlock(bp)) {
1234                         env->setStaticForActiveObjectsInBlock(bp, false);
1235                         event.modified_blocks.insert(bp);
1236                 } else {
1237                         success = false;
1238                 }
1239         }
1240
1241         map.dispatchEvent(event);
1242         lua_pushboolean(L, success);
1243         return 1;
1244 }
1245
1246 // find_path(pos1, pos2, searchdistance,
1247 //     max_jump, max_drop, algorithm) -> table containing path
1248 int ModApiEnvMod::l_find_path(lua_State *L)
1249 {
1250         GET_ENV_PTR;
1251
1252         v3s16 pos1                  = read_v3s16(L, 1);
1253         v3s16 pos2                  = read_v3s16(L, 2);
1254         unsigned int searchdistance = luaL_checkint(L, 3);
1255         unsigned int max_jump       = luaL_checkint(L, 4);
1256         unsigned int max_drop       = luaL_checkint(L, 5);
1257         PathAlgorithm algo          = PA_PLAIN_NP;
1258         if (!lua_isnoneornil(L, 6)) {
1259                 std::string algorithm = luaL_checkstring(L,6);
1260
1261                 if (algorithm == "A*")
1262                         algo = PA_PLAIN;
1263
1264                 if (algorithm == "Dijkstra")
1265                         algo = PA_DIJKSTRA;
1266         }
1267
1268         std::vector<v3s16> path = get_path(&env->getServerMap(), env->getGameDef()->ndef(), pos1, pos2,
1269                 searchdistance, max_jump, max_drop, algo);
1270
1271         if (!path.empty()) {
1272                 lua_createtable(L, path.size(), 0);
1273                 int top = lua_gettop(L);
1274                 unsigned int index = 1;
1275                 for (const v3s16 &i : path) {
1276                         lua_pushnumber(L,index);
1277                         push_v3s16(L, i);
1278                         lua_settable(L, top);
1279                         index++;
1280                 }
1281                 return 1;
1282         }
1283
1284         return 0;
1285 }
1286
1287 // spawn_tree(pos, treedef)
1288 int ModApiEnvMod::l_spawn_tree(lua_State *L)
1289 {
1290         GET_ENV_PTR;
1291
1292         v3s16 p0 = read_v3s16(L, 1);
1293
1294         treegen::TreeDef tree_def;
1295         std::string trunk,leaves,fruit;
1296         const NodeDefManager *ndef = env->getGameDef()->ndef();
1297
1298         if(lua_istable(L, 2))
1299         {
1300                 getstringfield(L, 2, "axiom", tree_def.initial_axiom);
1301                 getstringfield(L, 2, "rules_a", tree_def.rules_a);
1302                 getstringfield(L, 2, "rules_b", tree_def.rules_b);
1303                 getstringfield(L, 2, "rules_c", tree_def.rules_c);
1304                 getstringfield(L, 2, "rules_d", tree_def.rules_d);
1305                 getstringfield(L, 2, "trunk", trunk);
1306                 tree_def.trunknode=ndef->getId(trunk);
1307                 getstringfield(L, 2, "leaves", leaves);
1308                 tree_def.leavesnode=ndef->getId(leaves);
1309                 tree_def.leaves2_chance=0;
1310                 getstringfield(L, 2, "leaves2", leaves);
1311                 if (!leaves.empty()) {
1312                         tree_def.leaves2node=ndef->getId(leaves);
1313                         getintfield(L, 2, "leaves2_chance", tree_def.leaves2_chance);
1314                 }
1315                 getintfield(L, 2, "angle", tree_def.angle);
1316                 getintfield(L, 2, "iterations", tree_def.iterations);
1317                 if (!getintfield(L, 2, "random_level", tree_def.iterations_random_level))
1318                         tree_def.iterations_random_level = 0;
1319                 getstringfield(L, 2, "trunk_type", tree_def.trunk_type);
1320                 getboolfield(L, 2, "thin_branches", tree_def.thin_branches);
1321                 tree_def.fruit_chance=0;
1322                 getstringfield(L, 2, "fruit", fruit);
1323                 if (!fruit.empty()) {
1324                         tree_def.fruitnode=ndef->getId(fruit);
1325                         getintfield(L, 2, "fruit_chance",tree_def.fruit_chance);
1326                 }
1327                 tree_def.explicit_seed = getintfield(L, 2, "seed", tree_def.seed);
1328         }
1329         else
1330                 return 0;
1331
1332         ServerMap *map = &env->getServerMap();
1333         treegen::error e;
1334         if ((e = treegen::spawn_ltree (map, p0, ndef, tree_def)) != treegen::SUCCESS) {
1335                 if (e == treegen::UNBALANCED_BRACKETS) {
1336                         luaL_error(L, "spawn_tree(): closing ']' has no matching opening bracket");
1337                 } else {
1338                         luaL_error(L, "spawn_tree(): unknown error");
1339                 }
1340         }
1341
1342         return 1;
1343 }
1344
1345 // transforming_liquid_add(pos)
1346 int ModApiEnvMod::l_transforming_liquid_add(lua_State *L)
1347 {
1348         GET_ENV_PTR;
1349
1350         v3s16 p0 = read_v3s16(L, 1);
1351         env->getMap().transforming_liquid_add(p0);
1352         return 1;
1353 }
1354
1355 // forceload_block(blockpos)
1356 // blockpos = {x=num, y=num, z=num}
1357 int ModApiEnvMod::l_forceload_block(lua_State *L)
1358 {
1359         GET_ENV_PTR;
1360
1361         v3s16 blockpos = read_v3s16(L, 1);
1362         env->getForceloadedBlocks()->insert(blockpos);
1363         return 0;
1364 }
1365
1366 // forceload_free_block(blockpos)
1367 // blockpos = {x=num, y=num, z=num}
1368 int ModApiEnvMod::l_forceload_free_block(lua_State *L)
1369 {
1370         GET_ENV_PTR;
1371
1372         v3s16 blockpos = read_v3s16(L, 1);
1373         env->getForceloadedBlocks()->erase(blockpos);
1374         return 0;
1375 }
1376
1377 // get_translated_string(lang_code, string)
1378 int ModApiEnvMod::l_get_translated_string(lua_State * L)
1379 {
1380         GET_ENV_PTR;
1381         std::string lang_code = luaL_checkstring(L, 1);
1382         std::string string = luaL_checkstring(L, 2);
1383
1384         auto *translations = getServer(L)->getTranslationLanguage(lang_code);
1385         string = wide_to_utf8(translate_string(utf8_to_wide(string), translations));
1386         lua_pushstring(L, string.c_str());
1387         return 1;
1388 }
1389
1390 void ModApiEnvMod::Initialize(lua_State *L, int top)
1391 {
1392         API_FCT(set_node);
1393         API_FCT(bulk_set_node);
1394         API_FCT(add_node);
1395         API_FCT(swap_node);
1396         API_FCT(add_item);
1397         API_FCT(remove_node);
1398         API_FCT(get_node);
1399         API_FCT(get_node_or_nil);
1400         API_FCT(get_node_light);
1401         API_FCT(get_natural_light);
1402         API_FCT(place_node);
1403         API_FCT(dig_node);
1404         API_FCT(punch_node);
1405         API_FCT(get_node_max_level);
1406         API_FCT(get_node_level);
1407         API_FCT(set_node_level);
1408         API_FCT(add_node_level);
1409         API_FCT(add_entity);
1410         API_FCT(find_nodes_with_meta);
1411         API_FCT(get_meta);
1412         API_FCT(get_node_timer);
1413         API_FCT(get_connected_players);
1414         API_FCT(get_player_by_name);
1415         API_FCT(get_objects_inside_radius);
1416         API_FCT(set_timeofday);
1417         API_FCT(get_timeofday);
1418         API_FCT(get_gametime);
1419         API_FCT(get_day_count);
1420         API_FCT(find_node_near);
1421         API_FCT(find_nodes_in_area);
1422         API_FCT(find_nodes_in_area_under_air);
1423         API_FCT(fix_light);
1424         API_FCT(load_area);
1425         API_FCT(emerge_area);
1426         API_FCT(delete_area);
1427         API_FCT(get_perlin);
1428         API_FCT(get_perlin_map);
1429         API_FCT(get_voxel_manip);
1430         API_FCT(clear_objects);
1431         API_FCT(spawn_tree);
1432         API_FCT(find_path);
1433         API_FCT(line_of_sight);
1434         API_FCT(raycast);
1435         API_FCT(transforming_liquid_add);
1436         API_FCT(forceload_block);
1437         API_FCT(forceload_free_block);
1438         API_FCT(get_translated_string);
1439 }
1440
1441 void ModApiEnvMod::InitializeClient(lua_State *L, int top)
1442 {
1443         API_FCT(get_node_light);
1444         API_FCT(get_timeofday);
1445         API_FCT(get_node_max_level);
1446         API_FCT(get_node_level);
1447         API_FCT(find_nodes_with_meta);
1448         API_FCT(find_node_near);
1449         API_FCT(find_nodes_in_area);
1450         API_FCT(find_nodes_in_area_under_air);
1451         API_FCT(line_of_sight);
1452         API_FCT(raycast);
1453 }