X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fmenu%2Fxonotic%2Fkeybinder.qc;h=f9b2be71cf770feb9efedcdc0be4de699f3d94aa;hp=4f6e4a04a6dbe3201e43430975b00ede72e53c6b;hb=4256e729f34e24392b66b3bd2e8a86caf2c45c17;hpb=8e4957c252f8381e37f2a72e227797bf51e5cc2f diff --git a/qcsrc/menu/xonotic/keybinder.qc b/qcsrc/menu/xonotic/keybinder.qc index 4f6e4a04a6..f9b2be71cf 100644 --- a/qcsrc/menu/xonotic/keybinder.qc +++ b/qcsrc/menu/xonotic/keybinder.qc @@ -14,7 +14,7 @@ string KeyBinds_Functions[MAX_KEYBINDS]; string KeyBinds_Descriptions[MAX_KEYBINDS]; int KeyBinds_Count = -1; -void KeyBinds_Read() +void KeyBinds_BuildList() { KeyBinds_Count = 0; @@ -30,7 +30,7 @@ void KeyBinds_Read() #define KEYBIND_HEADER(str) KEYBIND_DEF("", str) #define KEYBIND_IS_SPECIAL(func) (substring(func, 0 ,1) == "*") - #define KEYBIND_SPECIAL_DEF(key) KEYBIND_DEF(strcat("*", key), "") + #define KEYBIND_SPECIAL_DEF(key, desc) KEYBIND_DEF(strcat("*", key), desc) KEYBIND_HEADER(_("Moving")); KEYBIND_DEF("+forward" , _("forward")); @@ -56,8 +56,6 @@ void KeyBinds_Read() KEYBIND_DEF("reload" , _("reload")); KEYBIND_DEF("dropweapon" , _("drop weapon / throw nade")); - int i; - #define ADD_TO_W_LIST(pred) \ FOREACH(Weapons, it != WEP_Null, { \ if (it.impulse != imp) continue; \ @@ -92,7 +90,7 @@ void KeyBinds_Read() KEYBIND_DEF("spec" , _("enter spectator mode")); KEYBIND_EMPTY_LINE(); - KEYBIND_HEADER(_("Communicate")); + KEYBIND_HEADER(_("Communication")); KEYBIND_DEF("messagemode" , _("public chat")); KEYBIND_DEF("messagemode2" , _("team chat")); KEYBIND_DEF("+con_chat_maximize" , _("show chat history")); @@ -106,31 +104,36 @@ void KeyBinds_Read() // display the hardcoded shortcut to open the console as it works for all // non-English keyboard layouts, unlike default keys (` and ~) KEYBIND_DEF("toggleconsole" , _("enter console")); - KEYBIND_SPECIAL_DEF(strcat(translate_key("SHIFT"), "+", translate_key("ESCAPE"))); + string console_shortcut = strcat(translate_key("SHIFT"), "+", translate_key("ESCAPE")); + KEYBIND_SPECIAL_DEF(console_shortcut, _("enter console")); KEYBIND_DEF("disconnect" , _("disconnect")); KEYBIND_DEF("menu_showquitdialog" , _("quit")); KEYBIND_EMPTY_LINE(); KEYBIND_HEADER(_("Teamplay")); - KEYBIND_DEF("messagemode2" , _("team chat")); KEYBIND_DEF("team_auto" , _("auto-join team")); KEYBIND_DEF("menu_showteamselect" , _("team menu")); - KEYBIND_DEF("+use" , _("drop key / drop flag")); + KEYBIND_DEF("spec" , _("spectate")); KEYBIND_EMPTY_LINE(); KEYBIND_HEADER(_("Misc")); - KEYBIND_DEF("kill" , _("respawn")); + KEYBIND_DEF("+use" , _("drop key/flag, exit vehicle")); + KEYBIND_DEF("kill" , _("suicide / respawn")); KEYBIND_DEF("quickmenu" , _("quick menu")); - KEYBIND_DEF("menu_showsandboxtools" , _("sandbox menu")); - KEYBIND_DEF("wpeditor_menu" , _("waypoint editor menu")); - KEYBIND_DEF("+button8" , _("drag object")); KEYBIND_EMPTY_LINE(); KEYBIND_HEADER(_("User defined")); - for(i = 1; i <= 32; ++i) + for(int i = 1; i <= 32; ++i) KEYBIND_DEF(strcat("+userbind ", itos(i)), strcat("$userbind", itos(i))); + KEYBIND_EMPTY_LINE(); + + KEYBIND_HEADER(_("Development")); + KEYBIND_DEF("menu_showsandboxtools" , _("sandbox menu")); + KEYBIND_DEF("+button8" , _("drag object (sandbox)")); + KEYBIND_DEF("wpeditor_menu" , _("waypoint editor menu")); + #undef KEYBIND_DEF } @@ -177,7 +180,7 @@ void XonoticKeyBinder_loadKeyBinds(entity me) bool force_initial_selection = false; if(KeyBinds_Count < 0) // me.handle not loaded yet? force_initial_selection = true; - KeyBinds_Read(); + KeyBinds_BuildList(); me.nItems = KeyBinds_Count; if(force_initial_selection) me.setSelected(me, 0); @@ -246,8 +249,10 @@ void XonoticKeyBinder_keyGrabbed(entity me, int key, bool ascii) { k = stof(argv(j)); if(k != -1) - //localcmd("\nunbind \"", keynumtostring(k), "\"\n"); + { + // bind to empty cmd instead of using unbind so it gets saved in config and overrides any default binds localcmd("\nbind \"", keynumtostring(k), "\" \"", KEY_NOT_BOUND_CMD, "\"\n"); + } } } m_play_click_sound(MENU_SOUND_SELECT); @@ -318,8 +323,10 @@ void KeyBinder_Bind_Clear(entity btn, entity me) { k = stof(argv(j)); if(k != -1) - //localcmd("\nunbind \"", keynumtostring(k), "\"\n"); + { + // bind to empty cmd instead of using unbind so it gets saved in config and overrides any default binds localcmd("\nbind \"", keynumtostring(k), "\" \"", KEY_NOT_BOUND_CMD, "\"\n"); + } } m_play_click_sound(MENU_SOUND_CLEAR); localcmd("-zoom\n"); // to make sure we aren't in togglezoom'd state @@ -393,9 +400,6 @@ float XonoticKeyBinder_keyDown(entity me, int key, bool ascii, float shift) void XonoticKeyBinder_drawListBoxItem(entity me, int i, vector absSize, bool isSelected, bool isFocused) { - string s; - int j, n; - float k; vector theColor; float theAlpha; float extraMargin; @@ -405,7 +409,6 @@ void XonoticKeyBinder_drawListBoxItem(entity me, int i, vector absSize, bool isS if(func == "") { - theAlpha = 1; theColor = SKINCOLOR_KEYGRABBER_TITLES; theAlpha = SKINALPHA_KEYGRABBER_TITLES; extraMargin = 0; @@ -432,7 +435,7 @@ void XonoticKeyBinder_drawListBoxItem(entity me, int i, vector absSize, bool isS if(substring(descr, 0, 1) == "$") { - s = substring(descr, 1, strlen(descr) - 1); + string s = substring(descr, 1, strlen(descr) - 1); descr = cvar_string(strcat(s, "_description")); if(descr == "") descr = s; @@ -441,7 +444,7 @@ void XonoticKeyBinder_drawListBoxItem(entity me, int i, vector absSize, bool isS theAlpha *= SKINALPHA_DISABLED; } - s = draw_TextShortenToWidth(descr, me.columnFunctionSize, 0, me.realFontSize); + string s = draw_TextShortenToWidth(descr, me.columnFunctionSize, 0, me.realFontSize); draw_Text(me.realUpperMargin * eY + extraMargin * eX, s, me.realFontSize, theColor, theAlpha, 0); if (func == "") @@ -452,15 +455,19 @@ void XonoticKeyBinder_drawListBoxItem(entity me, int i, vector absSize, bool isS s = substring(func, 1, -1); else { - n = tokenize(findkeysforcommand(func, 0)); // uses '...' strings - for(j = 0; j < n; ++j) + bool joy_active = cvar("joy_active"); + int n = tokenize(findkeysforcommand(func, 0)); // uses '...' strings + for(int j = 0; j < n; ++j) { - k = stof(argv(j)); + float k = stof(argv(j)); if(k != -1) { + string key = keynumtostring(k); + if (!joy_active && startsWith(key, "JOY")) + continue; if(s != "") s = strcat(s, ", "); - s = strcat(s, translate_key(keynumtostring(k))); + s = strcat(s, translate_key(key)); } } }