4 Copyright (C) 1996-1997 Id Software, Inc.
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 2
9 of the License, or (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15 See the GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to:
20 Free Software Foundation, Inc.
21 59 Temple Place - Suite 330
22 Boston, MA 02111-1307, USA
33 // these are the key numbers that should be passed to Key_Event
42 // normal keys should be passed as lowercased ascii
85 K_KP_DOWNARROW = K_KP_2,
89 K_KP_LEFTARROW = K_KP_4,
92 K_KP_RIGHTARROW = K_KP_6,
96 K_KP_UPARROW = K_KP_8,
100 K_KP_DEL = K_KP_PERIOD,
102 K_KP_SLASH = K_KP_DIVIDE,
109 // mouse buttons generate virtual keys
112 K_OTHERDEVICESBEGIN = K_MOUSE1,
152 // aux keys are for multi-buttoned joysticks to generate so they can use
153 // the normal binding process
188 K_MIDINOTE0 = 896, // to this, the note number is added
319 typedef enum keydest_e { key_game, key_message, key_menu, key_menu_grabbed, key_console, key_void } keydest_t;
321 #define MAX_BINDMAPS 8
322 #define MAX_KEYS 1024
323 extern char key_line[MAX_INPUTLINE];
324 extern int key_linepos;
325 extern qboolean key_insert; // insert key toggle (for editing)
326 extern keydest_t key_dest;
327 // key_consoleactive bits
328 // user wants console (halfscreen)
329 #define KEY_CONSOLEACTIVE_USER 1
330 // console forced because there's nothing else active (fullscreen)
331 #define KEY_CONSOLEACTIVE_FORCED 4
332 extern int key_consoleactive;
333 extern char *keybindings[MAX_BINDMAPS][MAX_KEYS];
335 extern void Key_ClearEditLine(int edit_line);
336 extern int chat_mode; // 0 for say, 1 for say_team, -1 for command
337 extern char chat_buffer[MAX_INPUTLINE];
338 extern unsigned int chat_bufferlen;
340 void Key_WriteBindings(qfile_t *f);
342 void Key_Shutdown(void);
343 void Key_Init_Cvars(void);
344 void Key_Event(int key, int ascii, qboolean down);
345 void Key_ClearStates (void);
346 void Key_SetBinding (int keynum, int bindmap, const char *binding);