ACE3/addons/dragging/functions/fnc_dragObject.sqf

68 lines
2.0 KiB
Plaintext
Raw Normal View History

/*
* Author: commy2
* Drag an object. Called from ace_dragging_fnc_startDrag
*
2015-08-09 12:53:13 +00:00
* Arguments:
* 0: Unit that should do the dragging <OBJECT>
* 1: Object to drag <OBJECT>
*
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_dragObject;
*
2015-08-09 12:53:13 +00:00
* Public: No
*/
#include "script_component.hpp"
2015-08-09 12:53:13 +00:00
params ["_unit", "_target"];
2016-01-28 18:52:53 +00:00
TRACE_2("params",_unit,_target);
// get attachTo offset and direction.
2016-01-28 18:52:53 +00:00
private _position = _target getVariable [QGVAR(dragPosition), [0, 0, 0]];
private _direction = _target getVariable [QGVAR(dragDirection), 0];
// add height offset of model
2016-01-28 18:52:53 +00:00
private _offset = (_target modelToWorldVisual [0, 0, 0] select 2) - (_unit modelToWorldVisual [0, 0, 0] select 2);
if (_target isKindOf "CAManBase") then {
_offset = 0;
};
_position = _position vectorAdd [0, 0, _offset];
// attach object
TRACE_3("attaching",_position,_offset,_direction);
_target attachTo [_unit, _position];
2015-03-25 19:45:47 +00:00
["setDir", _target, [_target, _direction]] call EFUNC(common,targetEvent);
2015-03-24 18:07:39 +00:00
if (_target isKindOf "CAManBase") then {
[_target, "AinjPpneMrunSnonWnonDb_still", 0, true] call EFUNC(common,doAnimation);
};
2015-03-16 19:09:54 +00:00
_unit setVariable [QGVAR(isDragging), true, true];
_unit setVariable [QGVAR(draggedObject), _target, true];
// add drop action
_unit setVariable [QGVAR(ReleaseActionID), [
_unit, "DefaultAction",
{!isNull ((_this select 0) getVariable [QGVAR(draggedObject), objNull])},
{[_this select 0, (_this select 0) getVariable [QGVAR(draggedObject), objNull]] call FUNC(dropObject)}
] call EFUNC(common,addActionEventHandler)];
// show mouse hint
[localize LSTRING(Drop), ""] call EFUNC(interaction,showMouseHint);
// check everything
[FUNC(dragObjectPFH), 0.5, [_unit, _target, ACE_time]] call CBA_fnc_addPerFrameHandler;
// reset current dragging height.
GVAR(currentHeightChange) = 0;
// prevent UAVs from firing
2016-01-28 18:52:53 +00:00
private _UAVCrew = _target call EFUNC(common,getVehicleUAVCrew);
if !(_UAVCrew isEqualTo []) then {
{_target deleteVehicleCrew _x} count _UAVCrew;
_target setVariable [QGVAR(isUAV), true, true];
};