Calling a Lua function from C is fairly straight forward but is there a way to store a Lua function somewhere for later use? I want to store user defined Lua functions passed to my C function for use on events, similar to how the Connect function works in wxLua.
|
|
check the registry ( |
||
|
|
|
Building on Javier's answer, Lua has a special universally-accessible table called the registry, accessible through the C API using the pseudo-index
|
||
|
|
|
|
The easiest way to do this is for your function to take a "name" and the lua function text. Then you create a table in the interpreter (if it doesn't exist) and then store the function in the table using the named parameter. In your app just keep hold of a list of function names tied to each event. When the event fires just call all the functions from your table whose key matches the names in the list. |
||||
|
