mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
53 lines
1.1 KiB
Plaintext
53 lines
1.1 KiB
Plaintext
/*
|
|
* Author: commy2
|
|
* Get all turret indicies of a vehicle type.
|
|
*
|
|
* Arguments:
|
|
* 0: Vehicle type <STRING>
|
|
*
|
|
* Return Value:
|
|
* Turret Indecies <ARRAY>
|
|
*
|
|
* Public: Yes
|
|
*
|
|
* Note: It's advised to use allTurrets [_vehicle, true] instead whenever possible
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_type"];
|
|
|
|
private _varName = format [QGVAR(CachedTurrets_%1), _type];
|
|
private _turrets = + (uiNamespace getVariable _varName);
|
|
|
|
if (!isNil "_turrets") exitWith {_turrets};
|
|
|
|
private _config = configFile >> "CfgVehicles" >> _type;
|
|
|
|
_turrets = [];
|
|
|
|
private _fnc_addTurret = {
|
|
params ["_config", "_path"];
|
|
|
|
_config = _config >> "Turrets";
|
|
|
|
private _offset = 0;
|
|
|
|
for "_index" from 0 to (count _config - 1) do {
|
|
private _path2 = _path + [_index - _offset];
|
|
private _config2 = _config select _index;
|
|
|
|
if (isClass _config2) then {
|
|
_turrets pushBack _path2;
|
|
[_config2, _path2] call _fnc_addTurret;
|
|
} else {
|
|
_offset = _offset + 1;
|
|
};
|
|
};
|
|
};
|
|
|
|
[_config, []] call _fnc_addTurret;
|
|
|
|
uiNamespace setVariable [_varName, _turrets];
|
|
|
|
_turrets
|