2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-03-17 14:42:25 +00:00
|
|
|
/*
|
2023-07-10 02:49:37 +00:00
|
|
|
* Author: commy2, Dystopian
|
2023-07-23 23:07:37 +00:00
|
|
|
* Checks if unit can carry the object. Doesn't check weight.
|
2015-03-17 14:42:25 +00:00
|
|
|
*
|
2015-08-09 12:53:13 +00:00
|
|
|
* Arguments:
|
|
|
|
* 0: Unit that should do the carrying <OBJECT>
|
|
|
|
* 1: Object to carry <OBJECT>
|
2015-03-17 14:42:25 +00:00
|
|
|
*
|
2015-08-09 12:53:13 +00:00
|
|
|
* Return Value:
|
|
|
|
* Can the unit carry the object? <BOOL>
|
|
|
|
*
|
2016-01-28 18:52:53 +00:00
|
|
|
* Example:
|
2023-07-10 02:49:37 +00:00
|
|
|
* [player, cursorTarget] call ace_dragging_fnc_canCarry
|
2016-01-28 18:52:53 +00:00
|
|
|
*
|
2015-08-09 12:53:13 +00:00
|
|
|
* Public: No
|
2015-03-17 14:42:25 +00:00
|
|
|
*/
|
|
|
|
|
2015-08-09 12:53:13 +00:00
|
|
|
params ["_unit", "_target"];
|
2015-03-17 14:42:25 +00:00
|
|
|
|
2023-07-10 02:49:37 +00:00
|
|
|
if !(alive _target && {_target getVariable [QGVAR(canCarry), false]} && {isNull objectParent _target}) exitWith {false};
|
|
|
|
|
2015-03-17 14:42:25 +00:00
|
|
|
if !([_unit, _target, []] call EFUNC(common,canInteractWith)) exitWith {false};
|
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// #2644 - Units with injured legs cannot bear the extra weight of carrying an object
|
|
|
|
// The fireman carry animation does not slow down for injured legs, so you could carry and run
|
2016-01-29 05:05:55 +00:00
|
|
|
if ((_unit getHitPointDamage "HitLegs") >= 0.5) exitWith {false};
|
|
|
|
|
2023-07-10 02:49:37 +00:00
|
|
|
// Static weapons need to be empty for carrying (ignore UAV AI)
|
|
|
|
if (_target isKindOf "StaticWeapon") exitWith {
|
2024-01-15 21:39:28 +00:00
|
|
|
(crew _target) findIf {!unitIsUAV _x} == -1
|
2023-07-10 02:49:37 +00:00
|
|
|
};
|
|
|
|
|
2023-07-22 04:01:30 +00:00
|
|
|
// Units need to be unconscious or limping; Units also need to not be in ragdoll, as that causes desync issues
|
2023-07-10 02:49:37 +00:00
|
|
|
if (_target isKindOf "CAManBase") exitWith {
|
2023-12-18 17:02:45 +00:00
|
|
|
isAwake _target && // not ragdolled
|
2023-07-23 23:07:37 +00:00
|
|
|
{lifeState _target == "INCAPACITATED" ||
|
2023-07-22 04:01:30 +00:00
|
|
|
{_target getHitPointDamage "HitLegs" >= 0.5}}
|
2023-07-10 02:49:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Check max items for WeaponHolders
|
|
|
|
if (["WeaponHolder", "WeaponHolderSimulated"] findIf {_target isKindOf _x} != -1) exitWith {
|
|
|
|
(count (weaponCargo _target + magazineCargo _target + itemCargo _target)) <= MAX_DRAGGED_ITEMS
|
|
|
|
};
|
2015-03-17 14:42:25 +00:00
|
|
|
|
2023-07-10 02:49:37 +00:00
|
|
|
true // return
|