Library to make bindings between C++ and Lua

learn more… | top users | synonyms

0
votes
2answers
15 views

Trying to change object value and reference value but not coordinates

I have this function local function cambiodesp(old,new) block[new]= block[old] end and i have this: random=4 local image = display.newImage(images[random], 0, 0) image.value = random image.x = ...
0
votes
0answers
21 views

Cannot change value of object in lua

i have a table(array) where i keep the references of some images. Here is the code: local rowcount = 8 local colcount = 4 local blockWidth = display.contentWidth / (colcount*4) ...
0
votes
0answers
20 views

Require of splay.restricted_io refused

I'm trying to read from a file using lua in Splay simulator and I'm using the next code: require("splay.base") -- Force restricted_io for local tests io = require("splay.restricted_io") -- All ...
0
votes
1answer
76 views

Lua-bound singleton class crashes in destructor

I'm using Lua & luabind for the first time, and I've been wondering about the following issue. If I declare a singleton class in C++, and bind it to Lua, where I get its instance and call some ...
0
votes
0answers
41 views

Luabind - Inheritance / virtual functions

I am trying to expose my scenegraph to lua and I am trying to do that using luabind. I fiddled around with luabind and got things to work quite nicely until I stumbled upon the problem with virtual ...
1
vote
1answer
47 views

LuaBind assert( id < local_id_base )

I have been struggling for quite a while now. Whenever I try to define a class in luabind I get a assertion failure assert( id < local_id_base ) in inheritance.hpp (luabind) I have tried alot of ...
0
votes
1answer
27 views

How to register member function with lua-function parameter using luabind?

