ACE3/addons/dragging/functions/fnc_startDrag.sqf

58 lines
1.7 KiB
Plaintext
Raw Normal View History

/*
* Author: commy2
* Start the dragging process.
*
2016-06-18 09:50:41 +00:00
* Arguments:
2015-08-09 12:53:13 +00:00
* 0: Unit that should do the dragging <OBJECT>
* 1: Object to drag <OBJECT>
*
2016-06-18 09:50:41 +00:00
* Return Value:
2015-08-09 12:53:13 +00:00
* None
2016-01-28 18:52:53 +00:00
*
* Example:
* [player, cursorTarget] call ace_dragging_fnc_startDrag;
*
* Public: No
*/
#include "script_component.hpp"
2015-03-16 13:31:16 +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-18 13:14:16 +00:00
// check weight
2016-01-28 18:52:53 +00:00
private _weight = [_target] call FUNC(getWeight);
2015-03-18 13:14:16 +00:00
2015-08-24 11:43:11 +00:00
if (_weight > missionNamespace getVariable ["ACE_maxWeightDrag", 1E11]) exitWith {
2015-05-28 19:59:04 +00:00
[localize LSTRING(UnableToDrag)] call EFUNC(common,displayTextStructured);
2015-03-18 13:14:16 +00:00
};
// add a primary weapon if the unit has none.
// @todo prevent opening inventory when equipped with a fake weapon
if (primaryWeapon _unit == "") then {
_unit addWeapon "ACE_FakePrimaryWeapon";
};
// select primary, otherwise the drag animation actions don't work.
_unit selectWeapon primaryWeapon _unit;
// prevent multiple players from accessing the same object
[_unit, _target, true] call EFUNC(common,claim);
// can't play action that depends on weapon if it was added the same frame
2016-07-12 14:16:01 +00:00
[{
2016-07-12 14:28:36 +00:00
[_this, "grabDrag"] call EFUNC(common,doGesture);
2016-07-12 14:16:01 +00:00
}, _unit] call CBA_fnc_execNextFrame;
2015-03-24 18:07:39 +00:00
// move a bit closer and adjust direction when trying to pick up a person
if (_target isKindOf "CAManBase") then {
_target setDir (getDir _unit + 180);
_target setPosASL (getPosASL _unit vectorAdd (vectorDir _unit vectorMultiply 1.5));
2015-03-25 12:32:59 +00:00
[_target, "AinjPpneMrunSnonWnonDb_grab", 2, true] call EFUNC(common,doAnimation);
2015-03-24 18:07:39 +00:00
};
// prevents draging and carrying at the same time
_unit setVariable [QGVAR(isDragging), true, true];
2016-03-02 10:01:39 +00:00
[FUNC(startDragPFH), 0.2, [_unit, _target, CBA_missionTime + 5]] call CBA_fnc_addPerFrameHandler;