2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-08-18 16:09:37 +00:00
|
|
|
/*
|
2017-09-29 19:53:25 +00:00
|
|
|
* Author: Tuupertunut
|
2015-08-18 16:09:37 +00:00
|
|
|
* Rearm an entire turret locally.
|
|
|
|
*
|
|
|
|
* Arguments:
|
2016-02-27 20:05:19 +00:00
|
|
|
* 0: Ammo Truck <OBJECT>
|
2016-02-27 19:31:07 +00:00
|
|
|
* 1: Vehicle <OBJECT>
|
|
|
|
* 2: TurretPath <ARRAY>
|
2015-08-18 16:09:37 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
2016-02-27 19:31:07 +00:00
|
|
|
* [ammo_truck, tank, [0]] call ace_rearm_fnc_rearmEntireVehicleSuccessLocal
|
2015-08-18 16:09:37 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2017-09-29 19:53:25 +00:00
|
|
|
params ["_truck", "_vehicle", "_turretPath"];
|
2017-06-08 16:47:52 +00:00
|
|
|
TRACE_3("rearmEntireVehicleSuccessLocal",_truck,_vehicle,_turretPath);
|
|
|
|
|
2017-09-29 19:53:25 +00:00
|
|
|
// Fetching all rearmable magazines in this turret
|
|
|
|
private _magazines = ([_vehicle] call FUNC(getNeedRearmMagazines)) select {(_x select 1) isEqualTo _turretPath};
|
2017-06-08 16:47:52 +00:00
|
|
|
{
|
2017-09-29 19:53:25 +00:00
|
|
|
_x params ["_magazineClass", "_magTurretPath", "_isPylonMag", "_pylonIndex", "_maxMagazines", "_currentMagazines", "_maxRoundsPerMag", "_currentRounds"];
|
2018-10-13 17:07:32 +00:00
|
|
|
|
2017-09-29 19:53:25 +00:00
|
|
|
// Array of planned ammo counts in every magazine after the rearm is complete
|
|
|
|
private _plannedRounds = +_currentRounds;
|
2018-10-13 17:07:32 +00:00
|
|
|
|
2017-09-29 19:53:25 +00:00
|
|
|
// Trying to fill all existing magazines.
|
|
|
|
{
|
|
|
|
if (_x < _maxRoundsPerMag) then {
|
2018-10-13 17:07:32 +00:00
|
|
|
if (
|
|
|
|
GVAR(supply) == 0
|
|
|
|
|| {isNull _truck} // zeus rearm
|
|
|
|
|| {[_truck, _magazineClass, (_maxRoundsPerMag - _x)] call FUNC(removeMagazineFromSupply)}
|
|
|
|
) then {
|
2017-09-29 19:53:25 +00:00
|
|
|
_plannedRounds set [_forEachIndex, _maxRoundsPerMag];
|
2017-06-08 16:47:52 +00:00
|
|
|
};
|
|
|
|
};
|
2017-09-29 19:53:25 +00:00
|
|
|
} forEach _currentRounds;
|
2018-10-13 17:07:32 +00:00
|
|
|
|
2017-09-29 19:53:25 +00:00
|
|
|
// Trying to add new full magazines, if there is space left.
|
2015-08-18 16:09:37 +00:00
|
|
|
if (_currentMagazines < _maxMagazines) then {
|
2017-06-08 16:47:52 +00:00
|
|
|
for "_idx" from 1 to (_maxMagazines - _currentMagazines) do {
|
2018-10-13 17:07:32 +00:00
|
|
|
if (
|
|
|
|
GVAR(supply) == 0
|
|
|
|
|| {isNull _truck} // zeus rearm
|
|
|
|
|| {[_truck, _magazineClass, _maxRoundsPerMag] call FUNC(removeMagazineFromSupply)}
|
|
|
|
) then {
|
2017-09-29 19:53:25 +00:00
|
|
|
_plannedRounds pushBack _maxRoundsPerMag;
|
2016-02-27 19:31:07 +00:00
|
|
|
};
|
2015-08-18 16:09:37 +00:00
|
|
|
};
|
2017-09-29 19:53:25 +00:00
|
|
|
};
|
2018-10-13 17:07:32 +00:00
|
|
|
|
2017-09-29 19:53:25 +00:00
|
|
|
TRACE_2("rearming",_x,_plannedRounds);
|
2018-10-13 17:07:32 +00:00
|
|
|
|
2017-09-29 19:53:25 +00:00
|
|
|
// Updating new ammo counts to vehicle.
|
|
|
|
if (_isPylonMag) then {
|
|
|
|
_vehicle setAmmoOnPylon [_pylonIndex, (_plannedRounds select 0)];
|
2015-08-18 16:09:37 +00:00
|
|
|
} else {
|
2017-09-29 19:53:25 +00:00
|
|
|
[_vehicle, _magTurretPath, _magazineClass, _plannedRounds] call FUNC(setTurretMagazineAmmo);
|
2015-08-18 16:09:37 +00:00
|
|
|
};
|
2017-09-29 19:53:25 +00:00
|
|
|
} forEach _magazines;
|
2017-06-08 16:47:52 +00:00
|
|
|
|