2015-05-28 19:59:04 +00:00
|
|
|
["ACE3 Equipment", QGVAR(KestrelDialogKey), localize LSTRING(KestrelDialogKey),
|
2015-04-07 15:43:54 +00:00
|
|
|
{
|
|
|
|
// Conditions: canInteract
|
|
|
|
if !([ACE_player, objNull, []] call EFUNC(common,canInteractWith)) exitWith {false};
|
2015-05-17 09:23:31 +00:00
|
|
|
if (GVAR(Kestrel4500)) exitWith {
|
|
|
|
closeDialog 0;
|
|
|
|
false
|
|
|
|
};
|
2015-04-07 15:43:54 +00:00
|
|
|
// Statement
|
|
|
|
[] call FUNC(createKestrelDialog);
|
|
|
|
false
|
|
|
|
},
|
|
|
|
{false},
|
2015-04-15 13:06:28 +00:00
|
|
|
[0, [false, false, false]], false, 0] call CBA_fnc_addKeybind; // (empty default key)
|
2015-04-07 15:43:54 +00:00
|
|
|
|
2015-05-28 19:59:04 +00:00
|
|
|
["ACE3 Equipment", QGVAR(DisplayKestrelKey), localize LSTRING(DisplayKestrelKey),
|
2015-04-07 15:43:54 +00:00
|
|
|
{
|
|
|
|
// Conditions: canInteract
|
|
|
|
if !([ACE_player, objNull, []] call EFUNC(common,canInteractWith)) exitWith {false};
|
2015-05-09 19:41:01 +00:00
|
|
|
|
2015-04-07 15:43:54 +00:00
|
|
|
// Statement
|
|
|
|
[] call FUNC(displayKestrel);
|
|
|
|
false
|
|
|
|
},
|
|
|
|
{false},
|
2015-04-15 13:06:28 +00:00
|
|
|
[0, [true, false, false]], false, 0] call CBA_fnc_addKeybind; // (empty default key)
|
2015-06-05 22:50:04 +00:00
|
|
|
|
2015-05-10 21:54:24 +00:00
|
|
|
//Add deviceKey entry:
|
|
|
|
private ["_conditonCode", "_toggleCode", "_closeCode"];
|
|
|
|
_conditonCode = {
|
|
|
|
[] call FUNC(canShow);
|
|
|
|
};
|
|
|
|
_toggleCode = {
|
2015-04-07 15:43:54 +00:00
|
|
|
// Conditions: canInteract
|
|
|
|
if !([ACE_player, objNull, []] call EFUNC(common,canInteractWith)) exitWith {false};
|
2015-05-09 19:41:01 +00:00
|
|
|
|
2015-04-07 15:43:54 +00:00
|
|
|
// Statement
|
2015-05-12 02:49:13 +00:00
|
|
|
if (!GVAR(Overlay)) then {
|
|
|
|
//If no overlay, show it:
|
|
|
|
[] call FUNC(displayKestrel);
|
|
|
|
} else {
|
|
|
|
//If overlay is up, switch to dialog:
|
|
|
|
[] call FUNC(createKestrelDialog);
|
|
|
|
};
|
2015-05-10 21:54:24 +00:00
|
|
|
};
|
|
|
|
_closeCode = {
|
2015-04-07 15:43:54 +00:00
|
|
|
// Conditions: canInteract
|
|
|
|
if !([ACE_player, objNull, []] call EFUNC(common,canInteractWith)) exitWith {false};
|
2015-05-12 02:49:13 +00:00
|
|
|
|
2015-04-07 15:43:54 +00:00
|
|
|
// Statement
|
2015-05-12 02:49:13 +00:00
|
|
|
if (GVAR(Overlay)) then {
|
|
|
|
//If dispaly is open, close it:
|
|
|
|
GVAR(Overlay) = false;
|
|
|
|
};
|
|
|
|
if (dialog && {!isNull (uiNamespace getVariable ["Kestrel4500_Display", displayNull])}) then {
|
|
|
|
//If dialog is open, close it:
|
|
|
|
GVAR(Kestrel4500) = false;
|
|
|
|
closeDialog 0;
|
|
|
|
};
|
2015-04-07 15:43:54 +00:00
|
|
|
false
|
2015-05-10 21:54:24 +00:00
|
|
|
};
|
2015-05-12 02:49:13 +00:00
|
|
|
|
|
|
|
[(localize "STR_ACE_Kestrel_Name"), QUOTE(PATHTOF(UI\Kestrel4500.paa)), _conditonCode, _toggleCode, _closeCode] call EFUNC(common,deviceKeyRegisterNew);
|