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
|
|
|
*/
|
|
|
|
|
2014-01-05 11:00:50 +00:00
|
|
|
#include "StdAfx.h"
|
2013-05-30 16:51:05 +00:00
|
|
|
#include "../../Common/StringUtil.h"
|
2010-12-12 17:08:36 +00:00
|
|
|
#include "LuaManager.h"
|
2013-05-30 16:51:05 +00:00
|
|
|
#include "../Logger.h"
|
2010-12-12 17:08:36 +00:00
|
|
|
|
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
|
|
|
|
2013-08-07 14:48:13 +00:00
|
|
|
std::vector<bool> LuaManager::c_UnicodeStateStack;
|
2013-08-06 17:43:57 +00:00
|
|
|
|
2012-03-02 10:04:08 +00:00
|
|
|
void LuaManager::Initialize()
|
2010-12-12 17:08:36 +00:00
|
|
|
{
|
2013-05-31 14:28:39 +00:00
|
|
|
if (c_State == nullptr)
|
2010-12-12 17:08:36 +00:00
|
|
|
{
|
2011-07-05 13:41:05 +00:00
|
|
|
// Initialize Lua
|
2012-03-10 07:03:19 +00:00
|
|
|
c_State = luaL_newstate();
|
|
|
|
|
2012-07-10 11:30:45 +00:00
|
|
|
luaL_openlibs(c_State);
|
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);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2013-05-31 14:28:39 +00:00
|
|
|
if (c_RefCount == 0 && c_State != nullptr)
|
2011-01-30 15:39:14 +00:00
|
|
|
{
|
2011-07-06 10:21:18 +00:00
|
|
|
lua_close(c_State);
|
2013-05-31 14:28:39 +00:00
|
|
|
c_State = nullptr;
|
2011-01-30 15:39:14 +00:00
|
|
|
}
|
2010-12-12 17:08:36 +00:00
|
|
|
}
|
|
|
|
|
2013-08-06 17:43:57 +00:00
|
|
|
void LuaManager::ReportErrors(const std::wstring& file)
|
2010-12-12 17:08:36 +00:00
|
|
|
{
|
2013-08-06 17:43:57 +00:00
|
|
|
lua_State* L = c_State;
|
2012-05-29 16:43:24 +00:00
|
|
|
const char* 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
|
|
|
|
2012-10-06 19:03:29 +00:00
|
|
|
// Skip "[string ...]".
|
|
|
|
const char* pos = strchr(error, ':');
|
|
|
|
if (pos)
|
2012-07-21 16:46:00 +00:00
|
|
|
{
|
2012-10-06 19:03:29 +00:00
|
|
|
error = pos;
|
2012-07-21 16:46:00 +00:00
|
|
|
}
|
|
|
|
|
2012-10-06 19:03:29 +00:00
|
|
|
std::wstring str(file, file.find_last_of(L'\\') + 1);
|
2013-08-07 14:48:13 +00:00
|
|
|
str += IsUnicodeState() ? StringUtil::WidenUTF8(error) : StringUtil::Widen(error);
|
2013-05-30 14:19:42 +00:00
|
|
|
LogErrorF(L"Script: %s", str.c_str());
|
2011-03-29 19:21:57 +00:00
|
|
|
}
|
2010-12-12 17:08:36 +00:00
|
|
|
|
2013-08-06 17:43:57 +00:00
|
|
|
void LuaManager::PushWide(const WCHAR* str)
|
2011-09-03 16:45:29 +00:00
|
|
|
{
|
2013-08-06 17:43:57 +00:00
|
|
|
lua_State* L = c_State;
|
2013-08-07 14:48:13 +00:00
|
|
|
const std::string narrowStr = IsUnicodeState() ?
|
2013-08-06 17:43:57 +00:00
|
|
|
StringUtil::NarrowUTF8(str) : StringUtil::Narrow(str);
|
2013-01-27 10:17:38 +00:00
|
|
|
lua_pushlstring(L, narrowStr.c_str(), narrowStr.length());
|
|
|
|
}
|
|
|
|
|
2013-08-06 17:43:57 +00:00
|
|
|
void LuaManager::PushWide(const std::wstring& str)
|
2013-01-27 10:17:38 +00:00
|
|
|
{
|
2013-08-06 17:43:57 +00:00
|
|
|
lua_State* L = c_State;
|
2013-08-07 14:48:13 +00:00
|
|
|
const std::string narrowStr = IsUnicodeState() ?
|
2013-08-06 17:43:57 +00:00
|
|
|
StringUtil::NarrowUTF8(str) : StringUtil::Narrow(str);
|
2013-01-27 10:17:38 +00:00
|
|
|
lua_pushlstring(L, narrowStr.c_str(), narrowStr.length());
|
2011-09-03 16:45:29 +00:00
|
|
|
}
|
|
|
|
|
2013-08-06 17:43:57 +00:00
|
|
|
std::wstring LuaManager::ToWide(int narg)
|
2011-09-03 16:45:29 +00:00
|
|
|
{
|
2013-08-06 17:43:57 +00:00
|
|
|
lua_State* L = c_State;
|
2013-01-27 10:14:37 +00:00
|
|
|
size_t strLen = 0;
|
|
|
|
const char* str = lua_tolstring(L, narg, &strLen);
|
2013-08-07 14:48:13 +00:00
|
|
|
return IsUnicodeState() ?
|
2013-08-06 17:43:57 +00:00
|
|
|
StringUtil::WidenUTF8(str, (int)strLen) : StringUtil::Widen(str, (int)strLen);
|
2011-09-03 16:45:29 +00:00
|
|
|
}
|