Tagged Questions
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
453 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
222 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
378 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
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
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
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
567 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
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
400 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
80 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
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
3answers
159 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 ...
0
votes
1answer
551 views
Calling C++ member function from Luabind causes “No matching overload found”
I've got some classes exported to Luabind in a DLL, and everything is working fine for those 2 classes (LuaScriptManager, EventManager).
I can call their functions from Lua and all is well, but now ...
0
votes
1answer
229 views
Returning tables of objects from C++, adopt policy
Using luabind, I create a table of objects from C++
luabind::object create_table(lua_State *L)
{
luabind::object result = luabind::newtable(L);
int index = 1;
for ( ... ) {
lua_Object *o = ...
0
votes
2answers
303 views
when do luabind free created objects?
I'm having problems with luabind. I define a std::map to allocate objects created in lua. I publish this map as a global object in lua in this way:
luabind::globals(L)["g_SceneManager2D"] = this;
...
0
votes
1answer
286 views
How to override luabind class __finalize method?
How to override luabind class __finalize method?
Trying to do this in such way:
class A
function A:__init()
end
function A:__finalize()
end
local original_finalize_function = A.__finalize
...
0
votes
2answers
743 views
How to iterate through luabind class (in lua or in c++)?
How to iterate through luabind class (in lua or in c++)?
class 'A'
function A:__init()
-- Does not work
-- self is userdata, not a table
for i, v in pairs(self) do
end
end
Thanks
0
votes
1answer
587 views
How do I use Luabind and C++ to create an asset managing class?
I've made countless attempts to get this working, but everything I do gives me run-time errors. I've been trying to make asset managers to manage content for my game engine, and I'm using lua and ...
0
votes
1answer
903 views
Luabind Function using std::string& Reference with pure_out_value policy not possible?
I'am trying to return a string from a function but it doesn't compile.
When I replace the std::string& type with int& it compiles, however I want to return additionally to the boolean a ...