ACE3/addons/interaction/functions/fnc_getDoor.sqf

43 lines
973 B
Plaintext
Raw Normal View History

/*
* Author: commy2
* Find door.
*
* Arguments:
* 0: Distance <NUMBER>
*
* Return Value:
* House objects and door <ARRAY>
* 0: House <OBJECT>
* 1: Door Name <STRING>
*
* Example:
2015-05-14 18:00:56 +00:00
* [player, target] call ace_interaction_fnc_getDoor
*
* Public: No
*/
2015-01-11 23:13:47 +00:00
#include "script_component.hpp"
2015-01-11 19:32:51 +00:00
params ["_distance"];
2015-01-11 19:32:51 +00:00
private ["_position0", "_position1", "_intersections", "_house", "_door"];
2015-01-11 19:32:51 +00:00
_position0 = positionCameraToWorld [0, 0, 0];
_position1 = positionCameraToWorld [0, 0, _distance];
_intersections = lineIntersectsSurfaces [AGLToASL _position0, AGLToASL _position1, cameraOn, objNull, true, 1, "GEOM"];
2015-01-11 19:32:51 +00:00
if (_intersections isEqualTo []) exitWith {[objNull, ""]};
_house = _intersections select 0 select 2;
2015-01-11 19:32:51 +00:00
// shithouse is bugged
if (typeOf _house == "") exitWith {[objNull, ""]};
_intersections = [_house, "GEOM"] intersect [_position0, _position1];
_door = _intersections select 0 select 0;
2015-01-11 19:32:51 +00:00
if (isNil "_door") exitWith {[_house, ""]};
2015-05-09 20:14:00 +00:00
2015-01-11 19:32:51 +00:00
[_house, _door]