2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
*
|
|
|
|
* Get the turret index of a vehicles copilot.
|
|
|
|
*
|
|
|
|
* Argument:
|
|
|
|
* 0: Vehicle type (String)
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
* Turret index of the vehicles gunner. Empty array means no copilot position. (Array)
|
|
|
|
*/
|
2015-01-13 19:56:02 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
private ["_vehicle", "_turrets", "_turret", "_config"];
|
|
|
|
|
|
|
|
_vehicle = _this select 0;
|
|
|
|
|
2015-01-11 18:20:14 +00:00
|
|
|
_turrets = [_vehicle] call FUNC(getTurrets);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
_turret = [];
|
|
|
|
{
|
|
|
|
_config = configFile >> "CfgVehicles" >> _vehicle;
|
|
|
|
|
2015-01-11 18:20:14 +00:00
|
|
|
_config = [_config, _x] call FUNC(getTurretConfigPath);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
if (getNumber (_config >> "isCopilot") == 1 && {getNumber (_config >> "primaryGunner") != 1} && {getNumber (_config >> "primaryObserver") != 1}) exitWith {
|
|
|
|
_turret = _x;
|
|
|
|
};
|
|
|
|
} forEach _turrets;
|
|
|
|
_turret
|