ACE3/addons/dragging/functions/fnc_dropObject.sqf

77 lines
2.2 KiB
Plaintext
Raw Normal View History

/*
* Author: commy2
* Drop a dragged object.
*
2015-08-09 12:53:13 +00:00
* Arguments:
* 0: Unit that drags the other object <OBJECT>
* 1: Dragged object to drop <OBJECT>
*
2015-08-09 12:53:13 +00:00
* Return Value:
* None
*
2016-01-28 18:52:53 +00:00
* Example:
* [player, cursorTarget] call ace_dragging_fnc_dropObject;
*
2015-08-09 12:53:13 +00:00
* Public: No
*/
#include "script_component.hpp"
2015-08-09 12:53:13 +00:00
params ["_unit", "_target"];
2016-01-28 18:52:53 +00:00
TRACE_2("params",_unit,_target);
// remove drop action
[_unit, "DefaultAction", _unit getVariable [QGVAR(ReleaseActionID), -1]] call EFUNC(common,removeActionEventHandler);
2016-01-28 18:52:53 +00:00
private _inBuilding = [_unit] call FUNC(isObjectOnObject);
if !(_unit getVariable ["ACE_isUnconscious", false]) then {
2015-12-21 16:05:48 +00:00
// play release animation
2016-07-12 14:16:01 +00:00
[_unit, "released"] call EFUNC(common,doGesture);
2015-04-11 18:32:07 +00:00
};
// prevent collision damage
[QEGVAR(common,fixCollision), _unit] call CBA_fnc_localEvent;
[QEGVAR(common,fixCollision), _target, _target] call CBA_fnc_targetEvent;
2015-03-16 23:24:25 +00:00
// release object
detach _target;
2015-03-25 13:09:49 +00:00
if (_target isKindOf "CAManBase") then {
2015-03-24 18:07:39 +00:00
if (_target getVariable ["ACE_isUnconscious", false]) then {
[_target, "unconscious", 2, true] call EFUNC(common,doAnimation);
} else {
2015-03-24 20:37:27 +00:00
[_target, "", 2, true] call EFUNC(common,doAnimation); //@todo "AinjPpneMrunSnonWnonDb_release" seems to fall back to unconsciousness anim.
2015-03-24 18:07:39 +00:00
};
};
_unit removeWeapon "ACE_FakePrimaryWeapon";
// prevent object from flipping inside buildings
if (_inBuilding) then {
_target setPosASL (getPosASL _target vectorAdd [0, 0, 0.05]);
2016-01-28 18:52:53 +00:00
TRACE_2("setPos",getPosASL _unit,getPosASL _target);
};
// hide mouse hint
[] call EFUNC(interaction,hideMouseHint);
_unit setVariable [QGVAR(isDragging), false, true];
2015-03-16 19:09:54 +00:00
_unit setVariable [QGVAR(draggedObject), objNull, true];
// make object accesable for other units
[objNull, _target, true] call EFUNC(common,claim);
2015-03-24 20:37:27 +00:00
if !(_target isKindOf "CAManBase") then {
[QEGVAR(common,fixPosition), _target, _target] call CBA_fnc_targetEvent;
[QEGVAR(common,fixFloating), _target, _target] call CBA_fnc_targetEvent;
2015-03-24 20:37:27 +00:00
};
2015-04-11 18:32:07 +00:00
if (_unit getVariable ["ACE_isUnconscious", false]) then {
2015-04-11 18:32:07 +00:00
[_unit, "unconscious", 2, true] call EFUNC(common,doAnimation);
};
// recreate UAV crew
if (_target getVariable [QGVAR(isUAV), false]) then {
createVehicleCrew _target;
};