Tagged Questions

Library to make bindings between C++ and Lua

learn more… | top users | synonyms

24
votes
1answer
656 views

Handle event callbacks with Luabind

I'm adding scripting with Lua to an application of ours, and I need to implement bindings for the GUI-toolkit. The toolkit we use is wxWidgets. I'm using Lua 5.1 and luabind 0.9.1, and it has worked ...
3
votes
1answer
277 views

Problems with overload function and luabind

I have a class that I want to bind to lua. The reduced code might be: class CSprite2D{ void setPosition(glm::ivec2 val) { m_position = val; } void setPosition(int posX, int posY) { ...
2
votes
1answer
118 views

Need help understanding how luabind instantiates classes

Let's say I have a class like this: class A { public: A(){} ~A(){} }; And expose it to Lua via Luabind like this: module(luaState) [ class_<A>("Foo") ...
2
votes
1answer
71 views

How do I prevent the creation of a new property in a Luabind class?

I'm using Luabind to bind C++ classes to Lua. From the Lua script, I can add arbitrary properties (key/value pairs) to the tables that represent my classes, even if I never told Luabind these ...
2
votes
1answer
153 views

How do I make sure that the (luabind) lua state is good after an error has occurred?

When lua code causes an exception, luabind will leave an error message on the stack for me to collect. I am wondering how to guarantee that the lua stack will be in a sensible state after I have ...
2
votes
3answers
451 views

How should I bind lua functions to C++ functions?

I have a class called Entity, which has many functions like onPickup, onDrop, onUse etc. What I want to do is, write a script that defines all of these functions and make them callable from the C++ ...
2
votes
1answer
331 views

How to bind overloaded functions with Luabind?

I am writing a game engine in c++ which will provide Lua scripting ( for which wrapping I am using Luabind ) and I am having some problems to bind overloaded functions. Namely: I have am overloaded ...
2
votes
0answers
181 views

Access Android Content Provider Data via Lua Script

I am aware that one could query Content providers for the data using Content Provider Class using Android based API's. http://developer.android.com/guide/topics/providers/content-providers.html ...
2
votes
2answers
305 views

Game NPC multi-action lua script design

I need to put scriptable NPC in my currect game project. The project itself is developed in C++ language. I will using Luabind to bind lua and c++. I need to call NPC function when certain NPC ...
2
votes
1answer
221 views

Lua shutdown/End of the program execution callback

I am writing a module for Lua. On closing the lua interpreter it must run clean up routines even if user forgets to call shutdown routine implicitly. The module is mostly written in C. What ...
2
votes
1answer
335 views

Converting Luabind to C#?

Has anybody tried converting Luabind to C#? Is such a thing even possible? I've got an application that I want to convert so that it can run in a completely managed environment, but most of the game ...
1
vote
1answer
377 views

LuaBind: How to bind specific instance of class to Lua?

(sidenote: This is game programming) Binding entire classes to Lua using LuaBind is easy: class test { test() { std::cout<<"constructed!"<<std::endl; } void print() ...
1
vote
1answer
87 views

luabind 0.9.1 uses stl iterator only show one element

I got a strange problem while used luabind to return a stl::vector::iterator to lua script. Below is the code: 1) I created two function they are called by lua script: std::vector<car*> ...
1
vote
1answer
130 views

Odd Problem with luabind::object

I'm currently using luabind, specifically https://github.com/rpavlik/luabind since the official release is outdated and doesn't compile with the latest version of boost anymore. I'm getting a very ...
1
vote
2answers
187 views

C++ class member function pointer to function pointer

I am using luabind as my lua to C++ wrapper. Luabind offers a method to use my own callback function to handle exceptions thrown by lua, set_pcall_callback(). So I paraphrased an example from the ...
1
vote
2answers
179 views

Luabind: return_stl_iterator for std::map

Is there any way to return an STL iterator to a std::map (e.g. std::map<const std::string, int>)? Luabind definition for an example class: class_<SomeClass>( "SomeClass" ) .property( ...
1
vote
0answers
175 views

Event dispatcher using luabind::call_function

Luabind has the following function: luabind::call_function<Type>( function, args... ) In my C++ program, I've got an event system, that means for each event you can register callbacks. When ...
1
vote
1answer
267 views

Luabind and coroutines

I'm having some trouble understanding how to use coroutines properly with luabind. There's a templated function: template<class Ret> Ret resume_function(object const& obj, ...) Where ...
1
vote
0answers
164 views

Assertion failure in Luabind

I am currently having problems using Luabind to interface a Lua scripted AI with a C++ game. I call an update function inside a loop (once per frame) and this function retrieves informations from C++ ...
1
vote
2answers
205 views

Table simulation for lua

Good day I have a specific task to give an access of c++ std::map to lua scripts. Desired script syntax is glob["tag"] = "value" or glob("tag") = "value" In research, have tried luabind binding ...
1
vote
2answers
127 views

How to reference .cpp files without including them into the solution in Visual Studio?

I'm trying to compile this code: extern "C" { #include <lua.h> #include <lualib.h> #include <lauxlib.h> } #include <luabind/luabind.hpp> #include<iostream> int main(){ ...
1
vote
2answers
320 views

Need help to get started integrating lua in c++ game

I need help integrating lua in my game. I know only a little about lua, since I just started learning scripting (in general). I've read tutorials about lua, but most of them are only tell me how to ...
1
vote
1answer
566 views

Passing existing C++ objects to Lua and calling the passed objects' member functions

I'm working on a little simulation project which uses Lua to drive the behavior of individual units (ants) and using Luabind to glue the C++ and Lua sides together. Each individual ant (there are ...
1
vote
2answers
356 views

MSVC 10 + Luabind + std::vector == refuse to compile

So, I have a code, that compiled on MSVC 9 and some previous (dunno how far back it goes...), GCC, MingW, GCC on Mac... But one line, does not compile on MSVC: class_< vector<unsigned int> ...
1
vote
0answers
702 views

Binding functions of derived class with luabind

I am currently developing a plugin-based system in C++ which provides a Lua scripting interface, for which I chose to use luabind. I'm using Lua 5 and luabind 0.9, both statically linked and compiled ...
1
vote
1answer
408 views

Luabind conditionally calling Lua function

I have some code using Luabind, and I need to execute a function (from C++) if it's present in the _G table, but otherwise do nothing. How do I detect if a function is present in _G or not?
1
vote
1answer
1k views

Problem in luabind with default_converter and tables

===Edit=== The problem is actually much simpler than this, any wrapped function that takes a table is causing the problem. If I wrap a function that takes luabind::object, and call that function ...
1
vote
1answer
399 views

Access violation when exporting a C++ class to Lua using LuaBind

I'm trying to export a simple class to Lua using LuaBind. I took the code from two sites which showed roughly the same way to do it, but it's still failing. // Default headers #include ...
1
vote
1answer
386 views

Luabind class deriving problem (memory 'leak')

Using luabind 0.81 Simple test to illustrate the problem: 1) class 'A' function A:__init() print('A init\n') end function A:__finalize() print('A finalize\n') end do local obj = A() ...
1
vote
3answers
960 views

Storing a lua class with parent in luabind::object (updated)

Using C++, lua 5.1, luabind 0.7-0.81 Trying to create a lua class with parent and store it in a luabind::object. Lua class 'TestClassParent' function TestClassParent:__init() print('parent ...
1
vote
1answer
319 views

Problem with luabind::object dereferencing (simplified)

Using C++, lua5.1, luabind 0.7 Lua code: -- allocates near 8Mb of memory function fff() local t = {} for i = 1, 300000 do table.insert(t, i) end return t end C++ code: { ...
1
vote
2answers
609 views

Lost references in Lua

Having a problem with objects, not needed any more but still having references. Result: size of allocated memory is constantly growing due to not collected objects. How to solve this sort of problem? ...
1
vote
1answer
1k views

Obtaining a pointer to Lua object instance in C++

I am using Luabind to expose a base class from C++ to Lua from which I can derive classes in Lua. This part works correctly and I am able to call C++ methods from my derived class in Lua. Now what I ...
0
votes
1answer
90 views

How do I solve LNK2005: already defined

I'm working on a project with Lua and Luabind to C++. Now, in every class I want to export to C++, I write a static method Register like this: In Button.h: static luabind::scope Register(); In ...
0
votes
1answer
79 views

Can Luabind property getters and setters yield?

Is it possible to create a Luabind property with getters and setters that yield while they wait for the query to be performed in a different thread? The following syntax compiles but doesn't seem to ...
0
votes
1answer
58 views

Custom constructor in Luabind

I'm using Luabind to bind a C++ API to Lua. I have some objects that cannot be created directly, but rather must be created on another thread. I'm currently handling this by defining a "static" member ...
0
votes
1answer
248 views

Use LuaBind to call Lua functions inside a class when Lua is bound inside THAT class

Basically, I just want to be able to have a clean Lua instance made inside of my Manager class, then export the functions in the class to Lua, so that I can call functions on the already created C++ ...
0
votes
2answers
72 views

Problem with luabind installation under Windows

Cant build luabind. Have downloaded Boost and bjam.exe. Have anybody experience for it under Windows? How i can use this library? Thanks.
0
votes
1answer
24 views

Luabind: lua-function as parametr for exported function

Is it possible to send lua-function to main C++ program like this: function a() ... -- do something end cpp_exported_function(a); or better cpp_exported_function(function () .... end); ? ...
0
votes
2answers
190 views

C++ not catching lua exceptions

I have a C++ program that I have bound to Lua using luabind. I am currently testing the error handling methods that lua and luabind have to offer in order to help with debugging the lua scripts down ...
0
votes
1answer
53 views

luabind 0.9.1 iterator always only pop the last object

all. I got a stranger problem by using luabind to read a array from lua script. The lua script looks like this: root = { id = 1, id = 2, id = 3 }; and the c++ code is ...
0
votes
3answers
158 views

Exposing an STL Queue to Lua via Luabind

I'm attempting to replace an existing implementation of a queue class written in Lua with the STL Queue class. I'm not sure why this is failing, or how to approach fixing it. Below is some sample code ...
0
votes
2answers
94 views

Does this script result in many, many closures, and if yes, whats an alternative?

I want to implement a GUI message handling system in Lua, currently it works like this: In the c++ code, windows have window procedures, like they have in the Windows API, and I am trying to lean on ...
0
votes
1answer
184 views

Calling luabind derived member as a coroutine

The luabind documentation says to call a Lua-derived virtual member from C++, you create a wrapper class derived from luabind::wrap_base and call the function like so: class BaseWrapper : public ...
0
votes
1answer
303 views

In C++, using luabind, call function defined in lua file?

Say I have a lua file: --functions.lua function testadd(a, b) return a+b end How would I use luabind to load that file, and call that function- something like: //test.cpp extern "C" { ...
0
votes
0answers
109 views

Luabind object in object heap crash

I have a script running which has 2 functions, one which is executed when the application starts(onLevelInit), and the other, every frame (OnLevelFrame). function onLevelInit() openComputer = ...
0
votes
1answer
316 views

Luabind: “No matching overload found, candidates:”

Note, I have read and applied the answer to: Calling C++ member function from Luabind causes "No matching overload found", but this did not solve my issue. I have a simple class that I ...
0
votes
3answers
236 views

luabind - variable number of parameters

How can I bind a function with luabind that accept a variable number of parameters ? Basically, I want to write my own print() function. I know that the object class in luabind as a parameter can ...
0
votes
1answer
62 views

how do i iterate the tables parameters which is present under the main table?

In lua ,im calling a function which returns a table variable that contains many parameter internally..but when i get that value i couldnt access the paramter which is present in the table. I can see ...
0
votes
3answers
92 views

Open ready-made Lua files

I am new to the Lua language. . . I have some ready made .lua source files. Now I want to edit it and also want to modify it. First, I want to open and see it. I have searched on net, and found that ...

1 2