mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
122 lines
3.3 KiB
Plaintext
122 lines
3.3 KiB
Plaintext
|
/*
|
||
|
* Author: Alganthe
|
||
|
* Handles keyboard inputs in arsenal.
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: Arsenal display <DISPLAY>
|
||
|
* 1: Key being pressed <SCALAR>
|
||
|
* 2: Shift state <BOOL>
|
||
|
* 3: Ctrl state <BOOL>
|
||
|
* 4: Alt state <BOOL>
|
||
|
*
|
||
|
* Return Value:
|
||
|
* None
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
#include "script_component.hpp"
|
||
|
#include "..\defines.hpp"
|
||
|
#include "\A3\ui_f\hpp\defineDIKCodes.inc"
|
||
|
|
||
|
params ["", "_args"];
|
||
|
_args params ["_display", "_keyPressed", "_shiftState", "_ctrlState", "_altState"];
|
||
|
|
||
|
if !((findDisplay IDD_loadouts_display) isEqualTo displayNull) exitWith {};
|
||
|
|
||
|
GVAR(shiftState) = _shiftState;
|
||
|
|
||
|
private _return = true;
|
||
|
|
||
|
if (!GVAR(leftSearchbarFocus) && {!GVAR(rightSearchbarFocus)}) then {
|
||
|
|
||
|
switch true do {
|
||
|
// Close button
|
||
|
case (_keyPressed == DIK_ESCAPE): {
|
||
|
_display closeDisplay 2;
|
||
|
};
|
||
|
// Hide button
|
||
|
case (_keyPressed == DIK_BACKSPACE): {
|
||
|
[_display] call FUNC(buttonHide);
|
||
|
};
|
||
|
// Export button
|
||
|
case (_keyPressed == DIK_C && {_ctrlState}): {
|
||
|
[_display] call FUNC(buttonExport);
|
||
|
};
|
||
|
// Import button
|
||
|
case (_keyPressed == DIK_V && {_ctrlState}): {
|
||
|
[_display] call FUNC(buttonImport);
|
||
|
};
|
||
|
// Switch vision mode
|
||
|
case (_keyPressed in (actionkeys "nightvision")): {
|
||
|
if (isNil QGVAR(visionMode)) then {
|
||
|
GVAR(visionMode) = 0;
|
||
|
};
|
||
|
GVAR(visionMode) = (GVAR(visionMode) + 1) % 3;
|
||
|
|
||
|
switch GVAR(visionMode) do {
|
||
|
//--- Normal
|
||
|
case 0: {
|
||
|
camusenvg false;
|
||
|
false setCamUseTi 0;
|
||
|
};
|
||
|
//--- NVG
|
||
|
case 1: {
|
||
|
camusenvg true;
|
||
|
false setCamUseTi 0;
|
||
|
};
|
||
|
//--- TI
|
||
|
default {
|
||
|
camusenvg false;
|
||
|
true setCamUseTi 0;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
playsound ["RscDisplayCurator_visionMode",true];
|
||
|
};
|
||
|
};
|
||
|
} else {
|
||
|
switch true do {
|
||
|
case (_keyPressed == DIK_ESCAPE): {
|
||
|
_display closeDisplay 2;
|
||
|
};
|
||
|
case (_keyPressed == DIK_BACKSPACE): {
|
||
|
_return = false;
|
||
|
};
|
||
|
case (_keyPressed == DIK_RETURN): {
|
||
|
if (GVAR(leftSearchbarFocus)) then {
|
||
|
[_display, _display displayCtrl IDC_leftSearchbar] call FUNC(handleSearchBar);
|
||
|
};
|
||
|
if (GVAR(rightSearchbarFocus)) then {
|
||
|
[_display, _display displayCtrl IDC_rightSearchbar] call FUNC(handleSearchBar);
|
||
|
};
|
||
|
};
|
||
|
case (_keyPressed in [DIK_LEFT, DIK_RIGHT]): {
|
||
|
_return = false;
|
||
|
};
|
||
|
case (_keyPressed == DIK_C && {_ctrlState}): {
|
||
|
_return = false;
|
||
|
};
|
||
|
case (_keyPressed == DIK_V && {_ctrlState}): {
|
||
|
_return = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
if (GVAR(leftTabFocus) && {_keyPressed in [DIK_UP, DIK_DOWN]}) then {
|
||
|
_return = false;
|
||
|
};
|
||
|
|
||
|
if (GVAR(rightTabFocus) && {_keyPressed in [DIK_UP, DIK_DOWN]}) then {
|
||
|
_return = false;
|
||
|
};
|
||
|
|
||
|
if (GVAR(rightTabLnBFocus) && {_keyPressed in [DIK_UP, DIK_DOWN]}) then {
|
||
|
_return = false;
|
||
|
};
|
||
|
|
||
|
if (GVAR(rightTabLnBFocus) && {_keyPressed in [DIK_LEFT, DIK_RIGHT]}) then {
|
||
|
[_display, [1, 0] select (_keyPressed == DIK_LEFT)] call FUNC(buttonCargo);
|
||
|
};
|
||
|
|
||
|
_return
|