ACE3/addons/repair/functions/fnc_fullRepairProgress.sqf
Ivanowicz 773dfb58b0 Code cleanup
Changes to variable names for consistency, minor formatting fixes, removal of redundand comments
2023-12-09 00:26:10 +01:00

49 lines
1.5 KiB
Plaintext

#include "..\script_component.hpp"
/*
* Author: LinkIsGrim
* Handles full repair by periodically repairing damaged hitpoints.
*
* Arguments:
* 0: Arguments <ARRAY>
* 0: Engineer <OBJECT>
* 1: Vehicle <OBJECT>
* 2: Hitpoint <STRING> (unused)
* 3: Repair action classname <STRING>
* 1: Elapsed Time <NUMBER>
* 2: Total Time <NUMBER>
*
* Return Value:
* Continue Repair <BOOL>
*
* Example:
* [[objNull, player], 5, 10] call ace_repair_fnc_fullRepairProgress
*
* Public: No
*/
params ["_args", "_elapsedTime", "_totalTime"];
_args params ["_unit", "_vehicle", "", "_action"];
if !((alive _vehicle) && {(abs speed _vehicle) < 1}) exitWith {false}; // make sure vehicle doesn't drive off
// Not enough time has elapsed to repair a hitpoint
if (_totalTime - _elapsedTime > ([_unit, _vehicle] call FUNC(getFullRepairTime)) - (GVAR(miscRepairTime) * GVAR(timeCoefficientFullRepair))) exitWith {true};
(getAllHitPointsDamage _vehicle) params ["", "", "_damageValues"];
([_vehicle] call FUNC(getSelectionsToIgnore)) params ["_indexesToIgnore"];
private _firstDamagedIndex = {
if (_x > 0 && {!(_forEachIndex in _indexesToIgnore)}) exitWith {_forEachIndex};
-1
} forEach _damageValues;
// Stop repairing if there are no more damaged hitpoints
// callBackSuccess to FUNC(doFullRepair) for ignored hitpoints
if (_firstDamagedIndex == -1) exitWith {true};
// Repair the first damaged hitpoint
[_unit, _vehicle, _firstDamagedIndex, _action] call FUNC(doRepair);
true