ACE3/addons/fcs/functions/fnc_keyDown.sqf

51 lines
1.4 KiB
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
* Author: KoffeinFlummi
* Starts watching the target for sideways correction.
*
* Arguments:
2015-12-10 15:00:14 +00:00
* 0: Vehicle <OBJECT>
* 1: Turret <ARRAY>
*
* Return Value:
2015-12-10 15:00:14 +00:00
* None
*
* Example:
* [car, [turret]] call ace_fcs_fnc_keyDown
*
2015-12-10 15:00:14 +00:00
* Public: No
*/
2015-12-10 15:00:14 +00:00
params ["_vehicle", "_turret"];
2015-02-04 02:20:55 +00:00
private _turretConfig = [configFile >> "CfgVehicles" >> typeOf _vehicle, _turret] call EFUNC(common,getTurretConfigPath);
2016-01-21 13:44:23 +00:00
// Update display for infantry rangefinders
if (_vehicle == ACE_player) exitWith {[5,5500,25,true] call FUNC(getRange)};
private _distance = [
getNumber (_turretConfig >> QGVAR(DistanceInterval)),
getNumber (_turretConfig >> QGVAR(MaxDistance)),
getNumber (_turretConfig >> QGVAR(MinDistance))
] call FUNC(getRange);
2015-01-13 21:51:02 +00:00
if !(!GVAR(enabled) && FUNC(canUseFCS)) exitWith {};
GVAR(Enabled) = true;
2016-03-02 10:01:39 +00:00
GVAR(time) = CBA_missionTime;
2015-12-10 15:00:14 +00:00
private _weaponDirection = _vehicle weaponDirection (_vehicle currentWeaponTurret _turret); // @todo doesn't work for sub turrets
2015-03-25 22:03:45 +00:00
if (_turret isEqualTo ([_vehicle] call EFUNC(common,getTurretCommander))) then {
_weaponDirection = eyeDirection _vehicle;
};
if (_weaponDirection isEqualTo [0,0,0]) then { // dummy value for non main turrets
_weaponDirection = [1,0,0];
};
2015-12-10 15:00:14 +00:00
GVAR(Position) = (getPosASL _vehicle) vectorAdd (_weaponDirection vectorMultiply _distance);
[_vehicle,_turret,_distance,0] call FUNC(calculateSolution);