2015-04-02 17:05:50 +00:00
|
|
|
/*
|
|
|
|
* Author: jaynus
|
|
|
|
*
|
|
|
|
* Get the absolute turret direction for FOV/PIP turret.
|
|
|
|
*
|
|
|
|
* Argument:
|
|
|
|
* 0: Vehicle (Object)
|
|
|
|
* 1: Turret Position
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
* [position, direction]
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-05-14 18:06:06 +00:00
|
|
|
PARAMS_2(_vehicle,_position);
|
2015-05-14 22:17:41 +00:00
|
|
|
private ["_turret", "_povPos", "_povDir", "_gunBeginPos", "_gunEndPos", "_pov", "_gunBeg", "_gunEnd", "_pipDir"];
|
2015-04-02 17:05:50 +00:00
|
|
|
|
|
|
|
_turret = [_vehicle, _position] call CBA_fnc_getTurret;
|
|
|
|
_pov = getText (_turret >> "memoryPointGunnerOptics");
|
|
|
|
_gunBeg = getText (_turret >> "gunBeg");
|
|
|
|
_gunEnd = getText (_turret >> "gunEnd");
|
|
|
|
TRACE_3("", _pov, _gunBeg, _gunEnd);
|
|
|
|
|
|
|
|
// Pull the PIP pov or barrel direction, depending on how the model is set up
|
2015-04-03 21:40:01 +00:00
|
|
|
_povPos = ATLtoASL ( _vehicle modelToWorldVisual (_vehicle selectionPosition _pov ) );
|
2015-04-02 17:05:50 +00:00
|
|
|
_povDir = [0,0,0];
|
|
|
|
|
2015-05-14 18:06:06 +00:00
|
|
|
if (_pov == "pip0_pos") then {
|
2015-04-03 21:40:01 +00:00
|
|
|
_pipDir = ATLtoASL ( _vehicle modelToWorldVisual (_vehicle selectionPosition "pip0_dir" ) );
|
2015-04-03 22:26:27 +00:00
|
|
|
_povDir = _pipDir vectorDiff _povPos;
|
2015-04-02 17:05:50 +00:00
|
|
|
} else {
|
2015-04-03 21:40:01 +00:00
|
|
|
_gunBeginPos = ATLtoASL ( _vehicle modelToWorldVisual (_vehicle selectionPosition _gunBeg ) );
|
|
|
|
_gunEndPos = ATLtoASL ( _vehicle modelToWorldVisual (_vehicle selectionPosition _gunEnd ) );
|
2015-04-03 22:26:27 +00:00
|
|
|
_povDir = _gunBeginPos vectorDiff _gunEndPos;
|
2015-04-02 17:05:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
[_povPos, _povDir]
|