]> git.lizzy.rs Git - dragonfireclient.git/blob - src/script/lua_api/l_client.h
Code modernization: subfolders (#6283)
[dragonfireclient.git] / src / script / lua_api / l_client.h
1 /*
2 Minetest
3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4 Copyright (C) 2017 nerzhul, Loic Blot <loic.blot@unix-experience.fr>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21 #pragma once
22
23 #include "lua_api/l_base.h"
24 #include "itemdef.h"
25 #include "tool.h"
26
27 class ModApiClient : public ModApiBase
28 {
29 private:
30         // get_current_modname()
31         static int l_get_current_modname(lua_State *L);
32
33         // print(text)
34         static int l_print(lua_State *L);
35
36         // display_chat_message(message)
37         static int l_display_chat_message(lua_State *L);
38
39         // send_chat_message(message)
40         static int l_send_chat_message(lua_State *L);
41
42         // clear_out_chat_queue()
43         static int l_clear_out_chat_queue(lua_State *L);
44
45         // get_player_names()
46         static int l_get_player_names(lua_State *L);
47
48         // show_formspec(name, formspec)
49         static int l_show_formspec(lua_State *L);
50
51         // send_respawn()
52         static int l_send_respawn(lua_State *L);
53
54         // disconnect()
55         static int l_disconnect(lua_State *L);
56
57         // gettext(text)
58         static int l_gettext(lua_State *L);
59
60         // get_last_run_mod(n)
61         static int l_get_last_run_mod(lua_State *L);
62
63         // set_last_run_mod(modname)
64         static int l_set_last_run_mod(lua_State *L);
65
66         // get_node(pos)
67         static int l_get_node_or_nil(lua_State *L);
68
69         // get_wielded_item()
70         static int l_get_wielded_item(lua_State *L);
71
72         // get_meta(pos)
73         static int l_get_meta(lua_State *L);
74
75         static int l_sound_play(lua_State *L);
76
77         static int l_sound_stop(lua_State *L);
78
79         // get_server_info()
80         static int l_get_server_info(lua_State *L);
81
82         // get_item_def(itemstring)
83         static int l_get_item_def(lua_State *L);
84
85         // get_node_def(nodename)
86         static int l_get_node_def(lua_State *L);
87
88         // take_screenshot()
89         static int l_take_screenshot(lua_State *L);
90
91         // get_privilege_list()
92         static int l_get_privilege_list(lua_State *L);
93
94         // get_builtin_path()
95         static int l_get_builtin_path(lua_State *L);
96
97 public:
98         static void Initialize(lua_State *L, int top);
99 };