2 Copyright (C) 1996-1997 Id Software, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to:
18 Free Software Foundation, Inc.
19 59 Temple Place - Suite 330
20 Boston, MA 02111-1307, USA
28 cvar_t con_closeontoggleconsole = {CVAR_SAVE, "con_closeontoggleconsole","1", "allows toggleconsole binds to close the console as well; when set to 2, this even works when not at the start of the line in console input; when set to 3, this works even if the toggleconsole key is the color tag"};
31 key up events are sent even if in console mode
34 char key_line[MAX_INPUTLINE];
36 qboolean key_insert = true; // insert key toggle (for editing)
38 int key_consoleactive;
39 char *keybindings[MAX_BINDMAPS][MAX_KEYS];
42 char history_savedline[MAX_INPUTLINE];
43 char history_searchstring[MAX_INPUTLINE];
44 qboolean history_matchfound = false;
47 extern cvar_t con_textsize;
50 static void Key_History_Init(void)
53 ConBuffer_Init(&history, HIST_TEXTSIZE, HIST_MAXLINES, zonemempool);
55 // not necessary for mobile
56 #ifndef DP_MOBILETOUCH
57 historyfile = FS_OpenRealFile("darkplaces_history.txt", "rb", false); // rb to handle unix line endings on windows too
60 char buf[MAX_INPUTLINE];
67 c = FS_Getc(historyfile);
68 if(c < 0 || c == 0 || c == '\r' || c == '\n')
73 ConBuffer_AddLine(&history, buf, bufpos, 0);
81 if(bufpos < MAX_INPUTLINE - 1)
86 FS_Close(historyfile);
93 static void Key_History_Shutdown(void)
95 // TODO write history to a file
97 // not necessary for mobile
98 #ifndef DP_MOBILETOUCH
99 qfile_t *historyfile = FS_OpenRealFile("darkplaces_history.txt", "w", false);
103 for(i = 0; i < CONBUFFER_LINES_COUNT(&history); ++i)
104 FS_Printf(historyfile, "%s\n", ConBuffer_GetLine(&history, i));
105 FS_Close(historyfile);
109 ConBuffer_Shutdown(&history);
112 static void Key_History_Push(void)
114 if(key_line[1]) // empty?
115 if(strcmp(key_line, "]quit")) // putting these into the history just sucks
116 if(strncmp(key_line, "]quit ", 6)) // putting these into the history just sucks
117 if(strcmp(key_line, "]rcon_password")) // putting these into the history just sucks
118 if(strncmp(key_line, "]rcon_password ", 15)) // putting these into the history just sucks
119 ConBuffer_AddLine(&history, key_line + 1, (int)strlen(key_line) - 1, 0);
120 Con_Printf("%s\n", key_line); // don't mark empty lines as history
122 if (history_matchfound)
123 history_matchfound = false;
126 static qboolean Key_History_Get_foundCommand(void)
128 if (!history_matchfound)
130 strlcpy(key_line + 1, ConBuffer_GetLine(&history, history_line), sizeof(key_line) - 1);
131 key_linepos = (int)strlen(key_line);
132 history_matchfound = false;
136 static void Key_History_Up(void)
138 if(history_line == -1) // editing the "new" line
139 strlcpy(history_savedline, key_line + 1, sizeof(history_savedline));
141 if (Key_History_Get_foundCommand())
144 if(history_line == -1)
146 history_line = CONBUFFER_LINES_COUNT(&history) - 1;
147 if(history_line != -1)
149 strlcpy(key_line + 1, ConBuffer_GetLine(&history, history_line), sizeof(key_line) - 1);
150 key_linepos = (int)strlen(key_line);
153 else if(history_line > 0)
155 --history_line; // this also does -1 -> 0, so it is good
156 strlcpy(key_line + 1, ConBuffer_GetLine(&history, history_line), sizeof(key_line) - 1);
157 key_linepos = (int)strlen(key_line);
161 static void Key_History_Down(void)
163 if(history_line == -1) // editing the "new" line
166 if (Key_History_Get_foundCommand())
169 if(history_line < CONBUFFER_LINES_COUNT(&history) - 1)
172 strlcpy(key_line + 1, ConBuffer_GetLine(&history, history_line), sizeof(key_line) - 1);
177 strlcpy(key_line + 1, history_savedline, sizeof(key_line) - 1);
180 key_linepos = (int)strlen(key_line);
183 static void Key_History_First(void)
185 if(history_line == -1) // editing the "new" line
186 strlcpy(history_savedline, key_line + 1, sizeof(history_savedline));
188 if (CONBUFFER_LINES_COUNT(&history) > 0)
191 strlcpy(key_line + 1, ConBuffer_GetLine(&history, history_line), sizeof(key_line) - 1);
192 key_linepos = (int)strlen(key_line);
196 static void Key_History_Last(void)
198 if(history_line == -1) // editing the "new" line
199 strlcpy(history_savedline, key_line + 1, sizeof(history_savedline));
201 if (CONBUFFER_LINES_COUNT(&history) > 0)
203 history_line = CONBUFFER_LINES_COUNT(&history) - 1;
204 strlcpy(key_line + 1, ConBuffer_GetLine(&history, history_line), sizeof(key_line) - 1);
205 key_linepos = (int)strlen(key_line);
209 static void Key_History_Find_Backwards(void)
212 const char *partial = key_line + 1;
214 size_t digits = strlen(va(vabuf, sizeof(vabuf), "%i", HIST_MAXLINES));
216 if (history_line == -1) // editing the "new" line
217 strlcpy(history_savedline, key_line + 1, sizeof(history_savedline));
219 if (strcmp(key_line + 1, history_searchstring)) // different string? Start a new search
221 strlcpy(history_searchstring, key_line + 1, sizeof(history_searchstring));
222 i = CONBUFFER_LINES_COUNT(&history) - 1;
224 else if (history_line == -1)
225 i = CONBUFFER_LINES_COUNT(&history) - 1;
227 i = history_line - 1;
231 else if (!( strchr(partial, '*') || strchr(partial, '?') )) // no pattern?
232 partial = va(vabuf, sizeof(vabuf), "*%s*", partial);
235 if (matchpattern_with_separator(ConBuffer_GetLine(&history, i), partial, true, "", false))
237 Con_Printf("^2%*i^7 %s\n", (int)digits, i+1, ConBuffer_GetLine(&history, i));
239 history_matchfound = true;
244 static void Key_History_Find_Forwards(void)
247 const char *partial = key_line + 1;
249 size_t digits = strlen(va(vabuf, sizeof(vabuf), "%i", HIST_MAXLINES));
251 if (history_line == -1) // editing the "new" line
254 if (strcmp(key_line + 1, history_searchstring)) // different string? Start a new search
256 strlcpy(history_searchstring, key_line + 1, sizeof(history_searchstring));
259 else i = history_line + 1;
263 else if (!( strchr(partial, '*') || strchr(partial, '?') )) // no pattern?
264 partial = va(vabuf, sizeof(vabuf), "*%s*", partial);
266 for ( ; i < CONBUFFER_LINES_COUNT(&history); i++)
267 if (matchpattern_with_separator(ConBuffer_GetLine(&history, i), partial, true, "", false))
269 Con_Printf("^2%*i^7 %s\n", (int)digits, i+1, ConBuffer_GetLine(&history, i));
271 history_matchfound = true;
276 static void Key_History_Find_All(void)
278 const char *partial = key_line + 1;
281 size_t digits = strlen(va(vabuf, sizeof(vabuf), "%i", HIST_MAXLINES));
282 Con_Printf("History commands containing \"%s\":\n", key_line + 1);
286 else if (!( strchr(partial, '*') || strchr(partial, '?') )) // no pattern?
287 partial = va(vabuf, sizeof(vabuf), "*%s*", partial);
289 for (i=0; i<CONBUFFER_LINES_COUNT(&history); i++)
290 if (matchpattern_with_separator(ConBuffer_GetLine(&history, i), partial, true, "", false))
292 Con_Printf("%s%*i^7 %s\n", (i == history_line) ? "^2" : "^3", (int)digits, i+1, ConBuffer_GetLine(&history, i));
295 Con_Printf("%i result%s\n\n", count, (count != 1) ? "s" : "");
298 static void Key_History_f(void)
300 char *errchar = NULL;
303 size_t digits = strlen(va(vabuf, sizeof(vabuf), "%i", HIST_MAXLINES));
307 if (!strcmp(Cmd_Argv (1), "-c"))
309 ConBuffer_Clear(&history);
312 i = strtol(Cmd_Argv (1), &errchar, 0);
313 if ((i < 0) || (i > CONBUFFER_LINES_COUNT(&history)) || (errchar && *errchar))
316 i = CONBUFFER_LINES_COUNT(&history) - i;
319 for ( ; i<CONBUFFER_LINES_COUNT(&history); i++)
320 Con_Printf("^3%*i^7 %s\n", (int)digits, i+1, ConBuffer_GetLine(&history, i));
324 static int key_bmap, key_bmap2;
325 static unsigned char keydown[MAX_KEYS]; // 0 = up, 1 = down, 2 = repeating
327 typedef struct keyname_s
334 static const keyname_t keynames[] = {
337 {"ESCAPE", K_ESCAPE},
340 // spacer so it lines up with keys.h
342 {"BACKSPACE", K_BACKSPACE},
343 {"UPARROW", K_UPARROW},
344 {"DOWNARROW", K_DOWNARROW},
345 {"LEFTARROW", K_LEFTARROW},
346 {"RIGHTARROW", K_RIGHTARROW},
374 {"NUMLOCK", K_NUMLOCK},
375 {"CAPSLOCK", K_CAPSLOCK},
376 {"SCROLLOCK", K_SCROLLOCK},
378 {"KP_INS", K_KP_INS },
380 {"KP_END", K_KP_END },
382 {"KP_DOWNARROW", K_KP_DOWNARROW },
384 {"KP_PGDN", K_KP_PGDN },
386 {"KP_LEFTARROW", K_KP_LEFTARROW },
389 {"KP_RIGHTARROW", K_KP_RIGHTARROW },
391 {"KP_HOME", K_KP_HOME },
393 {"KP_UPARROW", K_KP_UPARROW },
395 {"KP_PGUP", K_KP_PGUP },
397 {"KP_DEL", K_KP_DEL },
398 {"KP_PERIOD", K_KP_PERIOD},
399 {"KP_SLASH", K_KP_SLASH },
400 {"KP_DIVIDE", K_KP_DIVIDE},
401 {"KP_MULTIPLY", K_KP_MULTIPLY},
402 {"KP_MINUS", K_KP_MINUS},
403 {"KP_PLUS", K_KP_PLUS},
404 {"KP_ENTER", K_KP_ENTER},
405 {"KP_EQUALS", K_KP_EQUALS},
407 {"PRINTSCREEN", K_PRINTSCREEN},
411 {"MOUSE1", K_MOUSE1},
413 {"MOUSE2", K_MOUSE2},
414 {"MOUSE3", K_MOUSE3},
415 {"MWHEELUP", K_MWHEELUP},
416 {"MWHEELDOWN", K_MWHEELDOWN},
417 {"MOUSE4", K_MOUSE4},
418 {"MOUSE5", K_MOUSE5},
419 {"MOUSE6", K_MOUSE6},
420 {"MOUSE7", K_MOUSE7},
421 {"MOUSE8", K_MOUSE8},
422 {"MOUSE9", K_MOUSE9},
423 {"MOUSE10", K_MOUSE10},
424 {"MOUSE11", K_MOUSE11},
425 {"MOUSE12", K_MOUSE12},
426 {"MOUSE13", K_MOUSE13},
427 {"MOUSE14", K_MOUSE14},
428 {"MOUSE15", K_MOUSE15},
429 {"MOUSE16", K_MOUSE16},
489 {"X360_DPAD_UP", K_X360_DPAD_UP},
490 {"X360_DPAD_DOWN", K_X360_DPAD_DOWN},
491 {"X360_DPAD_LEFT", K_X360_DPAD_LEFT},
492 {"X360_DPAD_RIGHT", K_X360_DPAD_RIGHT},
493 {"X360_START", K_X360_START},
494 {"X360_BACK", K_X360_BACK},
495 {"X360_LEFT_THUMB", K_X360_LEFT_THUMB},
496 {"X360_RIGHT_THUMB", K_X360_RIGHT_THUMB},
497 {"X360_LEFT_SHOULDER", K_X360_LEFT_SHOULDER},
498 {"X360_RIGHT_SHOULDER", K_X360_RIGHT_SHOULDER},
499 {"X360_A", K_X360_A},
500 {"X360_B", K_X360_B},
501 {"X360_X", K_X360_X},
502 {"X360_Y", K_X360_Y},
503 {"X360_LEFT_TRIGGER", K_X360_LEFT_TRIGGER},
504 {"X360_RIGHT_TRIGGER", K_X360_RIGHT_TRIGGER},
505 {"X360_LEFT_THUMB_UP", K_X360_LEFT_THUMB_UP},
506 {"X360_LEFT_THUMB_DOWN", K_X360_LEFT_THUMB_DOWN},
507 {"X360_LEFT_THUMB_LEFT", K_X360_LEFT_THUMB_LEFT},
508 {"X360_LEFT_THUMB_RIGHT", K_X360_LEFT_THUMB_RIGHT},
509 {"X360_RIGHT_THUMB_UP", K_X360_RIGHT_THUMB_UP},
510 {"X360_RIGHT_THUMB_DOWN", K_X360_RIGHT_THUMB_DOWN},
511 {"X360_RIGHT_THUMB_LEFT", K_X360_RIGHT_THUMB_LEFT},
512 {"X360_RIGHT_THUMB_RIGHT", K_X360_RIGHT_THUMB_RIGHT},
514 {"JOY_UP", K_JOY_UP},
515 {"JOY_DOWN", K_JOY_DOWN},
516 {"JOY_LEFT", K_JOY_LEFT},
517 {"JOY_RIGHT", K_JOY_RIGHT},
519 {"SEMICOLON", ';'}, // because a raw semicolon separates commands
523 {"APOSTROPHE", '\''},
524 {"BACKSLASH", '\\'}, // because a raw backslash is used for special characters
526 {"MIDINOTE0", K_MIDINOTE0},
527 {"MIDINOTE1", K_MIDINOTE1},
528 {"MIDINOTE2", K_MIDINOTE2},
529 {"MIDINOTE3", K_MIDINOTE3},
530 {"MIDINOTE4", K_MIDINOTE4},
531 {"MIDINOTE5", K_MIDINOTE5},
532 {"MIDINOTE6", K_MIDINOTE6},
533 {"MIDINOTE7", K_MIDINOTE7},
534 {"MIDINOTE8", K_MIDINOTE8},
535 {"MIDINOTE9", K_MIDINOTE9},
536 {"MIDINOTE10", K_MIDINOTE10},
537 {"MIDINOTE11", K_MIDINOTE11},
538 {"MIDINOTE12", K_MIDINOTE12},
539 {"MIDINOTE13", K_MIDINOTE13},
540 {"MIDINOTE14", K_MIDINOTE14},
541 {"MIDINOTE15", K_MIDINOTE15},
542 {"MIDINOTE16", K_MIDINOTE16},
543 {"MIDINOTE17", K_MIDINOTE17},
544 {"MIDINOTE18", K_MIDINOTE18},
545 {"MIDINOTE19", K_MIDINOTE19},
546 {"MIDINOTE20", K_MIDINOTE20},
547 {"MIDINOTE21", K_MIDINOTE21},
548 {"MIDINOTE22", K_MIDINOTE22},
549 {"MIDINOTE23", K_MIDINOTE23},
550 {"MIDINOTE24", K_MIDINOTE24},
551 {"MIDINOTE25", K_MIDINOTE25},
552 {"MIDINOTE26", K_MIDINOTE26},
553 {"MIDINOTE27", K_MIDINOTE27},
554 {"MIDINOTE28", K_MIDINOTE28},
555 {"MIDINOTE29", K_MIDINOTE29},
556 {"MIDINOTE30", K_MIDINOTE30},
557 {"MIDINOTE31", K_MIDINOTE31},
558 {"MIDINOTE32", K_MIDINOTE32},
559 {"MIDINOTE33", K_MIDINOTE33},
560 {"MIDINOTE34", K_MIDINOTE34},
561 {"MIDINOTE35", K_MIDINOTE35},
562 {"MIDINOTE36", K_MIDINOTE36},
563 {"MIDINOTE37", K_MIDINOTE37},
564 {"MIDINOTE38", K_MIDINOTE38},
565 {"MIDINOTE39", K_MIDINOTE39},
566 {"MIDINOTE40", K_MIDINOTE40},
567 {"MIDINOTE41", K_MIDINOTE41},
568 {"MIDINOTE42", K_MIDINOTE42},
569 {"MIDINOTE43", K_MIDINOTE43},
570 {"MIDINOTE44", K_MIDINOTE44},
571 {"MIDINOTE45", K_MIDINOTE45},
572 {"MIDINOTE46", K_MIDINOTE46},
573 {"MIDINOTE47", K_MIDINOTE47},
574 {"MIDINOTE48", K_MIDINOTE48},
575 {"MIDINOTE49", K_MIDINOTE49},
576 {"MIDINOTE50", K_MIDINOTE50},
577 {"MIDINOTE51", K_MIDINOTE51},
578 {"MIDINOTE52", K_MIDINOTE52},
579 {"MIDINOTE53", K_MIDINOTE53},
580 {"MIDINOTE54", K_MIDINOTE54},
581 {"MIDINOTE55", K_MIDINOTE55},
582 {"MIDINOTE56", K_MIDINOTE56},
583 {"MIDINOTE57", K_MIDINOTE57},
584 {"MIDINOTE58", K_MIDINOTE58},
585 {"MIDINOTE59", K_MIDINOTE59},
586 {"MIDINOTE60", K_MIDINOTE60},
587 {"MIDINOTE61", K_MIDINOTE61},
588 {"MIDINOTE62", K_MIDINOTE62},
589 {"MIDINOTE63", K_MIDINOTE63},
590 {"MIDINOTE64", K_MIDINOTE64},
591 {"MIDINOTE65", K_MIDINOTE65},
592 {"MIDINOTE66", K_MIDINOTE66},
593 {"MIDINOTE67", K_MIDINOTE67},
594 {"MIDINOTE68", K_MIDINOTE68},
595 {"MIDINOTE69", K_MIDINOTE69},
596 {"MIDINOTE70", K_MIDINOTE70},
597 {"MIDINOTE71", K_MIDINOTE71},
598 {"MIDINOTE72", K_MIDINOTE72},
599 {"MIDINOTE73", K_MIDINOTE73},
600 {"MIDINOTE74", K_MIDINOTE74},
601 {"MIDINOTE75", K_MIDINOTE75},
602 {"MIDINOTE76", K_MIDINOTE76},
603 {"MIDINOTE77", K_MIDINOTE77},
604 {"MIDINOTE78", K_MIDINOTE78},
605 {"MIDINOTE79", K_MIDINOTE79},
606 {"MIDINOTE80", K_MIDINOTE80},
607 {"MIDINOTE81", K_MIDINOTE81},
608 {"MIDINOTE82", K_MIDINOTE82},
609 {"MIDINOTE83", K_MIDINOTE83},
610 {"MIDINOTE84", K_MIDINOTE84},
611 {"MIDINOTE85", K_MIDINOTE85},
612 {"MIDINOTE86", K_MIDINOTE86},
613 {"MIDINOTE87", K_MIDINOTE87},
614 {"MIDINOTE88", K_MIDINOTE88},
615 {"MIDINOTE89", K_MIDINOTE89},
616 {"MIDINOTE90", K_MIDINOTE90},
617 {"MIDINOTE91", K_MIDINOTE91},
618 {"MIDINOTE92", K_MIDINOTE92},
619 {"MIDINOTE93", K_MIDINOTE93},
620 {"MIDINOTE94", K_MIDINOTE94},
621 {"MIDINOTE95", K_MIDINOTE95},
622 {"MIDINOTE96", K_MIDINOTE96},
623 {"MIDINOTE97", K_MIDINOTE97},
624 {"MIDINOTE98", K_MIDINOTE98},
625 {"MIDINOTE99", K_MIDINOTE99},
626 {"MIDINOTE100", K_MIDINOTE100},
627 {"MIDINOTE101", K_MIDINOTE101},
628 {"MIDINOTE102", K_MIDINOTE102},
629 {"MIDINOTE103", K_MIDINOTE103},
630 {"MIDINOTE104", K_MIDINOTE104},
631 {"MIDINOTE105", K_MIDINOTE105},
632 {"MIDINOTE106", K_MIDINOTE106},
633 {"MIDINOTE107", K_MIDINOTE107},
634 {"MIDINOTE108", K_MIDINOTE108},
635 {"MIDINOTE109", K_MIDINOTE109},
636 {"MIDINOTE110", K_MIDINOTE110},
637 {"MIDINOTE111", K_MIDINOTE111},
638 {"MIDINOTE112", K_MIDINOTE112},
639 {"MIDINOTE113", K_MIDINOTE113},
640 {"MIDINOTE114", K_MIDINOTE114},
641 {"MIDINOTE115", K_MIDINOTE115},
642 {"MIDINOTE116", K_MIDINOTE116},
643 {"MIDINOTE117", K_MIDINOTE117},
644 {"MIDINOTE118", K_MIDINOTE118},
645 {"MIDINOTE119", K_MIDINOTE119},
646 {"MIDINOTE120", K_MIDINOTE120},
647 {"MIDINOTE121", K_MIDINOTE121},
648 {"MIDINOTE122", K_MIDINOTE122},
649 {"MIDINOTE123", K_MIDINOTE123},
650 {"MIDINOTE124", K_MIDINOTE124},
651 {"MIDINOTE125", K_MIDINOTE125},
652 {"MIDINOTE126", K_MIDINOTE126},
653 {"MIDINOTE127", K_MIDINOTE127},
659 ==============================================================================
661 LINE TYPING INTO THE CONSOLE
663 ==============================================================================
667 Key_ClearEditLine (int edit_line)
669 memset (key_line, '\0', sizeof(key_line));
676 Interactive line editing and console scrollback
680 Key_Console (int key, int unicode)
682 // LordHavoc: copied most of this from Q2 to improve keyboard handling
709 case K_KP_RIGHTARROW:
729 if ((key == 'v' && keydown[K_CTRL]) || ((key == K_INS || key == K_KP_INS) && keydown[K_SHIFT]))
732 if ((cbd = Sys_GetClipboardData()) != 0)
739 if (*p == '\r' && *(p+1) == '\n')
744 else if (*p == '\n' || *p == '\r' || *p == '\b')
749 strtok(cbd, "\n\r\b");
751 i = (int)strlen(cbd);
752 if (i + key_linepos >= MAX_INPUTLINE)
753 i= MAX_INPUTLINE - key_linepos - 1;
756 // terencehill: insert the clipboard text between the characters of the line
758 char *temp = (char *) Z_Malloc(MAX_INPUTLINE);
761 if ( key_linepos < (int)strlen(key_line) )
762 strlcpy(temp, key_line + key_linepos, (int)strlen(key_line) - key_linepos +1);
763 key_line[key_linepos] = 0;
764 strlcat(key_line, cbd, sizeof(key_line));
766 strlcat(key_line, temp, sizeof(key_line));
770 // blub: I'm changing this to use memmove() like the rest of the code does.
772 memmove(key_line + key_linepos + i, key_line + key_linepos, sizeof(key_line) - key_linepos - i);
773 memcpy(key_line + key_linepos, cbd, i);
781 if (key == 'l' && keydown[K_CTRL])
783 Cbuf_AddText ("clear\n");
787 if (key == 'u' && keydown[K_CTRL]) // like vi/readline ^u: delete currently edited line
796 if (key == 'q' && keydown[K_CTRL]) // like zsh ^q: push line to history, don't execute, and clear
806 if (key == K_ENTER || key == K_KP_ENTER)
808 Cbuf_AddText (key_line+1); // skip the ]
812 key_line[1] = 0; // EvilTypeGuy: null terminate
814 // force an update, because the command may take some time
815 if (cls.state == ca_disconnected)
822 if(keydown[K_CTRL]) // append to the cvar its value
824 int cvar_len, cvar_str_len, chars_to_move;
826 char cvar[MAX_INPUTLINE];
827 const char *cvar_str;
829 // go to the start of the variable
832 k = key_line[key_linepos];
833 if(k == '\"' || k == ';' || k == ' ' || k == '\'')
838 // save the variable name in cvar
839 for(cvar_len=0; (k = key_line[key_linepos + cvar_len]) != 0; cvar_len++)
841 if(k == '\"' || k == ';' || k == ' ' || k == '\'')
849 // go to the end of the cvar
850 key_linepos += cvar_len;
852 // save the content of the variable in cvar_str
853 cvar_str = Cvar_VariableString(cvar);
854 cvar_str_len = (int)strlen(cvar_str);
858 // insert space and cvar_str in key_line
859 chars_to_move = (int)strlen(&key_line[key_linepos]);
860 if (key_linepos + 1 + cvar_str_len + chars_to_move < MAX_INPUTLINE)
863 memmove(&key_line[key_linepos + 1 + cvar_str_len], &key_line[key_linepos], chars_to_move);
864 key_line[key_linepos++] = ' ';
865 memcpy(&key_line[key_linepos], cvar_str, cvar_str_len);
866 key_linepos += cvar_str_len;
867 key_line[key_linepos + chars_to_move] = 0;
870 Con_Printf("Couldn't append cvar value, edit line too long.\n");
873 // Enhanced command completion
874 // by EvilTypeGuy eviltypeguy@qeradiant.com
875 // Thanks to Fett, Taniwha
876 Con_CompleteCommandLine();
880 // Advanced Console Editing by Radix radix@planetquake.com
881 // Added/Modified by EvilTypeGuy eviltypeguy@qeradiant.com
883 // Enhanced by terencehill
885 // move cursor to the previous character
886 if (key == K_LEFTARROW || key == K_KP_LEFTARROW)
890 if(keydown[K_CTRL]) // move cursor to the previous word
896 if(pos) // skip all "; ' after the word
900 if (!(k == '\"' || k == ';' || k == ' ' || k == '\''))
908 if(k == '\"' || k == ';' || k == ' ' || k == '\'')
911 key_linepos = pos + 1;
913 else if(keydown[K_SHIFT]) // move cursor to the previous character ignoring colors
917 pos = (int)u8_prevbyte(key_line+1, key_linepos-1) + 1; // do NOT give the ']' to u8_prevbyte
919 if(pos-1 > 0 && key_line[pos-1] == STRING_COLOR_TAG && isdigit(key_line[pos]))
921 else if(pos-4 > 0 && key_line[pos-4] == STRING_COLOR_TAG && key_line[pos-3] == STRING_COLOR_RGB_TAG_CHAR
922 && isxdigit(key_line[pos-2]) && isxdigit(key_line[pos-1]) && isxdigit(key_line[pos]))
926 if(pos-1 > 0 && key_line[pos-1] == STRING_COLOR_TAG && key_line[pos] == STRING_COLOR_TAG) // consider ^^ as a character
931 // we need to move to the beginning of the character when in a wide character:
932 u8_charidx(key_line, pos + 1, &inchar);
933 key_linepos = (int)(pos + 1 - inchar);
937 key_linepos = (int)u8_prevbyte(key_line+1, key_linepos-1) + 1; // do NOT give the ']' to u8_prevbyte
942 // delete char before cursor
943 if (key == K_BACKSPACE || (key == 'h' && keydown[K_CTRL]))
947 int newpos = (int)u8_prevbyte(key_line+1, key_linepos-1) + 1; // do NOT give the ']' to u8_prevbyte
948 strlcpy(key_line + newpos, key_line + key_linepos, sizeof(key_line) + 1 - key_linepos);
949 key_linepos = newpos;
954 // delete char on cursor
955 if (key == K_DEL || key == K_KP_DEL)
958 linelen = strlen(key_line);
959 if (key_linepos < (int)linelen)
960 memmove(key_line + key_linepos, key_line + key_linepos + u8_bytelen(key_line + key_linepos, 1), linelen - key_linepos);
965 // move cursor to the next character
966 if (key == K_RIGHTARROW || key == K_KP_RIGHTARROW)
968 if (key_linepos >= (int)strlen(key_line))
970 if(keydown[K_CTRL]) // move cursor to the next word
974 len = (int)strlen(key_line);
980 if(k == '\"' || k == ';' || k == ' ' || k == '\'')
984 if (pos < len) // skip all "; ' after the word
988 if (!(k == '\"' || k == ';' || k == ' ' || k == '\''))
993 else if(keydown[K_SHIFT]) // move cursor to the next character ignoring colors
996 len = (int)strlen(key_line);
999 // go beyond all initial consecutive color tags, if any
1001 while (key_line[pos] == STRING_COLOR_TAG)
1003 if(isdigit(key_line[pos+1]))
1005 else if(key_line[pos+1] == STRING_COLOR_RGB_TAG_CHAR && isxdigit(key_line[pos+2]) && isxdigit(key_line[pos+3]) && isxdigit(key_line[pos+4]))
1012 if (key_line[pos] == STRING_COLOR_TAG && key_line[pos+1] == STRING_COLOR_TAG) // consider ^^ as a character
1014 pos += (int)u8_bytelen(key_line + pos, 1);
1016 // now go beyond all next consecutive color tags, if any
1018 while (key_line[pos] == STRING_COLOR_TAG)
1020 if(isdigit(key_line[pos+1]))
1022 else if(key_line[pos+1] == STRING_COLOR_RGB_TAG_CHAR && isxdigit(key_line[pos+2]) && isxdigit(key_line[pos+3]) && isxdigit(key_line[pos+4]))
1030 key_linepos += (int)u8_bytelen(key_line + key_linepos, 1);
1034 if (key == K_INS || key == K_KP_INS) // toggle insert mode
1040 // End Advanced Console Editing
1042 if (key == K_UPARROW || key == K_KP_UPARROW || (key == 'p' && keydown[K_CTRL]))
1048 if (key == K_DOWNARROW || key == K_KP_DOWNARROW || (key == 'n' && keydown[K_CTRL]))
1053 // ~1.0795 = 82/76 using con_textsize 64 76 is height of the char, 6 is the distance between 2 lines
1055 if (keydown[K_CTRL])
1057 // prints all the matching commands
1060 Key_History_Find_All();
1063 // Search forwards/backwards, pointing the history's index to the
1064 // matching command but without fetching it to let one continue the search.
1065 // To fetch it, it suffices to just press UP or DOWN.
1068 if (keydown[K_SHIFT])
1069 Key_History_Find_Forwards();
1071 Key_History_Find_Backwards();
1074 // go to the last/first command of the history
1077 Key_History_First();
1087 if (key == K_PGUP || key == K_KP_PGUP)
1091 con_backscroll += ((vid_conheight.integer >> 2) / con_textsize.integer)-1;
1094 con_backscroll += ((vid_conheight.integer >> 1) / con_textsize.integer)-3;
1098 if (key == K_PGDN || key == K_KP_PGDN)
1102 con_backscroll -= ((vid_conheight.integer >> 2) / con_textsize.integer)-1;
1105 con_backscroll -= ((vid_conheight.integer >> 1) / con_textsize.integer)-3;
1109 if (key == K_MWHEELUP)
1112 con_backscroll += 1;
1113 else if(keydown[K_SHIFT])
1114 con_backscroll += ((vid_conheight.integer >> 2) / con_textsize.integer)-1;
1116 con_backscroll += 5;
1120 if (key == K_MWHEELDOWN)
1123 con_backscroll -= 1;
1124 else if(keydown[K_SHIFT])
1125 con_backscroll -= ((vid_conheight.integer >> 2) / con_textsize.integer)-1;
1127 con_backscroll -= 5;
1131 if (keydown[K_CTRL])
1134 if (key == '+' || key == K_KP_PLUS)
1136 if (con_textsize.integer < 128)
1137 Cvar_SetValueQuick(&con_textsize, con_textsize.integer + 1);
1141 if (key == '-' || key == K_KP_MINUS)
1143 if (con_textsize.integer > 1)
1144 Cvar_SetValueQuick(&con_textsize, con_textsize.integer - 1);
1148 if (key == '0' || key == K_KP_INS)
1150 Cvar_SetValueQuick(&con_textsize, atoi(Cvar_VariableDefString("con_textsize")));
1155 if (key == K_HOME || key == K_KP_HOME)
1157 if (keydown[K_CTRL])
1158 con_backscroll = CON_TEXTSIZE;
1164 if (key == K_END || key == K_KP_END)
1166 if (keydown[K_CTRL])
1169 key_linepos = (int)strlen(key_line);
1177 if (key_linepos < MAX_INPUTLINE-1)
1182 blen = u8_fromchar(unicode, buf, sizeof(buf));
1185 len = (int)strlen(&key_line[key_linepos]);
1186 // check insert mode, or always insert if at end of line
1187 if (key_insert || len == 0)
1189 // can't use strcpy to move string to right
1191 //memmove(&key_line[key_linepos + u8_bytelen(key_line + key_linepos, 1)], &key_line[key_linepos], len);
1192 if (key_linepos + blen + len >= MAX_INPUTLINE)
1194 memmove(&key_line[key_linepos + blen], &key_line[key_linepos], len);
1196 // FIXME: This is not proper overwriting with utf8.
1197 if (key_linepos + blen >= MAX_INPUTLINE)
1199 memcpy(key_line + key_linepos, buf, blen);
1201 key_line[key_linepos + blen] = 0;
1203 key_linepos += blen;
1204 //key_linepos += u8_fromchar(unicode, key_line + key_linepos, sizeof(key_line) - key_linepos - 1);
1205 //key_line[key_linepos] = ascii;
1210 //============================================================================
1213 char chat_buffer[MAX_INPUTLINE];
1214 unsigned int chat_bufferlen = 0;
1217 Key_Message (int key, int ascii)
1220 if (key == K_ENTER || ascii == 10 || ascii == 13)
1223 Cmd_ExecuteString(chat_buffer, src_command, true); // not Cbuf_AddText to allow semiclons in args; however, this allows no variables then. Use aliases!
1225 Cmd_ForwardStringToServer(va(vabuf, sizeof(vabuf), "%s %s", chat_mode ? "say_team" : "say ", chat_buffer));
1227 key_dest = key_game;
1233 // TODO add support for arrow keys and simple editing
1235 if (key == K_ESCAPE) {
1236 key_dest = key_game;
1242 if (key == K_BACKSPACE) {
1243 if (chat_bufferlen) {
1244 chat_bufferlen = (unsigned int)u8_prevbyte(chat_buffer, chat_bufferlen);
1245 chat_buffer[chat_bufferlen] = 0;
1251 chat_bufferlen = Nicks_CompleteChatLine(chat_buffer, sizeof(chat_buffer), chat_bufferlen);
1255 // ctrl+key generates an ascii value < 32 and shows a char from the charmap
1256 if (ascii > 0 && ascii < 32 && utf8_enable.integer)
1257 ascii = 0xE000 + ascii;
1259 if (chat_bufferlen == sizeof (chat_buffer) - 1)
1263 return; // non printable
1265 chat_bufferlen += u8_fromchar(ascii, chat_buffer+chat_bufferlen, sizeof(chat_buffer) - chat_bufferlen - 1);
1267 //chat_buffer[chat_bufferlen++] = ascii;
1268 //chat_buffer[chat_bufferlen] = 0;
1271 //============================================================================
1276 Returns a key number to be used to index keybindings[] by looking at
1277 the given string. Single ascii characters return themselves, while
1278 the K_* names are matched up.
1282 Key_StringToKeynum (const char *str)
1284 const keyname_t *kn;
1286 if (!str || !str[0])
1289 return tolower(str[0]);
1291 for (kn = keynames; kn->name; kn++) {
1292 if (!strcasecmp (str, kn->name))
1300 Returns a string (either a single ascii char, or a K_* name) for the
1302 FIXME: handle quote special (general escape sequence?)
1306 Key_KeynumToString (int keynum, char *tinystr, size_t tinystrlength)
1308 const keyname_t *kn;
1310 // -1 is an invalid code
1312 return "<KEY NOT FOUND>";
1314 // search overrides first, because some characters are special
1315 for (kn = keynames; kn->name; kn++)
1316 if (keynum == kn->keynum)
1319 // if it is printable, output it as a single character
1320 if (keynum > 32 && keynum < 256)
1322 if (tinystrlength >= 2)
1324 tinystr[0] = keynum;
1330 // if it is not overridden and not printable, we don't know what to do with it
1331 return "<UNKNOWN KEYNUM>";
1336 Key_SetBinding (int keynum, int bindmap, const char *binding)
1341 if (keynum == -1 || keynum >= MAX_KEYS)
1343 if ((bindmap < 0) || (bindmap >= MAX_BINDMAPS))
1346 // free old bindings
1347 if (keybindings[bindmap][keynum]) {
1348 Z_Free (keybindings[bindmap][keynum]);
1349 keybindings[bindmap][keynum] = NULL;
1351 if(!binding[0]) // make "" binds be removed --blub
1353 // allocate memory for new binding
1354 l = strlen (binding);
1355 newbinding = (char *)Z_Malloc (l + 1);
1356 memcpy (newbinding, binding, l + 1);
1358 keybindings[bindmap][keynum] = newbinding;
1362 void Key_GetBindMap(int *fg, int *bg)
1370 qboolean Key_SetBindMap(int fg, int bg)
1372 if(fg >= MAX_BINDMAPS)
1374 if(bg >= MAX_BINDMAPS)
1384 Key_In_Unbind_f (void)
1387 char *errchar = NULL;
1389 if (Cmd_Argc () != 3) {
1390 Con_Print("in_unbind <bindmap> <key> : remove commands from a key\n");
1394 m = strtol(Cmd_Argv (1), &errchar, 0);
1395 if ((m < 0) || (m >= MAX_BINDMAPS) || (errchar && *errchar)) {
1396 Con_Printf("%s isn't a valid bindmap\n", Cmd_Argv(1));
1400 b = Key_StringToKeynum (Cmd_Argv (2));
1402 Con_Printf("\"%s\" isn't a valid key\n", Cmd_Argv (2));
1406 if(!Key_SetBinding (b, m, ""))
1407 Con_Printf("Key_SetBinding failed for unknown reason\n");
1411 Key_In_Bind_f (void)
1414 char cmd[MAX_INPUTLINE];
1415 char *errchar = NULL;
1419 if (c != 3 && c != 4) {
1420 Con_Print("in_bind <bindmap> <key> [command] : attach a command to a key\n");
1424 m = strtol(Cmd_Argv (1), &errchar, 0);
1425 if ((m < 0) || (m >= MAX_BINDMAPS) || (errchar && *errchar)) {
1426 Con_Printf("%s isn't a valid bindmap\n", Cmd_Argv(1));
1430 b = Key_StringToKeynum (Cmd_Argv (2));
1431 if (b == -1 || b >= MAX_KEYS) {
1432 Con_Printf("\"%s\" isn't a valid key\n", Cmd_Argv (2));
1437 if (keybindings[m][b])
1438 Con_Printf("\"%s\" = \"%s\"\n", Cmd_Argv (2), keybindings[m][b]);
1440 Con_Printf("\"%s\" is not bound\n", Cmd_Argv (2));
1443 // copy the rest of the command line
1444 cmd[0] = 0; // start out with a null string
1445 for (i = 3; i < c; i++) {
1446 strlcat (cmd, Cmd_Argv (i), sizeof (cmd));
1448 strlcat (cmd, " ", sizeof (cmd));
1451 if(!Key_SetBinding (b, m, cmd))
1452 Con_Printf("Key_SetBinding failed for unknown reason\n");
1456 Key_In_Bindmap_f (void)
1459 char *errchar = NULL;
1464 Con_Print("in_bindmap <bindmap> <fallback>: set current bindmap and fallback\n");
1468 m1 = strtol(Cmd_Argv (1), &errchar, 0);
1469 if ((m1 < 0) || (m1 >= MAX_BINDMAPS) || (errchar && *errchar)) {
1470 Con_Printf("%s isn't a valid bindmap\n", Cmd_Argv(1));
1474 m2 = strtol(Cmd_Argv (2), &errchar, 0);
1475 if ((m2 < 0) || (m2 >= MAX_BINDMAPS) || (errchar && *errchar)) {
1476 Con_Printf("%s isn't a valid bindmap\n", Cmd_Argv(2));
1489 if (Cmd_Argc () != 2) {
1490 Con_Print("unbind <key> : remove commands from a key\n");
1494 b = Key_StringToKeynum (Cmd_Argv (1));
1496 Con_Printf("\"%s\" isn't a valid key\n", Cmd_Argv (1));
1500 if(!Key_SetBinding (b, 0, ""))
1501 Con_Printf("Key_SetBinding failed for unknown reason\n");
1505 Key_Unbindall_f (void)
1509 for (j = 0; j < MAX_BINDMAPS; j++)
1510 for (i = 0; i < (int)(sizeof(keybindings[0])/sizeof(keybindings[0][0])); i++)
1511 if (keybindings[j][i])
1512 Key_SetBinding (i, j, "");
1516 Key_PrintBindList(int j)
1518 char bindbuf[MAX_INPUTLINE];
1523 for (i = 0; i < (int)(sizeof(keybindings[0])/sizeof(keybindings[0][0])); i++)
1525 p = keybindings[j][i];
1528 Cmd_QuoteString(bindbuf, sizeof(bindbuf), p, "\"\\", false);
1530 Con_Printf("^2%s ^7= \"%s\"\n", Key_KeynumToString (i, tinystr, sizeof(tinystr)), bindbuf);
1532 Con_Printf("^3bindmap %d: ^2%s ^7= \"%s\"\n", j, Key_KeynumToString (i, tinystr, sizeof(tinystr)), bindbuf);
1538 Key_In_BindList_f (void)
1541 char *errchar = NULL;
1545 m = strtol(Cmd_Argv(1), &errchar, 0);
1546 if ((m < 0) || (m >= MAX_BINDMAPS) || (errchar && *errchar)) {
1547 Con_Printf("%s isn't a valid bindmap\n", Cmd_Argv(1));
1550 Key_PrintBindList(m);
1554 for (m = 0; m < MAX_BINDMAPS; m++)
1555 Key_PrintBindList(m);
1560 Key_BindList_f (void)
1562 Key_PrintBindList(0);
1569 char cmd[MAX_INPUTLINE];
1573 if (c != 2 && c != 3) {
1574 Con_Print("bind <key> [command] : attach a command to a key\n");
1577 b = Key_StringToKeynum (Cmd_Argv (1));
1578 if (b == -1 || b >= MAX_KEYS) {
1579 Con_Printf("\"%s\" isn't a valid key\n", Cmd_Argv (1));
1584 if (keybindings[0][b])
1585 Con_Printf("\"%s\" = \"%s\"\n", Cmd_Argv (1), keybindings[0][b]);
1587 Con_Printf("\"%s\" is not bound\n", Cmd_Argv (1));
1590 // copy the rest of the command line
1591 cmd[0] = 0; // start out with a null string
1592 for (i = 2; i < c; i++) {
1593 strlcat (cmd, Cmd_Argv (i), sizeof (cmd));
1595 strlcat (cmd, " ", sizeof (cmd));
1598 if(!Key_SetBinding (b, 0, cmd))
1599 Con_Printf("Key_SetBinding failed for unknown reason\n");
1604 Writes lines containing "bind key value"
1608 Key_WriteBindings (qfile_t *f)
1611 char bindbuf[MAX_INPUTLINE];
1615 for (j = 0; j < MAX_BINDMAPS; j++)
1617 for (i = 0; i < (int)(sizeof(keybindings[0])/sizeof(keybindings[0][0])); i++)
1619 p = keybindings[j][i];
1622 Cmd_QuoteString(bindbuf, sizeof(bindbuf), p, "\"\\", false); // don't need to escape $ because cvars are not expanded inside bind
1624 FS_Printf(f, "bind %s \"%s\"\n", Key_KeynumToString (i, tinystr, sizeof(tinystr)), bindbuf);
1626 FS_Printf(f, "in_bind %d %s \"%s\"\n", j, Key_KeynumToString (i, tinystr, sizeof(tinystr)), bindbuf);
1642 // register our functions
1644 Cmd_AddCommand ("in_bind", Key_In_Bind_f, "binds a command to the specified key in the selected bindmap");
1645 Cmd_AddCommand ("in_unbind", Key_In_Unbind_f, "removes command on the specified key in the selected bindmap");
1646 Cmd_AddCommand ("in_bindlist", Key_In_BindList_f, "bindlist: displays bound keys for all bindmaps, or the given bindmap");
1647 Cmd_AddCommand ("in_bindmap", Key_In_Bindmap_f, "selects active foreground and background (used only if a key is not bound in the foreground) bindmaps for typing");
1649 Cmd_AddCommand ("bind", Key_Bind_f, "binds a command to the specified key in bindmap 0");
1650 Cmd_AddCommand ("unbind", Key_Unbind_f, "removes a command on the specified key in bindmap 0");
1651 Cmd_AddCommand ("bindlist", Key_BindList_f, "bindlist: displays bound keys for bindmap 0 bindmaps");
1652 Cmd_AddCommand ("unbindall", Key_Unbindall_f, "removes all commands from all keys in all bindmaps (leaving only shift-escape and escape)");
1654 Cmd_AddCommand ("history", Key_History_f, "prints the history of executed commands (history X prints the last X entries, history -c clears the whole history)");
1656 Cvar_RegisterVariable (&con_closeontoggleconsole);
1662 Key_History_Shutdown();
1665 const char *Key_GetBind (int key, int bindmap)
1668 if (key < 0 || key >= MAX_KEYS)
1670 if(bindmap >= MAX_BINDMAPS)
1674 bind = keybindings[bindmap][key];
1678 bind = keybindings[key_bmap][key];
1680 bind = keybindings[key_bmap2][key];
1685 void Key_FindKeysForCommand (const char *command, int *keys, int numkeys, int bindmap)
1691 for (j = 0;j < numkeys;j++)
1694 if(bindmap >= MAX_BINDMAPS)
1699 for (j = 0; j < MAX_KEYS; ++j)
1701 b = Key_GetBind(j, bindmap);
1704 if (!strcmp (b, command) )
1707 if (count == numkeys)
1715 Called by the system between frames for both key up and key down events
1716 Should NOT be called during an interrupt!
1719 static char tbl_keyascii[MAX_KEYS];
1720 static keydest_t tbl_keydest[MAX_KEYS];
1722 typedef struct eventqueueitem_s
1729 static int events_blocked = 0;
1730 static eventqueueitem_t eventqueue[32];
1731 static unsigned eventqueue_idx = 0;
1733 static void Key_EventQueue_Add(int key, int ascii, qboolean down)
1735 if(eventqueue_idx < sizeof(eventqueue) / sizeof(*eventqueue))
1737 eventqueue[eventqueue_idx].key = key;
1738 eventqueue[eventqueue_idx].ascii = ascii;
1739 eventqueue[eventqueue_idx].down = down;
1744 void Key_EventQueue_Block(void)
1746 // block key events until call to Unblock
1747 events_blocked = true;
1750 void Key_EventQueue_Unblock(void)
1752 // unblocks key events again
1754 events_blocked = false;
1755 for(i = 0; i < eventqueue_idx; ++i)
1756 Key_Event(eventqueue[i].key, eventqueue[i].ascii, eventqueue[i].down);
1761 Key_Event (int key, int ascii, qboolean down)
1765 keydest_t keydest = key_dest;
1768 if (key < 0 || key >= MAX_KEYS)
1773 Key_EventQueue_Add(key, ascii, down);
1778 bind = keybindings[key_bmap][key];
1780 bind = keybindings[key_bmap2][key];
1782 if (developer_insane.integer)
1783 Con_DPrintf("Key_Event(%i, '%c', %s) keydown %i bind \"%s\"\n", key, ascii ? ascii : '?', down ? "down" : "up", keydown[key], bind ? bind : "");
1785 if(key_consoleactive)
1786 keydest = key_console;
1790 // increment key repeat count each time a down is received so that things
1791 // which want to ignore key repeat can ignore it
1792 keydown[key] = min(keydown[key] + 1, 2);
1793 if(keydown[key] == 1) {
1794 tbl_keyascii[key] = ascii;
1795 tbl_keydest[key] = keydest;
1797 ascii = tbl_keyascii[key];
1798 keydest = tbl_keydest[key];
1803 // clear repeat count now that the key is released
1805 keydest = tbl_keydest[key];
1806 ascii = tbl_keyascii[key];
1809 if(keydest == key_void)
1812 // key_consoleactive is a flag not a key_dest because the console is a
1813 // high priority overlay ontop of the normal screen (designed as a safety
1814 // feature so that developers and users can rescue themselves from a bad
1817 // this also means that toggling the console on/off does not lose the old
1820 // specially handle escape (togglemenu) and shift-escape (toggleconsole)
1821 // engine bindings, these are not handled as normal binds so that the user
1822 // can recover from a completely empty bindmap
1823 if (key == K_ESCAPE)
1825 // ignore key repeats on escape
1826 if (keydown[key] > 1)
1829 // escape does these things:
1830 // key_consoleactive - close console
1831 // key_message - abort messagemode
1832 // key_menu - go to parent menu (or key_game)
1833 // key_game - open menu
1835 // in all modes shift-escape toggles console
1836 if (keydown[K_SHIFT])
1840 Con_ToggleConsole_f ();
1841 tbl_keydest[key] = key_void; // esc release should go nowhere (especially not to key_menu or key_game)
1851 if(key_consoleactive & KEY_CONSOLEACTIVE_FORCED)
1853 key_consoleactive &= ~KEY_CONSOLEACTIVE_USER;
1859 Con_ToggleConsole_f();
1865 Key_Message (key, ascii); // that'll close the message input
1869 case key_menu_grabbed:
1871 MR_KeyEvent (key, ascii, down);
1876 // csqc has priority over toggle menu if it wants to (e.g. handling escape for UI stuff in-game.. :sick:)
1877 q = CL_VM_InputEvent(down ? 0 : 1, key, ascii);
1885 Con_Printf ("Key_Event: Bad key_dest\n");
1890 // send function keydowns to interpreter no matter what mode is (unless the menu has specifically grabbed the keyboard, for rebinding keys)
1891 // VorteX: Omnicide does bind F* keys
1892 if (keydest != key_menu_grabbed)
1893 if (key >= K_F1 && key <= K_F12 && gamemode != GAME_BLOODOMNICIDE)
1897 if(keydown[key] == 1 && down)
1899 // button commands add keynum as a parm
1901 Cbuf_AddText (va(vabuf, sizeof(vabuf), "%s %i\n", bind, key));
1904 Cbuf_AddText (bind);
1905 Cbuf_AddText ("\n");
1907 } else if(bind[0] == '+' && !down && keydown[key] == 0)
1908 Cbuf_AddText(va(vabuf, sizeof(vabuf), "-%s %i\n", bind + 1, key));
1913 // send input to console if it wants it
1914 if (keydest == key_console)
1918 // con_closeontoggleconsole enables toggleconsole keys to close the
1919 // console, as long as they are not the color prefix character
1920 // (special exemption for german keyboard layouts)
1921 if (con_closeontoggleconsole.integer && bind && !strncmp(bind, "toggleconsole", strlen("toggleconsole")) && (key_consoleactive & KEY_CONSOLEACTIVE_USER) && (con_closeontoggleconsole.integer >= ((ascii != STRING_COLOR_TAG) ? 2 : 3) || key_linepos == 1))
1923 Con_ToggleConsole_f ();
1927 if (COM_CheckParm ("-noconsole"))
1928 return; // only allow the key bind to turn off console
1930 Key_Console (key, ascii);
1934 // handle toggleconsole in menu too
1935 if (keydest == key_menu)
1937 if (down && con_closeontoggleconsole.integer && bind && !strncmp(bind, "toggleconsole", strlen("toggleconsole")) && ascii != STRING_COLOR_TAG)
1939 Con_ToggleConsole_f ();
1940 tbl_keydest[key] = key_void; // key release should go nowhere (especially not to key_menu or key_game)
1945 // ignore binds while a video is played, let the video system handle the key event
1946 if (cl_videoplaying)
1948 if (gamemode == GAME_BLOODOMNICIDE) // menu controls key events
1950 MR_KeyEvent(key, ascii, down);
1956 CL_Video_KeyEvent (key, ascii, keydown[key] != 0);
1960 // anything else is a key press into the game, chat line, or menu
1965 Key_Message (key, ascii);
1968 case key_menu_grabbed:
1970 MR_KeyEvent (key, ascii, down);
1974 q = CL_VM_InputEvent(down ? 0 : 1, key, ascii);
1975 // ignore key repeats on binds and only send the bind if the event hasnt been already processed by csqc
1978 if(keydown[key] == 1 && down)
1980 // button commands add keynum as a parm
1982 Cbuf_AddText (va(vabuf, sizeof(vabuf), "%s %i\n", bind, key));
1985 Cbuf_AddText (bind);
1986 Cbuf_AddText ("\n");
1988 } else if(bind[0] == '+' && !down && keydown[key] == 0)
1989 Cbuf_AddText(va(vabuf, sizeof(vabuf), "-%s %i\n", bind + 1, key));
1993 Con_Printf ("Key_Event: Bad key_dest\n");
1997 // a helper to simulate release of ALL keys
1999 Key_ReleaseAll (void)
2002 // clear the event queue first
2004 // then send all down events (possibly into the event queue)
2005 for(key = 0; key < MAX_KEYS; ++key)
2007 Key_Event(key, 0, false);
2008 // now all keys are guaranteed down (once the event queue is unblocked)
2009 // and only future events count
2018 Key_ClearStates (void)
2020 memset(keydown, 0, sizeof(keydown));