ACE3/addons/dragging/functions/fnc_canDrag.sqf

27 lines
1001 B
Plaintext
Raw Normal View History

/*
* Author: commy2
* Check if unit can drag the object. Doesn't check weight.
*
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:
* Can the unit drag the object? <BOOL>
*
2016-01-28 18:52:53 +00:00
* Example:
* [player, cursorTarget] call ace_dragging_fnc_canDrag;
*
2015-08-09 12:53:13 +00:00
* Public: No
*/
#include "script_component.hpp"
2016-01-28 18:52:53 +00:00
params ["_unit", "_target"];
if !([_unit, _target, []] call EFUNC(common,canInteractWith)) exitWith {false};
// a static weapon has to be empty for dragging (ignore UAV AI)
if ((typeOf _target) isKindOf "StaticWeapon" && {{(getText (configFile >> "CfgVehicles" >> (typeOf _x) >> "simulation")) != "UAVPilot"} count crew _target > 0}) exitWith {false};
2015-03-17 14:42:25 +00:00
alive _target && {vehicle _target == _target} && {_target getVariable [QGVAR(canDrag), false]} && {animationState _target in ["", "unconscious"] || (_target getVariable ["ACE_isUnconscious", false]) || (_target isKindOf "CAManBase" && {(_target getHitPointDamage "HitLegs") > 0.4})};