mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e2ac18a05d
* advanced_ballistics * advanced_fatigue * advanced_throwing * ai * aircraft * arsenal * atragmx * attach * backpacks * ballistics * captives * cargo * chemlights * common * concertina_wire * cookoff * dagr * disarming * disposable * dogtags * dragging * explosives * fastroping * fcs * finger * frag * gestures * gforces * goggles * grenades * gunbag * hearing * hitreactions * huntir * interact_menu * interaction * inventory * kestrel4500 * laser * laserpointer * logistics_uavbattery * logistics_wirecutter * magazinerepack * map * map_gestures * maptools * markers * medical * medical_ai * medical_blood * medical_menu * microdagr * minedetector * missileguidance * missionmodules * mk6mortar * modules * movement * nametags * nightvision * nlaw * optics * optionsmenu * overheating * overpressure * parachute * pylons * quickmount * rangecard * rearm * recoil * refuel * reload * reloadlaunchers * repair * respawn * safemode * sandbag * scopes * slideshow * spectator * spottingscope * switchunits * tacticalladder * tagging * trenches * tripod * ui * vector * vehiclelock * vehicles * viewdistance * weaponselect * weather * winddeflection * yardage450 * zeus * arsenal defines.hpp * optionals * DEBUG_MODE_FULL 1 * DEBUG_MODE_FULL 2 * Manual fixes * Add SQF Validator check for #include after block comment * explosives fnc_openTimerUI * fix uniqueItems
57 lines
1.9 KiB
Plaintext
57 lines
1.9 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Norrin, Rocko, Ruthberg
|
|
*
|
|
* Handles HuntIR projectiles. Called from the unified fired EH for the local player.
|
|
*
|
|
* Arguments:
|
|
* None. Parameters inherited from EFUNC(common,firedEH)
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* call ACE_huntir_fnc_handleFired
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
//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);
|
|
|
|
if (_ammo != "F_HuntIR") exitWith {};
|
|
|
|
if (!hasInterface) exitWith {};
|
|
|
|
[{
|
|
params ["_projectile"];
|
|
|
|
//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 {};
|
|
|
|
"ACE_HuntIR_Propell" createVehicle (getPosATL _projectile);
|
|
[{
|
|
params ["_position"];
|
|
private _huntir = createVehicle ["ACE_HuntIR", _position, [], 0, "FLY"];
|
|
_huntir setPosATL _position;
|
|
_huntir setVariable [QGVAR(startTime), CBA_missionTime, true];
|
|
[{
|
|
params ["_args", "_idPFH"];
|
|
_args params ["_huntir"];
|
|
if (isNull _huntir) exitWith {
|
|
[_idPFH] call CBA_fnc_removePerFrameHandler;
|
|
};
|
|
|
|
private _parachuteDamage = _huntir getHitPointDamage "HitParachute";
|
|
if (_parachuteDamage > 0) then {
|
|
private _velocity = velocity _huntir;
|
|
_velocity set [2, -1 min -20 * sqrt(_parachuteDamage)];
|
|
_huntir setVelocity _velocity;
|
|
_huntir setVectorUp [0, 0, 1];
|
|
};
|
|
}, 0, [_huntir]] call CBA_fnc_addPerFrameHandler;
|
|
}, [getPosATL _projectile vectorAdd [0, 0, 50]], 2, 0] call CBA_fnc_waitAndExecute;
|
|
}, [_projectile], 5, 0] call CBA_fnc_waitAndExecute;
|