/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /*************************************************************************** * lua.cc * * Thu May 29 16:30:50 CEST 2008 * Copyright 2008 Bent Bisballe Nyeng * deva@aasimon.org ****************************************************************************/ /* * This file is part of Pracro. * * Pracro is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Pracro 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Pracro; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "lua.h" #include "macrowindow.h" #include "widgets/widget.h" #include "luawidget.h" #include "luadb.h" #include "debug.h" #define GLOBAL_POINTER "_pracroGlobalLUAObjectPointerThisShouldBeANameThatIsNotAccidentallyOverwritten" static int get_widget(lua_State *L) { int n = lua_gettop(L); // number of arguments if(n != 1) { char errstr[512]; sprintf(errstr, "Number of args expected 1, got %d", n); lua_pushstring(L, errstr); lua_error(L); return 1; } QString name = lua_tostring(L, lua_gettop(L)); lua_getglobal(L, GLOBAL_POINTER); LUA *lua = (LUA*)lua_touserdata(L, lua_gettop(L)); if(!lua) { lua_pushstring(L, "No LUA pointer!"); lua_error(L); return 1; } Widget *widget = lua->getWidget(name); if(widget) { wdg_make_widget(L, widget); DEBUG(lua, "get_widget found widget %s", name.toStdString().c_str()); } else { lua_pushnil(L); WARN(lua, "get_widget could not find widget %s", name.toStdString().c_str()); } return 1; } static int debug(lua_State *L) { int n = lua_gettop(L); // number of arguments if(n != 1) { char errstr[512]; sprintf(errstr, "Number of args expected 1, got %d", n); lua_pushstring(L, errstr); lua_error(L); return 1; } DEBUG(lua, "%s", lua_tostring(L, lua_gettop(L))); return 0; } LUA::LUA(Widget **rootwidget) { this->rootwidget = rootwidget; L = NULL; clear(); } LUA::~LUA() { lua_close(L); } void LUA::clear() { if(L) lua_close(L); L = luaL_newstate(); if(L == NULL) { ERROR(lua, "Could not create LUA state."); return; } luaL_openlibs(L); lua_pushlightuserdata(L, this); // Push the pointer to 'this' instance lua_setglobal(L, GLOBAL_POINTER); // Assign it to a global lua var. lua_register(L, "widget", get_widget); lua_register(L, "debug", debug); register_widget(L); register_db(L); } QString LUA::runScriptS(QString script, Widget *widget, QString name) { if(L == NULL) { ERROR(lua, "LUA state not initialized!"); return ""; } int top = lua_gettop(L); DEBUG(lua, "Running %s script %s on %s widget.\n", name.toStdString().c_str(), script.toStdString().c_str(), widget?widget->name().toStdString().c_str():"NULL"); if(widget) { wdg_make_widget(L, widget); lua_setglobal(L, "this"); } if(luaL_loadbuffer(L, script.toStdString().c_str(), script.size(), name.toStdString().c_str())) { ERROR(lua, "%s", lua_tostring(L, lua_gettop(L))); return ""; } // Run the loaded code if(lua_pcall(L, 0, LUA_MULTRET, 0)) { ERROR(lua, "%s", lua_tostring(L, lua_gettop(L))); return ""; } if(top != lua_gettop(L) - 1) { ERROR(lua, "Program did not return a single value.\n"); return ""; } if(lua_isstring(L, lua_gettop(L)) == false) { ERROR(lua, "Program did not return a boolean value.\n"); return ""; } QString res = lua_tostring(L, lua_gettop(L)); lua_pop(L, 1); return res; } bool LUA::runScript(QString script, Widget *widget, QString name) { if(L == NULL) { ERROR(lua, "LUA state not initialized!"); return false; } DEBUG(lua, "Running %s script %s on %s widget.\n", name.toStdString().c_str(), script.toStdString().c_str(), widget?widget->name().toStdString().c_str():"NULL"); if(widget) { wdg_make_widget(L, widget); lua_setglobal(L, "this"); } if(luaL_loadbuffer(L, script.toStdString().c_str(), script.size(), name.toStdString().c_str())) { ERROR(lua, "%s", lua_tostring(L, lua_gettop(L))); return false; } // Run the loaded code if(lua_pcall(L, 0, LUA_MULTRET, 0)) { ERROR(lua, "%s", lua_tostring(L, lua_gettop(L))); return false; } return true; } Widget *LUA::getWidget(QString name) { if(*rootwidget) return (*rootwidget)->findWidget(name, true); else { WARN(lua, "Could not find widget '%s'", name.toStdString().c_str()); return NULL; } }