ACE3/addons/dragging/functions/fnc_handleAnimChanged.sqf

59 lines
1.8 KiB
Plaintext
Raw Normal View History

2015-08-09 12:53:13 +00:00
/*
* Author: commy2
* Handle the animaion for a Unit for Dragging Module
2015-08-09 12:53:13 +00:00
*
* Arguments:
* 0: Unit <OBJECT>
* 1: animaion <STRING>
2015-08-09 12:53:13 +00:00
*
* Return Value:
* None
*
* Example:
* [_unit, "amovpercmstpsnonwnondnon"] call ace_dragging_fnc_handleAnimChanged;
*
* Public: No
*/
2015-03-18 14:42:33 +00:00
#include "script_component.hpp"
//IGNORE_PRIVATE_WARNING ["_thisArgs", "_thisID"]; // From CBA_fnc_addBISEventHandler;
2016-01-28 18:52:53 +00:00
params ["_unit", "_anim"];
_thisArgs params ["_realUnit"];
TRACE_4("params",_unit,_anim,_realUnit,_thisID);
if (_unit != _realUnit) exitWith {
TRACE_2("respawn (unit changed) - remove EH",_unit,_realUnit);
_unit removeEventHandler ["AnimChanged", _thisID];
};
2015-03-18 14:42:33 +00:00
if (_unit getVariable [QGVAR(isDragging), false]) then {
// drop dragged object when not in valid animation
if (!(_anim in DRAG_ANIMATIONS) && {!(_unit call EFUNC(common,isSwimming))}) then {
2016-01-28 18:52:53 +00:00
private _draggedObject = _unit getVariable [QGVAR(draggedObject), objNull];
2015-03-18 14:42:33 +00:00
if (!isNull _draggedObject) then {
TRACE_2("stop drag",_unit,_draggedObject);
[_unit, _draggedObject] call FUNC(dropObject);
};
2015-03-18 14:42:33 +00:00
};
} else {
2015-03-18 14:42:33 +00:00
if (_unit getVariable [QGVAR(isCarrying), false]) then {
2015-03-18 14:42:33 +00:00
// drop carried object when not standing; also some exceptions when picking up crate
if (stance _unit != "STAND" && {_anim != "amovpercmstpsnonwnondnon"}) then {
private _carriedObject = _unit getVariable [QGVAR(carriedObject), objNull];
2015-03-18 14:42:33 +00:00
if (!isNull _carriedObject) then {
TRACE_2("stop carry",_unit,_carriedObject);
[_unit, _carriedObject] call FUNC(dropObject_carry);
};
};
} else {
TRACE_1("not drag/carry - remove EH",_unit);
_unit removeEventHandler ["AnimChanged", _thisID];
2015-03-18 14:42:33 +00:00
};
};