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 an event is about to get fired, I have to iterate over all callbacks and call the Lua object accordingly. I also have to catch exceptions that may arise.
When I do this for every event, I end up writing the same code over and over again. So to simplify things, I'd like to do something like this:
void FireXYZEvent( arg0, arg1 ) {
CallLuaFunctions( XYZEvent, arg0, arg1 );
}
void FireAAAEvent( arg0 ) {
CallLuaFunctions( AAAEvent, arg0 );
}
CallLuaFunctions() would check what callbacks were registered for XYZEvent (simple std::map< int, std::list >) and call each one, everything surrounded by a try-catch block.
Can someone enlight me how I'd do this? I don't know how I can solve the problem having a variable amount of parameters that need to be given to luabind::call_function().
Some requirements and info: C++0x is no option. luabind::call_function() may receive more parameters than even needed, so e.g. call_function( a, b, NULL, NULL, NULL, NULL ) would be okay. I played around with Boost.Preprocessor and just found out about Boost.MPL, but I'm just too unexperienced in those fields.