]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Fix this Welcome dialog bug: "If I start up with +map boil then it appears, but when...
authorterencehill <piuntn@gmail.com>
Mon, 11 Apr 2022 17:07:30 +0000 (19:07 +0200)
committerterencehill <piuntn@gmail.com>
Mon, 11 Apr 2022 17:17:10 +0000 (19:17 +0200)
qcsrc/client/main.qc
qcsrc/client/main.qh
qcsrc/client/view.qc

index 8165f4cead3f76540654bef10b0eaf3bc713885c..10d4cef9858d88c7d3ee4ad8c2700ddba12ef6c6 100644 (file)
@@ -1337,8 +1337,8 @@ bool net_handle_ServerWelcome()
                return true;
        }
 
-       bool force_centerprint = ReadByte();
-       string hostname = ReadString();
+       welcome_msg_force_centerprint = ReadByte();
+       strcpy(hostname, ReadString());
        string ver = ReadString();
        string modifications = ReadString();
        string cache_mutatormsg = ReadString();
@@ -1356,17 +1356,33 @@ bool net_handle_ServerWelcome()
        if (motd != "")
                msg = strcat(msg, "\n\n^8", _("MOTD:"), " ^7", motd);
 
-       if (!force_centerprint && !isdemo() && cvar("_menu_welcome_dialog_available") && autocvar_cl_welcome_in_menu_dialog)
+       strcpy(welcome_msg, msg);
+       welcome_msg_menu_check_maxtime = time + 1; // wait for menu to load before showing the welcome dialog
+       return true;
+}
+
+void Welcome_Message_Show_Try()
+{
+       if (!welcome_msg_menu_check_maxtime)
+               return;
+
+       bool want_dialog = (!welcome_msg_force_centerprint && !isdemo() && autocvar_cl_welcome_in_menu_dialog);
+       // if want dialog check if menu is initialized but for a short time
+       if (!want_dialog || cvar("_menu_initialized") || time > welcome_msg_menu_check_maxtime)
        {
-               string welcomedialog_args;
-               welcomedialog_args = strcat("HOSTNAME \"", hostname, "\"");
-               msg = MakeConsoleSafe(strreplace("\n", "\\n", msg));
-               welcomedialog_args = strcat(welcomedialog_args, " WELCOME \"", msg, "\"");
-               localcmd("\nmenu_cmd directmenu Welcome ", welcomedialog_args, "\n");
+               if (want_dialog && cvar("_menu_welcome_dialog_available"))
+               {
+                       string welcomedialog_args = strcat("HOSTNAME \"", hostname, "\"");
+                       string msg = MakeConsoleSafe(strreplace("\n", "\\n", welcome_msg));
+                       welcomedialog_args = strcat(welcomedialog_args, " WELCOME \"", msg, "\"");
+                       localcmd("\nmenu_cmd directmenu Welcome ", welcomedialog_args, "\n");
+               }
+               else
+                       centerprint_Add(ORDINAL(CPID_MOTD), strcat(hostname, "\n\n\n", welcome_msg), -1, 0);
+
+               strfree(welcome_msg);
+               welcome_msg_menu_check_maxtime = 0;
        }
-       else
-               centerprint_Add(ORDINAL(CPID_MOTD), strcat(hostname, "\n\n\n", msg), -1, 0);
-       return true;
 }
 
 NET_HANDLE(TE_CSQC_SERVERWELCOME, bool isNew)
index 56dae7f4f191d5216faf83e120c9d86447bd3444..7be53f6dee116b558d6a14a931c7aee72bf5d991 100644 (file)
@@ -103,6 +103,12 @@ float current_viewzoom;
 float zoomin_effect;
 bool warmup_stage;
 
+string hostname;
+string welcome_msg;
+float welcome_msg_menu_check_maxtime;
+bool welcome_msg_force_centerprint;
+void Welcome_Message_Show_Try();
+
 void Fog_Force();
 
 string _getcommandkey(string text, string command, bool forcename);
index 0399ef87b1d9d7cf9531168c4ac9bf632c5c061d..0a1772fc47d8aa501aa90f13e21655d214e52d94 100644 (file)
@@ -1653,6 +1653,8 @@ void CSQC_UpdateView(entity this, float w, float h)
                }
        }
 
+       Welcome_Message_Show_Try();
+
        Announcer();
 
        View_CheckButtonStatus();