2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-02-21 20:11:03 +00:00
|
|
|
/*
|
2015-03-24 15:27:27 +00:00
|
|
|
* Author: NouberNou and esteldunedain
|
|
|
|
* Handle interactions key up
|
2015-02-21 20:11:03 +00:00
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Arguments:
|
2015-03-24 15:27:27 +00:00
|
|
|
* 0: Type of key: 0 interaction / 1 self interaction <NUMBER>
|
2015-02-21 20:11:03 +00:00
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Return Value:
|
2015-02-21 20:11:03 +00:00
|
|
|
* true <BOOL>
|
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
|
|
|
* [1] call ACE_interact_menu_fnc_keyUp
|
|
|
|
*
|
2015-02-21 20:11:03 +00:00
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-18 18:38:27 +00:00
|
|
|
|
2015-08-04 22:46:57 +00:00
|
|
|
params ["_menuType", "_calledByClicking"];
|
2015-04-25 06:23:54 +00:00
|
|
|
|
2015-03-24 15:27:27 +00:00
|
|
|
// Exit if there's no menu opened
|
|
|
|
if (GVAR(openedMenuType) < 0) exitWith {true};
|
|
|
|
|
2015-03-31 21:05:47 +00:00
|
|
|
if (uiNamespace getVariable [QGVAR(cursorMenuOpened),false]) then {
|
2015-05-02 04:33:28 +00:00
|
|
|
(findDisplay 91919) closeDisplay 2;
|
2015-03-31 21:05:47 +00:00
|
|
|
};
|
|
|
|
|
2020-02-23 10:59:14 +00:00
|
|
|
if (GVAR(actionSelected)) then {
|
2016-01-08 04:43:37 +00:00
|
|
|
private _player = ACE_Player;
|
|
|
|
private _target = GVAR(selectedTarget);
|
2015-03-21 23:30:27 +00:00
|
|
|
|
|
|
|
// Clear the conditions caches
|
2016-05-24 23:57:41 +00:00
|
|
|
[QGVAR(clearConditionCaches), []] call CBA_fnc_localEvent;
|
2015-03-21 23:30:27 +00:00
|
|
|
|
2015-04-25 06:23:54 +00:00
|
|
|
// exit scope if selecting an action on key release is disabled
|
|
|
|
if (!(GVAR(actionOnKeyRelease)) && !_calledByClicking) exitWith {};
|
|
|
|
|
2015-03-21 23:30:27 +00:00
|
|
|
// Check the action conditions
|
2016-01-08 04:43:37 +00:00
|
|
|
private _actionData = GVAR(selectedAction) select 0;
|
2020-11-08 14:54:14 +00:00
|
|
|
|
|
|
|
// Use global variable this for action condition and action code
|
|
|
|
private _savedThis = this;
|
|
|
|
this = GVAR(selectedTarget);
|
|
|
|
|
2015-03-21 23:30:27 +00:00
|
|
|
if ([_target, _player, _actionData select 6] call (_actionData select 4)) then {
|
2015-03-21 23:37:01 +00:00
|
|
|
// Call the statement
|
2015-03-21 23:30:27 +00:00
|
|
|
[_target, _player, _actionData select 6] call (_actionData select 3);
|
2015-03-21 23:37:01 +00:00
|
|
|
|
|
|
|
// Clear the conditions caches again if the action was performed
|
2016-05-24 23:57:41 +00:00
|
|
|
[QGVAR(clearConditionCaches), []] call CBA_fnc_localEvent;
|
2015-03-21 23:30:27 +00:00
|
|
|
};
|
2020-11-08 14:54:14 +00:00
|
|
|
|
|
|
|
// Restore this variable
|
|
|
|
this = _savedThis;
|
2015-01-18 18:38:27 +00:00
|
|
|
};
|
2015-03-11 03:49:46 +00:00
|
|
|
|
2016-05-24 13:13:11 +00:00
|
|
|
["ace_interactMenuClosed", [GVAR(openedMenuType)]] call CBA_fnc_localEvent;
|
2015-06-08 12:00:03 +00:00
|
|
|
|
2016-08-05 17:05:15 +00:00
|
|
|
//Remove the "DefaultAction" action event handler
|
|
|
|
GVAR(blockDefaultActions) params [["_player", objNull], ["_ehid", -1]];
|
|
|
|
TRACE_2("blockDefaultActions",_player,_ehid);
|
|
|
|
if (!isNull _player) then {
|
|
|
|
[_player, "DefaultAction", _ehid] call EFUNC(common,removeActionEventHandler);
|
|
|
|
GVAR(blockDefaultActions) = [];
|
|
|
|
};
|
|
|
|
|
2015-03-24 15:27:27 +00:00
|
|
|
GVAR(keyDown) = false;
|
|
|
|
GVAR(keyDownSelfAction) = false;
|
|
|
|
GVAR(openedMenuType) = -1;
|
|
|
|
|
2015-01-18 18:38:27 +00:00
|
|
|
GVAR(expanded) = false;
|
|
|
|
GVAR(lastPath) = [];
|
|
|
|
GVAR(menuDepthPath) = [];
|
2015-03-24 15:27:27 +00:00
|
|
|
|
2015-01-18 18:38:27 +00:00
|
|
|
true
|