2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-03-17 14:42:25 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
2023-07-23 23:07:37 +00:00
|
|
|
* Drops a carried object.
|
2015-03-17 14:42:25 +00:00
|
|
|
*
|
2015-08-09 12:53:13 +00:00
|
|
|
* Arguments:
|
|
|
|
* 0: Unit that carries the other object <OBJECT>
|
|
|
|
* 1: Carried object to drop <OBJECT>
|
2023-07-23 23:07:37 +00:00
|
|
|
* 2: Try loading object into vehicle <BOOL> (default: false)
|
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
|
|
|
*/
|
|
|
|
|
2023-06-23 12:11:16 +00:00
|
|
|
params ["_unit", "_target", ["_tryLoad", false]];
|
2016-10-28 12:20:39 +00:00
|
|
|
TRACE_1("params",_this);
|
2015-03-17 14:42:25 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Remove drop action
|
|
|
|
[_unit, "DefaultAction", _unit getVariable [QGVAR(releaseActionID), -1]] call EFUNC(common,removeActionEventHandler);
|
2023-09-20 03:56:20 +00:00
|
|
|
_unit setVariable [QGVAR(releaseActionID), nil];
|
2015-03-17 14:42:25 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
private _inBuilding = _unit call FUNC(isObjectOnObject);
|
2015-03-17 14:42:25 +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-17 14:42:25 +00:00
|
|
|
|
2023-11-17 23:07:28 +00:00
|
|
|
private _cursorObject = cursorObject;
|
|
|
|
_tryLoad = _tryLoad && {!isNull _cursorObject} && {[_unit, _cursorObject, ["isNotCarrying"]] call EFUNC(common,canInteractWith)};
|
|
|
|
private _loadCargo = false;
|
|
|
|
|
|
|
|
// Don't release object if loading into vehicle (object might be released into vehicle)
|
|
|
|
if (_tryLoad && {!(_target isKindOf "CAManBase")} && {["ace_cargo"] call EFUNC(common,isModLoaded)} && {[_target, _cursorObject] call EFUNC(cargo,canLoadItemIn)}) then {
|
|
|
|
_loadCargo = true;
|
|
|
|
} else {
|
|
|
|
// Release object
|
|
|
|
detach _target;
|
|
|
|
};
|
2015-03-17 14:42:25 +00:00
|
|
|
|
2023-07-23 23:07:37 +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 {
|
2024-07-02 19:38:14 +00:00
|
|
|
if (isNull objectParent _unit && {_unit call EFUNC(common,isAwake)}) then {
|
2021-08-03 18:06:12 +00:00
|
|
|
[_unit, "", 2] call EFUNC(common,doAnimation);
|
2015-03-25 20:51:50 +00:00
|
|
|
};
|
2015-03-24 20:37:27 +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 20:37:27 +00:00
|
|
|
} else {
|
2021-08-03 18:06:12 +00:00
|
|
|
[_target, "", 2] call EFUNC(common,doAnimation); //@todo
|
2015-03-24 20:37:27 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Properly remove fake weapon
|
2015-03-25 13:07:50 +00:00
|
|
|
_unit removeWeapon "ACE_FakePrimaryWeapon";
|
2015-03-25 12:32:59 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Reselect weapon and re-enable sprint
|
2024-07-20 06:13:42 +00:00
|
|
|
private _previousWeaponState = _unit getVariable QGVAR(previousWeapon);
|
2023-02-14 04:01:51 +00:00
|
|
|
|
2024-07-20 06:13:42 +00:00
|
|
|
if (!isNil "_previousWeaponState") then {
|
|
|
|
_unit selectWeapon _previousWeaponState;
|
|
|
|
|
|
|
|
_unit setVariable [QGVAR(previousWeapon), nil, true];
|
2023-02-14 04:01:51 +00:00
|
|
|
};
|
2015-03-17 14:42:25 +00:00
|
|
|
|
2023-07-22 03:30:40 +00:00
|
|
|
[_unit, "forceWalk", QUOTE(ADDON), false] call EFUNC(common,statusEffect_set);
|
|
|
|
[_unit, "blockSprint", QUOTE(ADDON), false] call EFUNC(common,statusEffect_set);
|
|
|
|
[_unit, "blockThrow", QUOTE(ADDON), false] call EFUNC(common,statusEffect_set);
|
2015-03-17 14:42:25 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Prevent object from flipping inside buildings
|
2015-03-17 14:42:25 +00:00
|
|
|
if (_inBuilding) then {
|
|
|
|
_target setPosASL (getPosASL _target vectorAdd [0, 0, 0.05]);
|
|
|
|
};
|
|
|
|
|
|
|
|
_unit setVariable [QGVAR(isCarrying), false, true];
|
|
|
|
_unit setVariable [QGVAR(carriedObject), objNull, true];
|
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Make object accessible for other units
|
2015-03-17 14:42:25 +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-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
|
|
|
};
|
2016-10-28 12:20:39 +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
|
|
|
};
|
2020-04-20 15:45:59 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Reset temp direction
|
2020-04-20 15:45:59 +00:00
|
|
|
_target setVariable [QGVAR(carryDirection_temp), nil];
|
2023-06-23 12:11:16 +00:00
|
|
|
|
2023-11-17 23:07:28 +00:00
|
|
|
// (Try) loading into vehicle
|
|
|
|
if (_loadCargo) then {
|
|
|
|
[_unit, _target, _cursorObject] call EFUNC(cargo,startLoadIn);
|
|
|
|
} else {
|
|
|
|
if (_tryLoad && {_unit distance _cursorObject <= MAX_LOAD_DISTANCE_MAN} && {_target isKindOf "CAManBase"}) then {
|
2023-07-23 23:07:37 +00:00
|
|
|
private _vehicles = [_cursorObject, 0, true] call EFUNC(common,nearestVehiclesFreeSeat);
|
|
|
|
|
|
|
|
if ([_cursorObject] isEqualTo _vehicles) then {
|
2024-06-18 00:07:38 +00:00
|
|
|
if (GETEGVAR(medical,enabled,false)) then {
|
2023-07-23 23:07:37 +00:00
|
|
|
[_unit, _target, _cursorObject] call EFUNC(medical_treatment,loadUnit);
|
2023-06-23 12:11:16 +00:00
|
|
|
} else {
|
2023-07-23 23:07:37 +00:00
|
|
|
[_unit, _target, _cursorObject] call EFUNC(common,loadPerson);
|
2023-06-23 12:11:16 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|