mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
41 lines
1.0 KiB
Plaintext
41 lines
1.0 KiB
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Checks if a unit is in a designated engineeral facility
|
|
*
|
|
* Arguments:
|
|
* 0: The Unit <OBJECT>
|
|
*
|
|
* ReturnValue:
|
|
* Is in engineeral facility <BOOL>
|
|
*
|
|
* 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 [QGVAR(isRepairFacility),false])) exitwith {
|
|
_isInBuilding = true;
|
|
};
|
|
} forEach _objects;
|
|
|
|
if (!_isInBuilding) then {
|
|
_objects = position _object nearObjects 7.5;
|
|
{
|
|
if (((typeOf _x) in _repairFacility) || (_x getVariable [QGVAR(isRepairFacility),false])) exitwith {
|
|
_isInBuilding = true;
|
|
};
|
|
} forEach _objects;
|
|
};
|
|
_isInBuilding;
|