2015-08-24 03:14:04 +00:00
|
|
|
/*
|
|
|
|
* Author: Jonpas
|
|
|
|
* Check if misc repair action can be done, called from callbackSuccess.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Unit that does the repairing <OBJECT>
|
|
|
|
* 1: Vehicle to repair <OBJECT>
|
|
|
|
* 2: Selected hitpoint <STRING>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Can Misc Repair <BOOL>
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [unit, vehicle, "hitpoint", "classname"] call ace_repair_fnc_canMiscRepair
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-24 18:03:11 +00:00
|
|
|
private ["_hitpointGroupConfig", "_hitpointGroup", "_postRepairDamage", "_return"];
|
2015-08-24 03:14:04 +00:00
|
|
|
params ["_caller", "_target", "_hitPoint"];
|
|
|
|
|
2015-09-19 16:07:03 +00:00
|
|
|
if !([_unit, _target, ["isNotDragging", "isNotCarrying", "isNotOnLadder"]] call EFUNC(common,canInteractWith)) exitWith {false};
|
|
|
|
|
2015-08-24 18:03:11 +00:00
|
|
|
// Get hitpoint groups if available
|
2015-08-24 18:12:45 +00:00
|
|
|
_hitpointGroupConfig = configFile >> "CfgVehicles" >> typeOf _target >> QGVAR(hitpointGroups);
|
2015-08-24 18:03:11 +00:00
|
|
|
_hitpointGroup = [];
|
|
|
|
if (isArray _hitpointGroupConfig) then {
|
2015-08-26 20:51:41 +00:00
|
|
|
// Retrieve hitpoint subgroup if current hitpoint is main hitpoint of a group
|
2015-08-24 18:03:11 +00:00
|
|
|
{
|
|
|
|
// Exit using found hitpoint group if this hitpoint is leader of any
|
|
|
|
if (_x select 0 == _hitPoint) exitWith {
|
|
|
|
_hitpointGroup = _x select 1;
|
|
|
|
};
|
|
|
|
} forEach (getArray _hitpointGroupConfig);
|
2015-08-24 03:14:04 +00:00
|
|
|
};
|
|
|
|
|
2015-08-24 18:03:11 +00:00
|
|
|
// Add current hitpoint to the group
|
|
|
|
_hitpointGroup pushBack _hitPoint;
|
|
|
|
|
|
|
|
// Get post repair damage
|
2015-08-24 03:14:04 +00:00
|
|
|
_postRepairDamage = [_caller] call FUNC(getPostRepairDamage);
|
|
|
|
|
2015-08-24 18:03:11 +00:00
|
|
|
// Return true if damage can be repaired on any hitpoint in the group, else false
|
2015-08-24 03:14:04 +00:00
|
|
|
_return = false;
|
|
|
|
{
|
|
|
|
if ((_target getHitPointDamage _x) > _postRepairDamage) exitWith {
|
|
|
|
_return = true;
|
|
|
|
};
|
|
|
|
} forEach _hitpointGroup;
|
|
|
|
|
|
|
|
_return
|