2015-03-16 18:25:29 +00:00
|
|
|
// by PabstMirror, commy2
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-09-26 01:16:55 +00:00
|
|
|
if (isServer) then {
|
|
|
|
// release object on hard disconnection. Function is identical to killed
|
|
|
|
addMissionEventHandler ["HandleDisconnect", {_this call FUNC(handleKilled)}];
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!hasInterface) exitWith {};
|
|
|
|
|
2015-03-18 13:14:16 +00:00
|
|
|
if (isNil "ACE_maxWeightDrag") then {
|
|
|
|
ACE_maxWeightDrag = 800;
|
|
|
|
};
|
|
|
|
|
|
|
|
if (isNil "ACE_maxWeightCarry") then {
|
|
|
|
ACE_maxWeightCarry = 600;
|
2015-03-16 18:25:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
["isNotDragging", {!((_this select 0) getVariable [QGVAR(isDragging), false])}] call EFUNC(common,addCanInteractWithCondition);
|
2015-03-17 14:42:25 +00:00
|
|
|
["isNotCarrying", {!((_this select 0) getVariable [QGVAR(isCarrying), false])}] call EFUNC(common,addCanInteractWithCondition);
|
2015-03-17 12:47:07 +00:00
|
|
|
|
|
|
|
// release object on player change. This does work when returning to lobby, but not when hard disconnecting.
|
2016-08-03 20:26:36 +00:00
|
|
|
["unit", FUNC(handlePlayerChanged)] call CBA_fnc_addPlayerEventHandler;
|
|
|
|
["vehicle", {[ACE_player, objNull] call FUNC(handlePlayerChanged)}] call CBA_fnc_addPlayerEventHandler;
|
|
|
|
["weapon", FUNC(handlePlayerWeaponChanged)] call CBA_fnc_addPlayerEventHandler;
|
2015-03-24 18:07:39 +00:00
|
|
|
|
|
|
|
// handle waking up dragged unit and falling unconscious while dragging
|
2016-06-03 18:57:21 +00:00
|
|
|
["ace_unconscious", {_this call FUNC(handleUnconscious)}] call CBA_fnc_addEventHandler;
|
2015-03-24 18:07:39 +00:00
|
|
|
|
2020-04-20 15:45:59 +00:00
|
|
|
// display event handler
|
|
|
|
["MouseZChanged", {_this select 1 call FUNC(handleScrollWheel)}] call CBA_fnc_addDisplayHandler;
|
|
|
|
|
2015-03-24 18:07:39 +00:00
|
|
|
//@todo Captivity?
|
2016-07-01 21:28:44 +00:00
|
|
|
|
|
|
|
//Add Keybind:
|
2016-10-05 22:54:57 +00:00
|
|
|
["ACE3 Common", QGVAR(drag), (localize LSTRING(DragKeybind)), {
|
2016-07-01 21:28:44 +00:00
|
|
|
if (!alive ACE_player) exitWith {false};
|
|
|
|
if !([ACE_player, objNull, ["isNotDragging", "isNotCarrying"]] call EFUNC(common,canInteractWith)) exitWith {false};
|
2020-04-20 15:45:59 +00:00
|
|
|
|
2016-07-01 21:28:44 +00:00
|
|
|
// If we are drag/carrying something right now then just drop it:
|
|
|
|
if (ACE_player getVariable [QGVAR(isDragging), false]) exitWith {
|
|
|
|
[ACE_player, ACE_player getVariable [QGVAR(draggedObject), objNull]] call FUNC(dropObject);
|
|
|
|
false
|
|
|
|
};
|
|
|
|
if (ACE_player getVariable [QGVAR(isCarrying), false]) exitWith {
|
|
|
|
[ACE_player, ACE_player getVariable [QGVAR(carriedObject), objNull]] call FUNC(dropObject_carry);
|
|
|
|
false
|
|
|
|
};
|
|
|
|
|
|
|
|
private _cursor = cursorObject;
|
|
|
|
if ((isNull _cursor) || {(_cursor distance ACE_player) > 2.6}) exitWith {false};
|
|
|
|
if (!([ACE_player, _cursor] call FUNC(canDrag))) exitWith {false};
|
|
|
|
|
|
|
|
[ACE_player, _cursor] call FUNC(startDrag);
|
|
|
|
false
|
2020-06-13 20:51:47 +00:00
|
|
|
}, {}, [-1, [false, false, false]]] call CBA_fnc_addKeybind; // UNBOUND
|
|
|
|
|
|
|
|
["ACE3 Common", QGVAR(carry), (localize LSTRING(CarryKeybind)), {
|
|
|
|
if (!alive ACE_player) exitWith {false};
|
|
|
|
if !([ACE_player, objNull, ["isNotDragging", "isNotCarrying"]] call EFUNC(common,canInteractWith)) exitWith {false};
|
|
|
|
|
|
|
|
// If we are drag/carrying something right now then just drop it:
|
|
|
|
if (ACE_player getVariable [QGVAR(isDragging), false]) exitWith {
|
|
|
|
[ACE_player, ACE_player getVariable [QGVAR(draggedObject), objNull]] call FUNC(dropObject);
|
|
|
|
false
|
|
|
|
};
|
|
|
|
if (ACE_player getVariable [QGVAR(isCarrying), false]) exitWith {
|
|
|
|
[ACE_player, ACE_player getVariable [QGVAR(carriedObject), objNull]] call FUNC(dropObject_carry);
|
|
|
|
false
|
|
|
|
};
|
|
|
|
|
|
|
|
private _cursor = cursorObject;
|
|
|
|
if ((isNull _cursor) || {(_cursor distance ACE_player) > 2.6}) exitWith {false};
|
|
|
|
if (!([ACE_player, _cursor] call FUNC(canCarry))) exitWith {false};
|
|
|
|
|
|
|
|
[ACE_player, _cursor] call FUNC(startCarry);
|
2016-10-05 22:54:57 +00:00
|
|
|
false
|
2020-06-13 20:51:47 +00:00
|
|
|
}, {}, [-1, [false, false, false]]] call CBA_fnc_addKeybind; // UNBOUND
|