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 "lua_api/l_base.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "lua_api/l_internal.h"
|
|
|
|
#include "cpp_api/s_base.h"
|
2018-04-17 15:54:50 +02:00
|
|
|
#include "content/mods.h"
|
2018-07-01 12:31:49 +02:00
|
|
|
#include "profiler.h"
|
2018-05-31 22:52:08 +02:00
|
|
|
#include "server.h"
|
2018-07-01 12:31:49 +02:00
|
|
|
#include <algorithm>
|
2018-05-31 22:52:08 +02:00
|
|
|
#include <cmath>
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2015-04-08 05:04:48 +02:00
|
|
|
ScriptApiBase *ModApiBase::getScriptApiBase(lua_State *L)
|
|
|
|
{
|
2013-08-11 04:09:45 +02:00
|
|
|
// Get server from registry
|
2015-08-25 07:00:56 +02:00
|
|
|
lua_rawgeti(L, LUA_REGISTRYINDEX, CUSTOM_RIDX_SCRIPTAPI);
|
2013-08-11 04:09:45 +02:00
|
|
|
ScriptApiBase *sapi_ptr = (ScriptApiBase*) lua_touserdata(L, -1);
|
|
|
|
lua_pop(L, 1);
|
|
|
|
return sapi_ptr;
|
2013-05-25 00:51:02 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 05:04:48 +02:00
|
|
|
Server *ModApiBase::getServer(lua_State *L)
|
|
|
|
{
|
2013-08-11 04:09:45 +02:00
|
|
|
return getScriptApiBase(L)->getServer();
|
2013-05-25 00:51:02 +02:00
|
|
|
}
|
|
|
|
|
2017-01-21 22:44:37 +01:00
|
|
|
#ifndef SERVER
|
|
|
|
Client *ModApiBase::getClient(lua_State *L)
|
|
|
|
{
|
|
|
|
return getScriptApiBase(L)->getClient();
|
|
|
|
}
|
|
|
|
#endif
|
2017-01-31 14:18:52 +01:00
|
|
|
|
|
|
|
IGameDef *ModApiBase::getGameDef(lua_State *L)
|
|
|
|
{
|
|
|
|
return getScriptApiBase(L)->getGameDef();
|
|
|
|
}
|
|
|
|
|
2015-04-08 05:04:48 +02:00
|
|
|
Environment *ModApiBase::getEnv(lua_State *L)
|
|
|
|
{
|
2013-08-11 04:09:45 +02:00
|
|
|
return getScriptApiBase(L)->getEnv();
|
2013-05-25 00:51:02 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 05:04:48 +02:00
|
|
|
GUIEngine *ModApiBase::getGuiEngine(lua_State *L)
|
|
|
|
{
|
2013-08-11 04:09:45 +02:00
|
|
|
return getScriptApiBase(L)->getGuiEngine();
|
2013-05-25 00:51:02 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 05:04:48 +02:00
|
|
|
std::string ModApiBase::getCurrentModPath(lua_State *L)
|
|
|
|
{
|
2015-08-25 07:00:56 +02:00
|
|
|
lua_rawgeti(L, LUA_REGISTRYINDEX, CUSTOM_RIDX_CURRENT_MOD_NAME);
|
2018-06-30 17:11:38 +02:00
|
|
|
std::string current_mod_name = readParam<std::string>(L, -1, "");
|
|
|
|
if (current_mod_name.empty())
|
2015-04-08 05:04:48 +02:00
|
|
|
return ".";
|
|
|
|
|
2015-05-17 01:09:53 +02:00
|
|
|
const ModSpec *mod = getServer(L)->getModSpec(current_mod_name);
|
2015-04-08 05:04:48 +02:00
|
|
|
if (!mod)
|
|
|
|
return ".";
|
|
|
|
|
|
|
|
return mod->path;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-12 20:49:19 +01:00
|
|
|
bool ModApiBase::registerFunction(lua_State *L, const char *name,
|
|
|
|
lua_CFunction func, int top)
|
2015-04-08 05:04:48 +02:00
|
|
|
{
|
2014-12-12 20:49:19 +01:00
|
|
|
// TODO: Check presence first!
|
2013-05-25 00:51:02 +02:00
|
|
|
|
2014-12-12 20:49:19 +01:00
|
|
|
lua_pushcfunction(L, func);
|
|
|
|
lua_setfield(L, top, name);
|
2013-05-25 00:51:02 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2018-07-01 12:31:49 +02:00
|
|
|
|
|
|
|
std::unordered_map<std::string, luaL_Reg> ModApiBase::m_deprecated_wrappers;
|
|
|
|
bool ModApiBase::m_error_deprecated_calls = false;
|
|
|
|
|
|
|
|
int ModApiBase::l_deprecated_function(lua_State *L)
|
|
|
|
{
|
|
|
|
thread_local std::vector<u64> deprecated_logged;
|
|
|
|
|
|
|
|
u64 start_time = porting::getTimeUs();
|
|
|
|
lua_Debug ar;
|
|
|
|
|
|
|
|
// Get function name for lookup
|
|
|
|
FATAL_ERROR_IF(!lua_getstack(L, 0, &ar), "lua_getstack() failed");
|
|
|
|
FATAL_ERROR_IF(!lua_getinfo(L, "n", &ar), "lua_getinfo() failed");
|
|
|
|
|
|
|
|
// Combine name with line and script backtrace
|
|
|
|
FATAL_ERROR_IF(!lua_getstack(L, 1, &ar), "lua_getstack() failed");
|
|
|
|
FATAL_ERROR_IF(!lua_getinfo(L, "Sl", &ar), "lua_getinfo() failed");
|
|
|
|
|
|
|
|
// Get parent class to get the wrappers map
|
|
|
|
luaL_checktype(L, 1, LUA_TUSERDATA);
|
|
|
|
void *ud = lua_touserdata(L, 1);
|
|
|
|
ModApiBase *o = *(ModApiBase**)ud;
|
|
|
|
|
|
|
|
// New function and new function name
|
|
|
|
auto it = o->m_deprecated_wrappers.find(ar.name);
|
|
|
|
|
|
|
|
// Get backtrace and hash it to reduce the warning flood
|
|
|
|
std::string backtrace = ar.short_src;
|
|
|
|
backtrace.append(":").append(std::to_string(ar.currentline));
|
|
|
|
u64 hash = murmur_hash_64_ua(backtrace.data(), backtrace.length(), 0xBADBABE);
|
|
|
|
|
|
|
|
if (std::find(deprecated_logged.begin(), deprecated_logged.end(), hash)
|
|
|
|
== deprecated_logged.end()) {
|
|
|
|
|
|
|
|
deprecated_logged.emplace_back(hash);
|
|
|
|
warningstream << "Call to deprecated function '" << ar.name << "', please use '"
|
|
|
|
<< it->second.name << "' at " << backtrace << std::endl;
|
|
|
|
|
|
|
|
if (m_error_deprecated_calls)
|
|
|
|
script_error(L, LUA_ERRRUN, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 end_time = porting::getTimeUs();
|
|
|
|
g_profiler->avg("l_deprecated_function", end_time - start_time);
|
|
|
|
|
|
|
|
return it->second.func(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ModApiBase::markAliasDeprecated(luaL_Reg *reg)
|
|
|
|
{
|
|
|
|
std::string value = g_settings->get("deprecated_lua_api_handling");
|
|
|
|
m_error_deprecated_calls = value == "error";
|
|
|
|
|
|
|
|
if (!m_error_deprecated_calls && value != "log")
|
|
|
|
return;
|
|
|
|
|
|
|
|
const char *last_name = nullptr;
|
|
|
|
lua_CFunction last_func = nullptr;
|
|
|
|
|
|
|
|
// ! Null termination !
|
|
|
|
while (reg->func) {
|
|
|
|
if (last_func == reg->func) {
|
|
|
|
// Duplicate found
|
2018-09-11 19:32:10 +02:00
|
|
|
luaL_Reg original_reg;
|
|
|
|
// Do not inline struct. Breaks MSVC or is error-prone
|
|
|
|
original_reg.name = last_name;
|
|
|
|
original_reg.func = reg->func;
|
|
|
|
m_deprecated_wrappers.emplace(
|
|
|
|
std::pair<std::string, luaL_Reg>(reg->name, original_reg));
|
2018-07-01 12:31:49 +02:00
|
|
|
reg->func = l_deprecated_function;
|
|
|
|
}
|
|
|
|
|
|
|
|
last_func = reg->func;
|
|
|
|
last_name = reg->name;
|
|
|
|
++reg;
|
|
|
|
}
|
|
|
|
}
|