2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: KoffeinFlummi
|
|
|
|
* Starts watching the target for sideways correction.
|
|
|
|
*
|
|
|
|
* Arguments:
|
2015-12-10 15:00:14 +00:00
|
|
|
* 0: Vehicle <OBJECT>
|
|
|
|
* 1: Turret <ARRAY>
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2015-12-10 15:00:14 +00:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Public: No
|
2015-01-11 16:42:31 +00:00
|
|
|
*/
|
2015-01-12 10:02:44 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-12-10 15:00:14 +00:00
|
|
|
params ["_vehicle", "_turret"];
|
2015-02-04 02:20:55 +00:00
|
|
|
|
2015-12-10 15:00:14 +00:00
|
|
|
private _distance = call FUNC(getRange);
|
|
|
|
call (updateRangeHUD);
|
2015-01-13 21:51:02 +00:00
|
|
|
|
2015-02-11 21:39:31 +00:00
|
|
|
if !(!GVAR(enabled) && FUNC(canUseFCS)) exitWith {};
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-12 10:02:44 +00:00
|
|
|
GVAR(Enabled) = true;
|
2015-10-21 20:17:28 +00:00
|
|
|
GVAR(time) = ACE_time;
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
if (_distance == 0) then {
|
2015-01-14 20:07:41 +00:00
|
|
|
_distance = [5, 5000, 0] call EFUNC(common,getTargetDistance); // maximum distance: 5000m, 5m precision
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-12-10 15:00:14 +00:00
|
|
|
private _weaponDirection = _vehicle weaponDirection (_vehicle currentWeaponTurret _turret); // @todo doesn't work for sub turrets
|
2015-02-11 19:59:41 +00:00
|
|
|
|
2015-03-25 22:03:45 +00:00
|
|
|
if (_turret isEqualTo ([_vehicle] call EFUNC(common,getTurretCommander))) then {
|
2015-02-11 19:59:41 +00:00
|
|
|
_weaponDirection = eyeDirection _vehicle;
|
|
|
|
};
|
|
|
|
|
|
|
|
if (_weaponDirection isEqualTo [0,0,0]) then { // dummy value for non main turrets
|
|
|
|
_weaponDirection = [1,0,0];
|
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-12-10 15:00:14 +00:00
|
|
|
GVAR(Position) = (getPosASL _vehicle) vectorAdd (_weaponDirection vectorMultiply _distance);
|