2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
*
|
|
|
|
* Execute all custom event script assigned to this object.
|
|
|
|
*
|
|
|
|
* Argument:
|
|
|
|
* 0: Object the eventhandlers are assigned to or namespace (Object or Namespace)
|
|
|
|
* 1: Name of the event (String)
|
|
|
|
* 2: Arguments passed to the eventhandler script (Array, optional default: [Object the event handlers are assigned to])
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
* None.
|
|
|
|
*/
|
2015-01-12 18:22:58 +00:00
|
|
|
#include "\z\ace\addons\common\script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
private ["_object", "_type", "_argument", "_name", "_actions"];
|
|
|
|
|
|
|
|
_object = _this select 0;
|
|
|
|
_type = _this select 1;
|
|
|
|
_argument = _this select 2;
|
|
|
|
|
|
|
|
if (isNil "_argument") then {_argument = [_object]};
|
|
|
|
|
2015-01-12 04:02:33 +00:00
|
|
|
_name = format ["ACE_CustomEventHandlers_%1", _type];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
_actions = (_object getVariable [_name, [-1, [], []]]) select 2;
|
|
|
|
|
|
|
|
{
|
|
|
|
_argument call _x; nil;
|
|
|
|
} count _actions;
|
|
|
|
nil
|