ACE3/addons/common/functions/fnc_getTurretDirection.sqf

43 lines
1.3 KiB
Plaintext
Raw Normal View History

/*
* Author: jaynus
* Get the absolute turret direction for FOV/PIP turret.
*
2015-09-20 21:40:51 +00:00
* Arguments:
* 0: Vehicle <OBJECT>
* 1: Turret Position <ARRAY>
*
* Return Value:
* 0: Position ASL <ARRAY>
* 1: Direction <ARRAY>
*
2015-09-20 21:40:51 +00:00
* Public: Yes
*/
#include "script_component.hpp"
2015-09-20 21:40:51 +00:00
params ["_vehicle", "_position"];
private _turret = [_vehicle, _position] call CBA_fnc_getTurret;
private _pov = getText (_turret >> "memoryPointGunnerOptics");
private _gunBeg = getText (_turret >> "gunBeg");
private _gunEnd = getText (_turret >> "gunEnd");
2015-09-20 21:40:51 +00:00
TRACE_3("", _pov, _gunBeg, _gunEnd);
// Pull the PIP pov or barrel direction, depending on how the model is set up
private _povPos = ATLtoASL (_vehicle modelToWorldVisual (_vehicle selectionPosition _pov)); //@todo AGLToASL ?
private _povDir = [0,0,0];
2015-05-14 18:06:06 +00:00
if (_pov == "pip0_pos") then {
private _pipDir = ATLtoASL (_vehicle modelToWorldVisual (_vehicle selectionPosition "pip0_dir"));
2015-09-20 21:40:51 +00:00
_povDir = _pipDir vectorDiff _povPos;
} else {
private _gunBeginPos = ATLtoASL (_vehicle modelToWorldVisual (_vehicle selectionPosition _gunBeg));
private _gunEndPos = ATLtoASL (_vehicle modelToWorldVisual (_vehicle selectionPosition _gunEnd));
2015-09-20 21:40:51 +00:00
_povDir = _gunBeginPos vectorDiff _gunEndPos;
};
2015-09-20 21:40:51 +00:00
[_povPos, _povDir]