2015-03-29 09:01:23 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
2015-09-26 04:36:35 +00:00
|
|
|
* Repairs a vehicle's wheel with a ACE_wheel spare part object.
|
2015-03-29 09:01:23 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2015-08-16 18:14:54 +00:00
|
|
|
* 0: Unit that does the repairing <OBJECT>
|
|
|
|
* 1: Vehicle to repair <OBJECT>
|
|
|
|
* 2: Selected hitpoint <STRING>
|
2015-09-26 04:36:35 +00:00
|
|
|
* 3: Repair Action Classname (Not used) <STRING>
|
|
|
|
* 4: (Not used) <ARRAY>
|
|
|
|
* 5: (Not used) <ARRAY>
|
|
|
|
* 6: Required Repair Objects <ARRAY>
|
2015-03-29 09:01:23 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2015-08-16 18:14:54 +00:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
2015-09-26 04:36:35 +00:00
|
|
|
* [unit, vehicle, "hitpoint", "ReplaceWheel", [], [], [aWheel]] call ace_repair_fnc_doReplaceWheel
|
2015-08-16 18:14:54 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
2015-03-29 09:01:23 +00:00
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-09-26 04:36:35 +00:00
|
|
|
params ["_unit", "_vehicle", "_hitPoint", "", "", "", "_claimedObjects"];
|
|
|
|
TRACE_4("params",_unit,_vehicle,_hitPoint,_claimedObjects);
|
2015-08-09 13:53:52 +00:00
|
|
|
|
2015-09-26 04:36:35 +00:00
|
|
|
_claimedObjects params [["_wheel", objNull]];
|
|
|
|
if ((isNull _wheel) || {!([_unit, _wheel, ["isNotDragging", "isNotCarrying", "isNotOnLadder"]] call EFUNC(common,canInteractWith))}) exitWith {
|
|
|
|
ACE_LOGWARNING_1("Bad Claimed Wheel", _claimedObjects);
|
|
|
|
};
|
2015-03-29 09:01:23 +00:00
|
|
|
|
|
|
|
// get current hitpoint damage
|
2015-09-26 04:36:35 +00:00
|
|
|
local _hitPointDamage = _vehicle getHitPointDamage _hitPoint;
|
2015-03-29 09:01:23 +00:00
|
|
|
|
|
|
|
// can't replace not destroyed wheel
|
|
|
|
if (_hitPointDamage < 1) exitWith {};
|
|
|
|
|
2015-09-26 04:36:35 +00:00
|
|
|
// get replacement wheel's damage
|
|
|
|
local _newHitPointDamage = damage _wheel;
|
2015-03-29 09:01:23 +00:00
|
|
|
|
|
|
|
// can't replace a destroyed wheel
|
2015-09-26 04:36:35 +00:00
|
|
|
if (_newHitPointDamage >= 1) exitWith {};
|
2015-03-29 09:01:23 +00:00
|
|
|
|
|
|
|
deleteVehicle _wheel;
|
|
|
|
|
|
|
|
// raise event to set the new hitpoint damage
|
2015-09-26 04:36:35 +00:00
|
|
|
["setWheelHitPointDamage", _vehicle, [_vehicle, _hitPoint, _newHitPointDamage]] call EFUNC(common,targetEvent);
|
2015-03-29 09:01:23 +00:00
|
|
|
|
|
|
|
// display text message if enabled
|
|
|
|
if (GVAR(DisplayTextOnRepair)) then {
|
2015-08-09 06:54:44 +00:00
|
|
|
[LSTRING(ReplacedWheel)] call EFUNC(common,displayTextStructured);
|
2015-03-29 09:01:23 +00:00
|
|
|
};
|