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
83 K_KP_DOWNARROW = K_KP_2,
87 K_KP_LEFTARROW = K_KP_4,
90 K_KP_RIGHTARROW = K_KP_6,
94 K_KP_UPARROW = K_KP_8,
98 K_KP_DEL = K_KP_PERIOD,
100 K_KP_SLASH = K_KP_DIVIDE,
107 // mouse buttons generate virtual keys
110 K_OTHERDEVICESBEGIN = K_MOUSE1,
150 // aux keys are for multi-buttoned joysticks to generate so they can use
151 // the normal binding process
189 typedef enum keydest_e { key_game, key_message, key_menu } keydest_t;
191 #define MAX_INPUTLINES 32
192 #define MAX_BINDMAPS 8
193 #define MAX_KEYS 1024
194 extern int edit_line;
195 extern int history_line;
196 extern char key_lines[MAX_INPUTLINES][MAX_INPUTLINE];
197 extern int key_linepos;
198 extern qboolean key_insert; // insert key toggle (for editing)
199 extern keydest_t key_dest;
200 // key_consoleactive bits
201 // user wants console (halfscreen)
202 #define KEY_CONSOLEACTIVE_USER 1
203 // console forced because there's nothing else active (fullscreen)
204 #define KEY_CONSOLEACTIVE_FORCED 4
205 extern int key_consoleactive;
206 extern char *keybindings[MAX_BINDMAPS][MAX_KEYS];
208 extern void Key_ClearEditLine(int edit_line);
209 extern qboolean chat_team;
210 extern char chat_buffer[MAX_INPUTLINE];
211 extern unsigned int chat_bufferlen;
213 void Key_WriteBindings(qfile_t *f);
215 void Key_Init_Cvars(void);
216 void Key_Event(int key, char ascii, qboolean down);
217 void Key_ClearStates (void);
218 void Key_SetBinding (int keynum, int bindmap, const char *binding);