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"
|
2015-04-08 05:04:48 +02:00
|
|
|
#include <mods.h>
|
|
|
|
#include <server.h>
|
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
|
|
|
|
lua_getfield(L, LUA_REGISTRYINDEX, "scriptapi");
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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-05-17 01:09:53 +02:00
|
|
|
lua_getfield(L, LUA_REGISTRYINDEX, SCRIPT_MOD_NAME_FIELD);
|
|
|
|
const char *current_mod_name = lua_tostring(L, -1);
|
|
|
|
if (!current_mod_name)
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool ModApiBase::registerFunction(
|
|
|
|
lua_State *L,
|
|
|
|
const char *name,
|
|
|
|
lua_CFunction fct,
|
|
|
|
int top)
|
|
|
|
{
|
2013-05-25 00:51:02 +02:00
|
|
|
//TODO check presence first!
|
|
|
|
|
|
|
|
lua_pushstring(L,name);
|
|
|
|
lua_pushcfunction(L,fct);
|
|
|
|
lua_settable(L, top);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|