2016-07-15 10:23:26 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
if (!hasInterface) exitWith {};
|
|
|
|
|
2019-03-24 22:17:48 +00:00
|
|
|
GVAR(target) = objNull;
|
|
|
|
GVAR(previousTarget) = objNull;
|
|
|
|
GVAR(selectedBodyPart) = 0;
|
|
|
|
GVAR(selectedCategory) = "triage";
|
|
|
|
|
2016-07-15 10:23:26 +00:00
|
|
|
GVAR(lastOpenedOn) = -1;
|
|
|
|
GVAR(pendingReopen) = false;
|
|
|
|
|
2019-03-24 22:17:48 +00:00
|
|
|
GVAR(menuPFH) = -1;
|
|
|
|
|
|
|
|
[] call FUNC(addTreatmentActions);
|
|
|
|
[] call FUNC(collectActions);
|
2016-09-21 12:36:00 +00:00
|
|
|
|
2016-07-15 10:23:26 +00:00
|
|
|
["ace_treatmentSucceded", {
|
|
|
|
if (GVAR(openAfterTreatment) && {GVAR(pendingReopen)}) then {
|
|
|
|
GVAR(pendingReopen) = false;
|
2019-03-24 22:17:48 +00:00
|
|
|
[FUNC(openMenu), GVAR(target)] call CBA_fnc_execNextFrame;
|
2016-07-15 10:23:26 +00:00
|
|
|
};
|
|
|
|
}] call CBA_fnc_addEventHandler;
|
|
|
|
|
2019-03-24 22:17:48 +00:00
|
|
|
["ACE3 Common", QGVAR(openMedicalMenuKey), localize LSTRING(OpenMedicalMenu), {
|
|
|
|
// Get target (cursorTarget and cursorObject), if not valid then target is ACE_player
|
|
|
|
TRACE_3("Open menu key",cursorTarget,cursorObject,ACE_player);
|
2016-07-15 10:23:26 +00:00
|
|
|
private _target = cursorTarget;
|
2019-03-24 22:17:48 +00:00
|
|
|
if !(_target isKindOf "CAManBase" && {[ACE_player, _target] call FUNC(canOpenMenu)}) then {
|
|
|
|
_target = cursorObject;
|
|
|
|
if !(_target isKindOf "CAManBase" && {[ACE_player, _target] call FUNC(canOpenMenu)}) then {
|
|
|
|
_target = ACE_player;
|
|
|
|
};
|
|
|
|
};
|
2016-07-15 10:23:26 +00:00
|
|
|
|
2019-03-24 22:17:48 +00:00
|
|
|
// Check conditions: canInteract and canOpenMenu
|
2017-08-22 18:30:56 +00:00
|
|
|
if !([ACE_player, _target, ["isNotInside", "isNotSwimming"]] call EFUNC(common,canInteractWith)) exitWith {false};
|
2016-07-15 10:23:26 +00:00
|
|
|
if !([ACE_player, _target] call FUNC(canOpenMenu)) exitWith {false};
|
|
|
|
|
|
|
|
// Statement
|
|
|
|
[_target] call FUNC(openMenu);
|
|
|
|
false
|
2016-09-21 12:36:00 +00:00
|
|
|
}, {
|
2019-03-24 22:17:48 +00:00
|
|
|
// Close menu if enough time passed from opening
|
2016-07-15 10:23:26 +00:00
|
|
|
if (CBA_missionTime - GVAR(lastOpenedOn) > 0.5) exitWith {
|
|
|
|
[objNull] call FUNC(openMenu);
|
|
|
|
};
|
|
|
|
false
|
2019-03-24 22:17:48 +00:00
|
|
|
}, [DIK_H, [false, false, false]], false, 0] call CBA_fnc_addKeybind;
|
2018-05-08 13:45:24 +00:00
|
|
|
|
|
|
|
|
2019-03-24 22:17:48 +00:00
|
|
|
// Close patient information display when interaction menu is closed
|
|
|
|
["ace_interactMenuClosed", {
|
|
|
|
QGVAR(RscPatientInfo) cutFadeOut 0.3;
|
|
|
|
}] call CBA_fnc_addEventHandler;
|