2019-06-08 04:48:37 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
/*
|
2022-01-30 17:54:30 +00:00
|
|
|
* Author: Dani (TCVM)
|
2019-06-08 04:48:37 +00:00
|
|
|
* Attaches the sighting unit to the Dragon missile.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Target <OBJECT>
|
|
|
|
* 1: Unit Performing Action <OBJECT>
|
2019-07-05 22:57:22 +00:00
|
|
|
* 2: Is event (function recursives globaly to set weapon where turret is local) <BOOL> (default: false)
|
2019-06-08 04:48:37 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Can Attach Sighting Unit <BOOL>
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [cursorObject, player] call ace_dragon_fnc_sightDetach;
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
params ["_target", "_unit"];
|
|
|
|
|
|
|
|
params ["_target", "_unit", ["_event", false]];
|
|
|
|
TRACE_3("sightDetach",_target,_unit,_event);
|
|
|
|
|
2019-07-05 22:57:22 +00:00
|
|
|
if (_event isEqualTo true) then { // this is actually needed as 3rd arg may not be bool
|
2019-06-08 04:48:37 +00:00
|
|
|
if (!(_target turretLocal [0])) exitWith {};
|
|
|
|
_target setVariable [QGVAR(sightAttached), false, true];
|
|
|
|
_target animate ["optic_hide", 1];
|
|
|
|
_target removeWeapon QGVAR(superStatic);
|
|
|
|
_target addWeapon QGVAR(dummyStatic);
|
|
|
|
TRACE_2("removed sight",_target weaponsTurret [0],_target animationPhase "optic_hide");
|
|
|
|
} else {
|
|
|
|
if ((binocular _unit) == "") then {
|
|
|
|
_unit addWeapon QGVAR(sight);
|
|
|
|
} else {
|
|
|
|
[_unit, QGVAR(sight)] call EFUNC(common,addToInventory);
|
|
|
|
};
|
|
|
|
[QGVAR(detachSight), [_target, _unit, true]] call CBA_fnc_globalEvent;
|
|
|
|
};
|