mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 08:51:10 +02:00
222 lines
5.8 KiB
C++
222 lines
5.8 KiB
C++
/*
|
|
* neutrino-mp lua to c++ bridge
|
|
*
|
|
* (C) 2013 Stefan Seyfried <seife@tuxboxcvs.slipkontur.de>
|
|
*
|
|
* 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 _LUAINSTANCE_H
|
|
#define _LUAINSTANCE_H
|
|
|
|
/* LUA Is C */
|
|
extern "C" {
|
|
#include <lua.h>
|
|
#include <lauxlib.h>
|
|
#include <lualib.h>
|
|
}
|
|
#include <driver/fb_window.h>
|
|
#include <gui/widget/menue.h>
|
|
#include <gui/widget/hintbox.h>
|
|
#include <gui/widget/messagebox.h>
|
|
#include <gui/components/cc.h>
|
|
|
|
/* this is stored as userdata in the lua_State */
|
|
struct CLuaData
|
|
{
|
|
CFBWindow *fbwin;
|
|
CRCInput *rcinput;
|
|
};
|
|
|
|
struct CLuaMenuItem
|
|
{
|
|
int int_val;
|
|
std::string str_val;
|
|
std::string name;
|
|
};
|
|
|
|
class CLuaMenuChangeObserver : public CChangeObserver
|
|
{
|
|
public:
|
|
bool changeNotify(lua_State *, const std::string &, const std::string &, void *);
|
|
};
|
|
|
|
class CLuaMenu
|
|
{
|
|
public:
|
|
CMenuWidget *m;
|
|
CLuaMenuChangeObserver *observ;
|
|
std::list<CLuaMenuItem> items;
|
|
std::list<CMenuTarget *> targets;
|
|
std::list<void *> tofree;
|
|
CLuaMenu();
|
|
~CLuaMenu();
|
|
};
|
|
|
|
class CLuaMenuForwarder : public CMenuTarget
|
|
{
|
|
public:
|
|
lua_State *L;
|
|
std::string luaAction;
|
|
std::string luaId;
|
|
CLuaMenuForwarder(lua_State *L, std::string _luaAction, std::string _luaId);
|
|
~CLuaMenuForwarder();
|
|
int exec(CMenuTarget* parent, const std::string & actionKey);
|
|
};
|
|
|
|
class CLuaMenuFilebrowser : public CLuaMenuForwarder
|
|
{
|
|
private:
|
|
std::string *value;
|
|
bool dirMode;
|
|
std::vector<std::string> filter;
|
|
public:
|
|
CLuaMenuFilebrowser(lua_State *_L, std::string _luaAction, std::string _luaId, std::string *_value, bool _dirMode);
|
|
int exec(CMenuTarget* parent, const std::string & actionKey);
|
|
void addFilter(std::string s) { filter.push_back(s); };
|
|
};
|
|
|
|
class CLuaMenuStringinput : public CLuaMenuForwarder
|
|
{
|
|
private:
|
|
std::string *value;
|
|
std::string valid_chars;
|
|
const char *name;
|
|
const char *icon;
|
|
bool sms;
|
|
int size;
|
|
CChangeObserver *observ;
|
|
public:
|
|
CLuaMenuStringinput(lua_State *_L, std::string _luaAction, std::string _luaId, const char *_name, std::string *_value, int _size, std::string _valid_chars, CChangeObserver *_observ, const char *_icon, bool _sms);
|
|
int exec(CMenuTarget* parent, const std::string & actionKey);
|
|
};
|
|
|
|
class CLuaHintbox
|
|
{
|
|
public:
|
|
CHintBox *b;
|
|
char *caption;
|
|
CLuaHintbox();
|
|
~CLuaHintbox();
|
|
};
|
|
|
|
class CLuaMessagebox
|
|
{
|
|
public:
|
|
CMessageBox *b;
|
|
CLuaMessagebox();
|
|
~CLuaMessagebox();
|
|
};
|
|
|
|
class CLuaCWindow
|
|
{
|
|
public:
|
|
CComponentsWindow *w;
|
|
CLuaCWindow() { w = NULL; }
|
|
~CLuaCWindow() { delete w; }
|
|
};
|
|
|
|
class CLuaSignalBox
|
|
{
|
|
public:
|
|
CSignalBox *s;
|
|
CLuaSignalBox() { s = NULL; }
|
|
~CLuaSignalBox() { delete s; }
|
|
};
|
|
|
|
class CLuaComponentsText
|
|
{
|
|
public:
|
|
CComponentsText *ct;
|
|
CLuaComponentsText() { ct = NULL; }
|
|
~CLuaComponentsText() { delete ct; }
|
|
};
|
|
|
|
|
|
/* inspired by Steve Kemp http://www.steve.org.uk/ */
|
|
class CLuaInstance
|
|
{
|
|
static const char className[];
|
|
static const luaL_Reg methods[];
|
|
static const luaL_Reg menu_methods[];
|
|
static CLuaData *CheckData(lua_State *L, int narg);
|
|
public:
|
|
CLuaInstance();
|
|
~CLuaInstance();
|
|
void runScript(const char *fileName);
|
|
|
|
private:
|
|
lua_State* lua;
|
|
void registerFunctions();
|
|
|
|
static int NewWindow(lua_State *L);
|
|
static int PaintBox(lua_State *L);
|
|
static int PaintIcon(lua_State *L);
|
|
static int RenderString(lua_State *L);
|
|
static int getRenderWidth(lua_State *L);
|
|
static int FontHeight(lua_State *L);
|
|
static int GetInput(lua_State *L);
|
|
static int GCWindow(lua_State *L);
|
|
static int Blit(lua_State *L);
|
|
static int GetLanguage(lua_State *L);
|
|
static int GetSize(lua_State *L);
|
|
static int DisplayImage(lua_State *L);
|
|
|
|
void MenuRegister(lua_State *L);
|
|
static int MenuNew(lua_State *L);
|
|
static int MenuDelete(lua_State *L);
|
|
static int MenuAddKey(lua_State *L);
|
|
static int MenuAddItem(lua_State *L);
|
|
static int MenuHide(lua_State *L);
|
|
static int MenuExec(lua_State *L);
|
|
static CLuaMenu *MenuCheck(lua_State *L, int n);
|
|
|
|
void HintboxRegister(lua_State *L);
|
|
static int HintboxNew(lua_State *L);
|
|
static int HintboxDelete(lua_State *L);
|
|
static int HintboxExec(lua_State *L);
|
|
static int HintboxPaint(lua_State *L);
|
|
static int HintboxHide(lua_State *L);
|
|
static CLuaHintbox *HintboxCheck(lua_State *L, int n);
|
|
|
|
void MessageboxRegister(lua_State *L);
|
|
static int MessageboxExec(lua_State *L);
|
|
static CLuaMessagebox *MessageboxCheck(lua_State *L, int n);
|
|
|
|
void CWindowRegister(lua_State *L);
|
|
static int CWindowNew(lua_State *L);
|
|
static CLuaCWindow *CWindowCheck(lua_State *L, int n);
|
|
static int CWindowPaint(lua_State *L);
|
|
static int CWindowHide(lua_State *L);
|
|
static int CWindowDelete(lua_State *L);
|
|
|
|
static CLuaSignalBox *SignalBoxCheck(lua_State *L, int n);
|
|
static void SignalBoxRegister(lua_State *L);
|
|
static int SignalBoxNew(lua_State *L);
|
|
static int SignalBoxPaint(lua_State *L);
|
|
static int SignalBoxDelete(lua_State *L);
|
|
|
|
static CLuaComponentsText *ComponentsTextCheck(lua_State *L, int n);
|
|
static void ComponentsTextRegister(lua_State *L);
|
|
static int ComponentsTextNew(lua_State *L);
|
|
static int ComponentsTextPaint(lua_State *L);
|
|
static int ComponentsTextHide(lua_State *L);
|
|
static int ComponentsTextScroll(lua_State *L);
|
|
static int ComponentsTextDelete(lua_State *L);
|
|
|
|
static bool tableLookup(lua_State*, const char*, std::string&);
|
|
static bool tableLookup(lua_State*, const char*, int&);
|
|
};
|
|
|
|
#endif /* _LUAINSTANCE_H */
|