rainmeter-studio/Library/lua/LuaManager.cpp

76 lines
1.8 KiB
C++
Raw Normal View History

/*
Copyright (C) 2010 Matt King, Birunthan Mohanathas
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
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "../StdAfx.h"
#include "LuaManager.h"
#include "../Rainmeter.h"
2011-01-30 15:44:48 +00:00
int LuaManager::c_RefCount = 0;
lua_State* LuaManager::c_State = 0;
2012-03-02 10:04:08 +00:00
void LuaManager::Initialize()
{
if (c_State == NULL)
{
// Initialize Lua
c_State = luaL_newstate();
luaL_openlibs(c_State);
// Register custom types and functions
RegisterGlobal(c_State);
RegisterMeasure(c_State);
RegisterMeter(c_State);
RegisterMeterWindow(c_State);
}
2011-01-30 15:44:48 +00:00
++c_RefCount;
}
2012-03-02 10:04:08 +00:00
void LuaManager::Finalize()
{
2011-01-30 15:44:48 +00:00
if (c_RefCount > 0)
{
2011-01-30 15:44:48 +00:00
--c_RefCount;
}
if (c_RefCount == 0 && c_State != NULL)
{
lua_close(c_State);
c_State = NULL;
}
}
void LuaManager::ReportErrors(lua_State* L)
{
2012-05-29 16:43:24 +00:00
const char* error = lua_tostring(L, -1);
lua_pop(L, 1);
2012-05-29 16:43:24 +00:00
LogWithArgs(LOG_ERROR, L"Script: %S", error);
2011-03-29 19:21:57 +00:00
}
void LuaManager::PushWide(lua_State* L, const WCHAR* str)
{
lua_pushstring(L, ConvertToUTF8(str).c_str());
}
std::wstring LuaManager::ToWide(lua_State* L, int narg)
{
return ConvertUTF8ToWide(lua_tostring(L, narg));
}