2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2016-02-06 19:29:58 +00:00
|
|
|
* None. Parameters inherited from EFUNC(common,firedEH)
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
2015-12-10 15:00:14 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
2015-01-11 16:42:31 +00:00
|
|
|
*/
|
2015-01-12 10:02:44 +00:00
|
|
|
#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 {};
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2016-04-02 02:51:22 +00:00
|
|
|
private _FCSElevation = _vehicle getVariable format ["%1_%2", QGVAR(Elevation), _turret];
|
|
|
|
|
2015-01-11 16:42:31 +00:00
|
|
|
// GET ELEVATION OFFSET OF CURRENT MAGAZINE
|
2015-12-10 15:00:14 +00:00
|
|
|
private _offset = 0;
|
|
|
|
|
2015-01-11 16:42:31 +00:00
|
|
|
{
|
2015-02-04 02:20:55 +00:00
|
|
|
if (_x == _magazine) exitWith {
|
2015-01-14 20:07:41 +00:00
|
|
|
_offset = _FCSElevation select _forEachIndex;
|
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
} forEach _FCSMagazines;
|
|
|
|
|
2015-05-01 16:55:44 +00:00
|
|
|
[_projectile, (_vehicle getVariable format ["%1_%2", QGVAR(Azimuth), _turret]), _offset, 0] call EFUNC(common,changeProjectileDirection);
|
2015-04-06 20:37:18 +00:00
|
|
|
|
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);
|
|
|
|
|
2015-04-07 01:36:39 +00:00
|
|
|
_projectile setVelocity _sumVelocity;
|
|
|
|
};
|
|
|
|
|
2015-01-11 16:42:31 +00:00
|
|
|
// Air burst missile
|
2015-02-14 06:51:13 +00:00
|
|
|
// handle locally only
|
|
|
|
if (!local _gunner) exitWith {};
|
2015-01-11 16:42:31 +00:00
|
|
|
|
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-01-11 16:42:31 +00:00
|
|
|
|
2015-02-14 06:51:13 +00:00
|
|
|
if (_zeroing < 50) exitWith {};
|
|
|
|
if (_zeroing > 1500) exitWith {};
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-02-14 06:51:13 +00:00
|
|
|
[FUNC(handleAirBurstAmmunitionPFH), 0, [_vehicle, _projectile, _zeroing]] call CBA_fnc_addPerFrameHandler;
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|