ACE3/addons/dragging/functions/fnc_startCarry.sqf

93 lines
3.0 KiB
Plaintext
Raw Normal View History

#include "script_component.hpp"
2015-03-24 20:37:27 +00:00
/*
* Author: commy2, PiZZADOX
2015-03-24 20:37:27 +00:00
* Start the carrying process.
*
2015-08-09 12:53:13 +00:00
* Arguments:
* 0: Unit that should do the carrying <OBJECT>
* 1: Object to carry <OBJECT>
2015-03-24 20:37:27 +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_startCarry;
*
2015-08-09 12:53:13 +00:00
* Public: No
2015-03-24 20:37:27 +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-24 20:37:27 +00:00
private _weight = [_target] call FUNC(getWeight);
// exempt from weight check if object has override variable set
if (!GETVAR(_target,GVAR(ignoreWeightCarry),false) && {
_weight > GETMVAR(ACE_maxWeightCarry,1E11)
}) exitWith {
// exit if object weight is over global var value
2015-05-28 19:59:04 +00:00
[localize LSTRING(UnableToDrag)] call EFUNC(common,displayTextStructured);
2015-03-24 20:37:27 +00:00
};
2016-03-02 10:01:39 +00:00
private _timer = CBA_missionTime + 5;
2015-03-24 20:37:27 +00:00
2015-03-25 12:32:59 +00:00
// handle objects vs persons
if (_target isKindOf "CAManBase") then {
2015-03-24 20:37:27 +00:00
2015-03-25 12:32:59 +00:00
// add a primary weapon if the unit has none.
if (primaryWeapon _unit isEqualto "") then {
2015-03-25 12:32:59 +00:00
_unit addWeapon "ACE_FakePrimaryWeapon";
};
2015-03-24 20:37:27 +00:00
2015-03-25 12:32:59 +00:00
// select primary, otherwise the drag animation actions don't work.
_unit selectWeapon primaryWeapon _unit;
2015-03-24 20:37:27 +00:00
2015-03-25 12:32:59 +00:00
// move a bit closer and adjust direction when trying to pick up a person
2015-03-24 20:37:27 +00:00
_target setDir (getDir _unit + 180);
_target setPosASL (getPosASL _unit vectorAdd (vectorDir _unit));
2015-03-24 20:37:27 +00:00
[_unit, "AcinPknlMstpSnonWnonDnon_AcinPercMrunSnonWnonDnon", 2] call EFUNC(common,doAnimation);
[_target, "AinjPfalMstpSnonWrflDnon_carried_Up", 2] call EFUNC(common,doAnimation);
2015-03-24 20:37:27 +00:00
2019-10-05 20:32:38 +00:00
_timer = CBA_missionTime + 10;
2015-03-25 12:32:59 +00:00
} else {
// select no weapon and stop sprinting
private _previousWeaponIndex = [_unit] call EFUNC(common,getFiremodeIndex);
_unit setVariable [QGVAR(previousWeapon), _previousWeaponIndex, true];
_unit action ["SwitchWeapon", _unit, _unit, 299];
2015-03-25 12:32:59 +00:00
[_unit, "AmovPercMstpSnonWnonDnon", 0] call EFUNC(common,doAnimation);
// objects other than containers have calculated weight == 0 so we use getMass
if (-1 == ["ReammoBox_F", "WeaponHolder", "WeaponHolderSimulated"] findIf {_target isKindOf _x}) then {
_weight = getMass _target;
};
if (_weight > GVAR(maxWeightCarryRun)) then {
[_unit, "forceWalk", "ACE_dragging", true] call EFUNC(common,statusEffect_set);
} else {
[_unit, "blockSprint", "ACE_dragging", true] call EFUNC(common,statusEffect_set);
};
2015-03-24 20:37:27 +00:00
};
[_unit, "blockThrow", "ACE_dragging", true] call EFUNC(common,statusEffect_set);
2015-04-03 19:37:04 +00:00
// prevent multiple players from accessing the same object
[_unit, _target, true] call EFUNC(common,claim);
// prevents draging and carrying at the same time
2015-03-24 20:37:27 +00:00
_unit setVariable [QGVAR(isCarrying), true, true];
2015-03-25 12:32:59 +00:00
// required for aborting animation
_unit setVariable [QGVAR(carriedObject), _target, true];
[FUNC(startCarryPFH), 0.2, [_unit, _target, _timer]] call CBA_fnc_addPerFrameHandler;
2019-03-24 08:26:00 +00:00
// disable collisions by setting the physx mass to almost zero
private _mass = getMass _target;
if (_mass > 1) then {
_target setVariable [QGVAR(originalMass), _mass, true];
[QEGVAR(common,setMass), [_target, 1e-12]] call CBA_fnc_globalEvent; // force global sync
2019-03-24 08:26:00 +00:00
};