2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-03-17 14:42:25 +00:00
|
|
|
/*
|
2019-01-20 16:23:24 +00:00
|
|
|
* Author: commy2, PiZZADOX
|
2023-07-23 23:07:37 +00:00
|
|
|
* Enables the object to be carried.
|
2015-03-17 14:42:25 +00:00
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Arguments:
|
2023-07-23 23:07:37 +00:00
|
|
|
* 0: Object <OBJECT>
|
|
|
|
* 1: True to enable carrying, false to disable <BOOL>
|
|
|
|
* 2: Position offset for attachTo command <ARRAY> (default: [0, 1, 1])
|
|
|
|
* 3: Direction in degrees to rotate the object after attachTo <NUMBER> (default: 0)
|
|
|
|
* 4: Override weight limit <BOOL> (default: false)
|
2015-03-17 14:42:25 +00:00
|
|
|
*
|
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
|
|
|
* [cursorTarget, true, [0, 1, 1], 0, false] call ace_dragging_fnc_setCarryable;
|
2016-01-28 18:52:53 +00:00
|
|
|
*
|
2015-08-09 12:53:13 +00:00
|
|
|
* Public: Yes
|
2015-03-17 14:42:25 +00:00
|
|
|
*/
|
|
|
|
|
2019-01-20 16:23:24 +00:00
|
|
|
params ["_object", "_enableCarry", "_position", "_direction", ["_ignoreWeightCarry", false, [false]]];
|
2015-03-17 14:42:25 +00:00
|
|
|
|
|
|
|
if (isNil "_position") then {
|
2023-07-23 23:07:37 +00:00
|
|
|
_position = _object getVariable [QGVAR(carryPosition), [0, 1, 1]];
|
2015-03-17 14:42:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (isNil "_direction") then {
|
|
|
|
_direction = _object getVariable [QGVAR(carryDirection), 0];
|
|
|
|
};
|
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Update variables
|
2015-03-17 14:42:25 +00:00
|
|
|
_object setVariable [QGVAR(canCarry), _enableCarry];
|
|
|
|
_object setVariable [QGVAR(carryPosition), _position];
|
|
|
|
_object setVariable [QGVAR(carryDirection), _direction];
|
2019-01-20 16:23:24 +00:00
|
|
|
_object setVariable [QGVAR(ignoreWeightCarry), _ignoreWeightCarry];
|
2015-03-17 14:42:25 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Add action to class if it is not already present
|
2016-01-28 18:52:53 +00:00
|
|
|
private _type = typeOf _object;
|
|
|
|
private _initializedClasses = GETGVAR(initializedClasses_carry,[]);
|
2015-03-17 14:42:25 +00:00
|
|
|
|
2023-07-23 23:07:37 +00:00
|
|
|
// Do nothing if the class is already initialized
|
2015-03-17 14:42:25 +00:00
|
|
|
if (_type in _initializedClasses) exitWith {};
|
|
|
|
|
|
|
|
_initializedClasses pushBack _type;
|
|
|
|
GVAR(initializedClasses_carry) = _initializedClasses;
|
|
|
|
|
2023-07-22 03:30:40 +00:00
|
|
|
[_type, "ContainerClosed", {
|
|
|
|
params ["_object"];
|
|
|
|
private _owner = _object getVariable [QEGVAR(common,owner), objNull];
|
|
|
|
TRACE_2("ContainerClosed-carry",_object,_owner);
|
|
|
|
if (isNull _owner) exitWith {};
|
|
|
|
if (_object isNotEqualTo (_owner getVariable [QGVAR(carriedObject), objNull])) exitWith {};
|
|
|
|
[QGVAR(carryingContainerClosed), [_object, _owner], _owner] call CBA_fnc_targetEvent;
|
|
|
|
}, false] call CBA_fnc_addClassEventHandler;
|
|
|
|
|
2023-11-21 20:18:19 +00:00
|
|
|
private _icon = [QPATHTOF(UI\icons\box_carry.paa), QPATHTOF(UI\icons\person_carry.paa)] select (_object isKindOf "CAManBase");
|
2016-05-07 20:23:38 +00:00
|
|
|
|
2024-01-13 16:39:39 +00:00
|
|
|
private _carryAction = [
|
|
|
|
QGVAR(carry),
|
|
|
|
LLSTRING(Carry),
|
|
|
|
_icon,
|
|
|
|
{
|
|
|
|
[_player, _target] call FUNC(startCarry)
|
|
|
|
}, {
|
|
|
|
[_player, _target] call FUNC(canCarry)
|
|
|
|
}] call EFUNC(interact_menu,createAction);
|
|
|
|
|
|
|
|
private _dropAction = [
|
|
|
|
QGVAR(drop_carry),
|
|
|
|
LLSTRING(Drop),
|
|
|
|
"",
|
|
|
|
{
|
|
|
|
[_player, _target] call FUNC(dropObject_carry)
|
|
|
|
}, {
|
|
|
|
[_player, _target] call FUNC(canDrop_carry)
|
|
|
|
}] call EFUNC(interact_menu,createAction);
|
2015-03-20 02:33:11 +00:00
|
|
|
|
|
|
|
[_type, 0, ["ACE_MainActions"], _carryAction] call EFUNC(interact_menu,addActionToClass);
|
2015-03-22 15:38:21 +00:00
|
|
|
[_type, 0, [], _dropAction] call EFUNC(interact_menu,addActionToClass);
|