2011-11-11 18:33:17 +01:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-11-11 18:33:17 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02:00
|
|
|
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
|
2011-11-11 18:33:17 +01:00
|
|
|
(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
|
2012-06-05 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-11-11 18:33:17 +01:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-11-11 18:33:17 +01:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SCRIPTAPI_HEADER
|
|
|
|
#define SCRIPTAPI_HEADER
|
|
|
|
|
|
|
|
#include <string>
|
2012-03-30 17:42:18 +02:00
|
|
|
#include <set>
|
2012-06-01 19:51:15 +02:00
|
|
|
#include <map>
|
2013-03-06 15:31:06 +01:00
|
|
|
#include "irr_v3d.h"
|
|
|
|
#include "irr_v2d.h"
|
2011-11-11 18:33:17 +01:00
|
|
|
|
2013-02-23 19:06:57 +01:00
|
|
|
extern "C" {
|
|
|
|
#include <lua.h>
|
|
|
|
}
|
|
|
|
#include "scriptapi_inventory.h"
|
|
|
|
#include "scriptapi_nodemeta.h"
|
|
|
|
#include "scriptapi_entity.h"
|
|
|
|
#include "scriptapi_object.h"
|
|
|
|
#include "scriptapi_env.h"
|
|
|
|
#include "scriptapi_item.h"
|
|
|
|
#include "scriptapi_node.h"
|
|
|
|
|
|
|
|
#define luamethod(class, name) {#name, class::l_##name}
|
|
|
|
|
2011-11-11 18:33:17 +01:00
|
|
|
class Server;
|
|
|
|
|
|
|
|
void scriptapi_export(lua_State *L, Server *server);
|
2011-12-02 21:49:54 +01:00
|
|
|
bool scriptapi_loadmod(lua_State *L, const std::string &scriptpath,
|
|
|
|
const std::string &modname);
|
2011-11-11 18:33:17 +01:00
|
|
|
|
2011-11-27 18:39:36 +01:00
|
|
|
// Returns true if script handled message
|
|
|
|
bool scriptapi_on_chat_message(lua_State *L, const std::string &name,
|
|
|
|
const std::string &message);
|
|
|
|
|
2012-09-08 20:44:26 +02:00
|
|
|
/* server */
|
|
|
|
void scriptapi_on_shutdown(lua_State *L);
|
|
|
|
|
2011-11-26 02:20:19 +01:00
|
|
|
/* misc */
|
|
|
|
void scriptapi_on_newplayer(lua_State *L, ServerActiveObject *player);
|
2012-01-05 23:12:33 +01:00
|
|
|
void scriptapi_on_dieplayer(lua_State *L, ServerActiveObject *player);
|
2011-11-26 02:20:19 +01:00
|
|
|
bool scriptapi_on_respawnplayer(lua_State *L, ServerActiveObject *player);
|
2012-03-24 18:52:50 +01:00
|
|
|
void scriptapi_on_joinplayer(lua_State *L, ServerActiveObject *player);
|
|
|
|
void scriptapi_on_leaveplayer(lua_State *L, ServerActiveObject *player);
|
2012-03-30 17:42:18 +02:00
|
|
|
bool scriptapi_get_auth(lua_State *L, const std::string &playername,
|
|
|
|
std::string *dst_password, std::set<std::string> *dst_privs);
|
|
|
|
void scriptapi_create_auth(lua_State *L, const std::string &playername,
|
|
|
|
const std::string &password);
|
|
|
|
bool scriptapi_set_password(lua_State *L, const std::string &playername,
|
|
|
|
const std::string &password);
|
2011-11-26 02:20:19 +01:00
|
|
|
|
2012-07-22 16:10:58 +02:00
|
|
|
/* player */
|
|
|
|
void scriptapi_on_player_receive_fields(lua_State *L,
|
|
|
|
ServerActiveObject *player,
|
|
|
|
const std::string &formname,
|
|
|
|
const std::map<std::string, std::string> &fields);
|
|
|
|
|
2011-11-11 18:33:17 +01:00
|
|
|
#endif
|
|
|
|
|