2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-03-17 14:42:25 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
* Drop a carried object.
|
|
|
|
*
|
2015-08-09 12:53:13 +00:00
|
|
|
* Arguments:
|
|
|
|
* 0: Unit that carries the other object <OBJECT>
|
|
|
|
* 1: Carried object to drop <OBJECT>
|
2015-03-17 14:42:25 +00:00
|
|
|
*
|
2015-08-09 12:53:13 +00:00
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
2016-01-28 18:52:53 +00:00
|
|
|
* Example:
|
2016-10-29 19:32:49 +00:00
|
|
|
* [player, cursorTarget] call ace_dragging_fnc_dropObject_carry;
|
2016-01-28 18:52:53 +00:00
|
|
|
*
|
2015-08-09 12:53:13 +00:00
|
|
|
* Public: No
|
2015-03-17 14:42:25 +00:00
|
|
|
*/
|
|
|
|
|
2016-10-29 19:31:54 +00:00
|
|
|
params ["_unit", "_target"];
|
2016-10-28 12:20:39 +00:00
|
|
|
TRACE_1("params",_this);
|
2015-03-17 14:42:25 +00:00
|
|
|
|
2015-09-26 01:16:55 +00:00
|
|
|
// remove drop action
|
|
|
|
[_unit, "DefaultAction", _unit getVariable [QGVAR(ReleaseActionID), -1]] call EFUNC(common,removeActionEventHandler);
|
2015-03-17 14:42:25 +00:00
|
|
|
|
2016-01-28 18:52:53 +00:00
|
|
|
private _inBuilding = [_unit] call FUNC(isObjectOnObject);
|
2015-03-17 14:42:25 +00:00
|
|
|
|
|
|
|
// prevent collision damage
|
2016-06-04 10:12:56 +00:00
|
|
|
[QEGVAR(common,fixCollision), _unit] call CBA_fnc_localEvent;
|
|
|
|
[QEGVAR(common,fixCollision), _target, _target] call CBA_fnc_targetEvent;
|
2015-03-17 14:42:25 +00:00
|
|
|
|
|
|
|
// release object
|
|
|
|
detach _target;
|
|
|
|
|
2015-03-25 13:07:50 +00:00
|
|
|
// fix anim when aborting carrying persons
|
2015-03-25 13:09:49 +00:00
|
|
|
if (_target isKindOf "CAManBase" || {animationState _unit in CARRY_ANIMATIONS}) then {
|
2015-11-30 16:27:09 +00:00
|
|
|
if (vehicle _unit == _unit && {!(_unit getVariable ["ACE_isUnconscious", false])}) then {
|
2015-03-25 20:51:50 +00:00
|
|
|
[_unit, "", 2, true] call EFUNC(common,doAnimation);
|
|
|
|
};
|
2015-03-24 20:37:27 +00:00
|
|
|
|
|
|
|
if (_target getVariable ["ACE_isUnconscious", false]) then {
|
|
|
|
[_target, "unconscious", 2, true] call EFUNC(common,doAnimation);
|
|
|
|
} else {
|
|
|
|
[_target, "", 2, true] call EFUNC(common,doAnimation); //@todo
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-03-25 13:07:50 +00:00
|
|
|
// properly remove fake weapon
|
|
|
|
_unit removeWeapon "ACE_FakePrimaryWeapon";
|
2015-03-25 12:32:59 +00:00
|
|
|
|
2015-03-17 14:42:25 +00:00
|
|
|
// reselect weapon and re-enable sprint
|
|
|
|
_unit selectWeapon primaryWeapon _unit;
|
|
|
|
|
2016-01-19 15:34:59 +00:00
|
|
|
[_unit, "forceWalk", "ACE_dragging", false] call EFUNC(common,statusEffect_set);
|
2017-12-07 17:26:21 +00:00
|
|
|
[_unit, "blockThrow", "ACE_dragging", false] call EFUNC(common,statusEffect_set);
|
2015-03-17 14:42:25 +00:00
|
|
|
|
|
|
|
// prevent object from flipping inside buildings
|
|
|
|
if (_inBuilding) then {
|
|
|
|
_target setPosASL (getPosASL _target vectorAdd [0, 0, 0.05]);
|
|
|
|
};
|
|
|
|
|
2015-09-26 01:16:55 +00:00
|
|
|
// hide mouse hint
|
|
|
|
[] call EFUNC(interaction,hideMouseHint);
|
|
|
|
|
2015-03-17 14:42:25 +00:00
|
|
|
_unit setVariable [QGVAR(isCarrying), false, true];
|
|
|
|
_unit setVariable [QGVAR(carriedObject), 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 {
|
2016-06-04 10:12:56 +00:00
|
|
|
[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-09-26 01:16:55 +00:00
|
|
|
|
|
|
|
// recreate UAV crew
|
|
|
|
if (_target getVariable [QGVAR(isUAV), false]) then {
|
|
|
|
createVehicleCrew _target;
|
|
|
|
};
|
2016-10-28 12:20:39 +00:00
|
|
|
|
2019-03-24 08:26:00 +00:00
|
|
|
// reset mass
|
|
|
|
private _mass = _target getVariable [QGVAR(originalMass), 0];
|
|
|
|
|
|
|
|
if (_mass != 0) then {
|
2019-03-24 08:41:36 +00:00
|
|
|
[QEGVAR(common,setMass), [_target, _mass], _target] call CBA_fnc_targetEvent;
|
2019-03-24 08:26:00 +00:00
|
|
|
};
|