2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-08-09 12:53:13 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
2023-07-23 23:07:37 +00:00
|
|
|
* Checks for dragging conditions. If these are met, the unit will start dragging. Called from ace_dragging_fnc_startDrag.
|
2015-08-09 12:53:13 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2023-07-23 23:07:37 +00:00
|
|
|
* 0: Arguments <ARRAY>
|
2023-08-09 03:51:20 +00:00
|
|
|
* - 0: Unit <OBJECT>
|
|
|
|
* - 1: Target <OBJECT>
|
|
|
|
* - 2: Timeout <NUMBER>
|
2016-01-28 18:52:53 +00:00
|
|
|
* 1: PFEH Id <NUMBER>
|
2015-08-09 12:53:13 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
2016-01-28 18:52:53 +00:00
|
|
|
* Example:
|
2023-07-23 23:07:37 +00:00
|
|
|
* [[player, cursorTarget, 10], _idPFH] call ace_dragging_fnc_startDragPFH;
|
2016-01-28 18:52:53 +00:00
|
|
|
*
|
2015-08-09 12:53:13 +00:00
|
|
|
* Public: No
|
|
|
|
*/
|
2015-03-16 18:25:29 +00:00
|
|
|
|
2015-03-25 19:18:23 +00:00
|
|
|
#ifdef DEBUG_ENABLED_DRAGGING
|
2016-03-02 10:01:39 +00:00
|
|
|
systemChat format ["%1 startDragPFH running", CBA_missionTime];
|
2015-03-25 19:18:23 +00:00
|
|
|
#endif
|
|
|
|
|
2015-08-09 12:53:13 +00:00
|
|
|
params ["_args", "_idPFH"];
|
|
|
|
_args params ["_unit", "_target", "_timeOut"];
|
2015-03-16 18:25:29 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Handle aborting drag
|
2015-03-25 13:34:19 +00:00
|
|
|
if !(_unit getVariable [QGVAR(isDragging), false]) exitWith {
|
2016-03-02 10:01:39 +00:00
|
|
|
TRACE_4("drag false",_unit,_target,_timeOut,CBA_missionTime);
|
2023-07-23 23:07:37 +00:00
|
|
|
_idPFH call CBA_fnc_removePerFrameHandler;
|
2015-03-25 13:32:36 +00:00
|
|
|
};
|
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Same as dragObjectPFH, checks if object is deleted, dead or target moved away from carrier (e.g. weapon disassembled)
|
2015-09-27 00:23:56 +00:00
|
|
|
if (!alive _target || {_unit distance _target > 10}) then {
|
2016-03-02 10:01:39 +00:00
|
|
|
TRACE_4("dead/distance",_unit,_target,_timeOut,CBA_missionTime);
|
2015-03-25 12:32:59 +00:00
|
|
|
[_unit, _target] call FUNC(dropObject);
|
2023-07-23 23:07:37 +00:00
|
|
|
|
|
|
|
_idPFH call CBA_fnc_removePerFrameHandler;
|
2015-03-25 12:32:59 +00:00
|
|
|
};
|
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Timeout: Do nothing, quit. CBA_missionTime, because anim length is linked to ingame time
|
2016-03-02 10:01:39 +00:00
|
|
|
if (CBA_missionTime > _timeOut) exitWith {
|
|
|
|
TRACE_4("timeout",_unit,_target,_timeOut,CBA_missionTime);
|
2023-07-23 23:07:37 +00:00
|
|
|
_idPFH call CBA_fnc_removePerFrameHandler;
|
2015-03-22 16:12:14 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Drop if in timeout
|
2016-01-28 18:52:53 +00:00
|
|
|
private _draggedObject = _unit getVariable [QGVAR(draggedObject), objNull];
|
2015-03-25 12:32:59 +00:00
|
|
|
[_unit, _draggedObject] call FUNC(dropObject);
|
2015-03-16 18:25:29 +00:00
|
|
|
};
|
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Unit is ready to start dragging
|
2017-10-01 18:38:11 +00:00
|
|
|
if (animationState _unit in DRAG_ANIMATIONS || {_unit call EFUNC(common,isSwimming)}) exitWith {
|
2016-03-02 10:01:39 +00:00
|
|
|
TRACE_4("Start Dragging",_unit,_target,_timeOut,CBA_missionTime);
|
2015-03-25 13:32:36 +00:00
|
|
|
[_unit, _target] call FUNC(dragObject);
|
2015-03-16 18:25:29 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
_idPFH call CBA_fnc_removePerFrameHandler;
|
2015-03-16 18:25:29 +00:00
|
|
|
};
|