CLuaInstance: Move types, definitions & functions from

luainstance.cpp/.h to luainstance_helpers.cpp/.h

 - No api changes, code only


Origin commit data
------------------
Branch: ni/coolstream
Commit: 1238b0c677
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-12-12 (Sat, 12 Dec 2015)



------------------
This commit was generated by Migit
This commit is contained in:
Michael Liebmann
2015-12-12 10:21:39 +01:00
parent 0a59ebee82
commit 256500c3e4
5 changed files with 255 additions and 198 deletions

View File

@@ -29,5 +29,6 @@ endif
noinst_LIBRARIES = libneutrino_gui_lua.a noinst_LIBRARIES = libneutrino_gui_lua.a
libneutrino_gui_lua_a_SOURCES = \ libneutrino_gui_lua_a_SOURCES = \
luainstance_helpers.cpp \
luainstance.cpp \ luainstance.cpp \
lua_video.cpp lua_video.cpp

View File

@@ -41,30 +41,6 @@
#include "luainstance.h" #include "luainstance.h"
/* the magic color that tells us we are using one of the palette colors */
#define MAGIC_COLOR 0x42424200
#define MAGIC_MASK 0xFFFFFF00
struct table_key {
const char *name;
lua_Integer code;
};
struct table_key_u {
const char *name;
lua_Unsigned code;
};
struct lua_envexport {
const char *name;
table_key *t;
};
struct lua_envexport_u {
const char *name;
table_key_u *t;
};
static void set_lua_variables(lua_State *L) static void set_lua_variables(lua_State *L)
{ {
/* keyname table created with /* keyname table created with
@@ -372,16 +348,7 @@ static void set_lua_variables(lua_State *L)
} }
} }
//#define DBG1 printf const char CLuaInstance::className[] = LUA_CLASSNAME;
#define DBG1(...)
#define lua_boxpointer(L, u) \
(*(void **)(lua_newuserdata(L, sizeof(void *))) = (u))
#define lua_unboxpointer(L, i) \
(*(void **)(lua_touserdata(L, i)))
const char CLuaInstance::className[] = "neutrino";
CLuaInstance::CLuaInstance() CLuaInstance::CLuaInstance()
{ {
@@ -401,68 +368,6 @@ CLuaInstance::~CLuaInstance()
} }
} }
/* Ported by Benny Chen, http://www.bennychen.cn/tag/lual_checkbool/ */
bool CLuaInstance::_luaL_checkbool(lua_State *L, int numArg)
{
bool b = false;
if (lua_isboolean(L, numArg))
b = lua_toboolean(L, numArg);
else {
lua_Debug ar;
lua_getstack(L, 0, &ar);
lua_getinfo(L, "n", &ar);
luaL_error(L, "bad argument #%d to '%s' (%s expected, got %s)\n",
numArg-1, ar.name,
lua_typename(L, LUA_TBOOLEAN),
lua_typename(L, lua_type(L, numArg)));
}
return b;
}
void CLuaInstance::paramBoolDeprecated(lua_State *L, const char* val)
{
lua_Debug ar;
lua_getstack(L, 1, &ar);
lua_getinfo(L, "Sl", &ar);
printf("[Lua Script] \33[1;31m%s\33[0m %s (\33[31m\"%s\"\33[0m)\n %s \33[32mtrue\33[0m.\n (%s:%d)\n",
g_Locale->getText(LOCALE_LUA_BOOLPARAM_DEPRECATED1),
g_Locale->getText(LOCALE_LUA_BOOLPARAM_DEPRECATED2), val,
g_Locale->getText(LOCALE_LUA_BOOLPARAM_DEPRECATED3),
ar.short_src, ar.currentline);
}
void CLuaInstance::functionDeprecated(lua_State *L, const char* oldFunc, const char* newFunc)
{
lua_Debug ar;
lua_getstack(L, 1, &ar);
lua_getinfo(L, "Sl", &ar);
printf("[Lua Script] \33[1;31m%s\33[0m %s \33[33m%s\33[0m %s \33[1;33m%s\33[0m.\n (%s:%d)\n",
g_Locale->getText(LOCALE_LUA_FUNCTION_DEPRECATED1),
g_Locale->getText(LOCALE_LUA_FUNCTION_DEPRECATED2), oldFunc,
g_Locale->getText(LOCALE_LUA_FUNCTION_DEPRECATED3), newFunc,
ar.short_src, ar.currentline);
}
void CLuaInstance::paramDeprecated(lua_State *L, const char* oldParam, const char* newParam)
{
lua_Debug ar;
lua_getstack(L, 1, &ar);
lua_getinfo(L, "Sl", &ar);
printf("[Lua Script] \33[1;31m%s\33[0m %s \33[33m%s\33[0m %s \33[1;33m%s\33[0m.\n (%s:%d)\n",
g_Locale->getText(LOCALE_LUA_FUNCTION_DEPRECATED1),
g_Locale->getText(LOCALE_LUA_PARAMETER_DEPRECATED2), oldParam,
g_Locale->getText(LOCALE_LUA_FUNCTION_DEPRECATED3), newParam,
ar.short_src, ar.currentline);
}
lua_Unsigned CLuaInstance::checkMagicMask(lua_Unsigned &col)
{
if ((col & MAGIC_MASK) == MAGIC_COLOR)
/* use the color constants */
col = CFrameBuffer::getInstance()->realcolor[col & 0x000000ff];
return col;
}
#define SET_VAR1(NAME) \ #define SET_VAR1(NAME) \
lua_pushinteger(lua, NAME); \ lua_pushinteger(lua, NAME); \
lua_setglobal(lua, #NAME); lua_setglobal(lua, #NAME);
@@ -758,7 +663,7 @@ int CLuaInstance::GetRevision(lua_State *L)
int CLuaInstance::PaintBox(lua_State *L) int CLuaInstance::PaintBox(lua_State *L)
{ {
int count = lua_gettop(L); int count = lua_gettop(L);
DBG1("CLuaInstance::%s %d\n", __func__, count); LUA_DEBUG("CLuaInstance::%s %d\n", __func__, count);
int x, y, w, h, radius = 0, corner = CORNER_ALL; int x, y, w, h, radius = 0, corner = CORNER_ALL;
unsigned int c; unsigned int c;
@@ -855,7 +760,7 @@ int CLuaInstance::paintVLineRel(lua_State *L)
int CLuaInstance::PaintIcon(lua_State *L) int CLuaInstance::PaintIcon(lua_State *L)
{ {
DBG1("CLuaInstance::%s %d\n", __func__, lua_gettop(L)); LUA_DEBUG("CLuaInstance::%s %d\n", __func__, lua_gettop(L));
int x, y, h; int x, y, h;
unsigned int o; unsigned int o;
const char *fname; const char *fname;
@@ -876,7 +781,7 @@ extern CPictureViewer * g_PicViewer;
int CLuaInstance::DisplayImage(lua_State *L) int CLuaInstance::DisplayImage(lua_State *L)
{ {
DBG1("CLuaInstance::%s %d\n", __func__, lua_gettop(L)); LUA_DEBUG("CLuaInstance::%s %d\n", __func__, lua_gettop(L));
int x, y, w, h; int x, y, w, h;
const char *fname; const char *fname;
@@ -950,7 +855,7 @@ int CLuaInstance::strSub(lua_State *L)
int CLuaInstance::GetSize(lua_State *L) int CLuaInstance::GetSize(lua_State *L)
{ {
DBG1("CLuaInstance::%s %d\n", __func__, lua_gettop(L)); LUA_DEBUG("CLuaInstance::%s %d\n", __func__, lua_gettop(L));
int w = 0, h = 0; int w = 0, h = 0;
const char *fname; const char *fname;
@@ -968,7 +873,7 @@ int CLuaInstance::RenderString(lua_State *L)
unsigned int c; unsigned int c;
const char *text; const char *text;
int numargs = lua_gettop(L); int numargs = lua_gettop(L);
DBG1("CLuaInstance::%s %d\n", __func__, numargs); LUA_DEBUG("CLuaInstance::%s %d\n", __func__, numargs);
c = COL_MENUCONTENT_TEXT; c = COL_MENUCONTENT_TEXT;
boxh = 0; boxh = 0;
center = 0; center = 0;
@@ -1042,7 +947,7 @@ int CLuaInstance::getRenderWidth(lua_State *L)
int f, id; int f, id;
Font* font = NULL; Font* font = NULL;
const char *text; const char *text;
DBG1("CLuaInstance::%s %d\n", __func__, lua_gettop(L)); LUA_DEBUG("CLuaInstance::%s %d\n", __func__, lua_gettop(L));
CLuaData *W = CheckData(L, 1); CLuaData *W = CheckData(L, 1);
if (!W) if (!W)
@@ -1098,7 +1003,7 @@ int CLuaInstance::GetInput(lua_State *L)
/* TODO: I'm not sure if this works... */ /* TODO: I'm not sure if this works... */
if (msg != CRCInput::RC_timeout && msg > CRCInput::RC_MaxRC) if (msg != CRCInput::RC_timeout && msg > CRCInput::RC_MaxRC)
{ {
DBG1("CLuaInstance::%s: msg 0x%08" PRIx32 " data 0x%08" PRIx32 "\n", __func__, msg, data); LUA_DEBUG("CLuaInstance::%s: msg 0x%08" PRIx32 " data 0x%08" PRIx32 "\n", __func__, msg, data);
CNeutrinoApp::getInstance()->handleMsg(msg, data); CNeutrinoApp::getInstance()->handleMsg(msg, data);
} }
/* signed int is debatable, but the "big" messages can't yet be handled /* signed int is debatable, but the "big" messages can't yet be handled
@@ -1112,7 +1017,7 @@ int CLuaInstance::FontHeight(lua_State *L)
{ {
int f, id; int f, id;
Font* font = NULL; Font* font = NULL;
DBG1("CLuaInstance::%s %d\n", __func__, lua_gettop(L)); LUA_DEBUG("CLuaInstance::%s %d\n", __func__, lua_gettop(L));
CLuaData *W = CheckData(L, 1); CLuaData *W = CheckData(L, 1);
if (!W) if (!W)
@@ -1153,7 +1058,7 @@ int CLuaInstance::FontHeight(lua_State *L)
int CLuaInstance::GCWindow(lua_State *L) int CLuaInstance::GCWindow(lua_State *L)
{ {
DBG1("CLuaInstance::%s %d\n", __func__, lua_gettop(L)); LUA_DEBUG("CLuaInstance::%s %d\n", __func__, lua_gettop(L));
CLuaData *w = (CLuaData *)lua_unboxpointer(L, 1); CLuaData *w = (CLuaData *)lua_unboxpointer(L, 1);
if (w && w->fbwin) { if (w && w->fbwin) {
@@ -1161,7 +1066,7 @@ int CLuaInstance::GCWindow(lua_State *L)
if (it->second != NULL) if (it->second != NULL)
delete[] it->second; delete[] it->second;
} }
DBG1("CLuaInstance::%s delete screenmap\n", __func__); LUA_DEBUG("CLuaInstance::%s delete screenmap\n", __func__);
w->screenmap.clear(); w->screenmap.clear();
w->fontmap.clear(); w->fontmap.clear();
} }
@@ -1231,66 +1136,6 @@ int CLuaInstance::runScriptExt(lua_State *L)
return 0; return 0;
} }
bool CLuaInstance::tableLookup(lua_State *L, const char *what, std::string &value)
{
bool res = false;
lua_pushstring(L, what);
lua_gettable(L, -2);
res = lua_isstring(L, -1);
if (res)
value = lua_tostring(L, -1);
lua_pop(L, 1);
return res;
}
bool CLuaInstance::tableLookup(lua_State *L, const char *what, lua_Integer &value)
{
bool res = false;
lua_pushstring(L, what);
lua_gettable(L, -2);
res = lua_isnumber(L, -1);
if (res)
value = (lua_Integer) lua_tonumber(L, -1);
lua_pop(L, 1);
return res;
}
bool CLuaInstance::tableLookup(lua_State *L, const char *what, lua_Unsigned &value)
{
bool res = false;
lua_pushstring(L, what);
lua_gettable(L, -2);
res = lua_isnumber(L, -1);
if (res)
value = (lua_Unsigned) lua_tonumber(L, -1);
lua_pop(L, 1);
return res;
}
bool CLuaInstance::tableLookup(lua_State *L, const char *what, void** value)
{
bool res = false;
lua_pushstring(L, what);
lua_gettable(L, -2);
res = lua_isuserdata(L, -1);
if (res)
*value = lua_unboxpointer(L, -1);
lua_pop(L, 1);
return res;
}
bool CLuaInstance::tableLookup(lua_State *L, const char *what, bool &value)
{
bool res = false;
lua_pushstring(L, what);
lua_gettable(L, -2);
res = lua_isboolean(L, -1);
if (res)
value = lua_toboolean(L, -1);
lua_pop(L, 1);
return res;
}
bool CLuaMenuChangeObserver::changeNotify(lua_State *L, const std::string &luaAction, const std::string &luaId, void *Data) bool CLuaMenuChangeObserver::changeNotify(lua_State *L, const std::string &luaAction, const std::string &luaId, void *Data)
{ {
const char *optionValue = (const char *) Data; const char *optionValue = (const char *) Data;
@@ -2289,7 +2134,7 @@ int CLuaInstance::CWindowSetCenterPos(lua_State *L)
int CLuaInstance::CWindowDelete(lua_State *L) int CLuaInstance::CWindowDelete(lua_State *L)
{ {
DBG1("CLuaInstance::%s %d\n", __func__, lua_gettop(L)); LUA_DEBUG("CLuaInstance::%s %d\n", __func__, lua_gettop(L));
CLuaCWindow *m = CWindowCheck(L, 1); CLuaCWindow *m = CWindowCheck(L, 1);
if (!m) if (!m)
return 0; return 0;
@@ -2612,7 +2457,7 @@ int CLuaInstance::ComponentsTextEnableUTF8(lua_State *L)
int CLuaInstance::ComponentsTextDelete(lua_State *L) int CLuaInstance::ComponentsTextDelete(lua_State *L)
{ {
DBG1("CLuaInstance::%s %d\n", __func__, lua_gettop(L)); LUA_DEBUG("CLuaInstance::%s %d\n", __func__, lua_gettop(L));
CLuaComponentsText *m = ComponentsTextCheck(L, 1); CLuaComponentsText *m = ComponentsTextCheck(L, 1);
if (!m) if (!m)
return 0; return 0;
@@ -2777,7 +2622,7 @@ int CLuaInstance::CPictureSetCenterPos(lua_State *L)
int CLuaInstance::CPictureDelete(lua_State *L) int CLuaInstance::CPictureDelete(lua_State *L)
{ {
DBG1("CLuaInstance::%s %d\n", __func__, lua_gettop(L)); LUA_DEBUG("CLuaInstance::%s %d\n", __func__, lua_gettop(L));
CLuaPicture *m = CPictureCheck(L, 1); CLuaPicture *m = CPictureCheck(L, 1);
if (!m) return 0; if (!m) return 0;

View File

@@ -33,27 +33,11 @@ extern "C" {
#include <configfile.h> #include <configfile.h>
#include <vector> #include <vector>
#include "luainstance_helpers.h"
#define LUA_API_VERSION_MAJOR 1 #define LUA_API_VERSION_MAJOR 1
#define LUA_API_VERSION_MINOR 22 #define LUA_API_VERSION_MINOR 22
typedef std::pair<lua_Integer, Font*> fontmap_pair_t;
typedef std::map<lua_Integer, Font*> fontmap_t;
typedef fontmap_t::iterator fontmap_iterator_t;
typedef std::pair<lua_Integer, fb_pixel_t*> screenmap_pair_t;
typedef std::map<lua_Integer, fb_pixel_t*> screenmap_t;
typedef screenmap_t::iterator screenmap_iterator_t;
/* this is stored as userdata in the lua_State */
struct CLuaData
{
CFBWindow *fbwin;
CRCInput *rcinput;
fontmap_t fontmap;
screenmap_t screenmap;
bool moviePlayerBlocked;
};
struct CLuaMenuItem struct CLuaMenuItem
{ {
int int_val; int int_val;
@@ -227,12 +211,6 @@ private:
lua_State* lua; lua_State* lua;
void registerFunctions(); void registerFunctions();
static bool _luaL_checkbool(lua_State *L, int numArg);
static void paramBoolDeprecated(lua_State *L, const char* val);
static void functionDeprecated(lua_State *L, const char* oldFunc, const char* newFunc);
static void paramDeprecated(lua_State *L, const char* oldParam, const char* newParam);
static lua_Unsigned checkMagicMask(lua_Unsigned &col);
static int GetRevision(lua_State *L); static int GetRevision(lua_State *L);
static int NewWindow(lua_State *L); static int NewWindow(lua_State *L);
static int saveScreen(lua_State *L); static int saveScreen(lua_State *L);
@@ -333,11 +311,6 @@ private:
static int LuaConfigFileGetBool(lua_State *L); static int LuaConfigFileGetBool(lua_State *L);
static int LuaConfigFileSetBool(lua_State *L); static int LuaConfigFileSetBool(lua_State *L);
static int LuaConfigFileDelete(lua_State *L); static int LuaConfigFileDelete(lua_State *L);
static bool tableLookup(lua_State*, const char*, std::string&);
static bool tableLookup(lua_State*, const char*, lua_Integer&);
static bool tableLookup(lua_State*, const char*, lua_Unsigned&);
static bool tableLookup(lua_State*, const char*, void**);
static bool tableLookup(lua_State*, const char*, bool &value);
static int checkVersion(lua_State *L); static int checkVersion(lua_State *L);
static int createChannelIDfromUrl(lua_State *L); static int createChannelIDfromUrl(lua_State *L);

View File

@@ -0,0 +1,147 @@
/*
* lua instance helper functions
*
* (C) 2013 Stefan Seyfried (seife)
* (C) 2014-2015 M. Liebmann (micha-bbg)
*
* 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, see <http://www.gnu.org/licenses/>.
*/
#include <config.h>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <unistd.h>
#include <global.h>
#include <system/debug.h>
#include <neutrino.h>
#include "luainstance.h"
/* Ported by Benny Chen, http://www.bennychen.cn/tag/lual_checkbool/ */
bool _luaL_checkbool(lua_State *L, int numArg)
{
bool b = false;
if (lua_isboolean(L, numArg))
b = lua_toboolean(L, numArg);
else {
lua_Debug ar;
lua_getstack(L, 0, &ar);
lua_getinfo(L, "n", &ar);
luaL_error(L, "bad argument #%d to '%s' (%s expected, got %s)\n",
numArg-1, ar.name,
lua_typename(L, LUA_TBOOLEAN),
lua_typename(L, lua_type(L, numArg)));
}
return b;
}
void paramBoolDeprecated(lua_State *L, const char* val)
{
lua_Debug ar;
lua_getstack(L, 1, &ar);
lua_getinfo(L, "Sl", &ar);
printf("[Lua Script] \33[1;31m%s\33[0m %s (\33[31m\"%s\"\33[0m)\n %s \33[32mtrue\33[0m.\n (%s:%d)\n",
g_Locale->getText(LOCALE_LUA_BOOLPARAM_DEPRECATED1),
g_Locale->getText(LOCALE_LUA_BOOLPARAM_DEPRECATED2), val,
g_Locale->getText(LOCALE_LUA_BOOLPARAM_DEPRECATED3),
ar.short_src, ar.currentline);
}
void paramDeprecated(lua_State *L, const char* oldParam, const char* newParam)
{
lua_Debug ar;
lua_getstack(L, 1, &ar);
lua_getinfo(L, "Sl", &ar);
printf("[Lua Script] \33[1;31m%s\33[0m %s \33[33m%s\33[0m %s \33[1;33m%s\33[0m.\n (%s:%d)\n",
g_Locale->getText(LOCALE_LUA_FUNCTION_DEPRECATED1),
g_Locale->getText(LOCALE_LUA_PARAMETER_DEPRECATED2), oldParam,
g_Locale->getText(LOCALE_LUA_FUNCTION_DEPRECATED3), newParam,
ar.short_src, ar.currentline);
}
void functionDeprecated(lua_State *L, const char* oldFunc, const char* newFunc)
{
lua_Debug ar;
lua_getstack(L, 1, &ar);
lua_getinfo(L, "Sl", &ar);
printf("[Lua Script] \33[1;31m%s\33[0m %s \33[33m%s\33[0m %s \33[1;33m%s\33[0m.\n (%s:%d)\n",
g_Locale->getText(LOCALE_LUA_FUNCTION_DEPRECATED1),
g_Locale->getText(LOCALE_LUA_FUNCTION_DEPRECATED2), oldFunc,
g_Locale->getText(LOCALE_LUA_FUNCTION_DEPRECATED3), newFunc,
ar.short_src, ar.currentline);
}
lua_Unsigned checkMagicMask(lua_Unsigned &col)
{
if ((col & MAGIC_MASK) == MAGIC_COLOR)
col = CFrameBuffer::getInstance()->realcolor[col & 0x000000ff];
return col;
}
bool tableLookup(lua_State *L, const char *what, std::string &value)
{
lua_pushstring(L, what);
lua_gettable(L, -2);
bool res = lua_isstring(L, -1);
if (res)
value = lua_tostring(L, -1);
lua_pop(L, 1);
return res;
}
bool tableLookup(lua_State *L, const char *what, lua_Integer &value)
{
lua_pushstring(L, what);
lua_gettable(L, -2);
bool res = lua_isnumber(L, -1);
if (res)
value = (lua_Integer) lua_tonumber(L, -1);
lua_pop(L, 1);
return res;
}
bool tableLookup(lua_State *L, const char *what, lua_Unsigned &value)
{
lua_pushstring(L, what);
lua_gettable(L, -2);
bool res = lua_isnumber(L, -1);
if (res)
value = (lua_Unsigned) lua_tonumber(L, -1);
lua_pop(L, 1);
return res;
}
bool tableLookup(lua_State *L, const char *what, void** value)
{
lua_pushstring(L, what);
lua_gettable(L, -2);
bool res = lua_isuserdata(L, -1);
if (res)
*value = lua_unboxpointer(L, -1);
lua_pop(L, 1);
return res;
}
bool tableLookup(lua_State *L, const char *what, bool &value)
{
lua_pushstring(L, what);
lua_gettable(L, -2);
bool res = lua_isboolean(L, -1);
if (res)
value = lua_toboolean(L, -1);
lua_pop(L, 1);
return res;
}

View File

@@ -0,0 +1,91 @@
/*
* lua instance helper functions
*
* (C) 2013 Stefan Seyfried (seife)
* (C) 2014-2015 M. Liebmann (micha-bbg)
*
* 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef _LUAINSTANCEHELPERS_H
#define _LUAINSTANCEHELPERS_H
//#define LUA_DEBUG printf
#define LUA_DEBUG(...)
#define LUA_CLASSNAME "neutrino"
/* the magic color that tells us we are using one of the palette colors */
#define MAGIC_COLOR 0x42424200
#define MAGIC_MASK 0xFFFFFF00
#define lua_boxpointer(L, u) \
(*(void **)(lua_newuserdata(L, sizeof(void *))) = (u))
#define lua_unboxpointer(L, i) \
(*(void **)(lua_touserdata(L, i)))
typedef std::pair<lua_Integer, Font*> fontmap_pair_t;
typedef std::map<lua_Integer, Font*> fontmap_t;
typedef fontmap_t::iterator fontmap_iterator_t;
typedef std::pair<lua_Integer, fb_pixel_t*> screenmap_pair_t;
typedef std::map<lua_Integer, fb_pixel_t*> screenmap_t;
typedef screenmap_t::iterator screenmap_iterator_t;
struct table_key {
const char *name;
lua_Integer code;
};
struct table_key_u {
const char *name;
lua_Unsigned code;
};
struct lua_envexport {
const char *name;
table_key *t;
};
struct lua_envexport_u {
const char *name;
table_key_u *t;
};
/* this is stored as userdata in the lua_State */
struct CLuaData
{
CFBWindow *fbwin;
CRCInput *rcinput;
fontmap_t fontmap;
screenmap_t screenmap;
bool moviePlayerBlocked;
};
bool _luaL_checkbool(lua_State *L, int numArg);
void paramBoolDeprecated(lua_State *L, const char* val);
void paramDeprecated(lua_State *L, const char* oldParam, const char* newParam);
void functionDeprecated(lua_State *L, const char* oldFunc, const char* newFunc);
lua_Unsigned checkMagicMask(lua_Unsigned &col);
bool tableLookup(lua_State*, const char*, std::string&);
bool tableLookup(lua_State*, const char*, lua_Integer&);
bool tableLookup(lua_State*, const char*, lua_Unsigned&);
bool tableLookup(lua_State*, const char*, void**);
bool tableLookup(lua_State*, const char*, bool &value);
#endif // _LUAINSTANCEHELPERS_H