X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fmenu%2Fcommand%2Fmenu_cmd.qc;h=b19f94c4abea164332eb636b37219f0a72cdd2b2;hb=ed84c14be6d2f1eb7183cbfed422f1fe5ea9b331;hp=3be6edc6629612eda6aca51ce768e850bd48c7bf;hpb=4f926be80533640c5531417f7553de6c3da0c528;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/menu/command/menu_cmd.qc b/qcsrc/menu/command/menu_cmd.qc index 3be6edc66..b19f94c4a 100644 --- a/qcsrc/menu/command/menu_cmd.qc +++ b/qcsrc/menu/command/menu_cmd.qc @@ -25,35 +25,6 @@ void _dumptree_close(entity pass, entity me) } } -float curl_uri_get_pos; -float curl_uri_get_exec[URI_GET_CURL_END - URI_GET_CURL + 1]; -string curl_uri_get_cvar[URI_GET_CURL_END - URI_GET_CURL + 1]; -void Curl_URI_Get_Callback(float id, float status, string data) -{ - float i; - float do_exec; - string do_cvar; - i = id - URI_GET_CURL; - do_exec = curl_uri_get_exec[i]; - do_cvar = curl_uri_get_cvar[i]; - if(status != 0) - { - print(sprintf(_("error: status is %d\n"), status)); - if(do_cvar) - strunzone(do_cvar); - return; - } - if(do_exec) - localcmd(data); - if(do_cvar) - { - cvar_set(do_cvar, data); - strunzone(do_cvar); - } - if(!do_exec && !do_cvar) - print(data); -} - void GameCommand(string theCommand) { float argc; @@ -64,7 +35,10 @@ void GameCommand(string theCommand) 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"); + + print("\nGeneric commands shared by all programs:\n"); + GenericCommand_macro_help(); + return; } @@ -77,36 +51,61 @@ void GameCommand(string theCommand) 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 = strzone("HUD"); + + if(argc == 1) + { + print(_("Available options:\n")); + float i; + entity e; + string s; + + for(i = 0, e = world; (e = nextent(e)); ) + if(e.classname != "vtbl" && e.name != "") + { + s = e.name; + if(filter) + { + if(substring(s, 0, strlen(filter)) != filter) + continue; + s = substring(s, strlen(filter), strlen(s) - strlen(filter)); + } + print(strcat(" ", s ,"\n")); + ++i; + } + } + else if(argc == 2 && !isdemo()) // don't allow this command in demos + m_goto(strcat(filter, argv(1))); // switch to a menu item + if(filter) + strunzone(filter); return; } if(argv(0) == "skinselect") { - m_goto_skin_selector(); + m_goto("skinselector"); return; } if(argv(0) == "languageselect") { - m_goto_language_selector(); + m_goto("languageselector"); return; } if(argv(0) == "videosettings") { - m_goto_video_settings(); + m_goto("videosettings"); return; } @@ -117,69 +116,9 @@ void GameCommand(string theCommand) return; } - if(argv(0) == "curl") + if(argv(0) == "debugstats") { - float do_exec; - string do_cvar; - float key; - float i, j; - string url; - float buf; - float r; - - do_exec = FALSE; - do_cvar = string_null; - key = -1; - - for(i = 1; i+1 < argc; ++i) - { - if(argv(i) == "--cvar" && i+2 < argc) - { - ++i; - do_cvar = strzone(argv(i)); - continue; - } - if(argv(i) == "--exec") - { - do_exec = TRUE; - continue; - } - if(argv(i) == "--key" && i+2 < argc) - { - ++i; - key = stof(argv(i)); - continue; - } - break; - } - - // now, argv(i) is the URL - // following args may be POST parameters - url = argv(i); - ++i; - buf = buf_create(); - j = 0; - for(; i+1 < argc; i += 2) - bufstr_set(buf, ++j, sprintf("%s=%s", uri_escape(argv(i)), uri_escape(argv(i+1)))); - if(i < argc) - bufstr_set(buf, ++j, sprintf("submit=%s", uri_escape(argv(i)))); - - if(j == 0) // no args: GET - r = crypto_uri_postbuf(url, URI_GET_CURL + curl_uri_get_pos, string_null, string_null, -1, key); - else // with args: POST - r = crypto_uri_postbuf(url, URI_GET_CURL + curl_uri_get_pos, "application/x-www-form-urlencoded", "&", buf, key); - - if(r) - { - curl_uri_get_exec[curl_uri_get_pos] = do_exec; - curl_uri_get_cvar[curl_uri_get_pos] = do_cvar; - curl_uri_get_pos = mod(curl_uri_get_pos + 1, URI_GET_CURL_END - URI_GET_CURL + 1); - } - else - print(_("error creating curl handle\n")); - - buf_del(buf); - + PlayerStats_PlayerDetail(); return; }