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
191 typedef enum keydest_e { key_game, key_message, key_menu, key_menu_grabbed } keydest_t;
193 #define MAX_INPUTLINES 32
194 #define MAX_BINDMAPS 8
195 #define MAX_KEYS 1024
196 extern int edit_line;
197 extern int history_line;
198 extern char key_lines[MAX_INPUTLINES][MAX_INPUTLINE];
199 extern int key_linepos;
200 extern qboolean key_insert; // insert key toggle (for editing)
201 extern keydest_t key_dest;
202 // key_consoleactive bits
203 // user wants console (halfscreen)
204 #define KEY_CONSOLEACTIVE_USER 1
205 // console forced because there's nothing else active (fullscreen)
206 #define KEY_CONSOLEACTIVE_FORCED 4
207 extern int key_consoleactive;
208 extern char *keybindings[MAX_BINDMAPS][MAX_KEYS];
210 extern void Key_ClearEditLine(int edit_line);
211 extern qboolean chat_team;
212 extern char chat_buffer[MAX_INPUTLINE];
213 extern unsigned int chat_bufferlen;
215 void Key_WriteBindings(qfile_t *f);
217 void Key_Init_Cvars(void);
218 void Key_Event(int key, char ascii, qboolean down);
219 void Key_ClearStates (void);
220 void Key_SetBinding (int keynum, int bindmap, const char *binding);