2016-06-24 01:43:22 +00:00
|
|
|
// EPOCH_giveAttributes
|
2016-09-01 00:29:08 +00:00
|
|
|
//[[[cog import generate_private_arrays ]]]
|
2017-09-20 14:23:46 +00:00
|
|
|
private ["_addPlus","_celcuis","_currentVal","_customVarIndex","_customVarLimits","_customVarNames","_customVarsInit","_data","_defaultVarValues","_limits","_max","_min","_newValue","_return","_varName"];
|
2016-09-01 00:29:08 +00:00
|
|
|
//[[[end]]]
|
2016-06-24 01:43:22 +00:00
|
|
|
params ["_selectedVarName",["_data",0],["_randomizeData",0]];
|
|
|
|
_addPlus = if (_data > 0) then {"+"} else {""};
|
|
|
|
_return = "";
|
2017-09-20 14:23:46 +00:00
|
|
|
|
|
|
|
_customVarsInit = ["CfgEpochClient", "customVarsDefaults", EPOCH_customVarsDefaults] call EPOCH_fnc_returnConfigEntryV2;
|
|
|
|
_customVarNames = _customVarsInit apply {_x param [0,""]};
|
|
|
|
_defaultVarValues = _customVarsInit apply {_x param [1,0]};
|
|
|
|
_customVarLimits = _customVarsInit apply {_x param [2,[]]};
|
|
|
|
|
|
|
|
_customVarIndex = _customVarNames find _selectedVarName;
|
2016-06-27 16:51:31 +00:00
|
|
|
if (_customVarIndex != -1) then {
|
2017-09-20 14:23:46 +00:00
|
|
|
_varName = format["EPOCH_digest%1",_selectedVarName];
|
|
|
|
_limits = _customVarLimits select _customVarIndex;
|
2016-06-27 16:51:31 +00:00
|
|
|
_limits params [["_max",100],["_min",0]];
|
|
|
|
if (_max isEqualType "") then {
|
|
|
|
_max = missionNamespace getVariable [_max, 0];
|
|
|
|
};
|
|
|
|
if (_min isEqualType "") then {
|
|
|
|
_min = missionNamespace getVariable [_min, 0];
|
|
|
|
};
|
2017-09-20 14:23:46 +00:00
|
|
|
_currentVal = missionNamespace getVariable [_varName, 0];
|
2016-06-27 16:51:31 +00:00
|
|
|
if (_randomizeData isEqualTo 1) then {
|
|
|
|
_data = round(random _data);
|
|
|
|
};
|
|
|
|
if (_data != 0) then {
|
2016-06-24 01:43:22 +00:00
|
|
|
_newValue = ((_currentVal + _data) min _max) max _min;
|
|
|
|
missionNamespace setVariable [_varName, _newValue];
|
|
|
|
if (_selectedVarName == "Temp") then {
|
|
|
|
_celcuis = _data call EPOCH_convertTemp;
|
2017-09-20 14:23:46 +00:00
|
|
|
_return = format["%1: %2%3°F %2%4°C",(localize format["str_epoch_pvar_%1",_selectedVarName]),_addPlus,_data,_celcuis];
|
2016-06-24 01:43:22 +00:00
|
|
|
} else {
|
2017-09-20 14:23:46 +00:00
|
|
|
_return = format["%1: %2%3", (localize format["str_epoch_pvar_%1",_selectedVarName]), _addPlus, _data];
|
2016-06-24 01:43:22 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2016-06-27 16:51:31 +00:00
|
|
|
|
2016-06-24 01:43:22 +00:00
|
|
|
_return
|