ACE3/addons/rearm/functions/fnc_getNeedRearmMagazines.sqf

45 lines
1.2 KiB
Plaintext
Raw Normal View History

/*
* Author: GitHawk, Jonpas
* Get rearm return value.
*
* Arguments:
* 0: Target <OBJECT>
2015-08-18 14:20:11 +00:00
* 1: Magazine Classname <STRING>
*
* Return Value:
2015-08-18 14:20:11 +00:00
* Return Value <ARRAY>
* 0: Can Rearm <BOOL>
* 1: TurretPath <ARRAY>
2016-02-01 19:05:53 +00:00
* 2: Number of current magazines in turret path <NUMBER>
*
* Example:
2015-08-18 14:20:11 +00:00
* [tank, "mag"] call ace_rearm_fnc_getNeedRearmMagazines
*
* Public: No
*/
#include "script_component.hpp"
2016-02-01 19:05:53 +00:00
private ["_return", "_magazines", "_currentMagazines"];
2015-08-18 14:20:11 +00:00
params ["_target", "_magazineClass"];
2015-08-18 14:20:11 +00:00
_return = [false, [], 0];
{
2016-02-01 19:05:53 +00:00
_magazines = [_target, _x] call FUNC(getConfigMagazines);
if (_magazineClass in _magazines) then {
2016-02-01 19:05:53 +00:00
_currentMagazines = {_x == _magazineClass} count (_target magazinesTurret _x);
if ((_target magazineTurretAmmo [_magazineClass, _x]) < getNumber (configFile >> "CfgMagazines" >> _magazineClass >> "count")) exitWith {
2016-02-01 19:05:53 +00:00
_return = [true, _x, _currentMagazines];
};
2016-02-01 19:05:53 +00:00
if (_currentMagazines < ([_target, _x, _magazineClass] call FUNC(getMaxMagazines))) exitWith {
_return = [true, _x, _currentMagazines];
};
};
if (_return select 0) exitWith {};
} forEach REARM_TURRET_PATHS;
_return