2011-11-11 12:33:17 -05:00
|
|
|
/*
|
|
|
|
Minetest-c55
|
|
|
|
Copyright (C) 2011 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SCRIPTAPI_HEADER
|
|
|
|
#define SCRIPTAPI_HEADER
|
|
|
|
|
|
|
|
#include "irrlichttypes.h"
|
|
|
|
#include <string>
|
2011-11-17 04:22:24 -05:00
|
|
|
#include "mapnode.h"
|
2011-11-11 12:33:17 -05:00
|
|
|
|
|
|
|
class Server;
|
2011-11-11 19:25:30 -05:00
|
|
|
class ServerEnvironment;
|
2011-11-11 12:33:17 -05:00
|
|
|
class ServerActiveObject;
|
|
|
|
typedef struct lua_State lua_State;
|
2011-11-12 03:39:44 -05:00
|
|
|
struct LuaEntityProperties;
|
2011-11-29 10:15:18 -05:00
|
|
|
struct PointedThing;
|
2011-11-13 17:19:48 -05:00
|
|
|
//class IGameDef;
|
2011-11-11 12:33:17 -05:00
|
|
|
|
|
|
|
void scriptapi_export(lua_State *L, Server *server);
|
2011-11-11 19:25:30 -05:00
|
|
|
void scriptapi_add_environment(lua_State *L, ServerEnvironment *env);
|
|
|
|
|
2011-11-11 12:33:17 -05:00
|
|
|
void scriptapi_add_object_reference(lua_State *L, ServerActiveObject *cobj);
|
|
|
|
void scriptapi_rm_object_reference(lua_State *L, ServerActiveObject *cobj);
|
|
|
|
|
2011-11-27 12:39:36 -05:00
|
|
|
// Returns true if script handled message
|
|
|
|
bool scriptapi_on_chat_message(lua_State *L, const std::string &name,
|
|
|
|
const std::string &message);
|
|
|
|
|
2011-11-12 10:46:06 -05:00
|
|
|
/* environment */
|
2011-11-17 04:22:24 -05:00
|
|
|
// On environment step
|
2011-11-12 10:46:06 -05:00
|
|
|
void scriptapi_environment_step(lua_State *L, float dtime);
|
2011-11-17 04:22:24 -05:00
|
|
|
// After adding node
|
2011-11-25 12:49:20 -05:00
|
|
|
void scriptapi_environment_on_placenode(lua_State *L, v3s16 p, MapNode newnode,
|
|
|
|
ServerActiveObject *placer);
|
2011-11-17 04:22:24 -05:00
|
|
|
// After removing node
|
2011-11-25 12:49:20 -05:00
|
|
|
void scriptapi_environment_on_dignode(lua_State *L, v3s16 p, MapNode oldnode,
|
|
|
|
ServerActiveObject *digger);
|
2011-11-21 04:15:15 -05:00
|
|
|
// When punching node
|
2011-11-25 12:49:20 -05:00
|
|
|
void scriptapi_environment_on_punchnode(lua_State *L, v3s16 p, MapNode node,
|
|
|
|
ServerActiveObject *puncher);
|
2011-11-26 08:19:03 -05:00
|
|
|
// After generating a piece of map
|
|
|
|
void scriptapi_environment_on_generated(lua_State *L, v3s16 minp, v3s16 maxp);
|
2011-11-12 10:46:06 -05:00
|
|
|
|
2011-11-25 20:20:19 -05:00
|
|
|
/* misc */
|
|
|
|
void scriptapi_on_newplayer(lua_State *L, ServerActiveObject *player);
|
|
|
|
bool scriptapi_on_respawnplayer(lua_State *L, ServerActiveObject *player);
|
|
|
|
|
2011-11-29 10:15:18 -05:00
|
|
|
/* craftitem */
|
|
|
|
void scriptapi_add_craftitem(lua_State *L, const char *name);
|
|
|
|
bool scriptapi_craftitem_on_drop(lua_State *L, const char *name,
|
|
|
|
ServerActiveObject *dropper, v3f pos,
|
|
|
|
bool &callback_exists);
|
|
|
|
bool scriptapi_craftitem_on_place_on_ground(lua_State *L, const char *name,
|
|
|
|
ServerActiveObject *placer, v3f pos,
|
|
|
|
bool &callback_exists);
|
|
|
|
bool scriptapi_craftitem_on_use(lua_State *L, const char *name,
|
|
|
|
ServerActiveObject *user, const PointedThing& pointed,
|
|
|
|
bool &callback_exists);
|
|
|
|
|
2011-11-12 10:46:06 -05:00
|
|
|
/* luaentity */
|
2011-11-12 11:34:04 -05:00
|
|
|
// Returns true if succesfully added into Lua; false otherwise.
|
|
|
|
bool scriptapi_luaentity_add(lua_State *L, u16 id, const char *name,
|
2011-11-21 04:15:15 -05:00
|
|
|
const std::string &staticdata);
|
2011-11-11 17:46:05 -05:00
|
|
|
void scriptapi_luaentity_rm(lua_State *L, u16 id);
|
2011-11-21 04:15:15 -05:00
|
|
|
std::string scriptapi_luaentity_get_staticdata(lua_State *L, u16 id);
|
2011-11-12 03:39:44 -05:00
|
|
|
void scriptapi_luaentity_get_properties(lua_State *L, u16 id,
|
|
|
|
LuaEntityProperties *prop);
|
2011-11-11 19:25:30 -05:00
|
|
|
void scriptapi_luaentity_step(lua_State *L, u16 id, float dtime);
|
2011-11-12 10:37:14 -05:00
|
|
|
void scriptapi_luaentity_punch(lua_State *L, u16 id,
|
2011-11-13 17:19:48 -05:00
|
|
|
ServerActiveObject *puncher);
|
2011-11-12 10:37:14 -05:00
|
|
|
void scriptapi_luaentity_rightclick(lua_State *L, u16 id,
|
|
|
|
ServerActiveObject *clicker);
|
2011-11-11 12:33:17 -05:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|