2024-10-28 15:57:39 +01:00
|
|
|
// Luanti
|
|
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
// Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
// Copyright (C) 2017-8 rubenwardy <rw@rubenwardy.com>
|
2018-04-06 09:52:29 +01:00
|
|
|
|
|
|
|
#include "lua_api/l_playermeta.h"
|
|
|
|
#include "lua_api/l_internal.h"
|
|
|
|
#include "common/c_content.h"
|
2024-10-07 21:08:47 +02:00
|
|
|
#include "serverenvironment.h"
|
|
|
|
#include "remoteplayer.h"
|
|
|
|
#include "server/player_sao.h"
|
2018-04-06 09:52:29 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
PlayerMetaRef
|
|
|
|
*/
|
|
|
|
|
2022-09-26 17:03:43 -04:00
|
|
|
IMetadata *PlayerMetaRef::getmeta(bool auto_create)
|
2018-04-06 09:52:29 +01:00
|
|
|
{
|
2024-10-07 21:08:47 +02:00
|
|
|
auto *player = m_env->getPlayer(m_name);
|
|
|
|
auto *sao = player ? player->getPlayerSAO() : nullptr;
|
|
|
|
return sao ? &sao->getMeta() : nullptr;
|
2018-04-06 09:52:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void PlayerMetaRef::clearMeta()
|
|
|
|
{
|
2024-10-07 21:08:47 +02:00
|
|
|
if (auto *meta = getmeta(true))
|
|
|
|
meta->clear();
|
2018-04-06 09:52:29 +01:00
|
|
|
}
|
|
|
|
|
2018-12-21 19:05:29 +01:00
|
|
|
void PlayerMetaRef::reportMetadataChange(const std::string *name)
|
2018-04-06 09:52:29 +01:00
|
|
|
{
|
2024-09-25 23:24:30 +02:00
|
|
|
// the server saves these on its own
|
2018-04-06 09:52:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Creates an PlayerMetaRef and leaves it on top of stack
|
|
|
|
// Not callable from Lua; all references are created on the C side.
|
2024-10-07 21:08:47 +02:00
|
|
|
void PlayerMetaRef::create(lua_State *L, ServerEnvironment *env, std::string_view name)
|
2018-04-06 09:52:29 +01:00
|
|
|
{
|
2024-10-07 21:08:47 +02:00
|
|
|
PlayerMetaRef *o = new PlayerMetaRef(env, name);
|
2018-04-06 09:52:29 +01:00
|
|
|
*(void **)(lua_newuserdata(L, sizeof(void *))) = o;
|
|
|
|
luaL_getmetatable(L, className);
|
|
|
|
lua_setmetatable(L, -2);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PlayerMetaRef::Register(lua_State *L)
|
|
|
|
{
|
2022-10-04 08:31:36 -04:00
|
|
|
registerMetadataClass(L, className, methods);
|
2018-04-06 09:52:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const char PlayerMetaRef::className[] = "PlayerMetaRef";
|
|
|
|
const luaL_Reg PlayerMetaRef::methods[] = {
|
2018-04-30 17:42:51 +01:00
|
|
|
luamethod(MetaDataRef, contains),
|
|
|
|
luamethod(MetaDataRef, get),
|
2018-04-06 09:52:29 +01:00
|
|
|
luamethod(MetaDataRef, get_string),
|
|
|
|
luamethod(MetaDataRef, set_string),
|
|
|
|
luamethod(MetaDataRef, get_int),
|
|
|
|
luamethod(MetaDataRef, set_int),
|
|
|
|
luamethod(MetaDataRef, get_float),
|
|
|
|
luamethod(MetaDataRef, set_float),
|
2022-11-15 10:45:12 -05:00
|
|
|
luamethod(MetaDataRef, get_keys),
|
2018-04-06 09:52:29 +01:00
|
|
|
luamethod(MetaDataRef, to_table),
|
|
|
|
luamethod(MetaDataRef, from_table),
|
|
|
|
luamethod(MetaDataRef, equals),
|
|
|
|
{0,0}
|
|
|
|
};
|