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"
|
|
|
|
|
|
|
|
#include "lua_measure.h"
|
|
|
|
#include "lua_meter.h"
|
|
|
|
#include "lua_group.h"
|
|
|
|
#include "lua_meterwindow.h"
|
|
|
|
#include "lua_rainmeter.h"
|
|
|
|
#include "lua_meterstring.h"
|
|
|
|
#include "lua_meterimage.h"
|
|
|
|
|
|
|
|
#include "lua_rainmeter_ext.h"
|
|
|
|
|
|
|
|
|
|
|
|
bool LuaManager::m_bInitialized = false;
|
|
|
|
lua_State* LuaManager::m_pState = 0;
|
|
|
|
|
|
|
|
void LuaManager::Init()
|
|
|
|
{
|
|
|
|
if(m_pState == 0)
|
|
|
|
{
|
|
|
|
|
|
|
|
// initialize Lua
|
|
|
|
m_pState = lua_open();
|
|
|
|
|
|
|
|
//load Lua base libraries
|
|
|
|
luaL_openlibs(m_pState);
|
|
|
|
|
|
|
|
tolua_measure_open(m_pState);
|
|
|
|
tolua_group_open(m_pState);
|
|
|
|
tolua_meter_open(m_pState);
|
|
|
|
tolua_meterwindow_open(m_pState);
|
|
|
|
tolua_rainmeter_open(m_pState);
|
|
|
|
tolua_meter_string_open(m_pState);
|
|
|
|
//tolua_meter_image_open(m_pState);
|
|
|
|
|
|
|
|
luaopen_rainmeter_ext(m_pState);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LuaManager::CleanUp()
|
|
|
|
{
|
|
|
|
lua_close(m_pState);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LuaManager::ReportErrors(lua_State * L)
|
|
|
|
{
|
|
|
|
|
|
|
|
LuaLog("Lua Error: %s", lua_tostring(L, -1));
|
|
|
|
lua_pop(L, 1);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void LuaManager::LuaLog(const char* format, ... )
|
|
|
|
{
|
|
|
|
char buffer[4096];
|
2010-12-15 22:03:36 +00:00
|
|
|
va_list args;
|
|
|
|
va_start( args, format );
|
2010-12-12 17:08:36 +00:00
|
|
|
|
2010-12-15 22:03:36 +00:00
|
|
|
_invalid_parameter_handler oldHandler = _set_invalid_parameter_handler(RmNullCRTInvalidParameterHandler);
|
|
|
|
_CrtSetReportMode(_CRT_ASSERT, 0);
|
|
|
|
|
|
|
|
errno = 0;
|
2010-12-16 20:35:44 +00:00
|
|
|
_vsnprintf_s( buffer, _TRUNCATE, format, args );
|
2010-12-15 22:03:36 +00:00
|
|
|
if (errno != 0)
|
|
|
|
{
|
2010-12-16 20:35:44 +00:00
|
|
|
_snprintf_s(buffer, _TRUNCATE, "LuaLog internal error: %s", format);
|
2010-12-15 22:03:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_set_invalid_parameter_handler(oldHandler);
|
2010-12-12 17:08:36 +00:00
|
|
|
|
|
|
|
#ifndef _DEBUG
|
|
|
|
// Forcing output to the Debug Output window!
|
|
|
|
OutputDebugStringA(buffer);
|
|
|
|
OutputDebugStringA("\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
std::wstring str = ConvertToWide(buffer);
|
|
|
|
|
2010-12-14 15:11:26 +00:00
|
|
|
LSLog(LOG_NOTICE, L"Lua", str.c_str());
|
2010-12-12 17:08:36 +00:00
|
|
|
va_end(args);
|
|
|
|
}
|