2017-01-21 15:02:08 +01:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
Copyright (C) 2017 nerzhul, Loic Blot <loic.blot@unix-experience.fr>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2017-01-21 15:02:08 +01:00
|
|
|
|
|
|
|
#include "lua_api/l_base.h"
|
2017-05-21 14:40:55 +02:00
|
|
|
#include "itemdef.h"
|
|
|
|
#include "tool.h"
|
2017-01-21 15:02:08 +01:00
|
|
|
|
2017-03-31 22:29:34 +02:00
|
|
|
class ModApiClient : public ModApiBase
|
2017-01-21 15:02:08 +01:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
// get_current_modname()
|
|
|
|
static int l_get_current_modname(lua_State *L);
|
2017-01-22 09:05:09 +01:00
|
|
|
|
2017-05-20 16:46:12 +02:00
|
|
|
// print(text)
|
|
|
|
static int l_print(lua_State *L);
|
|
|
|
|
2017-01-22 09:05:09 +01:00
|
|
|
// display_chat_message(message)
|
2017-01-21 22:44:37 +01:00
|
|
|
static int l_display_chat_message(lua_State *L);
|
2017-03-31 22:29:34 +02:00
|
|
|
|
2017-07-15 09:28:10 +02:00
|
|
|
// send_chat_message(message)
|
|
|
|
static int l_send_chat_message(lua_State *L);
|
|
|
|
|
|
|
|
// clear_out_chat_queue()
|
|
|
|
static int l_clear_out_chat_queue(lua_State *L);
|
|
|
|
|
2017-03-22 21:13:03 +01:00
|
|
|
// get_player_names()
|
|
|
|
static int l_get_player_names(lua_State *L);
|
2017-01-21 15:02:08 +01:00
|
|
|
|
2017-05-21 14:40:55 +02:00
|
|
|
// show_formspec(name, formspec)
|
2017-01-24 17:26:15 +01:00
|
|
|
static int l_show_formspec(lua_State *L);
|
|
|
|
|
|
|
|
// send_respawn()
|
|
|
|
static int l_send_respawn(lua_State *L);
|
|
|
|
|
2017-04-01 13:40:56 +02:00
|
|
|
// disconnect()
|
|
|
|
static int l_disconnect(lua_State *L);
|
|
|
|
|
2017-01-24 17:26:15 +01:00
|
|
|
// gettext(text)
|
|
|
|
static int l_gettext(lua_State *L);
|
|
|
|
|
2017-01-22 09:05:09 +01:00
|
|
|
// get_last_run_mod(n)
|
|
|
|
static int l_get_last_run_mod(lua_State *L);
|
|
|
|
|
|
|
|
// set_last_run_mod(modname)
|
|
|
|
static int l_set_last_run_mod(lua_State *L);
|
|
|
|
|
2017-01-30 20:10:37 +01:00
|
|
|
// get_node(pos)
|
|
|
|
static int l_get_node_or_nil(lua_State *L);
|
|
|
|
|
2017-01-31 14:18:52 +01:00
|
|
|
// get_wielded_item()
|
|
|
|
static int l_get_wielded_item(lua_State *L);
|
2017-01-30 20:10:37 +01:00
|
|
|
|
2017-04-04 07:41:37 +02:00
|
|
|
// get_meta(pos)
|
|
|
|
static int l_get_meta(lua_State *L);
|
|
|
|
|
2017-04-06 08:14:31 +02:00
|
|
|
static int l_sound_play(lua_State *L);
|
|
|
|
|
|
|
|
static int l_sound_stop(lua_State *L);
|
|
|
|
|
2017-04-19 15:16:54 +02:00
|
|
|
// get_server_info()
|
|
|
|
static int l_get_server_info(lua_State *L);
|
2017-05-21 17:30:00 +02:00
|
|
|
|
2017-05-21 14:40:55 +02:00
|
|
|
// get_item_def(itemstring)
|
|
|
|
static int l_get_item_def(lua_State *L);
|
2017-05-21 17:30:00 +02:00
|
|
|
|
2017-05-21 14:40:55 +02:00
|
|
|
// get_node_def(nodename)
|
|
|
|
static int l_get_node_def(lua_State *L);
|
2017-04-06 22:50:45 +02:00
|
|
|
|
2017-06-07 09:09:06 +02:00
|
|
|
// take_screenshot()
|
2017-04-29 09:16:06 +02:00
|
|
|
static int l_take_screenshot(lua_State *L);
|
|
|
|
|
2017-06-07 09:09:06 +02:00
|
|
|
// get_privilege_list()
|
|
|
|
static int l_get_privilege_list(lua_State *L);
|
|
|
|
|
2017-06-30 20:14:39 +02:00
|
|
|
// get_builtin_path()
|
|
|
|
static int l_get_builtin_path(lua_State *L);
|
|
|
|
|
2017-01-21 15:02:08 +01:00
|
|
|
public:
|
|
|
|
static void Initialize(lua_State *L, int top);
|
|
|
|
};
|