X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fmenu%2Fcommand%2Fmenu_cmd.qc;h=b56e8e9e4afd4ba69e8047d6afbdc04cd64119d7;hb=3ecb4f377794080b3b216d6be9f131c227e76210;hp=8485c5382b834ce58a6abfedaabce865fc8cca2f;hpb=b84b6a91b0b3ddc586ca66fa774d7a11c31a8e54;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/menu/command/menu_cmd.qc b/qcsrc/menu/command/menu_cmd.qc index 8485c5382..b56e8e9e4 100644 --- a/qcsrc/menu/command/menu_cmd.qc +++ b/qcsrc/menu/command/menu_cmd.qc @@ -7,6 +7,7 @@ #include +.void(entity me, int argsbuf) readInputArgs; .entity firstChild, nextSibling; string _dumptree_space; @@ -43,13 +44,14 @@ void GameCommand(string theCommand) int argc = tokenize_console(theCommand); string ss = strtolower(argv(0)); + // TODO port these commands to the command system if (argv(0) == "help" || argc == 0) { - LOG_HELP(_("Usage:^3 menu_cmd [], where possible commands are:")); - LOG_HELP(_(" reloads all cvars on the current menu page")); - LOG_HELP(_(" shows the menu window named (or the menu window containing an item named )")); - LOG_HELP(_(" if is not specified it shows the list of available items in the console")); - LOG_HELP(_(" dumps the state of the menu as a tree to the console")); + LOG_HELP("Usage:^3 menu_cmd [], where possible commands are:"); + LOG_HELP(" 'sync' reloads all cvars on the current menu page"); + LOG_HELP(" 'directmenu' shows the menu window named (or the menu window containing an item named )"); + LOG_HELP(" if is not specified it shows the list of available items in the console"); + LOG_HELP(" 'dumptree' dumps the state of the menu as a tree to the console"); LOG_HELP("\nGeneric commands shared by all programs:"); GenericCommand_macro_help(); @@ -78,7 +80,7 @@ void GameCommand(string theCommand) if (argc == 1) { - LOG_HELP(_("Available items:")); + LOG_HELP("Available items:"); FOREACH_ENTITY_ORDERED(it.name != "", { if (it.classname == "vtbl") continue; @@ -96,6 +98,45 @@ void GameCommand(string theCommand) m_play_click_sound(MENU_SOUND_OPEN); m_goto(strcat(filter, argv(1))); // switch to a menu item } + else if(argc > 2 && !isdemo()) + { + entity e = NULL; + float argsbuf = 0; + string s = strzone(argv(1)); // dialog name + for(int i = 0; (e = nextent(e)); ) + if(e.classname != "vtbl" && e.name == strcat(filter, s)) + { + argsbuf = buf_create(); + if(argsbuf >= 0) + if(e.readInputArgs) + { + for(i = 2; i < argc; ++i) + bufstr_add(argsbuf, argv(i), 1); + e.readInputArgs(e, argsbuf); + m_goto(strcat(filter, s)); + } + if(argsbuf >= 0) + buf_del(argsbuf); + } + } + return; + } + + if (argv(0) == "nexposee") + { + m_goto("nexposee"); + return; + } + + if (argv(0) == "servers") + { + m_goto("servers"); + return; + } + + if (argv(0) == "profile") + { + m_goto("profile"); return; } @@ -111,6 +152,12 @@ void GameCommand(string theCommand) return; } + if (argv(0) == "inputsettings") + { + m_goto("inputsettings"); + return; + } + if (argv(0) == "videosettings") { m_goto("videosettings"); @@ -127,5 +174,5 @@ void GameCommand(string theCommand) if(MUTATOR_CALLHOOK(Menu_ConsoleCommand, ss, argc, theCommand)) // handled by a mutator return; - LOG_INFO(_("Invalid command. For a list of supported commands, try menu_cmd help.")); + LOG_INFO("Invalid command. For a list of supported commands, try menu_cmd help."); }