2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-03-16 18:25:29 +00:00
|
|
|
/*
|
2021-04-20 11:33:58 +00:00
|
|
|
* Author: commy2, Malbryn
|
2023-07-23 23:07:37 +00:00
|
|
|
* Drops a dragged object.
|
2015-03-16 18:25:29 +00:00
|
|
|
*
|
2015-08-09 12:53:13 +00:00
|
|
|
* Arguments:
|
|
|
|
* 0: Unit that drags the other object <OBJECT>
|
|
|
|
* 1: Dragged object to drop <OBJECT>
|
2015-03-16 18:25:29 +00:00
|
|
|
*
|
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
|
2015-03-16 18:25:29 +00:00
|
|
|
*/
|
|
|
|
|
2015-08-09 12:53:13 +00:00
|
|
|
params ["_unit", "_target"];
|
2016-01-28 18:52:53 +00:00
|
|
|
TRACE_2("params",_unit,_target);
|
2015-03-16 18:25:29 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Remove drop action
|
2023-09-20 03:56:20 +00:00
|
|
|
if (!isNil QGVAR(releaseActionID)) then {
|
|
|
|
[GVAR(releaseActionID), "keydown"] call CBA_fnc_removeKeyHandler;
|
|
|
|
GVAR(releaseActionID) = nil;
|
|
|
|
};
|
2021-04-20 11:33:58 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Stop blocking
|
2024-03-26 12:50:21 +00:00
|
|
|
if (!GVAR(dragAndFire)) then {
|
2021-04-20 11:33:58 +00:00
|
|
|
[_unit, "DefaultAction", _unit getVariable [QGVAR(blockFire), -1]] call EFUNC(common,removeActionEventHandler);
|
|
|
|
};
|
2015-03-16 18:25:29 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
private _inBuilding = _unit call FUNC(isObjectOnObject);
|
2015-03-17 10:44:41 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Play release animation
|
2024-07-02 19:38:14 +00:00
|
|
|
if (_unit call EFUNC(common,isAwake)) then {
|
2016-07-12 14:16:01 +00:00
|
|
|
[_unit, "released"] call EFUNC(common,doGesture);
|
2015-04-11 18:32:07 +00:00
|
|
|
};
|
2015-03-16 18:25:29 +00:00
|
|
|
|
2023-07-23 23:07:37 +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-16 23:24:25 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Release object
|
2015-03-16 18:25:29 +00:00
|
|
|
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 {
|
2021-08-03 18:06:12 +00:00
|
|
|
[_target, "unconscious", 2] call EFUNC(common,doAnimation);
|
2015-03-24 18:07:39 +00:00
|
|
|
} else {
|
2021-08-03 18:06:12 +00:00
|
|
|
[_target, "", 2] call EFUNC(common,doAnimation); //@todo "AinjPpneMrunSnonWnonDb_release" seems to fall back to unconsciousness anim.
|
2015-03-24 18:07:39 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-03-18 15:55:57 +00:00
|
|
|
_unit removeWeapon "ACE_FakePrimaryWeapon";
|
|
|
|
|
2023-07-22 03:30:40 +00:00
|
|
|
[_unit, "blockThrow", QUOTE(ADDON), false] call EFUNC(common,statusEffect_set);
|
2017-12-07 17:26:21 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Prevent object from flipping inside buildings
|
2015-03-17 10:44:41 +00:00
|
|
|
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);
|
2015-03-17 10:44:41 +00:00
|
|
|
};
|
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Hide mouse hint
|
|
|
|
call EFUNC(interaction,hideMouseHint);
|
2015-09-26 01:16:55 +00:00
|
|
|
|
2015-03-16 18:25:29 +00:00
|
|
|
_unit setVariable [QGVAR(isDragging), false, true];
|
2015-03-16 19:09:54 +00:00
|
|
|
_unit setVariable [QGVAR(draggedObject), objNull, true];
|
2015-03-16 18:25:29 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Make object accessible for other units
|
2015-03-16 18:25:29 +00:00
|
|
|
[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-04-11 18:32:07 +00:00
|
|
|
|
2015-11-30 16:27:09 +00:00
|
|
|
if (_unit getVariable ["ACE_isUnconscious", false]) then {
|
2021-08-03 18:06:12 +00:00
|
|
|
[_unit, "unconscious", 2] call EFUNC(common,doAnimation);
|
2015-04-11 18:32:07 +00:00
|
|
|
};
|
2015-09-26 01:16:55 +00:00
|
|
|
|
2024-07-22 06:38:39 +00:00
|
|
|
// Reenable UAV crew
|
|
|
|
private _UAVCrew = _target getVariable [QGVAR(isUAV), []];
|
|
|
|
|
|
|
|
if (_UAVCrew isNotEqualTo []) then {
|
|
|
|
// Reenable AI
|
|
|
|
{
|
|
|
|
[_x, false] call EFUNC(common,disableAiUAV);
|
|
|
|
} forEach _UAVCrew;
|
2024-03-26 12:50:21 +00:00
|
|
|
|
2024-07-22 06:38:39 +00:00
|
|
|
_target setVariable [QGVAR(isUAV), nil, true];
|
2015-09-26 01:16:55 +00:00
|
|
|
};
|
2019-03-24 08:26:00 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Fixes not being able to move when in combat pace
|
2023-07-22 03:30:40 +00:00
|
|
|
[_unit, "forceWalk", QUOTE(ADDON), false] call EFUNC(common,statusEffect_set);
|
2020-04-03 23:28:14 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Reset mass
|
2019-03-24 08:26:00 +00:00
|
|
|
private _mass = _target getVariable [QGVAR(originalMass), 0];
|
|
|
|
|
|
|
|
if (_mass != 0) then {
|
2023-07-23 23:07:37 +00:00
|
|
|
[QEGVAR(common,setMass), [_target, _mass]] call CBA_fnc_globalEvent; // Force global sync
|
2019-03-24 08:26:00 +00:00
|
|
|
};
|