]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Check whether flip or not out of the for
authorterencehill <piuntn@gmail.com>
Mon, 8 Nov 2010 23:02:19 +0000 (00:02 +0100)
committerterencehill <piuntn@gmail.com>
Tue, 9 Nov 2010 20:22:29 +0000 (21:22 +0100)
(Curiously, a similar check now is still needed to determine the alpha but only in hud_configure mode)

qcsrc/client/hud.qc

index 6e0ad625342e0cbcf0637e26e79505fbfeac5520..c5ee428998d19362a008effa0651f939c95d9325 100644 (file)
@@ -3112,18 +3112,25 @@ void HUD_Notify (void)
        float width_attacker;
        string attacker, victim;
 
-       float k, i, j, w;
-       float flip = cvar("hud_panel_notify_flip");
-       for(k = 0, j = kn_index;  k < entries;  ++k, ++j)
+       float i, j, w, step, limit;
+       if(cvar("hud_panel_notify_flip")) //order items from the top down
+       {
+               i = 0;
+               step = +1;
+               limit = entries;
+       }
+       else //order items from the bottom up
+       {
+               i = entries - 1;
+               step = -1;
+               limit = -1;
+       }
+       for(j = kn_index;  i != limit;  i += step, ++j)
        {
                if (j == KN_MAX_ENTRIES)
                        j = 0;
 
                s = "";
-               if(flip)
-                       i = k;
-               else // rather nasty hack for ordering items from the bottom up
-                       i = entries - k - 1;
 
                if(fadetime)
                {
@@ -3257,7 +3264,11 @@ void HUD_Notify (void)
                        {
                                attacker = textShortenToWidth("Player1", 0.48 * mySize_x - height, fontsize, stringwidth_colors);
                                victim = textShortenToWidth("Player2", 0.48 * mySize_x - height, fontsize, stringwidth_colors);
-                               a = bound(0, (when - k) / 4, 1);
+                               if (step == +1)
+                                       a = i;
+                               else // inverse order
+                                       a = entries - 1 - i;
+                               a = bound(0, (when - a) / 4, 1);
                        }
                        else
                        {