mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e2ac18a05d
* advanced_ballistics * advanced_fatigue * advanced_throwing * ai * aircraft * arsenal * atragmx * attach * backpacks * ballistics * captives * cargo * chemlights * common * concertina_wire * cookoff * dagr * disarming * disposable * dogtags * dragging * explosives * fastroping * fcs * finger * frag * gestures * gforces * goggles * grenades * gunbag * hearing * hitreactions * huntir * interact_menu * interaction * inventory * kestrel4500 * laser * laserpointer * logistics_uavbattery * logistics_wirecutter * magazinerepack * map * map_gestures * maptools * markers * medical * medical_ai * medical_blood * medical_menu * microdagr * minedetector * missileguidance * missionmodules * mk6mortar * modules * movement * nametags * nightvision * nlaw * optics * optionsmenu * overheating * overpressure * parachute * pylons * quickmount * rangecard * rearm * recoil * refuel * reload * reloadlaunchers * repair * respawn * safemode * sandbag * scopes * slideshow * spectator * spottingscope * switchunits * tacticalladder * tagging * trenches * tripod * ui * vector * vehiclelock * vehicles * viewdistance * weaponselect * weather * winddeflection * yardage450 * zeus * arsenal defines.hpp * optionals * DEBUG_MODE_FULL 1 * DEBUG_MODE_FULL 2 * Manual fixes * Add SQF Validator check for #include after block comment * explosives fnc_openTimerUI * fix uniqueItems
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Ruthberg
|
|
* Returns the the first intersection with an object between two positions. @todo rewrite using lineIntersectsSurfaces?
|
|
*
|
|
* Arguments:
|
|
* 0: PositionASL <ARRAY>
|
|
* 1: PositionATL <ARRAY>
|
|
* 2: Accuracy <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* 0: Intersects <BOOL>
|
|
* 1: Intersection Position ASL <ARRAY>
|
|
*
|
|
* Example:
|
|
* [[1,2,3], [0,0,5], 5] call ace_common_fnc_getFirstTerrainIntersection
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
params ["_source", "_destination", "_accuracy"];
|
|
|
|
private _result = [false, [0, 0, 0]];
|
|
|
|
private _distance = _source vectorDistance _destination;
|
|
|
|
if (terrainIntersectASL [_source, _destination]) then {
|
|
private _lower = 0;
|
|
private _upper = 1;
|
|
private _mid = 0.5;
|
|
|
|
private _dir = _source vectorFromTo _destination;
|
|
|
|
while {(_upper - _lower) * _distance > _accuracy} do {
|
|
_mid = _lower + (_upper - _lower) / 2;
|
|
|
|
if (terrainIntersectASL [_source, _source vectorAdd (_dir vectorMultiply (_mid * _distance))]) then {
|
|
_upper = _mid;
|
|
} else {
|
|
_lower = _mid;
|
|
};
|
|
};
|
|
|
|
_mid = _lower + (_upper - _lower) / 2;
|
|
_result = [true, _source vectorAdd (_dir vectorMultiply (_mid * _distance))];
|
|
};
|
|
|
|
_result
|