ACE3/addons/common/functions/fnc__handleRequestSyncedEvent.sqf

53 lines
1.4 KiB
Plaintext
Raw Normal View History

#include "script_component.hpp"
2016-05-30 16:37:03 +00:00
/*
* Author: jaynus
* Receives either requests for synchronization from clients, or the synchronization data from the server.
*
* Arguments [Client]:
2016-05-30 16:37:03 +00:00
* 0: eventName <STRING>
* 1: eventLog <ARRAY>
*
* Arguments [Server]:
2016-05-30 16:37:03 +00:00
* 0: eventName <STRING>
* 1: client <OBJECT>
*
* Return Value:
* Event is successed <BOOL>
*
* Example:
* ["name", [LOG]] call ace_common_fnc__handleRequestSyncedEvent //Client
* ["name", bob] call ace_common_fnc__handleRequestSyncedEvent//Server
*
2016-05-30 16:37:03 +00:00
* Public: No
*/
//SEH_s
if (isServer) then {
// Find the event name, and shovel out the events to the client
params ["_eventName", "_client"];
2016-07-30 10:28:06 +00:00
if !([GVAR(syncedEvents), _eventName] call CBA_fnc_hashHasKey) exitWith {
ERROR_1("Request for synced event - key [%1] not found.", _eventName);
2016-05-30 16:37:03 +00:00
false
};
2016-07-30 10:28:06 +00:00
private _eventEntry = [GVAR(syncedEvents), _eventName] call CBA_fnc_hashGet;
2016-05-30 16:37:03 +00:00
_eventEntry params ["", "_eventLog"];
2016-06-09 12:24:45 +00:00
["ACEs", [_eventName, _eventLog], _client] call CBA_fnc_targetEvent;
2016-05-30 16:37:03 +00:00
} else {
params ["_eventName", "_eventLog"];
// This is the client handling the response from the server
// Start running the events
{
_x params ["", "_eventArgs","_ttl"];
[_eventName, _eventArgs, _ttl] call FUNC(_handleSyncedEvent);
false
} count _eventLog;
INFO_1("[%1] synchronized",_eventName);
2016-05-30 16:37:03 +00:00
};
true