2011-11-11 18:33:17 +01:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-11-11 18:33:17 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02:00
|
|
|
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
|
2011-11-11 18:33:17 +01:00
|
|
|
(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
|
2012-06-05 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-11-11 18:33:17 +01:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-11-11 18:33:17 +01:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script.h"
|
|
|
|
#include <cstdarg>
|
|
|
|
#include <cstring>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include "log.h"
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include <lua.h>
|
|
|
|
#include <lualib.h>
|
|
|
|
#include <lauxlib.h>
|
|
|
|
}
|
|
|
|
|
2011-12-03 01:45:55 +01:00
|
|
|
LuaError::LuaError(lua_State *L, const std::string &s)
|
|
|
|
{
|
|
|
|
m_s = "LuaError: ";
|
|
|
|
m_s += s + "\n";
|
2011-12-04 02:45:02 +01:00
|
|
|
m_s += script_get_backtrace(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string script_get_backtrace(lua_State *L)
|
|
|
|
{
|
|
|
|
std::string s;
|
2011-12-03 01:45:55 +01:00
|
|
|
lua_getfield(L, LUA_GLOBALSINDEX, "debug");
|
|
|
|
if(lua_istable(L, -1)){
|
|
|
|
lua_getfield(L, -1, "traceback");
|
|
|
|
if(lua_isfunction(L, -1)){
|
|
|
|
lua_call(L, 0, 1);
|
|
|
|
if(lua_isstring(L, -1)){
|
2011-12-04 02:45:02 +01:00
|
|
|
s += lua_tostring(L, -1);
|
2011-12-03 01:45:55 +01:00
|
|
|
}
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lua_pop(L, 1);
|
2011-12-04 02:45:02 +01:00
|
|
|
return s;
|
2011-12-03 01:45:55 +01:00
|
|
|
}
|
|
|
|
|
2011-11-11 18:33:17 +01:00
|
|
|
void script_error(lua_State *L, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list argp;
|
|
|
|
va_start(argp, fmt);
|
2011-12-02 21:49:54 +01:00
|
|
|
char buf[10000];
|
|
|
|
vsnprintf(buf, 10000, fmt, argp);
|
2011-11-11 18:33:17 +01:00
|
|
|
va_end(argp);
|
2011-12-02 21:49:54 +01:00
|
|
|
//errorstream<<"SCRIPT ERROR: "<<buf;
|
2011-12-03 01:45:55 +01:00
|
|
|
throw LuaError(L, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
int luaErrorHandler(lua_State *L) {
|
|
|
|
lua_getfield(L, LUA_GLOBALSINDEX, "debug");
|
|
|
|
if (!lua_istable(L, -1)) {
|
|
|
|
lua_pop(L, 1);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
lua_getfield(L, -1, "traceback");
|
|
|
|
if (!lua_isfunction(L, -1)) {
|
|
|
|
lua_pop(L, 2);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
lua_pushvalue(L, 1);
|
|
|
|
lua_pushinteger(L, 2);
|
|
|
|
lua_call(L, 2, 1);
|
|
|
|
return 1;
|
2011-11-11 18:33:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool script_load(lua_State *L, const char *path)
|
|
|
|
{
|
2012-03-11 03:15:45 +01:00
|
|
|
verbosestream<<"Loading and running script from "<<path<<std::endl;
|
2011-12-03 01:45:55 +01:00
|
|
|
|
|
|
|
lua_pushcfunction(L, luaErrorHandler);
|
|
|
|
int errorhandler = lua_gettop(L);
|
|
|
|
|
|
|
|
int ret = luaL_loadfile(L, path) || lua_pcall(L, 0, 0, errorhandler);
|
2011-11-11 18:33:17 +01:00
|
|
|
if(ret){
|
2012-03-19 07:23:48 +01:00
|
|
|
errorstream<<"========== ERROR FROM LUA ==========="<<std::endl;
|
|
|
|
errorstream<<"Failed to load and run script from "<<std::endl;
|
|
|
|
errorstream<<path<<":"<<std::endl;
|
|
|
|
errorstream<<std::endl;
|
|
|
|
errorstream<<lua_tostring(L, -1)<<std::endl;
|
|
|
|
errorstream<<std::endl;
|
|
|
|
errorstream<<"=======END OF ERROR FROM LUA ========"<<std::endl;
|
2011-11-11 18:33:17 +01:00
|
|
|
lua_pop(L, 1); // Pop error message from stack
|
2011-12-31 13:41:57 +01:00
|
|
|
lua_pop(L, 1); // Pop the error handler from stack
|
2011-11-11 18:33:17 +01:00
|
|
|
return false;
|
|
|
|
}
|
2011-12-31 13:41:57 +01:00
|
|
|
lua_pop(L, 1); // Pop the error handler from stack
|
2011-11-11 18:33:17 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
lua_State* script_init()
|
|
|
|
{
|
|
|
|
lua_State *L = luaL_newstate();
|
|
|
|
luaL_openlibs(L);
|
|
|
|
return L;
|
|
|
|
}
|
|
|
|
|
2011-11-12 09:39:44 +01:00
|
|
|
void script_deinit(lua_State *L)
|
2011-11-11 18:33:17 +01:00
|
|
|
{
|
|
|
|
lua_close(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|