2011-07-05 13:41:05 +00:00
|
|
|
/*
|
2012-01-23 06:36:15 +00:00
|
|
|
Copyright (C) 2010 Matt King, Birunthan Mohanathas
|
|
|
|
|
2011-07-05 13:41:05 +00:00
|
|
|
This program 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.
|
|
|
|
|
|
|
|
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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2012-01-23 06:36:15 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2011-07-05 13:41:05 +00:00
|
|
|
*/
|
|
|
|
|
2010-12-13 09:00:02 +00:00
|
|
|
#include "../StdAfx.h"
|
2010-12-12 17:08:36 +00:00
|
|
|
#include "LuaManager.h"
|
|
|
|
#include "../Rainmeter.h"
|
|
|
|
|
2011-01-30 15:44:48 +00:00
|
|
|
int LuaManager::c_RefCount = 0;
|
2011-07-06 10:21:18 +00:00
|
|
|
lua_State* LuaManager::c_State = 0;
|
2010-12-12 17:08:36 +00:00
|
|
|
|
2012-03-02 10:04:08 +00:00
|
|
|
void LuaManager::Initialize()
|
2010-12-12 17:08:36 +00:00
|
|
|
{
|
2011-07-06 10:21:18 +00:00
|
|
|
if (c_State == NULL)
|
2010-12-12 17:08:36 +00:00
|
|
|
{
|
2011-07-05 13:41:05 +00:00
|
|
|
// Initialize Lua
|
2011-07-06 10:21:18 +00:00
|
|
|
c_State = lua_open();
|
2012-03-09 13:19:49 +00:00
|
|
|
|
|
|
|
// Initialize standard libraries except debug, modified from linit.c
|
|
|
|
const luaL_Reg lualibs[] =
|
|
|
|
{
|
|
|
|
{ "", luaopen_base },
|
|
|
|
{ LUA_LOADLIBNAME, luaopen_package },
|
|
|
|
{ LUA_TABLIBNAME, luaopen_table },
|
|
|
|
{ LUA_IOLIBNAME, luaopen_io },
|
|
|
|
{ LUA_OSLIBNAME, luaopen_os },
|
|
|
|
{ LUA_STRLIBNAME, luaopen_string },
|
|
|
|
{ LUA_MATHLIBNAME, luaopen_math },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
const luaL_Reg* lib = lualibs;
|
|
|
|
for (; lib->func; lib++)
|
|
|
|
{
|
|
|
|
lua_pushcfunction(c_State, lib->func);
|
|
|
|
lua_pushstring(c_State, lib->name);
|
|
|
|
lua_call(c_State, 1, 0);
|
|
|
|
}
|
2010-12-12 17:08:36 +00:00
|
|
|
|
2011-07-05 13:41:05 +00:00
|
|
|
// Register custom types and functions
|
2011-07-06 10:21:18 +00:00
|
|
|
RegisterGlobal(c_State);
|
|
|
|
RegisterMeasure(c_State);
|
|
|
|
RegisterMeasure(c_State);
|
|
|
|
RegisterMeter(c_State);
|
|
|
|
RegisterMeterWindow(c_State);
|
2010-12-12 17:08:36 +00:00
|
|
|
}
|
2011-01-30 15:39:14 +00:00
|
|
|
|
2011-01-30 15:44:48 +00:00
|
|
|
++c_RefCount;
|
2010-12-12 17:08:36 +00:00
|
|
|
}
|
|
|
|
|
2012-03-02 10:04:08 +00:00
|
|
|
void LuaManager::Finalize()
|
2010-12-12 17:08:36 +00:00
|
|
|
{
|
2011-01-30 15:44:48 +00:00
|
|
|
if (c_RefCount > 0)
|
2011-01-30 15:39:14 +00:00
|
|
|
{
|
2011-01-30 15:44:48 +00:00
|
|
|
--c_RefCount;
|
2011-01-30 15:39:14 +00:00
|
|
|
}
|
|
|
|
|
2011-07-06 10:21:18 +00:00
|
|
|
if (c_RefCount == 0 && c_State != NULL)
|
2011-01-30 15:39:14 +00:00
|
|
|
{
|
2011-07-06 10:21:18 +00:00
|
|
|
lua_close(c_State);
|
|
|
|
c_State = NULL;
|
2011-01-30 15:39:14 +00:00
|
|
|
}
|
2010-12-12 17:08:36 +00:00
|
|
|
}
|
|
|
|
|
2011-07-05 13:41:05 +00:00
|
|
|
void LuaManager::ReportErrors(lua_State* L)
|
2010-12-12 17:08:36 +00:00
|
|
|
{
|
2011-07-07 16:18:39 +00:00
|
|
|
std::string error = lua_tostring(L, -1);
|
2010-12-12 17:08:36 +00:00
|
|
|
lua_pop(L, 1);
|
2011-07-07 16:18:39 +00:00
|
|
|
|
|
|
|
// Get rid of everything up to the filename
|
|
|
|
std::string::size_type pos = 4; // Skip the drive
|
|
|
|
pos = error.find_first_of(':', pos);
|
|
|
|
pos = error.find_last_of('\\', pos);
|
|
|
|
if (pos != std::string::npos)
|
|
|
|
{
|
|
|
|
error.erase(0, ++pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::wstring str = L"Script: ";
|
2011-09-04 07:40:12 +00:00
|
|
|
str += ConvertToWide(error.c_str());
|
2011-07-07 16:18:39 +00:00
|
|
|
Log(LOG_ERROR, str.c_str());
|
2011-03-29 19:21:57 +00:00
|
|
|
}
|
2010-12-12 17:08:36 +00:00
|
|
|
|
2011-09-03 16:45:29 +00:00
|
|
|
void LuaManager::PushWide(lua_State* L, const WCHAR* str)
|
|
|
|
{
|
2011-09-03 18:19:43 +00:00
|
|
|
lua_pushstring(L, ConvertToAscii(str).c_str());
|
2011-09-03 16:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::wstring LuaManager::ToWide(lua_State* L, int narg)
|
|
|
|
{
|
2011-09-03 18:19:43 +00:00
|
|
|
return ConvertToWide(lua_tostring(L, narg));
|
2011-09-03 16:45:29 +00:00
|
|
|
}
|