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 14:54:50 +01:00
|
|
|
#include "content/mods.h"
|
2018-05-31 22:52:08 +02:00
|
|
|
#include "server.h"
|
|
|
|
#include <cmath>
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2015-04-07 23:04:48 -04: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-07 23:04:48 -04: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 21:44:37 +00:00
|
|
|
#ifndef SERVER
|
|
|
|
Client *ModApiBase::getClient(lua_State *L)
|
|
|
|
{
|
|
|
|
return getScriptApiBase(L)->getClient();
|
|
|
|
}
|
|
|
|
#endif
|
2017-01-31 13:18:52 +00:00
|
|
|
|
|
|
|
IGameDef *ModApiBase::getGameDef(lua_State *L)
|
|
|
|
{
|
|
|
|
return getScriptApiBase(L)->getGameDef();
|
|
|
|
}
|
|
|
|
|
2015-04-07 23:04:48 -04: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-07 23:04:48 -04: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-07 23:04:48 -04: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);
|
2015-05-16 19:09:53 -04:00
|
|
|
const char *current_mod_name = lua_tostring(L, -1);
|
|
|
|
if (!current_mod_name)
|
2015-04-07 23:04:48 -04:00
|
|
|
return ".";
|
|
|
|
|
2015-05-16 19:09:53 -04:00
|
|
|
const ModSpec *mod = getServer(L)->getModSpec(current_mod_name);
|
2015-04-07 23:04:48 -04:00
|
|
|
if (!mod)
|
|
|
|
return ".";
|
|
|
|
|
|
|
|
return mod->path;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-12 14:49:19 -05:00
|
|
|
bool ModApiBase::registerFunction(lua_State *L, const char *name,
|
|
|
|
lua_CFunction func, int top)
|
2015-04-07 23:04:48 -04:00
|
|
|
{
|
2014-12-12 14:49:19 -05:00
|
|
|
// TODO: Check presence first!
|
2013-05-25 00:51:02 +02:00
|
|
|
|
2014-12-12 14:49:19 -05:00
|
|
|
lua_pushcfunction(L, func);
|
|
|
|
lua_setfield(L, top, name);
|
2013-05-25 00:51:02 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2018-05-31 22:52:08 +02:00
|
|
|
|
|
|
|
bool ModApiBase::isNaN(lua_State *L, int idx)
|
|
|
|
{
|
|
|
|
return lua_type(L, idx) == LUA_TNUMBER && std::isnan(lua_tonumber(L, idx));
|
|
|
|
}
|
2018-06-04 22:38:07 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Read template functions
|
|
|
|
*/
|
|
|
|
template<>
|
|
|
|
float ModApiBase::readParam(lua_State *L, int index)
|
|
|
|
{
|
|
|
|
if (isNaN(L, index))
|
|
|
|
throw LuaError("NaN value is not allowed.");
|
|
|
|
|
|
|
|
return (float) luaL_checknumber(L, index);
|
|
|
|
}
|