1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Overhaul the input system

This allows us to map the keys which are not considered in
irrlicht's EKEY_CODE system, such as \, [, /, ] etc.
This commit is contained in:
Giuseppe Bilotta 2011-08-13 22:44:31 +02:00
parent 16aedc0ef6
commit 7e610aece5
8 changed files with 329 additions and 176 deletions

View file

@ -27,6 +27,7 @@
#include "modalMenu.h"
#include "client.h"
#include "gettext.h"
#include "keycode.h"
#include <string>
enum
@ -88,19 +89,19 @@ private:
gui::IGUIButton *chat;
s32 activeKey;
s32 key_forward;
s32 key_backward;
s32 key_left;
s32 key_right;
s32 key_use;
s32 key_sneak;
s32 key_jump;
s32 key_inventory;
s32 key_fly;
s32 key_fast;
s32 key_range;
s32 key_chat;
s32 key_dump;
KeyPress key_forward;
KeyPress key_backward;
KeyPress key_left;
KeyPress key_right;
KeyPress key_use;
KeyPress key_sneak;
KeyPress key_jump;
KeyPress key_inventory;
KeyPress key_fly;
KeyPress key_fast;
KeyPress key_range;
KeyPress key_chat;
KeyPress key_dump;
};
#endif