X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=keys.c;h=817ce92da6a38ae589788aa4f374b33ba420db61;hb=5341d9394eaad8c3752d9a318f9308d47c428b54;hp=cbc05ed032900c19371062af3eea56a15352530d;hpb=17e6fe85ea21f57b49093d6d3a35aa7d6851752c;p=xonotic%2Fdarkplaces.git diff --git a/keys.c b/keys.c index cbc05ed0..817ce92d 100644 --- a/keys.c +++ b/keys.c @@ -24,7 +24,7 @@ #include "cl_video.h" #include "utf8lib.h" -cvar_t con_closeontoggleconsole = {CVAR_SAVE, "con_closeontoggleconsole","1", "allows toggleconsole binds to close the console as well"}; +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"}; /* key up events are sent even if in console mode @@ -473,6 +473,36 @@ static const keyname_t keynames[] = { {"AUX31", K_AUX31}, {"AUX32", K_AUX32}, + {"X360_DPAD_UP", K_X360_DPAD_UP}, + {"X360_DPAD_DOWN", K_X360_DPAD_DOWN}, + {"X360_DPAD_LEFT", K_X360_DPAD_LEFT}, + {"X360_DPAD_RIGHT", K_X360_DPAD_RIGHT}, + {"X360_START", K_X360_START}, + {"X360_BACK", K_X360_BACK}, + {"X360_LEFT_THUMB", K_X360_LEFT_THUMB}, + {"X360_RIGHT_THUMB", K_X360_RIGHT_THUMB}, + {"X360_LEFT_SHOULDER", K_X360_LEFT_SHOULDER}, + {"X360_RIGHT_SHOULDER", K_X360_RIGHT_SHOULDER}, + {"X360_A", K_X360_A}, + {"X360_B", K_X360_B}, + {"X360_X", K_X360_X}, + {"X360_Y", K_X360_Y}, + {"X360_LEFT_TRIGGER", K_X360_LEFT_TRIGGER}, + {"X360_RIGHT_TRIGGER", K_X360_RIGHT_TRIGGER}, + {"X360_LEFT_THUMB_UP", K_X360_LEFT_THUMB_UP}, + {"X360_LEFT_THUMB_DOWN", K_X360_LEFT_THUMB_DOWN}, + {"X360_LEFT_THUMB_LEFT", K_X360_LEFT_THUMB_LEFT}, + {"X360_LEFT_THUMB_RIGHT", K_X360_LEFT_THUMB_RIGHT}, + {"X360_RIGHT_THUMB_UP", K_X360_RIGHT_THUMB_UP}, + {"X360_RIGHT_THUMB_DOWN", K_X360_RIGHT_THUMB_DOWN}, + {"X360_RIGHT_THUMB_LEFT", K_X360_RIGHT_THUMB_LEFT}, + {"X360_RIGHT_THUMB_RIGHT", K_X360_RIGHT_THUMB_RIGHT}, + + {"JOY_UP", K_JOY_UP}, + {"JOY_DOWN", K_JOY_DOWN}, + {"JOY_LEFT", K_JOY_LEFT}, + {"JOY_RIGHT", K_JOY_RIGHT}, + {"SEMICOLON", ';'}, // because a raw semicolon separates commands {"TILDE", '~'}, {"BACKQUOTE", '`'}, @@ -1864,7 +1894,7 @@ Key_Event (int key, int ascii, qboolean down) // con_closeontoggleconsole enables toggleconsole keys to close the // console, as long as they are not the color prefix character // (special exemption for german keyboard layouts) - if (con_closeontoggleconsole.integer && bind && !strncmp(bind, "toggleconsole", strlen("toggleconsole")) && (key_consoleactive & KEY_CONSOLEACTIVE_USER) && ascii != STRING_COLOR_TAG) + 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)) { Con_ToggleConsole_f (); return; @@ -1929,6 +1959,21 @@ Key_Event (int key, int ascii, qboolean down) } } +// a helper to simulate release of ALL keys +void +Key_ReleaseAll (void) +{ + int key; + // clear the event queue first + eventqueue_idx = 0; + // then send all down events (possibly into the event queue) + for(key = 0; key < MAX_KEYS; ++key) + if(keydown[key]) + Key_Event(key, 0, false); + // now all keys are guaranteed down (once the event queue is unblocked) + // and only future events count +} + /* =================== Key_ClearStates