ACE3/addons/core/functions/fnc_readNumericParameterFromModule.sqf

34 lines
1019 B
Plaintext
Raw Normal View History

/*
* Author: CAA-Picard
*
* Reads a numberic value from a module, sets de AGM_Parameter. Logs if parameters are missing in the module.
*
* Arguments:
* 0: Module (Object)
* 1: AGM_Parameter name (string)
* 2: Module parameter name (string)
*
* Return Value:
* None
*/
private ["_logic", "_agmParameterName", "_moduleParameterName", "_value"];
_logic = _this select 0;
_agmParameterName = _this select 1;
_moduleParameterName = _this select 2;
// Check if the parameter is defined in the module
if (isNil {_logic getVariable _moduleParameterName}) exitWith {
diag_log format["Warning in %1 module: %2 parameter is missing. Probably an obsolete version of the module is used in the mission.", typeOf _logic, _moduleParameterName]
};
// Check if the value is defined as string for backward compatibility
_value = _logic getVariable _moduleParameterName;
if (typeName _value == "STRING") then {
_value = parseNumber _value;
};
// Set the parameter
2015-01-11 18:20:14 +00:00
[_agmParameterName, _value] call FUNC(setParameter);