I need to register a member function using luabind which is supposed to take a lua-function as parameter. For any normal function I would usually just do this: int SomeLuaFunction(lua_State *l) { ...
1
vote
1answer
34 views

luabind and dynamic properties

I want create a class with dynamic properties. For example: class MyClass { public: int GetValue(string str) { return smap[str]; } void SetValue(string str, int i) { ...
0
votes
1answer
74 views

Return class pointer to lua with luabind

Is there any way that I can, in a C++ function, return a pointer to a class to lua? I have tried this, among other more desperate things: P* GetP() { return g_P; } module(L) [ def("GetP", ...
0
votes
1answer
5 views

Get information about splayd

I am using the SPLAY simulator for distributed applications and I want to submit a simple program that show a message and some info about the splayd that executes that function(like ID, name etc.) but ...
0
votes
1answer
47 views

How to get lua parameters in c?

I am using Visual C++ 2012 and trying to write a c extension for Lua. Currently I am design a function prototype: lib.myfunc(number, {a=1,b=2,c=3},{d=4,e=5,...}) There are 3 parameters for 'myfunc' ...
2
votes
1answer
108 views

My lua script load .so library, how can I write the host program with Lua 5.2?

I searched and tried for days. The problem is this: I wrote a script which load a shared library locker.so, it runs well with lua interpretor, but I can not write out the correct host program. My ...
1
vote
1answer
48 views

How cant I show changed label image in iupLua?

When I change image attribute of label after, but image can't show. When I double Click list to change label image ,but no respond, image do not show. Why? require "iuplua" require "iupluaim" list = ...
0
votes
1answer
99 views

Problems with leaks or 'unregistered class' when returning pointers to derived objects in luabind

I'm exposing the internals of my application to Lua, via luabind, where in C++ I have a Container of shared_ptr<Item> where Item is an abstract base class. Derived classes include ItemA and ...
3
votes
1answer
101 views

using a pointer from a C++ object, to another C++ object, to modify member variables, from Lua

How do you get a reference to a C++ object, from another C++ object, inside a Lua script? I don't really know how to summarize that in words properly, so let me elaborate with a Lua example first: ...
0
votes
1answer
118 views

Luabind: Can't return shared_ptr

I'm trying to return an std::shared_ptr from a method bound with Luabind, but it doesn't seem to recognize the type. Luabind code: module(lua) [ class_<Character, BaseEntity, ...
2
votes
1answer
81 views

How do you properly load files within a script with luabind?

I am trying to embed Lua into a game. What I want to do is to create a load function, which will load all files in a folder and then create objects based off those files which will be stored on the ...
1
vote
0answers
99 views

How to get Luabind properties to work?

I am trying to use Luabind's properties when importing a class. The definitions are all correct, of this I am sure, but when I call upon a property, such as to print it if it's a string or number, I ...
1
vote
1answer
113 views

Lua function crashes when comparing stored C++ object pointers using Luabind

I'm just getting started with Luabind and C++. My goal is pretty simple: I want to create a Lua function that takes a C++ object pointer as an argument and stores the object in a Lua variable. Each ...
0
votes
1answer
52 views

Luabind pure_out_value refuses to compile

I'm having some problems getting Luabind to work with the 'pure_out_value' property for a function. In my case, Luabind is erroring during compile saying that the templates do not contain specific ...
0
votes
0answers
130 views

C(++)/Lua and an Array of Userdata

In Lua I have a parser 'class' that parses some raw text and breaks it into a document structure from which I can easily get tokens, manipulate, etc. So I might have some Lua code that looks like: ...
5
votes
0answers
276 views

luabind - functions with more than 10 arguments

I would like to use functions with more than 10 arguments with luabind, but I get some C2784 and C2780 compiler errors (VS2012 Express). It seems that the problem is a limitation of the used boost ...
1
vote
2answers
216 views

luabind : Accessing an invalidated c++ object from lua results in access violation

Is it possible that luabind checks, if a member function call to an exported class (object) is for a valid object? lets assume that i have a Class called Actor exposed using luabind to lua. Im ...
1
vote
5answers
279 views

Is Lua embedded in C++ capable of having persistent local variables? If not, is there a scripting language that does?

I have embedded Lua in my C++ application using LuaBind. I need to have variables that persist across multiple runs, that can't be accessed by other objects that run the same file name. For example: ...
1
vote
1answer
148 views

Passing structure address from C to Lua and accessing its contents in Lua without copy of data

Consider I have a packet (network packet) and it is stored in an array in C. I have a module in Lua which can process this packet. Now I need to pass this packet to Lua for processing. I want to avoid ...
2
votes
2answers
347 views

Lua How to pass a void* pointer to lua in C++ && pass it back to C++

Now I want to pass a void* pointer to Lua, use userdata? How to do this? BTW, I used luabind, but it cannot pass a void* pointer to Lua stack, this is annoying! Could you guys help me? struct Event ...
0
votes
1answer
121 views

Luabind inheritance: self not defined

I just got myself into weird problem with Luabind. I want to inherit C++ classes from Lua, but the way described in Luabind documentation just doesn't work. function MyGame.__init() ...
0
votes
1answer
164 views

luabind member function requires object as first argument

I'm having a very subtle problem with luabind v0.9.1 with g++ 4.7 (--std=c++11) and Boost 1.51 which can be reproduced in the following code: #include <exception> #include <iostream> ...
0
votes
1answer
91 views

Luabind calling convention issues

I am having an issue with Luabind that I am unsure of how to fix without some over-simplified solution. Luabind appears to only allow binding to functions using the __cdecl calling convention. In my ...
0
votes
1answer
72 views

LuaBind get function name

How to find out which Lua function called my C++ function, if C++ function exported in scripts by luabind, using callstack in MVS?
1
vote
1answer
92 views

Bind function returning btVector3 with luabind

I'm trying to bind class using btVector3. Binding btVector3 with constructor works fine. Binding functions like: void SetPosition(const btVector3& position) works fine, but binding this: ...
3
votes
1answer
420 views

Lua project compiling with errors (luabind)

I trying to make some HelloWorld with Lua + Luabind in Visual Studio 2010. I downloaded Lua src from here and added it's source files into project. Then I download and added source of luabind. Finaly ...
0
votes
0answers
106 views

luabind (0.9.1) const & non-const overloads as property getter

I am using luabind (with LuaJIT) to bind to an existing C++ library which has objects like the one below. struct Code { std::string const & getValue() const; void setValue(std::string const ...
0
votes
1answer
278 views

Unable to determine lua include directory

I am trying to install Luabind in my Windows 8 RP. This is what I have done so far. My Visual Studio is 2012 RC version. I have installed LuaforWindows 5.1.4 I have downloaded luabind-0.9.1 I have ...
1
vote
0answers
123 views

When luabind::object was destructed, this can't release this own allocated memory [closed]

I'm using Lua5.2, luabind and C++ in VisualStudio 2010 pro. I can build the code, but the memory usage of the program increse gradually. Please tell me what brought this on. The C++ code is below. ...
0
votes
0answers
35 views

how to bind a functor with more than one argument to lua using luabind

If I want to bind a functor with one argument to lua using luabind, the following code could help: struct vec { int operator()(int a) { return a + 10; } }; module(L) [ ...
0
votes
0answers
45 views

How to recognize the nested pointer reference from C code in lua or luabind

FOR EXAMPLE, In c code, struct A has struct B, and struct B has a reference to stuct C, which means struct B has a pointer reference to C. My problem is How to represent and get the pointer reference ...
1
vote
0answers
255 views

luabind 'Trying to use unregistered class' on return

I'm currently using luabind to bind a class (sf::Time from SFML 2.0 to be exact), and I keep getting an exception from luabind. Here is my binding code: using namespace luabind; ...
5
votes
1answer
218 views

C++ template method to create objects

I'm using Luabind to expose my game engine to Lua. I recently ran into trouble when I found out that there is no way for me to create a "new" e.g. GUIObject * obj = new GUIObject() in Lua, instead ...
1
vote
1answer
227 views

Application crashes with objects created in loop using Luabind in C++

I'm trying to use Lua with my game engine prototype but I'm stuck with odd error. My target is to create X objects in loop with Lua and render them. sprite = Sprite("icon.jpg", 300, 300, 0) sprite2 ...
0
votes
0answers
124 views

luabind not making changes to pointer mingw

I have fixed the linker errors I had in this question, but now I am having another problem. I create my objects by calling createObject() in lua and that creates a boost::shared_ptr to a new object, ...
1
vote
0answers
217 views

Luabind - Unable to find Lua library

I am trying to compile Luabind for my project with little success. I have the lua directory (containing src, the makefile etc) as a sibling of luabind. I have LUA_PATH set to the /my/dirs/lua folder. ...
0
votes
1answer
337 views

Linking errors with lua & luabind - mingw

I am using luabind for binding my C++ classes to lua, I can get luabind and most lua functions to work, but if I try to use luaL_openlibs() I get: undefined reference to 'luaL_openlibs' collect2: ld ...
1
vote
1answer
270 views

Callback to Lua member function

I have a lua "animation variable" which has a callback function used in an animation loop. local av = AnimationVariable(ticker.Position.Y) ... av:addCallback( ** animation function goes here **) ...
0
votes
1answer
232 views

Creation of lua object from c++ base class

I have exported from C++ into lua such base class: class IState { public: virtual ~IState() { } virtual void Init() = 0; virtual void Update(float dSeconds) = 0; ...
0
votes
1answer
247 views

use luabind to call C++ member function inherited form base class

C++ code here, a console project class CControl //: public CGameObject { public: CControl(){} ~CControl(){} public: void AddAnimation(){ cout << "CControl::AddAnimation" << ...
0
votes
1answer
247 views

luabind getting the class metatable of a c++ object to push the obj as argument to lua function

I noticed a severe performance hit, introducing one of my c++ objects as a lua function arg e.g. function luaFunc(someString) print someString end this is pretty fast - less than 30ms for 100k ...
1
vote
1answer
209 views

Delayed execution of member functions in Lua/C++ / luabind / Interaction with other lua behavior scripts

I have a game with a mainloop - on each loop i call for every NPC in the game ->ProcessAI() to execute any actions. This is a server so the call to ProcessAI is not executed on every frame like on a ...
1
vote
1answer
257 views

lua+luabind, no error information at top of stack, after “runtime error”

I'm trying to embed lua into my game engine. It all worked good until now. I started registering functions to interface with the game engine (e.g. move_object(id, x, y)), and the registration worked ...
0
votes
0answers
159 views

From Lua to C++

I have a table t in Lua and I want to pass it to C++. I read another thread tackling this question, but I couldnt understand the solution because I am not using neither luabind or Lua objlen. Can ...

1 2 3