ACE3/addons/repair/functions/fnc_isInRepairFacility.sqf
PabstMirror ab769757d9 Skip Depends Hitpoints - Use HitPoints selPos for wheels
Stuff

Normalize Depends - Skip Glass Repair

Fix spawned wheel/track not having correct damage

getHitpointString robustness, hatchback fuelHitpoint, fix count errors

-

Formatting

local -> private

Fix Stuff
2015-11-20 21:11:50 -06:00

43 lines
1.1 KiB
Plaintext

/*
* Author: Glowbal
* Checks if a unit is in a repair facility.
*
* Arguments:
* 0: Unit <OBJECT>
*
* Return Value:
* Is inside a repair facility <BOOL>
*
* Example:
* [unit] call ace_repair_fnc_isInRepairFacility
*
* Public: Yes
*/
#include "script_component.hpp"
params ["_object"];
TRACE_1("params",_object);
private ["_position","_objects","_isInBuilding","_repairFacility"];
_position = getPosASL _object;
_isInBuilding = false;
_repairFacility = [];
_objects = (lineIntersectsWith [_object modelToWorldVisual [0, 0, (_position select 2)], _object modelToWorldVisual [0, 0, (_position select 2) +10], _object]);
{
if (((typeOf _x) in _repairFacility) || (_x getVariable ["ACE_isRepairFacility",0]) > 0) exitWith {
_isInBuilding = true;
};
} forEach _objects;
if (!_isInBuilding) then {
_objects = position _object nearObjects 7.5;
{
if (((typeOf _x) in _repairFacility) || (_x getVariable ["ACE_isRepairFacility",0]) > 0) exitWith {
_isInBuilding = true;
};
} forEach _objects;
};
_isInBuilding;