]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Using proper centerprint title spacing
authorz411 <z411@omaera.org>
Mon, 21 Mar 2022 18:58:31 +0000 (15:58 -0300)
committerz411 <z411@omaera.org>
Mon, 21 Mar 2022 18:58:31 +0000 (15:58 -0300)
qcsrc/client/announcer.qc
qcsrc/client/hud/panel/centerprint.qc

index bd89c804527c243ec6ae09738991de1b4930bafa..bbd8cd885778c4ca6fa2797763a37ae7b0010b95 100644 (file)
@@ -115,7 +115,7 @@ void Announcer_Gamestart()
                                        string pl1_name = (pl1 && pl1.team != NUM_SPECTATOR ? entcs_GetName(pl1.sv_entnum) : "???");
                                        string pl2_name = (pl2 && pl2.team != NUM_SPECTATOR ? entcs_GetName(pl2.sv_entnum) : "???");
 
-                                       centerprint_SetTitle(sprintf(_("^BG%s^BG vs %s"), pl1_name, pl2_name)); // Show duelers in 1v1 game mode
+                                       centerprint_SetTitle(sprintf(_("^BG%s^BG  vs  %s"), pl1_name, pl2_name)); // Show duelers in 1v1 game mode
                                }
                                else
                                        centerprint_SetTitle(strcat("^BG", MapInfo_Type_ToText(gametype))); // Show game type as title
index d6b154200eb757dfe753e10111da895bd653444e..2d96826c83ee2cff272f73464ee9b16c26bd9915 100644 (file)
@@ -34,7 +34,7 @@ void HUD_CenterPrint_Export(int fh)
 const int CENTERPRINT_MAX_MSGS = 10;
 const int CENTERPRINT_MAX_ENTRIES = 50;
 const float CENTERPRINT_SPACING = 0.5;
-const float CENTERPRINT_TITLE_SPACING = 0.8;
+const float CENTERPRINT_TITLE_SPACING = 0.35;
 int cpm_index;
 string centerprint_messages[CENTERPRINT_MAX_MSGS];
 int centerprint_msgID[CENTERPRINT_MAX_MSGS];
@@ -272,16 +272,16 @@ void HUD_CenterPrint()
                drawcolorcodedstring(pos, centerprint_title, fontsize, 1, DRAWFLAG_NORMAL);
 
                if (autocvar_hud_panel_centerprint_flip)
-                       pos.y -= cp_fontsize.y * (CENTERPRINT_TITLE_SPACING / 2);
+                       pos.y -= cp_fontsize.y * CENTERPRINT_TITLE_SPACING;
                else
-                       pos.y += fontsize.y + (hud_fontsize.y * (CENTERPRINT_TITLE_SPACING / 2));
+                       pos.y += fontsize.y + (hud_fontsize.y * CENTERPRINT_TITLE_SPACING);
 
                drawfill(pos, vec2(width, 1), '1 1 1', 1, DRAWFLAG_NORMAL);
 
                if (autocvar_hud_panel_centerprint_flip)
-                       pos.y -= cp_fontsize.y * (CENTERPRINT_TITLE_SPACING / 2);
+                       pos.y -= cp_fontsize.y * CENTERPRINT_TITLE_SPACING;
                else
-                       pos.y += cp_fontsize.y * (CENTERPRINT_TITLE_SPACING / 2);
+                       pos.y += cp_fontsize.y * CENTERPRINT_TITLE_SPACING;
 
                all_messages_expired = false;
        }