The lua-c++-connection tag has no wiki summary.
1
vote
1answer
195 views
luaL_dostring puts nothing on the stack?
I'm trying to learn the basics of interfacing Lua with C++, but I've run into a problem.
I want to call a function that returns a string, and then work with the string on the C++ side, but ...
3
votes
3answers
303 views
Adding member function to a C++ class bound to Lua
I have been working on how to bind C++ classes to Lua for use in a game engine, and I have run into an interesting problem. I have been following the tutorial on this website: ...
0
votes
3answers
963 views
Simplest lua function that returns a vector of strings
I need a very simple c++ function that calls a lua function that returns an array of strings, and stores them as a c++ vector. The function can look something like this:
std::vector<string> ...
6
votes
2answers
3k views
Register C function in Lua table
How to register a C function in Lua, but not in a global context, but as a table field?
17
votes
8answers
6k views
Lua, game state and game loop
Call main.lua script at each game loop iteration - is it good or bad design? How does it affect on the performance (relatively)?
Maintain game state from a. C++ host-program or b. from Lua scripts or ...
11
votes
3answers
2k views
Lua and C++: separation of duties
Please help to classify ways of organizing C++/Lua game code and to separate their duties. What are the most convenient ways, which one do you use?
For example, Lua can be used for initializing C++ ...