2015-02-12 12:23:38 +00:00
|
|
|
/*
|
2015-12-15 06:44:49 +00:00
|
|
|
* Author: commy2 and CAA-Picard and joko and PabstMirror
|
2015-02-12 17:34:12 +00:00
|
|
|
* Publish a variable, but wait a certain amount of time before allowing it to be published it again.
|
2015-02-12 12:23:38 +00:00
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Arguments:
|
2015-09-19 21:18:07 +00:00
|
|
|
* 0: Object the variable should be assigned to <OBJECT>
|
|
|
|
* 1: Name of the variable <STRING>
|
|
|
|
* 2: Value of the variable <ANY>
|
2015-02-12 17:34:12 +00:00
|
|
|
* 3: Embargo delay <NUMBER> (Optional. Default: 1)
|
2015-02-12 12:23:38 +00:00
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Return Value:
|
2015-02-12 17:34:12 +00:00
|
|
|
* Nothing.
|
2015-09-19 21:18:07 +00:00
|
|
|
*
|
2015-12-15 06:44:49 +00:00
|
|
|
* Example:
|
|
|
|
* [player, "balls", 2, 1] call ace_common_fnc_setVariablePublic;
|
|
|
|
*
|
2015-09-19 21:18:07 +00:00
|
|
|
* Public: No
|
2015-02-12 12:23:38 +00:00
|
|
|
*/
|
2015-12-15 06:44:49 +00:00
|
|
|
// #define DEBUG_MODE_FULL
|
2015-02-12 12:23:38 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-12-15 06:44:49 +00:00
|
|
|
params ["_object", "_varName", "_value", ["_delay", 1]];
|
|
|
|
TRACE_4("params",_object,_varName,_value,_delay);
|
2015-02-12 12:23:38 +00:00
|
|
|
|
|
|
|
// set value locally
|
|
|
|
_object setVariable [_varName, _value];
|
|
|
|
|
2015-12-15 06:44:49 +00:00
|
|
|
// Exit if in SP - "duh"
|
2015-09-20 09:02:15 +00:00
|
|
|
if (!isMultiplayer) exitWith {};
|
2015-02-12 12:23:38 +00:00
|
|
|
|
2015-02-12 17:34:12 +00:00
|
|
|
// If we are on embargo, exit
|
2015-12-15 06:44:49 +00:00
|
|
|
if (_object isEqualTo (_object getVariable [format ["ACE_onEmbargo_%1", _varName], objNull])) exitWith {};
|
2015-02-12 14:56:57 +00:00
|
|
|
|
2015-12-15 06:44:49 +00:00
|
|
|
// Publish Now and set last update time:
|
2015-02-12 17:34:12 +00:00
|
|
|
_object setVariable [_varName, _value, true];
|
2015-12-15 06:44:49 +00:00
|
|
|
_object setVariable [format ["ACE_onEmbargo_%1", _varName], _object];
|
2015-02-12 12:23:38 +00:00
|
|
|
|
2015-12-15 06:44:49 +00:00
|
|
|
TRACE_2("Starting Embargo", _varName, _delay);
|
2015-09-19 21:18:07 +00:00
|
|
|
|
2015-02-12 17:34:12 +00:00
|
|
|
[{
|
2015-12-15 06:44:49 +00:00
|
|
|
params ["_object", "_varName", "_value"];
|
|
|
|
if (isNull _object) exitWith {TRACE_1("objNull",_this);};
|
2015-02-12 17:34:12 +00:00
|
|
|
|
2015-12-15 06:44:49 +00:00
|
|
|
_object setVariable [format ["ACE_onEmbargo_%1", _varName], nil]; //Remove Embargo
|
|
|
|
private _curValue = _object getVariable _varName;
|
|
|
|
|
|
|
|
TRACE_4("End of embargo", _object, _varName, _value, _curValue);
|
|
|
|
|
|
|
|
//If value at start of embargo doesn't equal current, then broadcast and start new embargo
|
|
|
|
if (!(_value isEqualTo _curValue)) then {
|
|
|
|
_this call FUNC(setVariablePublic);
|
|
|
|
};
|
2016-05-22 13:27:24 +00:00
|
|
|
}, _this, _delay] call CBA_fnc_waitAndExecute;
|