]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Color the 1st, 2nd, and 3rd scoreboard text 1418/head
authorotta8634 <k9wolf@pm.me>
Fri, 3 Jan 2025 16:58:17 +0000 (00:58 +0800)
committerotta8634 <k9wolf@pm.me>
Sun, 9 Feb 2025 08:41:53 +0000 (16:41 +0800)
Gave them generic trophy colors -- gold, silver, bronze.
Ideally they'd have little trophy icons, maybe that can be done later/elsewhere.

qcsrc/client/hud/panel/scoreboard.qc

index 810473aaff951110a2a62a8ed8fe27c506144698..2995009025f77678df5d555d101e88a7c9a3457d 100644 (file)
@@ -2185,7 +2185,15 @@ vector Scoreboard_Rankings_Draw(vector pos, string ranktitle, entity pl, vector
                        drawfill(pos, columnsize, hl_rgb, sbt_highlight_alpha, DRAWFLAG_NORMAL);
 
                str = count_ordinal(i+1);
-               drawstring(pos + text_ofs, str, hud_fontsize, '1 1 1', sbt_fg_alpha, DRAWFLAG_NORMAL);
+               vector rank_color;
+               switch(i)
+               {
+                       case 0:  rank_color = '0.933 0.733 0.200'; break; // 1st; gold
+                       case 1:  rank_color = '0.667 0.667 0.667'; break; // 2nd; silver
+                       case 2:  rank_color = '0.800 0.467 0.267'; break; // 3rd; bronze
+                       default: rank_color = '1 1 1';
+               }
+               drawstring(pos + text_ofs, str, hud_fontsize, rank_color, sbt_fg_alpha, DRAWFLAG_NORMAL);
                drawstring(pos + text_ofs + eX * ranksize, TIME_ENCODED_TOSTRING(t, true), hud_fontsize, '1 1 1', sbt_fg_alpha, DRAWFLAG_NORMAL);
                str = ColorTranslateRGB(grecordholder[i]);
                if(cut)