2015-06-06 12:13:34 +00:00
|
|
|
/*
|
|
|
|
* Author: Norrin, Rocko, Ruthberg
|
|
|
|
*
|
|
|
|
* Handles HuntIR projectiles
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: unit - Object the event handler is assigned to <OBJECT>
|
|
|
|
* 1: weapon - Fired weapon <STRING>
|
|
|
|
* 2: muzzle - Muzzle that was used <STRING>
|
|
|
|
* 3: mode - Current mode of the fired weapon <STRING>
|
|
|
|
* 4: ammo - Ammo used <STRING>
|
|
|
|
* 5: magazine - magazine name which was used <STRING>
|
|
|
|
* 6: projectile - Object of the projectile that was shot <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Nothing
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
PARAMS_7(_unit,_weapon,_muzzle,_mode,_ammo,_magazine,_projectile);
|
|
|
|
|
|
|
|
if (_ammo != "F_HuntIR") exitWith {};
|
|
|
|
|
|
|
|
[{
|
2015-06-11 17:37:51 +00:00
|
|
|
PARAMS_1(_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-06-11 17:37:51 +00:00
|
|
|
PARAMS_1(_position);
|
2015-06-06 12:13:34 +00:00
|
|
|
private ["_huntir"];
|
2015-06-11 17:37:51 +00:00
|
|
|
_huntir = createVehicle ["ACE_HuntIR", _position, [], 0, "FLY"];
|
|
|
|
_huntir setPosATL _position;
|
2015-06-12 18:22:09 +00:00
|
|
|
_huntir setVariable [QGVAR(startTime), ACE_time, true];
|
2015-06-11 17:37:51 +00:00
|
|
|
[{
|
|
|
|
EXPLODE_1_PVT(_this select 0,_huntir);
|
|
|
|
if (isNull _huntir) exitWith {
|
|
|
|
[_this select 1] call CBA_fnc_removePerFrameHandler;
|
|
|
|
};
|
2015-06-14 10:25:56 +00:00
|
|
|
private ["_parachuteDamage", "_velocity"];
|
|
|
|
_parachuteDamage = _huntir getHitPointDamage "HitParachute";
|
|
|
|
if (_parachuteDamage > 0) then {
|
2015-06-12 18:22:09 +00:00
|
|
|
_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;
|
2015-06-11 19:50:43 +00:00
|
|
|
}, [getPosATL _projectile vectorAdd [0, 0, 50]], 2, 0] call EFUNC(common,waitAndExecute);
|
2015-06-11 17:37:51 +00:00
|
|
|
}, [_projectile], 5, 0] call EFUNC(common,waitAndExecute);
|