]> git.lizzy.rs Git - dragonfireclient.git/blob - src/script/lua_api/l_minimap.h
Sound: Add pitch option (#5960)
[dragonfireclient.git] / src / script / lua_api / l_minimap.h
1 /*
2 Minetest
3 Copyright (C) 2017 Loic Blot <loic.blot@unix-experience.fr>
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_MINIMAP_H_
21 #define L_MINIMAP_H_
22
23 #include "l_base.h"
24
25 class Minimap;
26
27 class LuaMinimap : public ModApiBase
28 {
29 private:
30         static const char className[];
31         static const luaL_Reg methods[];
32
33         // garbage collector
34         static int gc_object(lua_State *L);
35
36         static int l_get_pos(lua_State *L);
37         static int l_set_pos(lua_State *L);
38
39         static int l_get_angle(lua_State *L);
40         static int l_set_angle(lua_State *L);
41
42         static int l_get_mode(lua_State *L);
43         static int l_set_mode(lua_State *L);
44
45         static int l_show(lua_State *L);
46         static int l_hide(lua_State *L);
47
48         static int l_set_shape(lua_State *L);
49         static int l_get_shape(lua_State *L);
50
51         Minimap *m_minimap;
52
53 public:
54         LuaMinimap(Minimap *m);
55         ~LuaMinimap() {}
56
57         static void create(lua_State *L, Minimap *object);
58
59         static LuaMinimap *checkobject(lua_State *L, int narg);
60         static Minimap *getobject(LuaMinimap *ref);
61
62         static void Register(lua_State *L);
63 };
64
65 #endif // L_MINIMAP_H_