]> git.lizzy.rs Git - dragonfireclient.git/blob - src/script/lua_api/l_env.cpp
Fix compiler warning about sign comparison
[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 "lua_api/l_env.h"
21 #include "lua_api/l_internal.h"
22 #include "lua_api/l_nodemeta.h"
23 #include "lua_api/l_nodetimer.h"
24 #include "lua_api/l_noise.h"
25 #include "lua_api/l_vmanip.h"
26 #include "common/c_converter.h"
27 #include "common/c_content.h"
28 #include "scripting_game.h"
29 #include "environment.h"
30 #include "server.h"
31 #include "nodedef.h"
32 #include "daynightratio.h"
33 #include "util/pointedthing.h"
34 #include "content_sao.h"
35 #include "treegen.h"
36 #include "pathfinder.h"
37
38 #define GET_ENV_PTR ServerEnvironment* env =                                   \
39                                 dynamic_cast<ServerEnvironment*>(getEnv(L));                   \
40                                 if (env == NULL) return 0
41
42 ///////////////////////////////////////////////////////////////////////////////
43
44
45 void LuaABM::trigger(ServerEnvironment *env, v3s16 p, MapNode n,
46                 u32 active_object_count, u32 active_object_count_wider)
47 {
48         GameScripting *scriptIface = env->getScriptIface();
49         scriptIface->realityCheck();
50
51         lua_State *L = scriptIface->getStack();
52         sanity_check(lua_checkstack(L, 20));
53         StackUnroller stack_unroller(L);
54
55         lua_pushcfunction(L, script_error_handler);
56         int errorhandler = lua_gettop(L);
57
58         // Get registered_abms
59         lua_getglobal(L, "core");
60         lua_getfield(L, -1, "registered_abms");
61         luaL_checktype(L, -1, LUA_TTABLE);
62         lua_remove(L, -2); // Remove core
63
64         // Get registered_abms[m_id]
65         lua_pushnumber(L, m_id);
66         lua_gettable(L, -2);
67         if(lua_isnil(L, -1))
68                 FATAL_ERROR("");
69         lua_remove(L, -2); // Remove registered_abms
70
71         // Call action
72         luaL_checktype(L, -1, LUA_TTABLE);
73         lua_getfield(L, -1, "action");
74         luaL_checktype(L, -1, LUA_TFUNCTION);
75         lua_remove(L, -2); // Remove registered_abms[m_id]
76         push_v3s16(L, p);
77         pushnode(L, n, env->getGameDef()->ndef());
78         lua_pushnumber(L, active_object_count);
79         lua_pushnumber(L, active_object_count_wider);
80         if(lua_pcall(L, 4, 0, errorhandler))
81                 script_error(L);
82         lua_pop(L, 1); // Pop error handler
83 }
84
85 // Exported functions
86
87 // set_node(pos, node)
88 // pos = {x=num, y=num, z=num}
89 int ModApiEnvMod::l_set_node(lua_State *L)
90 {
91         GET_ENV_PTR;
92
93         INodeDefManager *ndef = env->getGameDef()->ndef();
94         // parameters
95         v3s16 pos = read_v3s16(L, 1);
96         MapNode n = readnode(L, 2, ndef);
97         // Do it
98         bool succeeded = env->setNode(pos, n);
99         lua_pushboolean(L, succeeded);
100         return 1;
101 }
102
103 int ModApiEnvMod::l_add_node(lua_State *L)
104 {
105         return l_set_node(L);
106 }
107
108 // remove_node(pos)
109 // pos = {x=num, y=num, z=num}
110 int ModApiEnvMod::l_remove_node(lua_State *L)
111 {
112         GET_ENV_PTR;
113
114         // parameters
115         v3s16 pos = read_v3s16(L, 1);
116         // Do it
117         bool succeeded = env->removeNode(pos);
118         lua_pushboolean(L, succeeded);
119         return 1;
120 }
121
122 // swap_node(pos, node)
123 // pos = {x=num, y=num, z=num}
124 int ModApiEnvMod::l_swap_node(lua_State *L)
125 {
126         GET_ENV_PTR;
127
128         INodeDefManager *ndef = env->getGameDef()->ndef();
129         // parameters
130         v3s16 pos = read_v3s16(L, 1);
131         MapNode n = readnode(L, 2, ndef);
132         // Do it
133         bool succeeded = env->swapNode(pos, n);
134         lua_pushboolean(L, succeeded);
135         return 1;
136 }
137
138 // get_node(pos)
139 // pos = {x=num, y=num, z=num}
140 int ModApiEnvMod::l_get_node(lua_State *L)
141 {
142         GET_ENV_PTR;
143
144         // pos
145         v3s16 pos = read_v3s16(L, 1);
146         // Do it
147         MapNode n = env->getMap().getNodeNoEx(pos);
148         // Return node
149         pushnode(L, n, env->getGameDef()->ndef());
150         return 1;
151 }
152
153 // get_node_or_nil(pos)
154 // pos = {x=num, y=num, z=num}
155 int ModApiEnvMod::l_get_node_or_nil(lua_State *L)
156 {
157         GET_ENV_PTR;
158
159         // pos
160         v3s16 pos = read_v3s16(L, 1);
161         // Do it
162         bool pos_ok;
163         MapNode n = env->getMap().getNodeNoEx(pos, &pos_ok);
164         if (pos_ok) {
165                 // Return node
166                 pushnode(L, n, env->getGameDef()->ndef());
167         } else {
168                 lua_pushnil(L);
169         }
170         return 1;
171 }
172
173 // get_node_light(pos, timeofday)
174 // pos = {x=num, y=num, z=num}
175 // timeofday: nil = current time, 0 = night, 0.5 = day
176 int ModApiEnvMod::l_get_node_light(lua_State *L)
177 {
178         GET_ENV_PTR;
179
180         // Do it
181         v3s16 pos = read_v3s16(L, 1);
182         u32 time_of_day = env->getTimeOfDay();
183         if(lua_isnumber(L, 2))
184                 time_of_day = 24000.0 * lua_tonumber(L, 2);
185         time_of_day %= 24000;
186         u32 dnr = time_to_daynight_ratio(time_of_day, true);
187
188         bool is_position_ok;
189         MapNode n = env->getMap().getNodeNoEx(pos, &is_position_ok);
190         if (is_position_ok) {
191                 INodeDefManager *ndef = env->getGameDef()->ndef();
192                 lua_pushinteger(L, n.getLightBlend(dnr, ndef));
193         } else {
194                 lua_pushnil(L);
195         }
196         return 1;
197 }
198
199 // place_node(pos, node)
200 // pos = {x=num, y=num, z=num}
201 int ModApiEnvMod::l_place_node(lua_State *L)
202 {
203         GET_ENV_PTR;
204
205         ScriptApiItem *scriptIfaceItem = getScriptApi<ScriptApiItem>(L);
206         Server *server = getServer(L);
207         INodeDefManager *ndef = server->ndef();
208         IItemDefManager *idef = server->idef();
209
210         v3s16 pos = read_v3s16(L, 1);
211         MapNode n = readnode(L, 2, ndef);
212
213         // Don't attempt to load non-loaded area as of now
214         MapNode n_old = env->getMap().getNodeNoEx(pos);
215         if(n_old.getContent() == CONTENT_IGNORE){
216                 lua_pushboolean(L, false);
217                 return 1;
218         }
219         // Create item to place
220         ItemStack item(ndef->get(n).name, 1, 0, "", idef);
221         // Make pointed position
222         PointedThing pointed;
223         pointed.type = POINTEDTHING_NODE;
224         pointed.node_abovesurface = pos;
225         pointed.node_undersurface = pos + v3s16(0,-1,0);
226         // Place it with a NULL placer (appears in Lua as a non-functional
227         // ObjectRef)
228         bool success = scriptIfaceItem->item_OnPlace(item, NULL, pointed);
229         lua_pushboolean(L, success);
230         return 1;
231 }
232
233 // dig_node(pos)
234 // pos = {x=num, y=num, z=num}
235 int ModApiEnvMod::l_dig_node(lua_State *L)
236 {
237         GET_ENV_PTR;
238
239         ScriptApiNode *scriptIfaceNode = getScriptApi<ScriptApiNode>(L);
240
241         v3s16 pos = read_v3s16(L, 1);
242
243         // Don't attempt to load non-loaded area as of now
244         MapNode n = env->getMap().getNodeNoEx(pos);
245         if(n.getContent() == CONTENT_IGNORE){
246                 lua_pushboolean(L, false);
247                 return 1;
248         }
249         // Dig it out with a NULL digger (appears in Lua as a
250         // non-functional ObjectRef)
251         bool success = scriptIfaceNode->node_on_dig(pos, n, NULL);
252         lua_pushboolean(L, success);
253         return 1;
254 }
255
256 // punch_node(pos)
257 // pos = {x=num, y=num, z=num}
258 int ModApiEnvMod::l_punch_node(lua_State *L)
259 {
260         GET_ENV_PTR;
261
262         ScriptApiNode *scriptIfaceNode = getScriptApi<ScriptApiNode>(L);
263
264         v3s16 pos = read_v3s16(L, 1);
265
266         // Don't attempt to load non-loaded area as of now
267         MapNode n = env->getMap().getNodeNoEx(pos);
268         if(n.getContent() == CONTENT_IGNORE){
269                 lua_pushboolean(L, false);
270                 return 1;
271         }
272         // Punch it with a NULL puncher (appears in Lua as a non-functional
273         // ObjectRef)
274         bool success = scriptIfaceNode->node_on_punch(pos, n, NULL, PointedThing());
275         lua_pushboolean(L, success);
276         return 1;
277 }
278
279 // get_node_max_level(pos)
280 // pos = {x=num, y=num, z=num}
281 int ModApiEnvMod::l_get_node_max_level(lua_State *L)
282 {
283         GET_ENV_PTR;
284
285         v3s16 pos = read_v3s16(L, 1);
286         MapNode n = env->getMap().getNodeNoEx(pos);
287         lua_pushnumber(L, n.getMaxLevel(env->getGameDef()->ndef()));
288         return 1;
289 }
290
291 // get_node_level(pos)
292 // pos = {x=num, y=num, z=num}
293 int ModApiEnvMod::l_get_node_level(lua_State *L)
294 {
295         GET_ENV_PTR;
296
297         v3s16 pos = read_v3s16(L, 1);
298         MapNode n = env->getMap().getNodeNoEx(pos);
299         lua_pushnumber(L, n.getLevel(env->getGameDef()->ndef()));
300         return 1;
301 }
302
303 // set_node_level(pos, level)
304 // pos = {x=num, y=num, z=num}
305 // level: 0..63
306 int ModApiEnvMod::l_set_node_level(lua_State *L)
307 {
308         GET_ENV_PTR;
309
310         v3s16 pos = read_v3s16(L, 1);
311         u8 level = 1;
312         if(lua_isnumber(L, 2))
313                 level = lua_tonumber(L, 2);
314         MapNode n = env->getMap().getNodeNoEx(pos);
315         lua_pushnumber(L, n.setLevel(env->getGameDef()->ndef(), level));
316         env->setNode(pos, n);
317         return 1;
318 }
319
320 // add_node_level(pos, level)
321 // pos = {x=num, y=num, z=num}
322 // level: 0..63
323 int ModApiEnvMod::l_add_node_level(lua_State *L)
324 {
325         GET_ENV_PTR;
326
327         v3s16 pos = read_v3s16(L, 1);
328         u8 level = 1;
329         if(lua_isnumber(L, 2))
330                 level = lua_tonumber(L, 2);
331         MapNode n = env->getMap().getNodeNoEx(pos);
332         lua_pushnumber(L, n.addLevel(env->getGameDef()->ndef(), level));
333         env->setNode(pos, n);
334         return 1;
335 }
336
337 // find_nodes_with_meta(pos1, pos2)
338 int ModApiEnvMod::l_find_nodes_with_meta(lua_State *L)
339 {
340         GET_ENV_PTR;
341
342         std::vector<v3s16> positions = env->getMap().findNodesWithMetadata(
343                 check_v3s16(L, 1), check_v3s16(L, 2));
344
345         lua_newtable(L);
346         for (size_t i = 0; i != positions.size(); i++) {
347                 push_v3s16(L, positions[i]);
348                 lua_rawseti(L, -2, i + 1);
349         }
350
351         return 1;
352 }
353
354 // get_meta(pos)
355 int ModApiEnvMod::l_get_meta(lua_State *L)
356 {
357         GET_ENV_PTR;
358
359         // Do it
360         v3s16 p = read_v3s16(L, 1);
361         NodeMetaRef::create(L, p, env);
362         return 1;
363 }
364
365 // get_node_timer(pos)
366 int ModApiEnvMod::l_get_node_timer(lua_State *L)
367 {
368         GET_ENV_PTR;
369
370         // Do it
371         v3s16 p = read_v3s16(L, 1);
372         NodeTimerRef::create(L, p, env);
373         return 1;
374 }
375
376 // add_entity(pos, entityname) -> ObjectRef or nil
377 // pos = {x=num, y=num, z=num}
378 int ModApiEnvMod::l_add_entity(lua_State *L)
379 {
380         GET_ENV_PTR;
381
382         // pos
383         v3f pos = checkFloatPos(L, 1);
384         // content
385         const char *name = luaL_checkstring(L, 2);
386         // Do it
387         ServerActiveObject *obj = new LuaEntitySAO(env, pos, name, "");
388         int objectid = env->addActiveObject(obj);
389         // If failed to add, return nothing (reads as nil)
390         if(objectid == 0)
391                 return 0;
392         // Return ObjectRef
393         getScriptApiBase(L)->objectrefGetOrCreate(L, obj);
394         return 1;
395 }
396
397 // add_item(pos, itemstack or itemstring or table) -> ObjectRef or nil
398 // pos = {x=num, y=num, z=num}
399 int ModApiEnvMod::l_add_item(lua_State *L)
400 {
401         GET_ENV_PTR;
402
403         // pos
404         //v3f pos = checkFloatPos(L, 1);
405         // item
406         ItemStack item = read_item(L, 2,getServer(L));
407         if(item.empty() || !item.isKnown(getServer(L)->idef()))
408                 return 0;
409
410         lua_pushcfunction(L, script_error_handler);
411         int errorhandler = lua_gettop(L);
412
413         // Use spawn_item to spawn a __builtin:item
414         lua_getglobal(L, "core");
415         lua_getfield(L, -1, "spawn_item");
416         lua_remove(L, -2); // Remove core
417         if(lua_isnil(L, -1))
418                 return 0;
419         lua_pushvalue(L, 1);
420         lua_pushstring(L, item.getItemString().c_str());
421         if(lua_pcall(L, 2, 1, errorhandler))
422                 script_error(L);
423         lua_remove(L, errorhandler); // Remove error handler
424         return 1;
425 }
426
427 // get_player_by_name(name)
428 int ModApiEnvMod::l_get_player_by_name(lua_State *L)
429 {
430         GET_ENV_PTR;
431
432         // Do it
433         const char *name = luaL_checkstring(L, 1);
434         Player *player = env->getPlayer(name);
435         if(player == NULL){
436                 lua_pushnil(L);
437                 return 1;
438         }
439         PlayerSAO *sao = player->getPlayerSAO();
440         if(sao == NULL){
441                 lua_pushnil(L);
442                 return 1;
443         }
444         // Put player on stack
445         getScriptApiBase(L)->objectrefGetOrCreate(L, sao);
446         return 1;
447 }
448
449 // get_objects_inside_radius(pos, radius)
450 int ModApiEnvMod::l_get_objects_inside_radius(lua_State *L)
451 {
452         GET_ENV_PTR;
453
454         // Do it
455         v3f pos = checkFloatPos(L, 1);
456         float radius = luaL_checknumber(L, 2) * BS;
457         std::vector<u16> ids;
458         env->getObjectsInsideRadius(ids, pos, radius);
459         ScriptApiBase *script = getScriptApiBase(L);
460         lua_createtable(L, ids.size(), 0);
461         std::vector<u16>::const_iterator iter = ids.begin();
462         for(u32 i = 0; iter != ids.end(); iter++) {
463                 ServerActiveObject *obj = env->getActiveObject(*iter);
464                 // Insert object reference into table
465                 script->objectrefGetOrCreate(L, obj);
466                 lua_rawseti(L, -2, ++i);
467         }
468         return 1;
469 }
470
471 // set_timeofday(val)
472 // val = 0...1
473 int ModApiEnvMod::l_set_timeofday(lua_State *L)
474 {
475         GET_ENV_PTR;
476
477         // Do it
478         float timeofday_f = luaL_checknumber(L, 1);
479         sanity_check(timeofday_f >= 0.0 && timeofday_f <= 1.0);
480         int timeofday_mh = (int)(timeofday_f * 24000.0);
481         // This should be set directly in the environment but currently
482         // such changes aren't immediately sent to the clients, so call
483         // the server instead.
484         //env->setTimeOfDay(timeofday_mh);
485         getServer(L)->setTimeOfDay(timeofday_mh);
486         return 0;
487 }
488
489 // get_timeofday() -> 0...1
490 int ModApiEnvMod::l_get_timeofday(lua_State *L)
491 {
492         GET_ENV_PTR;
493
494         // Do it
495         int timeofday_mh = env->getTimeOfDay();
496         float timeofday_f = (float)timeofday_mh / 24000.0;
497         lua_pushnumber(L, timeofday_f);
498         return 1;
499 }
500
501 // get_gametime()
502 int ModApiEnvMod::l_get_gametime(lua_State *L)
503 {
504         GET_ENV_PTR;
505
506         int game_time = env->getGameTime();
507         lua_pushnumber(L, game_time);
508         return 1;
509 }
510
511
512 // find_node_near(pos, radius, nodenames) -> pos or nil
513 // nodenames: eg. {"ignore", "group:tree"} or "default:dirt"
514 int ModApiEnvMod::l_find_node_near(lua_State *L)
515 {
516         GET_ENV_PTR;
517
518         INodeDefManager *ndef = getServer(L)->ndef();
519         v3s16 pos = read_v3s16(L, 1);
520         int radius = luaL_checkinteger(L, 2);
521         std::set<content_t> filter;
522         if(lua_istable(L, 3)){
523                 int table = 3;
524                 lua_pushnil(L);
525                 while(lua_next(L, table) != 0){
526                         // key at index -2 and value at index -1
527                         luaL_checktype(L, -1, LUA_TSTRING);
528                         ndef->getIds(lua_tostring(L, -1), filter);
529                         // removes value, keeps key for next iteration
530                         lua_pop(L, 1);
531                 }
532         } else if(lua_isstring(L, 3)){
533                 ndef->getIds(lua_tostring(L, 3), filter);
534         }
535
536         for(int d=1; d<=radius; d++){
537                 std::vector<v3s16> list = FacePositionCache::getFacePositions(d);
538                 for(std::vector<v3s16>::iterator i = list.begin();
539                                 i != list.end(); ++i){
540                         v3s16 p = pos + (*i);
541                         content_t c = env->getMap().getNodeNoEx(p).getContent();
542                         if(filter.count(c) != 0){
543                                 push_v3s16(L, p);
544                                 return 1;
545                         }
546                 }
547         }
548         return 0;
549 }
550
551 // find_nodes_in_area(minp, maxp, nodenames) -> list of positions
552 // nodenames: eg. {"ignore", "group:tree"} or "default:dirt"
553 int ModApiEnvMod::l_find_nodes_in_area(lua_State *L)
554 {
555         GET_ENV_PTR;
556
557         INodeDefManager *ndef = getServer(L)->ndef();
558         v3s16 minp = read_v3s16(L, 1);
559         v3s16 maxp = read_v3s16(L, 2);
560         std::set<content_t> filter;
561         if(lua_istable(L, 3)) {
562                 int table = 3;
563                 lua_pushnil(L);
564                 while(lua_next(L, table) != 0) {
565                         // key at index -2 and value at index -1
566                         luaL_checktype(L, -1, LUA_TSTRING);
567                         ndef->getIds(lua_tostring(L, -1), filter);
568                         // removes value, keeps key for next iteration
569                         lua_pop(L, 1);
570                 }
571         } else if(lua_isstring(L, 3)) {
572                 ndef->getIds(lua_tostring(L, 3), filter);
573         }
574
575         lua_newtable(L);
576         u64 i = 0;
577         for(s16 x = minp.X; x <= maxp.X; x++)
578         for(s16 y = minp.Y; y <= maxp.Y; y++)
579         for(s16 z = minp.Z; z <= maxp.Z; z++) {
580                 v3s16 p(x, y, z);
581                 content_t c = env->getMap().getNodeNoEx(p).getContent();
582                 if(filter.count(c) != 0) {
583                         push_v3s16(L, p);
584                         lua_rawseti(L, -2, ++i);
585                 }
586         }
587         return 1;
588 }
589
590 // find_nodes_in_area_under_air(minp, maxp, nodenames) -> list of positions
591 // nodenames: e.g. {"ignore", "group:tree"} or "default:dirt"
592 int ModApiEnvMod::l_find_nodes_in_area_under_air(lua_State *L)
593 {
594         /* Note: A similar but generalized (and therefore slower) version of this
595          * function could be created -- e.g. find_nodes_in_area_under -- which
596          * would accept a node name (or ID?) or list of names that the "above node"
597          * should be.
598          * TODO
599          */
600
601         GET_ENV_PTR;
602
603         INodeDefManager *ndef = getServer(L)->ndef();
604         v3s16 minp = read_v3s16(L, 1);
605         v3s16 maxp = read_v3s16(L, 2);
606         std::set<content_t> filter;
607
608         if (lua_istable(L, 3)) {
609                 int table = 3;
610                 lua_pushnil(L);
611                 while(lua_next(L, table) != 0) {
612                         // key at index -2 and value at index -1
613                         luaL_checktype(L, -1, LUA_TSTRING);
614                         ndef->getIds(lua_tostring(L, -1), filter);
615                         // removes value, keeps key for next iteration
616                         lua_pop(L, 1);
617                 }
618         } else if (lua_isstring(L, 3)) {
619                 ndef->getIds(lua_tostring(L, 3), filter);
620         }
621
622         lua_newtable(L);
623         u64 i = 0;
624         for (s16 x = minp.X; x <= maxp.X; x++)
625         for (s16 z = minp.Z; z <= maxp.Z; z++) {
626                 s16 y = minp.Y;
627                 v3s16 p(x, y, z);
628                 content_t c = env->getMap().getNodeNoEx(p).getContent();
629                 for (; y <= maxp.Y; y++) {
630                         v3s16 psurf(x, y + 1, z);
631                         content_t csurf = env->getMap().getNodeNoEx(psurf).getContent();
632                         if(c != CONTENT_AIR && csurf == CONTENT_AIR &&
633                                         filter.count(c) != 0) {
634                                 push_v3s16(L, v3s16(x, y, z));
635                                 lua_rawseti(L, -2, ++i);
636                         }
637                         c = csurf;
638                 }
639         }
640         return 1;
641 }
642
643 // get_perlin(seeddiff, octaves, persistence, scale)
644 // returns world-specific PerlinNoise
645 int ModApiEnvMod::l_get_perlin(lua_State *L)
646 {
647         GET_ENV_PTR;
648
649         NoiseParams params;
650
651         if (lua_istable(L, 1)) {
652                 read_noiseparams(L, 1, &params);
653         } else {
654                 params.seed    = luaL_checkint(L, 1);
655                 params.octaves = luaL_checkint(L, 2);
656                 params.persist = luaL_checknumber(L, 3);
657                 params.spread  = v3f(1, 1, 1) * luaL_checknumber(L, 4);
658         }
659
660         params.seed += (int)env->getServerMap().getSeed();
661
662         LuaPerlinNoise *n = new LuaPerlinNoise(&params);
663         *(void **)(lua_newuserdata(L, sizeof(void *))) = n;
664         luaL_getmetatable(L, "PerlinNoise");
665         lua_setmetatable(L, -2);
666         return 1;
667 }
668
669 // get_perlin_map(noiseparams, size)
670 // returns world-specific PerlinNoiseMap
671 int ModApiEnvMod::l_get_perlin_map(lua_State *L)
672 {
673         GET_ENV_PTR;
674
675         NoiseParams np;
676         if (!read_noiseparams(L, 1, &np))
677                 return 0;
678         v3s16 size = read_v3s16(L, 2);
679
680         int seed = (int)(env->getServerMap().getSeed());
681         LuaPerlinNoiseMap *n = new LuaPerlinNoiseMap(&np, seed, size);
682         *(void **)(lua_newuserdata(L, sizeof(void *))) = n;
683         luaL_getmetatable(L, "PerlinNoiseMap");
684         lua_setmetatable(L, -2);
685         return 1;
686 }
687
688 // get_voxel_manip()
689 // returns voxel manipulator
690 int ModApiEnvMod::l_get_voxel_manip(lua_State *L)
691 {
692         GET_ENV_PTR;
693
694         Map *map = &(env->getMap());
695         LuaVoxelManip *o = (lua_istable(L, 1) && lua_istable(L, 2)) ?
696                 new LuaVoxelManip(map, read_v3s16(L, 1), read_v3s16(L, 2)) :
697                 new LuaVoxelManip(map);
698
699         *(void **)(lua_newuserdata(L, sizeof(void *))) = o;
700         luaL_getmetatable(L, "VoxelManip");
701         lua_setmetatable(L, -2);
702         return 1;
703 }
704
705 // clear_objects()
706 // clear all objects in the environment
707 int ModApiEnvMod::l_clear_objects(lua_State *L)
708 {
709         GET_ENV_PTR;
710
711         env->clearAllObjects();
712         return 0;
713 }
714
715 // line_of_sight(pos1, pos2, stepsize) -> true/false, pos
716 int ModApiEnvMod::l_line_of_sight(lua_State *L)
717 {
718         float stepsize = 1.0;
719
720         GET_ENV_PTR;
721
722         // read position 1 from lua
723         v3f pos1 = checkFloatPos(L, 1);
724         // read position 2 from lua
725         v3f pos2 = checkFloatPos(L, 2);
726         //read step size from lua
727         if (lua_isnumber(L, 3)) {
728                 stepsize = lua_tonumber(L, 3);
729         }
730
731         v3s16 p;
732         bool success = env->line_of_sight(pos1, pos2, stepsize, &p);
733         lua_pushboolean(L, success);
734         if (!success) {
735                 push_v3s16(L, p);
736                 return 2;
737         }
738         return 1;
739 }
740
741 // delete_area(p1, p2)
742 // delete mapblocks in area p1..p2
743 int ModApiEnvMod::l_delete_area(lua_State *L)
744 {
745         GET_ENV_PTR;
746
747         v3s16 bpmin = getNodeBlockPos(read_v3s16(L, 1));
748         v3s16 bpmax = getNodeBlockPos(read_v3s16(L, 2));
749         sortBoxVerticies(bpmin, bpmax);
750
751         ServerMap &map = env->getServerMap();
752
753         MapEditEvent event;
754         event.type = MEET_OTHER;
755
756         bool success = true;
757         for (s16 z = bpmin.Z; z <= bpmax.Z; z++)
758         for (s16 y = bpmin.Y; y <= bpmax.Y; y++)
759         for (s16 x = bpmin.X; x <= bpmax.X; x++) {
760                 v3s16 bp(x, y, z);
761                 if (map.deleteBlock(bp))
762                         event.modified_blocks.insert(bp);
763                 else
764                         success = false;
765         }
766
767         map.dispatchEvent(&event);
768         lua_pushboolean(L, success);
769         return 1;
770 }
771
772 // find_path(pos1, pos2, searchdistance,
773 //     max_jump, max_drop, algorithm) -> table containing path
774 int ModApiEnvMod::l_find_path(lua_State *L)
775 {
776         GET_ENV_PTR;
777
778         v3s16 pos1                  = read_v3s16(L, 1);
779         v3s16 pos2                  = read_v3s16(L, 2);
780         unsigned int searchdistance = luaL_checkint(L, 3);
781         unsigned int max_jump       = luaL_checkint(L, 4);
782         unsigned int max_drop       = luaL_checkint(L, 5);
783         algorithm algo              = A_PLAIN_NP;
784         if (!lua_isnil(L, 6)) {
785                 std::string algorithm = luaL_checkstring(L,6);
786
787                 if (algorithm == "A*")
788                         algo = A_PLAIN;
789
790                 if (algorithm == "Dijkstra")
791                         algo = DIJKSTRA;
792         }
793
794         std::vector<v3s16> path =
795                         get_Path(env,pos1,pos2,searchdistance,max_jump,max_drop,algo);
796
797         if (path.size() > 0)
798         {
799                 lua_newtable(L);
800                 int top = lua_gettop(L);
801                 unsigned int index = 1;
802                 for (std::vector<v3s16>::iterator i = path.begin(); i != path.end();i++)
803                 {
804                         lua_pushnumber(L,index);
805                         push_v3s16(L, *i);
806                         lua_settable(L, top);
807                         index++;
808                 }
809                 return 1;
810         }
811
812         return 0;
813 }
814
815 // spawn_tree(pos, treedef)
816 int ModApiEnvMod::l_spawn_tree(lua_State *L)
817 {
818         GET_ENV_PTR;
819
820         v3s16 p0 = read_v3s16(L, 1);
821
822         treegen::TreeDef tree_def;
823         std::string trunk,leaves,fruit;
824         INodeDefManager *ndef = env->getGameDef()->ndef();
825
826         if(lua_istable(L, 2))
827         {
828                 getstringfield(L, 2, "axiom", tree_def.initial_axiom);
829                 getstringfield(L, 2, "rules_a", tree_def.rules_a);
830                 getstringfield(L, 2, "rules_b", tree_def.rules_b);
831                 getstringfield(L, 2, "rules_c", tree_def.rules_c);
832                 getstringfield(L, 2, "rules_d", tree_def.rules_d);
833                 getstringfield(L, 2, "trunk", trunk);
834                 tree_def.trunknode=ndef->getId(trunk);
835                 getstringfield(L, 2, "leaves", leaves);
836                 tree_def.leavesnode=ndef->getId(leaves);
837                 tree_def.leaves2_chance=0;
838                 getstringfield(L, 2, "leaves2", leaves);
839                 if (leaves !="")
840                 {
841                         tree_def.leaves2node=ndef->getId(leaves);
842                         getintfield(L, 2, "leaves2_chance", tree_def.leaves2_chance);
843                 }
844                 getintfield(L, 2, "angle", tree_def.angle);
845                 getintfield(L, 2, "iterations", tree_def.iterations);
846                 if (!getintfield(L, 2, "random_level", tree_def.iterations_random_level))
847                         tree_def.iterations_random_level = 0;
848                 getstringfield(L, 2, "trunk_type", tree_def.trunk_type);
849                 getboolfield(L, 2, "thin_branches", tree_def.thin_branches);
850                 tree_def.fruit_chance=0;
851                 getstringfield(L, 2, "fruit", fruit);
852                 if (fruit != "")
853                 {
854                         tree_def.fruitnode=ndef->getId(fruit);
855                         getintfield(L, 2, "fruit_chance",tree_def.fruit_chance);
856                 }
857                 tree_def.explicit_seed = getintfield(L, 2, "seed", tree_def.seed);
858         }
859         else
860                 return 0;
861
862         treegen::error e;
863         if ((e = treegen::spawn_ltree (env, p0, ndef, tree_def)) != treegen::SUCCESS) {
864                 if (e == treegen::UNBALANCED_BRACKETS) {
865                         luaL_error(L, "spawn_tree(): closing ']' has no matching opening bracket");
866                 } else {
867                         luaL_error(L, "spawn_tree(): unknown error");
868                 }
869         }
870
871         return 1;
872 }
873
874 // transforming_liquid_add(pos)
875 int ModApiEnvMod::l_transforming_liquid_add(lua_State *L)
876 {
877         GET_ENV_PTR;
878
879         v3s16 p0 = read_v3s16(L, 1);
880         env->getMap().transforming_liquid_add(p0);
881         return 1;
882 }
883
884 // forceload_block(blockpos)
885 // blockpos = {x=num, y=num, z=num}
886 int ModApiEnvMod::l_forceload_block(lua_State *L)
887 {
888         GET_ENV_PTR;
889
890         v3s16 blockpos = read_v3s16(L, 1);
891         env->getForceloadedBlocks()->insert(blockpos);
892         return 0;
893 }
894
895 // forceload_free_block(blockpos)
896 // blockpos = {x=num, y=num, z=num}
897 int ModApiEnvMod::l_forceload_free_block(lua_State *L)
898 {
899         GET_ENV_PTR;
900
901         v3s16 blockpos = read_v3s16(L, 1);
902         env->getForceloadedBlocks()->erase(blockpos);
903         return 0;
904 }
905
906 // get_us_time()
907 int ModApiEnvMod::l_get_us_time(lua_State *L)
908 {
909         lua_pushnumber(L, porting::getTimeUs());
910         return 1;
911 }
912
913 void ModApiEnvMod::Initialize(lua_State *L, int top)
914 {
915         API_FCT(set_node);
916         API_FCT(add_node);
917         API_FCT(swap_node);
918         API_FCT(add_item);
919         API_FCT(remove_node);
920         API_FCT(get_node);
921         API_FCT(get_node_or_nil);
922         API_FCT(get_node_light);
923         API_FCT(place_node);
924         API_FCT(dig_node);
925         API_FCT(punch_node);
926         API_FCT(get_node_max_level);
927         API_FCT(get_node_level);
928         API_FCT(set_node_level);
929         API_FCT(add_node_level);
930         API_FCT(add_entity);
931         API_FCT(find_nodes_with_meta);
932         API_FCT(get_meta);
933         API_FCT(get_node_timer);
934         API_FCT(get_player_by_name);
935         API_FCT(get_objects_inside_radius);
936         API_FCT(set_timeofday);
937         API_FCT(get_timeofday);
938         API_FCT(get_gametime);
939         API_FCT(find_node_near);
940         API_FCT(find_nodes_in_area);
941         API_FCT(find_nodes_in_area_under_air);
942         API_FCT(delete_area);
943         API_FCT(get_perlin);
944         API_FCT(get_perlin_map);
945         API_FCT(get_voxel_manip);
946         API_FCT(clear_objects);
947         API_FCT(spawn_tree);
948         API_FCT(find_path);
949         API_FCT(line_of_sight);
950         API_FCT(transforming_liquid_add);
951         API_FCT(forceload_block);
952         API_FCT(forceload_free_block);
953         API_FCT(get_us_time);
954 }