ACE3/addons/minedetector/functions/fnc_getDetectorConfig.sqf

38 lines
963 B
Plaintext
Raw Normal View History

2016-05-03 20:37:02 +00:00
/*
* Author: Glowbal
* Get the mine detector configuration from the cache or config file
2016-05-03 20:37:02 +00:00
*
* Arguments:
* 0: Detector class name <STRING>
*
* Return Value:
* Detector configuration or empty array if invalid <ARRAY>
*
* Example:
* ["my_detector"] call ace_minedetector_fnc_getDetectorConfig
*
* Public: No
*/
#include "script_component.hpp"
params ["_detectorType"];
if (_detectorType isEqualTo "") exitWith {[]};
private _detectorConfig = GVAR(detectorConfigs) getVariable _detectorType;
if (isNil "_detectorConfig") then {
private _cfgEntry = (configFile >> "ACE_detector" >> "detectors" >> _detectorType);
if (isClass _cfgEntry) then {
_detectorConfig = [
_detectorType,
getNumber (_cfgEntry >> "radius"),
getArray (_cfgEntry >> "sounds")
];
} else {
_detectorConfig = [];
};
GVAR(detectorConfigs) setVariable [_detectorType, _detectorConfig];
2016-05-03 20:37:02 +00:00
};
_detectorConfig