ACE3/addons/dragging/functions/fnc_dropObject_carry.sqf

126 lines
4.2 KiB
Plaintext
Raw Normal View History

#include "..\script_component.hpp"
2015-03-17 14:42:25 +00:00
/*
* Author: commy2
* 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>
* 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
*/
params ["_unit", "_target", ["_tryLoad", false]];
TRACE_1("params",_this);
2015-03-17 14:42:25 +00:00
// Remove drop action
[_unit, "DefaultAction", _unit getVariable [QGVAR(releaseActionID), -1]] call EFUNC(common,removeActionEventHandler);
_unit setVariable [QGVAR(releaseActionID), nil];
2015-03-17 14:42:25 +00:00
private _inBuilding = _unit call FUNC(isObjectOnObject);
2015-03-17 14:42:25 +00:00
// Prevent collision damage
[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
2015-03-17 14:42:25 +00:00
detach _target;
// Fix anim when aborting carrying persons
2015-03-25 13:09:49 +00:00
if (_target isKindOf "CAManBase" || {animationState _unit in CARRY_ANIMATIONS}) then {
if (vehicle _unit == _unit && {!(_unit getVariable ["ACE_isUnconscious", false])}) then {
[_unit, "", 2] call EFUNC(common,doAnimation);
};
2015-03-24 20:37:27 +00:00
if (_target getVariable ["ACE_isUnconscious", false]) then {
[_target, "unconscious", 2] call EFUNC(common,doAnimation);
2015-03-24 20:37:27 +00:00
} else {
[_target, "", 2] call EFUNC(common,doAnimation); //@todo
2015-03-24 20:37:27 +00:00
};
};
// Properly remove fake weapon
_unit removeWeapon "ACE_FakePrimaryWeapon";
2015-03-25 12:32:59 +00:00
// Reselect weapon and re-enable sprint
private _previousWeaponIndex = _unit getVariable [QGVAR(previousWeapon), -1];
_unit setVariable [QGVAR(previousWeapon), nil, true];
if (_previousWeaponIndex != -1) then {
_unit action ["SwitchWeapon", _unit, _unit, _previousWeaponIndex];
};
2015-03-17 14:42:25 +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
// 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];
// 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 {
[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
};
// 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;
};
// Reset mass
2019-03-24 08:26:00 +00:00
private _mass = _target getVariable [QGVAR(originalMass), 0];
if (_mass != 0) then {
[QEGVAR(common,setMass), [_target, _mass]] call CBA_fnc_globalEvent; // Force global sync
2019-03-24 08:26:00 +00:00
};
// Reset temp direction
_target setVariable [QGVAR(carryDirection_temp), nil];
getCursorObjectParams params ["_cursorObject", "", "_distance"];
// Try loading into vehicle
if (_tryLoad && {!isNull _cursorObject} && {[_unit, _cursorObject, ["isNotCarrying"]] call EFUNC(common,canInteractWith)}) then {
if (_target isKindOf "CAManBase") then {
if (_distance > MAX_LOAD_DISTANCE_MAN) exitWith {};
private _vehicles = [_cursorObject, 0, true] call EFUNC(common,nearestVehiclesFreeSeat);
if ([_cursorObject] isEqualTo _vehicles) then {
if (["ace_medical"] call EFUNC(common,isModLoaded)) then {
[_unit, _target, _cursorObject] call EFUNC(medical_treatment,loadUnit);
} else {
[_unit, _target, _cursorObject] call EFUNC(common,loadPerson);
};
};
} else {
if (
["ace_cargo"] call EFUNC(common,isModLoaded) &&
{EGVAR(cargo,enable)} &&
{[_target, _cursorObject] call EFUNC(cargo,canLoadItemIn)}
) then {
[_unit, _target, _cursorObject] call EFUNC(cargo,startLoadIn);
};
};
};