X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fmenu%2Fcommand%2Fmenu_cmd.qc;h=c7499e58e40a8a94ba1f31f2c504f0310bb465a3;hb=109c5785a22fb4336ac5e91d5f1fa91678582164;hp=f6312931f6a11c4117c159433c2361c949ec22c0;hpb=7cf65fc959abac34d7791793d8d10e091416df2f;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/menu/command/menu_cmd.qc b/qcsrc/menu/command/menu_cmd.qc index f6312931f..0f87cbb09 100644 --- a/qcsrc/menu/command/menu_cmd.qc +++ b/qcsrc/menu/command/menu_cmd.qc @@ -1,96 +1,129 @@ +#include "menu_cmd.qh" + +#include "../menu.qh" +#include "../item.qh" + +#include "../mutators/events.qh" + +#include + +.entity firstChild, nextSibling; + string _dumptree_space; void _dumptree_open(entity pass, entity me) { string s; s = me.toString(me); - if(s == "") - s = me.classname; - else - s = strcat(me.classname, ": ", s); - print(_dumptree_space, etos(me), " (", s, ")"); - if(me.firstChild) + if (s == "") s = me.classname; + else s = strcat(me.classname, ": ", s); + LOG_INFO(_dumptree_space, etos(me), " (", s, ")"); + if (me.firstChild) { - print(" {\n"); + LOG_INFO(" {\n"); _dumptree_space = strcat(_dumptree_space, " "); } else - print("\n"); + { + LOG_INFO("\n"); + } } void _dumptree_close(entity pass, entity me) { - if(me.firstChild) + if (me.firstChild) { _dumptree_space = substring(_dumptree_space, 0, strlen(_dumptree_space) - 2); - print(_dumptree_space, "}\n"); + LOG_INFO(_dumptree_space, "}\n"); } } +float updateConwidths(float width, float height, float pixelheight); + void GameCommand(string theCommand) { - float argc; - argc = tokenize_console(theCommand); + int argc = tokenize_console(theCommand); + string ss = strtolower(argv(0)); - if(argv(0) == "help" || argc == 0) + if (argv(0) == "help" || argc == 0) { - print(_("Usage: menu_cmd command..., where possible commands are:\n")); - print(_(" sync - reloads all cvars on the current menu page\n")); - print(_(" directmenu ITEM - select a menu item as main item\n")); - GenericCommand("help"); + LOG_INFO(_("Usage: menu_cmd command..., where possible commands are:\n")); + LOG_INFO(_(" sync - reloads all cvars on the current menu page\n")); + LOG_INFO(_(" directmenu ITEM - select a menu item as main item\n")); + + LOG_INFO("\nGeneric commands shared by all programs:\n"); + GenericCommand_macro_help(); + return; } - if(GenericCommand(theCommand)) - return; + if (GenericCommand(theCommand)) return; - if(argv(0) == "sync") + if (argv(0) == "sync") { m_sync(); return; } - if(argv(0) == "directmenu") if(argc == 2) + if (argv(0) == "update_conwidths_before_vid_restart") { - // switch to a menu item - if(!isdemo()) // don't allow this command in demos - m_goto(argv(1)); + updateConwidths(cvar("vid_width"), cvar("vid_height"), cvar("vid_pixelheight")); return; } - if(argv(0) == "directpanelhudmenu") + if (argv(0) == "directmenu" || argv(0) == "directpanelhudmenu") { - // switch to a menu item - m_goto(strcat("HUD", argv(1))); + string filter = string_null; + if (argv(0) == "directpanelhudmenu") filter = "HUD"; + + if (argc == 1) + { + LOG_INFO(_("Available options:\n")); + + FOREACH_ENTITY_ORDERED(it.name != "", { + if (it.classname == "vtbl") continue; + string s = it.name; + if (filter) + { + if (!startsWith(s, filter)) continue; + s = substring(s, strlen(filter), strlen(s) - strlen(filter)); + } + LOG_INFOF(" %s\n", s); + }); + } + else if (argc == 2 && !isdemo()) // don't allow this command in demos + { + m_play_click_sound(MENU_SOUND_OPEN); + m_goto(strcat(filter, argv(1))); // switch to a menu item + } return; } - if(argv(0) == "skinselect") + if (argv(0) == "skinselect") { m_goto("skinselector"); return; } - if(argv(0) == "languageselect") + if (argv(0) == "languageselect") { m_goto("languageselector"); return; } - if(argv(0) == "videosettings") + if (argv(0) == "videosettings") { m_goto("videosettings"); return; } - if(argv(0) == "dumptree") + if (argv(0) == "dumptree") { _dumptree_space = ""; depthfirst(main, parent, firstChild, nextSibling, _dumptree_open, _dumptree_close, NULL); return; } - if(argv(0) == "curl") - { - } + if(MUTATOR_CALLHOOK(Menu_ConsoleCommand, ss, argc, theCommand)) // handled by a mutator + return; - print(_("Invalid command. For a list of supported commands, try menu_cmd help.\n")); + LOG_INFO(_("Invalid command. For a list of supported commands, try menu_cmd help.\n")); }