]> git.lizzy.rs Git - dragonfireclient.git/blob - src/script/lua_api/l_vmanip.h
Add ItemStack:get_description() to get tooltip (#8847)
[dragonfireclient.git] / src / script / lua_api / l_vmanip.h
1 /*
2 Minetest
3 Copyright (C) 2013 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
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 #pragma once
21
22 #include <map>
23 #include "irr_v3d.h"
24 #include "lua_api/l_base.h"
25
26 class Map;
27 class MapBlock;
28 class MMVManip;
29
30 /*
31   VoxelManip
32  */
33 class LuaVoxelManip : public ModApiBase
34 {
35 private:
36         std::map<v3s16, MapBlock *> modified_blocks;
37         bool is_mapgen_vm = false;
38
39         static const char className[];
40         static const luaL_Reg methods[];
41
42         static int gc_object(lua_State *L);
43
44         static int l_read_from_map(lua_State *L);
45         static int l_get_data(lua_State *L);
46         static int l_set_data(lua_State *L);
47         static int l_write_to_map(lua_State *L);
48
49         static int l_get_node_at(lua_State *L);
50         static int l_set_node_at(lua_State *L);
51
52         static int l_update_map(lua_State *L);
53         static int l_update_liquids(lua_State *L);
54
55         static int l_calc_lighting(lua_State *L);
56         static int l_set_lighting(lua_State *L);
57         static int l_get_light_data(lua_State *L);
58         static int l_set_light_data(lua_State *L);
59
60         static int l_get_param2_data(lua_State *L);
61         static int l_set_param2_data(lua_State *L);
62
63         static int l_was_modified(lua_State *L);
64         static int l_get_emerged_area(lua_State *L);
65
66 public:
67         MMVManip *vm = nullptr;
68
69         LuaVoxelManip(MMVManip *mmvm, bool is_mapgen_vm);
70         LuaVoxelManip(Map *map, v3s16 p1, v3s16 p2);
71         LuaVoxelManip(Map *map);
72         ~LuaVoxelManip();
73
74         // LuaVoxelManip()
75         // Creates a LuaVoxelManip and leaves it on top of stack
76         static int create_object(lua_State *L);
77
78         static LuaVoxelManip *checkobject(lua_State *L, int narg);
79
80         static void Register(lua_State *L);
81 };