]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
untested protorefactor
authordrjaska <drjaska83@gmail.com>
Wed, 22 Mar 2023 14:37:26 +0000 (16:37 +0200)
committerdrjaska <drjaska83@gmail.com>
Wed, 22 Mar 2023 14:37:26 +0000 (16:37 +0200)
qcsrc/common/minigames/minigame/c4.qc
qcsrc/common/minigames/minigame/ttt.qc

index 51287ef2e7c7bb0cc2481a479676b0921438ac1f..142e50c89fe2999f5e3f7f24097f4762bbaad613 100644 (file)
@@ -353,6 +353,7 @@ void c4_hud_status(vector pos, vector mySize)
        }
 
        entity e;
+       string allspecs = "";
        FOREACH_MINIGAME_ENTITY(e)
        {
                if ( e.classname == "minigame_player" && e.team != C4_SPECTATOR_TEAM )
@@ -371,53 +372,32 @@ void c4_hud_status(vector pos, vector mySize)
 
                        mypos_x += tile_size_x;
                }
-       }
-       int specs = 0;
-       FOREACH_MINIGAME_ENTITY(e)
-       {
+
                if (e.classname == "minigame_player" && e.team == C4_SPECTATOR_TEAM)
                {
-                       ++specs;
+                       string current_spec = "";
+
+                       string cmpctString = entcs_GetName(e.minigame_playerslot - 1);
+                       if (strlennocol(cmpctString) > 8)
+                       {
+                               int new_length = textLengthUpToLength(cmpctString, 8, strlennocol);
+                               cmpctString = strcat(substring(cmpctString, 0, new_length), "..");
+                       }
+                       if (strlen(allspecs) > 0)
+                               current_spec = strcat(",", cmpctString);
+                       else
+                               current_spec = cmpctString;
+                       if (strlen(allspecs) < 90)
+                               allspecs = strcat(allspecs, current_spec);
                }
        }
-
-       if (specs > 0)
+       if (strlen(allspecs) > 0)
        {
                pos_y = pos_y * 0.3;
                pos_x = pos_x * 0.41;
 
-               int i = 0;
-
-               string allspecs = "";
                ts = minigame_drawstring_wrapped(mySize_x * 1.7, pos, "Spectators: ", '14 14 0', '0.85 0.47 0.42', panel_fg_alpha, DRAWFLAG_NORMAL, 0);
                pos_y += 14;
-               FOREACH_MINIGAME_ENTITY(e)
-               {
-                       if (e.classname == "minigame_player" && e.team == C4_SPECTATOR_TEAM)
-                       {
-                               ++i;
-                               string current_spec = "";
-
-                               string cmpctString = entcs_GetName(e.minigame_playerslot - 1);
-                               if (strlennocol(cmpctString) > 8)
-                               {
-                                       int new_length = textLengthUpToLength(cmpctString, 8, strlennocol);
-                                       cmpctString = strcat(substring(cmpctString, 0, new_length), "..");
-                               }
-                               //last
-                               if (i != specs)
-                               {
-                                       current_spec = strcat(cmpctString, ",");
-                               }
-                               else
-                               {
-                                       current_spec = cmpctString;
-                               }
-                               if (strlen(allspecs) + strlen(current_spec) > 100)
-                                       break;
-                               allspecs = strcat(allspecs, current_spec);
-                       }
-               }
                ts = minigame_drawcolorcodedstring_wrapped(mySize_x * 1.7, pos, allspecs, hud_fontsize, panel_fg_alpha, DRAWFLAG_NORMAL, 0);
        }
 }
index 6b294e5323a706017a5a765ffdf601649a5a7cc8..a78a6468a8329cacac89ecfaf5a655cfb88f0dac 100644 (file)
@@ -298,6 +298,7 @@ void ttt_hud_status(vector pos, vector mySize)
        vector tile_size = '48 48 0';
 
        entity e;
+       string allspecs = "";
        FOREACH_MINIGAME_ENTITY(e)
        {
                if ( e.classname == "minigame_player" && e.team != TTT_SPECTATOR_TEAM )
@@ -317,56 +318,34 @@ void ttt_hud_status(vector pos, vector mySize)
                        mypos_x += tile_size_x;
 
                        drawstring(mypos,ftos(e.minigame_flags),tile_size,
-                                          '0.7 0.84 1', panel_fg_alpha, DRAWFLAG_NORMAL);
+                                       '0.7 0.84 1', panel_fg_alpha, DRAWFLAG_NORMAL);
                }
-       }
 
-       int specs = 0;
-       FOREACH_MINIGAME_ENTITY(e)
-       {
                if (e.classname == "minigame_player" && e.team == TTT_SPECTATOR_TEAM)
                {
-                       ++specs;
+                       string current_spec = "";
+
+                       string cmpctString = entcs_GetName(e.minigame_playerslot - 1);
+                       if (strlennocol(cmpctString) > 8)
+                       {
+                               int new_length = textLengthUpToLength(cmpctString, 8, strlennocol);
+                               cmpctString = strcat(substring(cmpctString, 0, new_length), "..");
+                       }
+                       if (strlen(allspecs) > 0)
+                               current_spec = strcat(",", cmpctString);
+                       else
+                               current_spec = cmpctString;
+                       if (strlen(allspecs) < 90)
+                               allspecs = strcat(allspecs, current_spec);
                }
        }
-
-       if (specs > 0)
+       if (strlen(allspecs) > 0)
        {
                pos_y = pos_y * 0.3;
                pos_x = pos_x * 0.41;
 
-               int i = 0;
-
-               string allspecs = "";
                ts = minigame_drawstring_wrapped(mySize_x * 1.7, pos, "Spectators: ", '14 14 0', '0.85 0.47 0.42', panel_fg_alpha, DRAWFLAG_NORMAL, 0);
                pos_y += 14;
-               FOREACH_MINIGAME_ENTITY(e)
-               {
-                       if (e.classname == "minigame_player" && e.team == TTT_SPECTATOR_TEAM)
-                       {
-                               ++i;
-                               string current_spec = "";
-
-                               string cmpctString = entcs_GetName(e.minigame_playerslot - 1);
-                               if (strlennocol(cmpctString) > 8)
-                               {
-                                       int new_length = textLengthUpToLength(cmpctString, 8, strlennocol);
-                                       cmpctString = strcat(substring(cmpctString, 0, new_length), "..");
-                               }
-                               //last
-                               if (i != specs)
-                               {
-                                       current_spec = strcat(cmpctString, ",");
-                               }
-                               else
-                               {
-                                       current_spec = cmpctString;
-                               }
-                               if (strlen(allspecs) + strlen(current_spec) > 100)
-                                       break;
-                               allspecs = strcat(allspecs, current_spec);
-                       }
-               }
                ts = minigame_drawcolorcodedstring_wrapped(mySize_x * 1.7, pos, allspecs, hud_fontsize, panel_fg_alpha, DRAWFLAG_NORMAL, 0);
        }
 }