]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Add a file parameter to quickmenu, to allow loading different menus with different...
authorMario <mario@smbclan.net>
Mon, 30 Jan 2017 04:35:23 +0000 (14:35 +1000)
committerMario <mario@smbclan.net>
Mon, 30 Jan 2017 04:35:23 +0000 (14:35 +1000)
qcsrc/client/commands/cl_cmd.qc
qcsrc/client/hud/panel/quickmenu.qc
qcsrc/server/race.qh

index 631090cc1f9b7d119a2a9847b9d6ee5619cdd568..f795784718dd269cbd48da5e820762e72982c796 100644 (file)
@@ -248,7 +248,7 @@ void LocalCommand_handlevote(int request, int argc)
 
 bool QuickMenu_IsOpened();
 void QuickMenu_Close();
-bool QuickMenu_Open(string mode, string submenu);
+bool QuickMenu_Open(string mode, string submenu, string file);
 
 bool HUD_MinigameMenu_IsOpened();
 void HUD_MinigameMenu_Close(entity this, entity actor, entity trigger);
@@ -278,15 +278,17 @@ void LocalCommand_hud(int request, int argc)
                                {
                                        if (argv(2) == "help")
                                        {
-                                               LOG_INFO(" quickmenu [[default | file | \"\"] submenu]\n");
+                                               LOG_INFO(" quickmenu [[default | file | \"\"] submenu file]\n");
                                                LOG_INFO("Called without options (or with \"\") loads either the default quickmenu or a quickmenu file if hud_panel_quickmenu_file is set to a valid filename.\n");
                                                LOG_INFO("A submenu name can be given to open the quickmenu directly in a submenu; it requires to specify 'default', 'file' or '\"\"' option.\n");
+                                               LOG_INFO("A file name can also be given to open a different quickmenu\n");
                                                return;
                                        }
+                                       string file = ((argv(4) == "") ? autocvar_hud_panel_quickmenu_file : argv(4));
                                        if (QuickMenu_IsOpened())
                                                QuickMenu_Close();
                                        else
-                                               QuickMenu_Open(argv(2), argv(3));  // mode, submenu
+                                               QuickMenu_Open(argv(2), argv(3), file);  // mode, submenu
                                        return;
                                }
 
index e242ae895881a89d05baf81eb6da4c3197fdf4e7..0940b0261587ba7faf051205365770b385ea5a0d 100644 (file)
@@ -64,14 +64,14 @@ void QuickMenu_Page_ClearEntry(int i)
 
 float QuickMenu_Page_Load(string target_submenu, float new_page);
 void QuickMenu_Default(string submenu);
-bool QuickMenu_Open(string mode, string submenu)
+bool QuickMenu_Open(string mode, string submenu, string file)
 {
        int fh = -1;
        string s;
 
        if(mode == "")
        {
-               if(autocvar_hud_panel_quickmenu_file == "" || autocvar_hud_panel_quickmenu_file == "0")
+               if(file == "" || file == "0")
                        mode = "default";
                else
                        mode = "file";
@@ -79,13 +79,13 @@ bool QuickMenu_Open(string mode, string submenu)
 
        if(mode == "file")
        {
-               if(autocvar_hud_panel_quickmenu_file == "" || autocvar_hud_panel_quickmenu_file == "0")
+               if(file == "" || file == "0")
                        LOG_INFO("No file name is set in hud_panel_quickmenu_file, loading default quickmenu\n");
                else
                {
-                       fh = fopen(autocvar_hud_panel_quickmenu_file, FILE_READ);
+                       fh = fopen(file, FILE_READ);
                        if(fh < 0)
-                               LOG_INFOF("Couldn't open file \"%s\", loading default quickmenu\n", autocvar_hud_panel_quickmenu_file);
+                               LOG_INFOF("Couldn't open file \"%s\", loading default quickmenu\n", file);
                }
                if(fh < 0)
                        mode = "default";
index 6419afb737690604dace62c681cabe9da377f4e7..472827efa4a81d13a014ae84d998f1b88d62628f 100644 (file)
@@ -47,6 +47,7 @@ void race_SendNextCheckpoint(entity e, float spec);
 void race_PreparePlayer(entity this);
 void race_send_recordtime(float msg);
 void race_send_speedaward(float msg);
+void race_setTime(string map, float t, string myuid, string mynetname, entity e, bool showmessage);
 
 float speedaward_speed;
 string speedaward_holder;