2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-06-06 12:13:34 +00:00
|
|
|
/*
|
|
|
|
* Author: Norrin, Rocko, Ruthberg
|
|
|
|
*
|
2016-05-31 21:12:57 +00:00
|
|
|
* Handles HuntIR projectiles. Called from the unified fired EH for the local player.
|
2015-06-06 12:13:34 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2016-02-06 20:29:05 +00:00
|
|
|
* None. Parameters inherited from EFUNC(common,firedEH)
|
2015-06-06 12:13:34 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2015-08-13 22:02:19 +00:00
|
|
|
* None
|
2015-06-06 12:13:34 +00:00
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
|
|
|
* call ACE_huntir_fnc_handleFired
|
|
|
|
*
|
2015-06-06 12:13:34 +00:00
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2016-02-06 20:29: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-06-06 12:13:34 +00:00
|
|
|
|
|
|
|
if (_ammo != "F_HuntIR") exitWith {};
|
|
|
|
|
2016-02-06 20:29:05 +00:00
|
|
|
if (!hasInterface) exitWith {};
|
|
|
|
|
2015-06-06 12:13:34 +00:00
|
|
|
[{
|
2015-08-13 22:00:34 +00:00
|
|
|
params ["_projectile"];
|
|
|
|
|
2015-07-12 00:48:52 +00:00
|
|
|
//If null (deleted or hit water) exit:
|
|
|
|
if (isNull _projectile) exitWith {};
|
|
|
|
//If it's not spinning (hit ground), bail:
|
|
|
|
if ((vectorMagnitude (velocity _projectile)) < 0.1) exitWith {};
|
|
|
|
|
2015-06-06 12:13:34 +00:00
|
|
|
"ACE_HuntIR_Propell" createVehicle (getPosATL _projectile);
|
|
|
|
[{
|
2015-08-13 22:00:34 +00:00
|
|
|
params ["_position"];
|
2017-10-10 14:39:59 +00:00
|
|
|
private _huntir = createVehicle ["ACE_HuntIR", _position, [], 0, "FLY"];
|
2015-06-11 17:37:51 +00:00
|
|
|
_huntir setPosATL _position;
|
2016-03-02 10:01:39 +00:00
|
|
|
_huntir setVariable [QGVAR(startTime), CBA_missionTime, true];
|
2015-06-11 17:37:51 +00:00
|
|
|
[{
|
2015-08-13 22:00:34 +00:00
|
|
|
params ["_args", "_idPFH"];
|
|
|
|
_args params ["_huntir"];
|
2015-06-11 17:37:51 +00:00
|
|
|
if (isNull _huntir) exitWith {
|
2015-08-13 22:00:34 +00:00
|
|
|
[_idPFH] call CBA_fnc_removePerFrameHandler;
|
2015-06-11 17:37:51 +00:00
|
|
|
};
|
2017-10-10 14:39:59 +00:00
|
|
|
|
|
|
|
private _parachuteDamage = _huntir getHitPointDamage "HitParachute";
|
2015-06-14 10:25:56 +00:00
|
|
|
if (_parachuteDamage > 0) then {
|
2017-10-10 14:39:59 +00:00
|
|
|
private _velocity = velocity _huntir;
|
2015-06-14 10:25:56 +00:00
|
|
|
_velocity set [2, -1 min -20 * sqrt(_parachuteDamage)];
|
2015-06-12 18:22:09 +00:00
|
|
|
_huntir setVelocity _velocity;
|
|
|
|
_huntir setVectorUp [0, 0, 1];
|
2015-06-11 17:37:51 +00:00
|
|
|
};
|
2015-06-12 18:22:09 +00:00
|
|
|
}, 0, [_huntir]] call CBA_fnc_addPerFrameHandler;
|
2016-05-22 13:27:24 +00:00
|
|
|
}, [getPosATL _projectile vectorAdd [0, 0, 50]], 2, 0] call CBA_fnc_waitAndExecute;
|
|
|
|
}, [_projectile], 5, 0] call CBA_fnc_waitAndExecute;
|