2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2016-10-06 08:18:14 +00:00
|
|
|
/*
|
|
|
|
* Author: PabstMirror
|
|
|
|
* Adds or removes a source to an arithmetic set.
|
|
|
|
*
|
|
|
|
* Arguments:
|
2019-10-08 00:41:46 +00:00
|
|
|
* 0: Namespace <OBJECT|LOCATION|NAMESPACE>
|
2016-10-06 08:18:14 +00:00
|
|
|
* 1: Number Set ID <STRING>
|
|
|
|
* 2: Source <STRING>
|
|
|
|
* 3: Code that returns a number (can access var _namespace) [use {} to remove] <CODE>
|
|
|
|
*
|
|
|
|
* Return Value:
|
2017-06-08 13:31:51 +00:00
|
|
|
* None
|
2016-10-06 08:18:14 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [missionNameSpace, "ace_hearing", "myMission", {0.5}] call ace_common_fnc_arithmeticSetSource
|
|
|
|
* [ace_player, "ace_aimCoefficents", "ace_medical", {linearConversion [0,1,(_namespace getVariable "ace_medical_pain",1,0.2,true]}] call ace_common_fnc_arithmeticSetSource
|
|
|
|
*
|
|
|
|
* Public: Yes
|
|
|
|
*/
|
|
|
|
|
|
|
|
params ["_namespace", "_setID", "_source", "_variable"];
|
2019-10-08 00:41:46 +00:00
|
|
|
TRACE_4("arithmeticSetSource",_namespace,_setID,_source,_variable);
|
2016-10-06 08:18:14 +00:00
|
|
|
|
|
|
|
private _hash = _namespace getVariable _setID;
|
2019-10-08 00:41:46 +00:00
|
|
|
|
2016-10-06 08:18:14 +00:00
|
|
|
if (isNil "_hash") then {
|
|
|
|
_hash = [] call CBA_fnc_hashCreate;
|
|
|
|
_namespace setVariable [_setID, _hash];
|
|
|
|
};
|
2019-10-08 00:41:46 +00:00
|
|
|
|
2016-10-06 08:18:14 +00:00
|
|
|
if (_variable isEqualTo {}) then {
|
|
|
|
TRACE_1("removing",_source);
|
|
|
|
[_hash, _source] call CBA_fnc_hashRem;
|
|
|
|
} else {
|
|
|
|
TRACE_2("adding",_source,_variable);
|
|
|
|
[_hash, _source, _variable] call CBA_fnc_hashSet;
|
|
|
|
};
|
|
|
|
|
|
|
|
nil
|