2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2016-01-13 00:18:12 +00:00
|
|
|
/*
|
|
|
|
* Author: PabstMirror
|
|
|
|
* Sends all status effects for an object (can be run on non-local objects)
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Object <OBJECT>
|
2016-06-03 19:07:49 +00:00
|
|
|
* 1: Effect name (or "" to send all) <STRING>
|
2016-01-13 00:18:12 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2017-06-08 13:31:51 +00:00
|
|
|
* None
|
2016-01-13 00:18:12 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [player, ""] call ace_common_fnc_statusEffect_sendEffects
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
params [["_object", objNull, [objNull]], ["_effectName", "", [""]]];
|
|
|
|
TRACE_2("params",_object,_effectName);
|
|
|
|
|
|
|
|
if (isNull _object) exitWith {};
|
|
|
|
|
|
|
|
{
|
|
|
|
if ((_effectName == "") || {_effectName == _x}) then {
|
|
|
|
private _effectVarName = format [QGVAR(effect_%1), _x];
|
|
|
|
private _effectNumber = _object getVariable [_effectVarName, -1];
|
|
|
|
|
|
|
|
//We only do anything if the effect has been defined at some point in the game for this unit
|
|
|
|
TRACE_2("checking if event is nil",_x,_effectNumber);
|
|
|
|
if (_effectNumber != -1) then {
|
2016-06-03 19:07:49 +00:00
|
|
|
private _eventName = format [QGVAR(%1), _x];
|
2016-01-13 00:18:12 +00:00
|
|
|
if (GVAR(statusEffect_isGlobal) select _forEachIndex) then {
|
|
|
|
TRACE_2("Sending Global Event", _object, _effectNumber);
|
2016-06-03 19:07:49 +00:00
|
|
|
[_eventName, [_object, _effectNumber]] call CBA_fnc_globalEvent;
|
2016-01-13 00:18:12 +00:00
|
|
|
} else {
|
2016-06-03 19:07:49 +00:00
|
|
|
TRACE_2("Sending Target Event", _object, _effectNumber);
|
|
|
|
[_eventName, [_object, _effectNumber], _object] call CBA_fnc_targetEvent;
|
2016-01-13 00:18:12 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
} forEach GVAR(statusEffect_Names);
|