2013-05-25 00:51:02 +02:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2013 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 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cpp_api/s_player.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "cpp_api/s_internal.h"
|
2014-05-17 06:47:12 +02:00
|
|
|
#include "common/c_converter.h"
|
|
|
|
#include "common/c_content.h"
|
2013-12-12 07:51:35 +01:00
|
|
|
#include "util/string.h"
|
2013-05-25 00:51:02 +02:00
|
|
|
|
|
|
|
void ScriptApiPlayer::on_newplayer(ServerActiveObject *player)
|
|
|
|
{
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
// Get core.registered_on_newplayers
|
|
|
|
lua_getglobal(L, "core");
|
2013-05-25 00:51:02 +02:00
|
|
|
lua_getfield(L, -1, "registered_on_newplayers");
|
|
|
|
// Call callbacks
|
2014-10-02 21:58:13 +02:00
|
|
|
objectrefGetOrCreate(L, player);
|
2015-08-12 04:27:54 +02:00
|
|
|
runCallbacks(1, RUN_CALLBACKS_MODE_FIRST);
|
2013-05-25 00:51:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptApiPlayer::on_dieplayer(ServerActiveObject *player)
|
|
|
|
{
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
// Get core.registered_on_dieplayers
|
|
|
|
lua_getglobal(L, "core");
|
2013-05-25 00:51:02 +02:00
|
|
|
lua_getfield(L, -1, "registered_on_dieplayers");
|
|
|
|
// Call callbacks
|
2014-10-02 21:58:13 +02:00
|
|
|
objectrefGetOrCreate(L, player);
|
2015-08-12 04:27:54 +02:00
|
|
|
runCallbacks(1, RUN_CALLBACKS_MODE_FIRST);
|
2013-05-25 00:51:02 +02:00
|
|
|
}
|
|
|
|
|
2014-05-17 06:47:12 +02:00
|
|
|
bool ScriptApiPlayer::on_punchplayer(ServerActiveObject *player,
|
|
|
|
ServerActiveObject *hitter,
|
|
|
|
float time_from_last_punch,
|
|
|
|
const ToolCapabilities *toolcap,
|
|
|
|
v3f dir,
|
|
|
|
s16 damage)
|
|
|
|
{
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
// Get core.registered_on_punchplayers
|
|
|
|
lua_getglobal(L, "core");
|
|
|
|
lua_getfield(L, -1, "registered_on_punchplayers");
|
|
|
|
// Call callbacks
|
|
|
|
objectrefGetOrCreate(L, player);
|
|
|
|
objectrefGetOrCreate(L, hitter);
|
|
|
|
lua_pushnumber(L, time_from_last_punch);
|
|
|
|
push_tool_capabilities(L, *toolcap);
|
|
|
|
push_v3f(L, dir);
|
|
|
|
lua_pushnumber(L, damage);
|
2015-08-12 04:27:54 +02:00
|
|
|
runCallbacks(6, RUN_CALLBACKS_MODE_OR);
|
2014-05-17 06:47:12 +02:00
|
|
|
return lua_toboolean(L, -1);
|
|
|
|
}
|
|
|
|
|
2015-05-30 16:56:42 +02:00
|
|
|
s16 ScriptApiPlayer::on_player_hpchange(ServerActiveObject *player,
|
|
|
|
s16 hp_change)
|
|
|
|
{
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
2015-08-25 07:44:53 +02:00
|
|
|
int error_handler = PUSH_ERROR_HANDLER(L);
|
|
|
|
|
2015-05-30 16:56:42 +02:00
|
|
|
// Get core.registered_on_player_hpchange
|
|
|
|
lua_getglobal(L, "core");
|
|
|
|
lua_getfield(L, -1, "registered_on_player_hpchange");
|
|
|
|
lua_remove(L, -2);
|
|
|
|
|
|
|
|
objectrefGetOrCreate(L, player);
|
|
|
|
lua_pushnumber(L, hp_change);
|
2015-08-25 07:44:53 +02:00
|
|
|
PCALL_RES(lua_pcall(L, 2, 1, error_handler));
|
2015-05-30 16:56:42 +02:00
|
|
|
hp_change = lua_tointeger(L, -1);
|
2015-08-25 07:44:53 +02:00
|
|
|
lua_pop(L, 2); // Pop result and error handler
|
2015-05-30 16:56:42 +02:00
|
|
|
return hp_change;
|
|
|
|
}
|
|
|
|
|
2013-05-25 00:51:02 +02:00
|
|
|
bool ScriptApiPlayer::on_respawnplayer(ServerActiveObject *player)
|
|
|
|
{
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
// Get core.registered_on_respawnplayers
|
|
|
|
lua_getglobal(L, "core");
|
2013-05-25 00:51:02 +02:00
|
|
|
lua_getfield(L, -1, "registered_on_respawnplayers");
|
|
|
|
// Call callbacks
|
2014-10-02 21:58:13 +02:00
|
|
|
objectrefGetOrCreate(L, player);
|
2015-08-12 04:27:54 +02:00
|
|
|
runCallbacks(1, RUN_CALLBACKS_MODE_OR);
|
2013-05-25 00:51:02 +02:00
|
|
|
bool positioning_handled_by_some = lua_toboolean(L, -1);
|
|
|
|
return positioning_handled_by_some;
|
|
|
|
}
|
|
|
|
|
2015-05-19 08:24:14 +02:00
|
|
|
bool ScriptApiPlayer::on_prejoinplayer(
|
|
|
|
const std::string &name,
|
|
|
|
const std::string &ip,
|
|
|
|
std::string *reason)
|
2013-12-12 07:51:35 +01:00
|
|
|
{
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
// Get core.registered_on_prejoinplayers
|
|
|
|
lua_getglobal(L, "core");
|
2013-12-12 07:51:35 +01:00
|
|
|
lua_getfield(L, -1, "registered_on_prejoinplayers");
|
|
|
|
lua_pushstring(L, name.c_str());
|
|
|
|
lua_pushstring(L, ip.c_str());
|
2015-08-12 04:27:54 +02:00
|
|
|
runCallbacks(2, RUN_CALLBACKS_MODE_OR);
|
2013-12-12 07:51:35 +01:00
|
|
|
if (lua_isstring(L, -1)) {
|
2015-05-19 08:24:14 +02:00
|
|
|
reason->assign(lua_tostring(L, -1));
|
2013-12-12 07:51:35 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-05-25 00:51:02 +02:00
|
|
|
void ScriptApiPlayer::on_joinplayer(ServerActiveObject *player)
|
|
|
|
{
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
// Get core.registered_on_joinplayers
|
|
|
|
lua_getglobal(L, "core");
|
2013-05-25 00:51:02 +02:00
|
|
|
lua_getfield(L, -1, "registered_on_joinplayers");
|
|
|
|
// Call callbacks
|
2014-10-02 21:58:13 +02:00
|
|
|
objectrefGetOrCreate(L, player);
|
2015-08-12 04:27:54 +02:00
|
|
|
runCallbacks(1, RUN_CALLBACKS_MODE_FIRST);
|
2013-05-25 00:51:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptApiPlayer::on_leaveplayer(ServerActiveObject *player)
|
|
|
|
{
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
// Get core.registered_on_leaveplayers
|
|
|
|
lua_getglobal(L, "core");
|
2013-05-25 00:51:02 +02:00
|
|
|
lua_getfield(L, -1, "registered_on_leaveplayers");
|
|
|
|
// Call callbacks
|
2014-10-02 21:58:13 +02:00
|
|
|
objectrefGetOrCreate(L, player);
|
2015-08-12 04:27:54 +02:00
|
|
|
runCallbacks(1, RUN_CALLBACKS_MODE_FIRST);
|
2013-05-25 00:51:02 +02:00
|
|
|
}
|
|
|
|
|
2013-08-03 23:45:49 +02:00
|
|
|
void ScriptApiPlayer::on_cheat(ServerActiveObject *player,
|
|
|
|
const std::string &cheat_type)
|
|
|
|
{
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
// Get core.registered_on_cheats
|
|
|
|
lua_getglobal(L, "core");
|
2013-08-03 23:45:49 +02:00
|
|
|
lua_getfield(L, -1, "registered_on_cheats");
|
|
|
|
// Call callbacks
|
2014-10-02 21:58:13 +02:00
|
|
|
objectrefGetOrCreate(L, player);
|
2013-08-03 23:45:49 +02:00
|
|
|
lua_newtable(L);
|
|
|
|
lua_pushlstring(L, cheat_type.c_str(), cheat_type.size());
|
|
|
|
lua_setfield(L, -2, "type");
|
2015-08-12 04:27:54 +02:00
|
|
|
runCallbacks(2, RUN_CALLBACKS_MODE_FIRST);
|
2013-08-03 23:45:49 +02:00
|
|
|
}
|
|
|
|
|
2013-05-25 00:51:02 +02:00
|
|
|
void ScriptApiPlayer::on_playerReceiveFields(ServerActiveObject *player,
|
|
|
|
const std::string &formname,
|
2015-05-19 08:24:14 +02:00
|
|
|
const StringMap &fields)
|
2013-05-25 00:51:02 +02:00
|
|
|
{
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
// Get core.registered_on_chat_messages
|
|
|
|
lua_getglobal(L, "core");
|
2013-05-25 00:51:02 +02:00
|
|
|
lua_getfield(L, -1, "registered_on_player_receive_fields");
|
|
|
|
// Call callbacks
|
|
|
|
// param 1
|
2014-10-02 21:58:13 +02:00
|
|
|
objectrefGetOrCreate(L, player);
|
2013-05-25 00:51:02 +02:00
|
|
|
// param 2
|
|
|
|
lua_pushstring(L, formname.c_str());
|
|
|
|
// param 3
|
|
|
|
lua_newtable(L);
|
2015-05-19 08:24:14 +02:00
|
|
|
StringMap::const_iterator it;
|
|
|
|
for (it = fields.begin(); it != fields.end(); ++it) {
|
|
|
|
const std::string &name = it->first;
|
|
|
|
const std::string &value = it->second;
|
2013-05-25 00:51:02 +02:00
|
|
|
lua_pushstring(L, name.c_str());
|
|
|
|
lua_pushlstring(L, value.c_str(), value.size());
|
|
|
|
lua_settable(L, -3);
|
|
|
|
}
|
2015-08-12 04:27:54 +02:00
|
|
|
runCallbacks(3, RUN_CALLBACKS_MODE_OR_SC);
|
2013-05-25 00:51:02 +02:00
|
|
|
}
|
2015-05-19 08:24:14 +02:00
|
|
|
|
|
|
|
ScriptApiPlayer::~ScriptApiPlayer()
|
|
|
|
{
|
2013-05-25 00:51:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|