Tagged Questions
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 ...
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
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 ...
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
744 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