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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LUAMANAGER_H__
|
|
|
|
#define __LUAMANAGER_H__
|
2012-06-01 13:06:36 +00:00
|
|
|
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#include "lua.h"
|
|
|
|
#include "lualib.h"
|
|
|
|
#include "lauxlib.h"
|
2012-05-30 06:56:20 +00:00
|
|
|
}
|
2010-12-12 17:08:36 +00:00
|
|
|
|
2013-08-07 14:48:13 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2010-12-12 17:08:36 +00:00
|
|
|
class LuaManager
|
|
|
|
{
|
|
|
|
public:
|
2013-08-07 14:48:13 +00:00
|
|
|
class ScopedLuaState
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ScopedLuaState(bool unicode) { LuaManager::c_UnicodeStateStack.push_back(unicode); }
|
|
|
|
~ScopedLuaState() { LuaManager::c_UnicodeStateStack.pop_back(); }
|
|
|
|
operator lua_State*() { return LuaManager::c_State; }
|
|
|
|
};
|
|
|
|
|
2012-03-02 10:04:08 +00:00
|
|
|
static void Initialize();
|
|
|
|
static void Finalize();
|
2010-12-12 17:08:36 +00:00
|
|
|
|
2013-08-07 14:48:13 +00:00
|
|
|
static ScopedLuaState GetState(bool unicode) { return ScopedLuaState(unicode); }
|
2010-12-12 17:08:36 +00:00
|
|
|
|
2013-08-07 14:48:13 +00:00
|
|
|
static bool IsUnicodeState() { return c_UnicodeStateStack.back(); }
|
2013-08-06 19:06:21 +00:00
|
|
|
|
2013-08-06 17:43:57 +00:00
|
|
|
static void ReportErrors(const std::wstring& file);
|
2010-12-12 17:08:36 +00:00
|
|
|
|
2013-08-06 17:43:57 +00:00
|
|
|
static void PushWide(const WCHAR* str);
|
|
|
|
static void PushWide(const std::wstring& str);
|
|
|
|
static std::wstring ToWide(int narg);
|
2011-09-03 16:45:29 +00:00
|
|
|
|
2010-12-12 17:08:36 +00:00
|
|
|
protected:
|
2011-01-30 15:44:48 +00:00
|
|
|
static int c_RefCount;
|
2011-07-06 10:21:18 +00:00
|
|
|
static lua_State* c_State;
|
2011-07-05 13:41:05 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static void RegisterGlobal(lua_State* L);
|
|
|
|
static void RegisterMeasure(lua_State* L);
|
|
|
|
static void RegisterMeter(lua_State* L);
|
|
|
|
static void RegisterMeterWindow(lua_State* L);
|
|
|
|
static void RegisterMeterString(lua_State* L);
|
2013-08-06 17:43:57 +00:00
|
|
|
|
2013-08-07 14:48:13 +00:00
|
|
|
// If the back of the vector is |true|, Lua strings converted to/from as if they were encoded
|
|
|
|
// in UTF-8. Otherwise Lua strings are treated as if they are encoded in the default system
|
|
|
|
// encoding.
|
|
|
|
static std::vector<bool> c_UnicodeStateStack;
|
2010-12-12 17:08:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|