mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
/*
|
|
* Author: commy2
|
|
*
|
|
* Check if the unit is in a building. Will return true if the unit is sitting in a bush.
|
|
*
|
|
* Argument:
|
|
* 0: Unit (Object)
|
|
*
|
|
* Return value:
|
|
* Is the unit in a building? (Bool)
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
#define DISTANCE 10
|
|
|
|
private ["_unit", "_position", "_positionX", "_positionY", "_positionZ", "_intersections"];
|
|
|
|
_unit = _this select 0;
|
|
|
|
_position = eyePos _unit;
|
|
_positionX = _position select 0;
|
|
_positionY = _position select 1;
|
|
_positionZ = _position select 2;
|
|
_intersections = 0;
|
|
|
|
if (lineIntersects [_position, [_positionX, _positionY, _positionZ + DISTANCE]]) then {
|
|
_intersections = _intersections + 1;
|
|
};
|
|
|
|
if (lineIntersects [_position, [_positionX + DISTANCE, _positionY, _positionZ]]) then {
|
|
_intersections = _intersections + 1;
|
|
};
|
|
|
|
if (lineIntersects [_position, [_positionX - DISTANCE, _positionY, _positionZ]]) then {
|
|
_intersections = _intersections + 1;
|
|
};
|
|
|
|
if (lineIntersects [_position, [_positionX, _positionY + DISTANCE, _positionZ]]) then {
|
|
_intersections = _intersections + 1;
|
|
};
|
|
|
|
if (lineIntersects [_position, [_positionX, _positionY - DISTANCE, _positionZ]]) then {
|
|
_intersections = _intersections + 1;
|
|
};
|
|
|
|
_intersections > 3
|