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.

link|improve this question

75% accept rate
Solved it by using the iteration features of Boost.Preprocessor: I let Boost generate functions for a specific amount of arguments and ask for a list of luabind::objects as the first parameter. The function(s) then iterate over each object and call it accordingly. – Tank Jul 8 '11 at 14:55
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.