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
|
|
|
*
|
|
|
|
* Argument:
|
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
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
* true <BOOL>
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-18 18:38:27 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-03-24 15:27:27 +00:00
|
|
|
// Exit if there's no menu opened
|
|
|
|
if (GVAR(openedMenuType) < 0) exitWith {true};
|
|
|
|
|
2015-01-18 18:38:27 +00:00
|
|
|
if(GVAR(actionSelected)) then {
|
2015-02-19 13:49:36 +00:00
|
|
|
this = GVAR(selectedTarget);
|
2015-03-21 23:30:27 +00:00
|
|
|
|
|
|
|
private ["_player","_target","_actionData"];
|
2015-01-18 18:38:27 +00:00
|
|
|
_player = ACE_Player;
|
|
|
|
_target = GVAR(selectedTarget);
|
2015-03-21 23:30:27 +00:00
|
|
|
|
|
|
|
// Clear the conditions caches
|
|
|
|
["clearConditionCaches", []] call EFUNC(common,localEvent);
|
|
|
|
|
|
|
|
// Check the action conditions
|
|
|
|
_actionData = GVAR(selectedAction) select 0;
|
|
|
|
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
|
|
|
|
["clearConditionCaches", []] call EFUNC(common,localEvent);
|
2015-03-21 23:30:27 +00:00
|
|
|
};
|
2015-01-18 18:38:27 +00:00
|
|
|
};
|
2015-03-11 03:49:46 +00:00
|
|
|
|
2015-03-24 15:27:27 +00:00
|
|
|
GVAR(keyDown) = false;
|
|
|
|
GVAR(keyDownSelfAction) = false;
|
|
|
|
GVAR(openedMenuType) = -1;
|
|
|
|
|
|
|
|
if (uiNamespace getVariable [QGVAR(cursorMenuOpened),false]) then {
|
|
|
|
closeDialog 0;
|
2015-03-11 03:49:46 +00:00
|
|
|
};
|
|
|
|
|
2015-01-18 18:38:27 +00:00
|
|
|
GVAR(expanded) = false;
|
|
|
|
GVAR(lastPath) = [];
|
|
|
|
GVAR(menuDepthPath) = [];
|
2015-03-24 15:27:27 +00:00
|
|
|
|
|
|
|
["interactMenuClosed", [GVAR(openedMenuType)]] call EFUNC(common,localEvent);
|
|
|
|
|
2015-01-18 18:38:27 +00:00
|
|
|
true
|