ACE3/addons/fcs/functions/fnc_firedEH.sqf

54 lines
1.7 KiB
Plaintext
Raw Normal View History

/*
* Author: KoffeinFlummi
2016-02-06 20:07:05 +00:00
* Adjusts the direction of a shell. Called from the unified fired EH only if the gunner is a player.
*
* Arguments:
2016-02-06 19:29:58 +00:00
* None. Parameters inherited from EFUNC(common,firedEH)
*
* Return Value:
* None
2015-12-10 15:00:14 +00:00
*
* Public: No
*/
#include "script_component.hpp"
2016-02-06 20:07:05 +00:00
//IGNORE_PRIVATE_WARNING ["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile", "_vehicle", "_gunner", "_turret"];
TRACE_10("firedEH:",_unit, _weapon, _muzzle, _mode, _ammo, _magazine, _projectile, _vehicle, _gunner, _turret);
2015-12-10 15:00:14 +00:00
private _FCSMagazines = _vehicle getVariable [format ["%1_%2", QGVAR(Magazines), _turret], []];
2015-02-04 02:20:55 +00:00
if !(_magazine in _FCSMagazines) exitWith {};
2016-04-02 02:51:22 +00:00
private _FCSElevation = _vehicle getVariable format ["%1_%2", QGVAR(Elevation), _turret];
// GET ELEVATION OFFSET OF CURRENT MAGAZINE
2015-12-10 15:00:14 +00:00
private _offset = 0;
{
2015-02-04 02:20:55 +00:00
if (_x == _magazine) exitWith {
2015-01-14 20:07:41 +00:00
_offset = _FCSElevation select _forEachIndex;
};
} forEach _FCSMagazines;
[_projectile, (_vehicle getVariable format ["%1_%2", QGVAR(Azimuth), _turret]), _offset, 0] call EFUNC(common,changeProjectileDirection);
2016-02-06 19:29:58 +00:00
// Remove the platform velocity
2015-12-10 15:00:14 +00:00
if (vectorMagnitude velocity _vehicle > 2) then {
private _sumVelocity = (velocity _projectile) vectorDiff (velocity _vehicle);
_projectile setVelocity _sumVelocity;
};
// Air burst missile
2015-02-14 06:51:13 +00:00
// handle locally only
if (!local _gunner) exitWith {};
2015-02-14 06:51:13 +00:00
if (getNumber (configFile >> "CfgAmmo" >> _ammo >> QGVAR(Airburst)) == 1) then {
2015-12-10 15:00:14 +00:00
private _zeroing = _vehicle getVariable [format ["%1_%2", QGVAR(Distance), _turret], currentZeroing _vehicle];
2015-02-14 06:51:13 +00:00
if (_zeroing < 50) exitWith {};
if (_zeroing > 1500) exitWith {};
2015-02-14 06:51:13 +00:00
[FUNC(handleAirBurstAmmunitionPFH), 0, [_vehicle, _projectile, _zeroing]] call CBA_fnc_addPerFrameHandler;
};