mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30 lines
631 B
Plaintext
30 lines
631 B
Plaintext
/*
|
|
* Author: commy2
|
|
*
|
|
* Get a key code used in ACE key input eh.
|
|
*
|
|
* Argument:
|
|
* 0: Arma DIK code (Number)
|
|
* 1: Key state for shift left and shift right key (Bool)
|
|
* 2: Key state for ctrl left and ctrl right key (Bool)
|
|
* 3: Key state for alt and alt gr key (Bool)
|
|
*
|
|
* Return value:
|
|
* Key code (Number)
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
#define KEY_MODIFIERS [42, 54, 29, 157, 56, 184]
|
|
|
|
private "_key";
|
|
|
|
_key = _this select 0;
|
|
|
|
if (_key in KEY_MODIFIERS) exitWith {_key};
|
|
|
|
if (_this select 1) then {_key = _key + 0.1};
|
|
if (_this select 2) then {_key = _key + 0.2};
|
|
if (_this select 3) then {_key = _key + 0.4};
|
|
|
|
_key
|