mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
f35f872963
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
102 lines
3.0 KiB
Plaintext
102 lines
3.0 KiB
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: commy2, Malbryn
|
|
* Drops a dragged object.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit that drags the other object <OBJECT>
|
|
* 1: Dragged object to drop <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player, cursorTarget] call ace_dragging_fnc_dropObject;
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_unit", "_target"];
|
|
TRACE_2("params",_unit,_target);
|
|
|
|
// Remove drop action
|
|
if (!isNil QGVAR(releaseActionID)) then {
|
|
[GVAR(releaseActionID), "keydown"] call CBA_fnc_removeKeyHandler;
|
|
GVAR(releaseActionID) = nil;
|
|
};
|
|
|
|
// Stop blocking
|
|
if !(GVAR(dragAndFire)) then {
|
|
[_unit, "DefaultAction", _unit getVariable [QGVAR(blockFire), -1]] call EFUNC(common,removeActionEventHandler);
|
|
};
|
|
|
|
private _inBuilding = _unit call FUNC(isObjectOnObject);
|
|
|
|
// Play release animation
|
|
if !(_unit getVariable ["ACE_isUnconscious", false]) then {
|
|
[_unit, "released"] call EFUNC(common,doGesture);
|
|
};
|
|
|
|
// Prevent collision damage
|
|
[QEGVAR(common,fixCollision), _unit] call CBA_fnc_localEvent;
|
|
[QEGVAR(common,fixCollision), _target, _target] call CBA_fnc_targetEvent;
|
|
|
|
// Release object
|
|
detach _target;
|
|
|
|
if (_target isKindOf "CAManBase") then {
|
|
if (_target getVariable ["ACE_isUnconscious", false]) then {
|
|
[_target, "unconscious", 2] call EFUNC(common,doAnimation);
|
|
} else {
|
|
[_target, "", 2] call EFUNC(common,doAnimation); //@todo "AinjPpneMrunSnonWnonDb_release" seems to fall back to unconsciousness anim.
|
|
};
|
|
};
|
|
|
|
_unit removeWeapon "ACE_FakePrimaryWeapon";
|
|
|
|
[_unit, "blockThrow", QUOTE(ADDON), false] call EFUNC(common,statusEffect_set);
|
|
|
|
// Prevent object from flipping inside buildings
|
|
if (_inBuilding) then {
|
|
_target setPosASL (getPosASL _target vectorAdd [0, 0, 0.05]);
|
|
TRACE_2("setPos",getPosASL _unit,getPosASL _target);
|
|
};
|
|
|
|
// Hide mouse hint
|
|
call EFUNC(interaction,hideMouseHint);
|
|
|
|
_unit setVariable [QGVAR(isDragging), false, true];
|
|
_unit setVariable [QGVAR(draggedObject), objNull, true];
|
|
|
|
// Make object accessible for other units
|
|
[objNull, _target, true] call EFUNC(common,claim);
|
|
|
|
if !(_target isKindOf "CAManBase") then {
|
|
[QEGVAR(common,fixPosition), _target, _target] call CBA_fnc_targetEvent;
|
|
[QEGVAR(common,fixFloating), _target, _target] call CBA_fnc_targetEvent;
|
|
};
|
|
|
|
if (_unit getVariable ["ACE_isUnconscious", false]) then {
|
|
[_unit, "unconscious", 2] call EFUNC(common,doAnimation);
|
|
};
|
|
|
|
// Recreate UAV crew (add a frame delay or this may cause the vehicle to be moved to [0,0,0])
|
|
if (_target getVariable [QGVAR(isUAV), false]) then {
|
|
[{
|
|
params ["_target"];
|
|
if (!alive _target) exitWith {};
|
|
TRACE_2("restoring uav crew",_target,getPosASL _target);
|
|
createVehicleCrew _target;
|
|
}, [_target]] call CBA_fnc_execNextFrame;
|
|
};
|
|
|
|
// Fixes not being able to move when in combat pace
|
|
[_unit, "forceWalk", QUOTE(ADDON), false] call EFUNC(common,statusEffect_set);
|
|
|
|
// Reset mass
|
|
private _mass = _target getVariable [QGVAR(originalMass), 0];
|
|
|
|
if (_mass != 0) then {
|
|
[QEGVAR(common,setMass), [_target, _mass]] call CBA_fnc_globalEvent; // Force global sync
|
|
};
|