ACE3/addons/common/functions/fnc_convertKeyCode.sqf

31 lines
671 B
Plaintext
Raw Normal View History

/*
* Author: commy2
2015-09-18 13:40:51 +00:00
* Get a key code used in AGM key input eh.
*
2015-09-18 13:40:51 +00:00
* Arguments:
* 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>
*
2015-09-18 13:40:51 +00:00
* Return Value:
* Key code <NUMBER>
*
2015-09-18 13:40:51 +00:00
* Public: Yes
*
* Deprecated
*/
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
#define KEY_MODIFIERS [42, 54, 29, 157, 56, 184]
2015-09-18 13:40:51 +00:00
params ["_key", "_stateShift", "_stateCtrl", "_stateAlt"];
if (_key in KEY_MODIFIERS) exitWith {_key};
2015-09-18 13:40:51 +00:00
if (_stateShift) then {_key = _key + 0.1};
if (_stateCtrl) then {_key = _key + 0.2};
if (_stateAlt) then {_key = _key + 0.4};
_key