2016-05-30 16:37:03 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2016-09-04 19:03:52 +00:00
|
|
|
params ["_pos1", "_pos2", "_designator", "_seeker"];
|
2016-09-04 14:44:22 +00:00
|
|
|
|
|
|
|
private _spacing = 100;
|
2016-05-30 16:37:03 +00:00
|
|
|
if((count _this) > 4) then {
|
|
|
|
_spacing = _this select 4;
|
|
|
|
};
|
|
|
|
|
2016-09-04 14:44:22 +00:00
|
|
|
private _return = true;
|
|
|
|
private _vectorTo = [_pos2, _pos1] call BIS_fnc_vectorFromXToY;
|
2016-05-30 16:37:03 +00:00
|
|
|
|
2016-09-04 14:44:22 +00:00
|
|
|
private _x = (_vectorTo select 0)*0.25;
|
|
|
|
private _y = (_vectorTo select 1)*0.25;
|
|
|
|
private _z = (_vectorTo select 2)*0.25;
|
2016-05-30 16:37:03 +00:00
|
|
|
|
|
|
|
_pos2 = [(_pos2 select 0) + _x, (_pos2 select 1) + _y, (_pos2 select 2) + _z];
|
|
|
|
|
|
|
|
// player sideChat format["new los check"];
|
|
|
|
if(terrainIntersect [_pos2, _pos1]) then {
|
|
|
|
_return = false;
|
|
|
|
} else {
|
|
|
|
if(lineIntersects [_pos2, _pos1]) then { // should take as arguments and add to this command objects to exclude - target and observer
|
|
|
|
// player sideChat format["with: %1", lineIntersectsWith [_pos1, _pos2]];
|
|
|
|
_return = false;
|
|
|
|
};
|
|
|
|
};
|
2015-01-11 18:24:19 +00:00
|
|
|
_return;
|