ACE3/addons/common/functions/fnc_getTargetDistance.sqf

48 lines
1.3 KiB
Plaintext
Raw Normal View History

/*
* Author: commy2
*
* Get the distance to the next object the player is looking at. Used for laser distance measurements.
*
* Argument:
* 0: How accurate will the measurement be? In meters. (Number)
* 1: Maximal distance to measure. (Number)
* 2: Minimal distance to measure. (optional, Number)
*
* Return value:
* Measured distance in meters. Can return maximal or minimal distance (Number)
*/
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
2015-05-14 18:06:06 +00:00
private ["_position", "_laser", "_line", "_distance", "_iteration"];
2015-05-14 18:06:06 +00:00
PARAMS_3(_interval,_maxDistance,_minDistance);
_position = ATLToASL positionCameraToWorld [0, 0, 0];
_position set [2, (_position select 2) - (getTerrainHeightASL _position min 0)];
_laser = + _position;
_line = [_position, _laser];
_distance = _maxDistance;
_iteration = _distance;
while {
2015-05-14 18:06:06 +00:00
_iteration > _interval / 2
} do {
2015-05-14 18:06:06 +00:00
_iteration = _iteration / 2;
2015-05-14 18:06:06 +00:00
_laser = ATLToASL positionCameraToWorld [0, 0, _distance];
_laser set [2, (_laser select 2) - (getTerrainHeightASL _laser min 0)];
_line set [1, _laser];
2015-05-14 18:06:06 +00:00
_distance = _distance + (([1, -1] select (lineIntersects (_line + [vehicle ACE_player]) || {terrainIntersectASL _line})) * _iteration);
};
_distance = _interval * round (_distance / _interval);
_distance = _distance min _maxDistance;
if !(isNil "_minDistance") then {_distance = _distance max _minDistance};
_distance