2015-03-10 20:49:53 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
* Called by repair action / progress bar. Raise events to set the new hitpoint damage.
|
|
|
|
*
|
|
|
|
* Arguments:
|
2015-08-09 06:54:44 +00:00
|
|
|
* 0: Stuff from progress bar. <ARRAY>
|
2015-03-10 20:49:53 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* NONE
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-09 06:54:44 +00:00
|
|
|
params ["_args", "_elapsedTime", "_totalTime"];
|
|
|
|
_args params ["_unit", "_vehicle", "_hitPoint"];
|
|
|
|
TRACE_5("params",_unit,_vehicle,_hitPoint,_elapsedTime,_totalTime);
|
2015-03-10 20:49:53 +00:00
|
|
|
|
|
|
|
// get current hitpoint damage
|
|
|
|
private "_hitPointDamage";
|
|
|
|
_hitPointDamage = _vehicle getHitPointDamage _hitPoint;
|
|
|
|
|
|
|
|
// subtract repaired damage
|
|
|
|
_hitPointDamage = _hitPointDamage - _hitPointDamage * (_elapsedTime / _totalTime);
|
|
|
|
|
|
|
|
// don't use negative values for damage
|
2015-04-22 19:01:22 +00:00
|
|
|
_hitPointDamage = _hitPointDamage max ([_unit] call FUNC(getPostRepairDamage));
|
2015-03-10 20:49:53 +00:00
|
|
|
|
|
|
|
// raise event to set the new hitpoint damage
|
|
|
|
["setVehicleHitPointDamage", _vehicle, [_vehicle, _hitPoint, _hitPointDamage]] call EFUNC(common,targetEvent);
|
2015-03-10 21:52:44 +00:00
|
|
|
|
|
|
|
// display text message if enabled
|
|
|
|
if (GVAR(DisplayTextOnRepair)) then {
|
|
|
|
private "_text";
|
|
|
|
_text = format ["STR_ACE_Repair_%1", _hitPoint];
|
|
|
|
|
|
|
|
if (isLocalized _text) then {
|
2015-08-09 06:54:44 +00:00
|
|
|
_text = format [localize ([LSTRING(RepairedHitPointFully), LSTRING(RepairedHitPointPartially)] select (_hitPointDamage > 0)), localize _text];
|
2015-03-10 21:52:44 +00:00
|
|
|
} else {
|
2015-08-09 06:54:44 +00:00
|
|
|
_text = localize ([LSTRING(RepairedFully), LSTRING(RepairedPartially)] select (_hitPointDamage > 0));
|
2015-03-10 21:52:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
[_text] call EFUNC(common,displayTextStructured);
|
|
|
|
};
|