]> git.lizzy.rs Git - dragonfireclient.git/blob - src/script/lua_api/l_areastore.h
Add server side ncurses terminal
[dragonfireclient.git] / src / script / lua_api / l_areastore.h
1 /*
2 Minetest
3 Copyright (C) 2015 est31 <mtest31@outlook.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 #ifndef L_AREASTORE_H_
21 #define L_AREASTORE_H_
22
23 #include "lua_api/l_base.h"
24 #include "irr_v3d.h"
25 #include "areastore.h"
26
27 /*
28   AreaStore
29  */
30 class LuaAreaStore : public ModApiBase {
31 private:
32
33         static const char className[];
34         static const luaL_reg methods[];
35
36         static int gc_object(lua_State *L);
37
38         static int l_get_area(lua_State *L);
39
40         static int l_get_areas_for_pos(lua_State *L);
41         static int l_get_areas_in_area(lua_State *L);
42         static int l_insert_area(lua_State *L);
43         static int l_reserve(lua_State *L);
44         static int l_remove_area(lua_State *L);
45
46         static int l_set_cache_params(lua_State *L);
47
48         /* static int l_to_string(lua_State *L);
49         static int l_to_file(lua_State *L);
50
51         static int l_from_string(lua_State *L);
52         static int l_from_file(lua_State *L); */
53
54 public:
55         AreaStore *as;
56
57         LuaAreaStore();
58         LuaAreaStore(const std::string &type);
59         ~LuaAreaStore();
60
61         // AreaStore()
62         // Creates a AreaStore and leaves it on top of stack
63         static int create_object(lua_State *L);
64
65         static LuaAreaStore *checkobject(lua_State *L, int narg);
66
67         static void Register(lua_State *L);
68 };
69
70 #endif /* L_AREASTORE_H_ */