2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2016-05-30 16:37:03 +00:00
|
|
|
/*
|
|
|
|
* Author: jaynus
|
|
|
|
* Register an event handler for an ACE synced event
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Name <STRING>
|
|
|
|
* 1: Handler <CODE>
|
|
|
|
* 2: TTL (optional: 0) <NUMBER, CODE>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Boolean of success <BOOL>
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* ["myEvent", {_this call x}, 0] call ace_common_fnc_addSyncedEventHandler
|
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
|
|
|
|
|
|
|
params ["_name", "_handler", ["_ttl", 0]];
|
|
|
|
|
2021-10-10 16:55:14 +00:00
|
|
|
if (_name in GVAR(syncedEvents)) exitWith {
|
2016-10-02 10:55:31 +00:00
|
|
|
ERROR_1("Duplicate synced event [%1] creation.",_name);
|
2016-05-30 16:37:03 +00:00
|
|
|
false
|
|
|
|
};
|
|
|
|
|
2024-03-28 18:57:23 +00:00
|
|
|
private _eventId = [_name, LINKFUNC(_handleSyncedEvent)] call CBA_fnc_addEventHandler;
|
2016-05-30 16:37:03 +00:00
|
|
|
private _data = [_handler, [], _ttl, _eventId];
|
|
|
|
|
2021-10-10 16:55:14 +00:00
|
|
|
GVAR(syncedEvents) set [_name, _data];
|