2018-09-17 19:19:29 +00:00
|
|
|
#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.
|
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Arguments [Client]:
|
2016-05-30 16:37:03 +00:00
|
|
|
* 0: eventName <STRING>
|
|
|
|
* 1: eventLog <ARRAY>
|
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Arguments [Server]:
|
2016-05-30 16:37:03 +00:00
|
|
|
* 0: eventName <STRING>
|
|
|
|
* 1: client <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Event is successed <BOOL>
|
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* 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"];
|
|
|
|
|
2021-10-10 16:55:14 +00:00
|
|
|
if !(_eventName in GVAR(syncedEvents)) exitWith {
|
2016-10-02 10:55:31 +00:00
|
|
|
ERROR_1("Request for synced event - key [%1] not found.", _eventName);
|
2016-05-30 16:37:03 +00:00
|
|
|
false
|
|
|
|
};
|
|
|
|
|
2021-10-10 16:55:14 +00:00
|
|
|
private _eventEntry = GVAR(syncedEvents) get _eventName;
|
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;
|
|
|
|
|
2016-10-02 10:55:31 +00:00
|
|
|
INFO_1("[%1] synchronized",_eventName);
|
2016-05-30 16:37:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
true
|