2015-03-28 10:08:17 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
* Check if the unit can replace given wheel of the vehicle.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Unit that does the repairing (Object)
|
|
|
|
* 1: vehicle to repair (Object)
|
|
|
|
* 2: Selected hitpoint (String)
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* NONE
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-09 06:54:44 +00:00
|
|
|
params ["_unit", "_target", "_hitPoint", ["_wheel",false]];
|
|
|
|
TRACE_4("params",_unit,_target,_hitPoint,_wheel);
|
2015-08-09 13:53:52 +00:00
|
|
|
// TODO [_unit, _wheel] call EFUNC(common,claim); on start of action
|
|
|
|
//if !([_unit, _target, _hitpoint, "ReplaceWheel"] call FUNC(canRepair)) exitwith {false};
|
2015-03-28 10:08:17 +00:00
|
|
|
|
2015-08-09 13:53:52 +00:00
|
|
|
//if !([_unit, _target, []] call EFUNC(common,canInteractWith)) exitWith {false};
|
2015-03-28 10:08:17 +00:00
|
|
|
|
2015-08-09 13:53:52 +00:00
|
|
|
//if !([_unit, GVAR(engineerSetting_Wheel)] call FUNC(isEngineer)) exitWith {false};
|
2015-04-22 19:01:22 +00:00
|
|
|
|
2015-03-29 09:01:23 +00:00
|
|
|
// check for a near wheel
|
2015-04-22 19:31:42 +00:00
|
|
|
if (typeName _wheel == "OBJECT") then {
|
|
|
|
// not near interpret as objNull
|
|
|
|
if !(_wheel in nearestObjects [_unit, ["ACE_Wheel"], 5]) then {
|
|
|
|
_wheel = objNull;
|
2015-03-29 09:01:23 +00:00
|
|
|
};
|
2015-04-22 19:31:42 +00:00
|
|
|
} else {
|
|
|
|
_wheel = objNull;
|
|
|
|
|
|
|
|
{
|
|
|
|
if ([_unit, _x, ["isNotDragging", "isNotCarrying"]] call EFUNC(common,canInteractWith)) exitWith {
|
|
|
|
_wheel = _x;
|
|
|
|
};
|
|
|
|
} forEach nearestObjects [_unit, ["ACE_Wheel"], 5];
|
|
|
|
};
|
2015-03-29 09:01:23 +00:00
|
|
|
|
|
|
|
if (isNull _wheel) exitWith {false};
|
|
|
|
|
2015-03-28 10:08:17 +00:00
|
|
|
alive _target && {_target getHitPointDamage _hitPoint >= 1}
|
2015-08-09 13:53:52 +00:00
|
|
|
|