]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Fix Pickup HUD panel not loading the skin fallback icons from gfx/hud/default/
authorterencehill <piuntn@gmail.com>
Thu, 6 Mar 2025 16:50:58 +0000 (17:50 +0100)
committerterencehill <piuntn@gmail.com>
Thu, 6 Mar 2025 16:50:58 +0000 (17:50 +0100)
It fixes #2983 "Broken icon in the Pickup HUD panel with the luminos_xhair skin"
While at it I made a small code cleanup

qcsrc/client/draw.qh
qcsrc/client/hud/panel/pickup.qc

index 409161fb188330ab53afdd692e476df0e8e56c7a..dcd4ec31fc9bc344fe188d29e06b7157e02b6fdf 100644 (file)
@@ -78,9 +78,8 @@ string _drawpic_picpath;
 #define drawpic_aspect_skin(pos,pic,sz,color,theAlpha,drawflag)\
        MACRO_BEGIN \
                _drawpic_picpath = strcat(hud_skin_path, "/", pic);\
-               if(precache_pic(_drawpic_picpath) == "") {\
+               if(precache_pic(_drawpic_picpath) == "")\
                        _drawpic_picpath = strcat("gfx/hud/default/", pic);\
-               }\
                drawpic_aspect(pos, _drawpic_picpath, sz, color, theAlpha, drawflag);\
                _drawpic_picpath = string_null;\
        MACRO_END
@@ -89,9 +88,8 @@ string _drawpic_picpath;
 #define drawpic_skin(pos,pic,sz,color,theAlpha,drawflag)\
        MACRO_BEGIN \
                _drawpic_picpath = strcat(hud_skin_path, "/", pic);\
-               if(precache_pic(_drawpic_picpath) == "") {\
+               if(precache_pic(_drawpic_picpath) == "")\
                        _drawpic_picpath = strcat("gfx/hud/default/", pic);\
-               }\
                drawpic(pos, _drawpic_picpath, sz, color, theAlpha, drawflag);\
                _drawpic_picpath = string_null;\
        MACRO_END
index 185893138c5de234bfd32a2ddae8d552930ab5f4..4217f76f6105c05c53f4c8412385b218e3549884 100644 (file)
@@ -54,23 +54,23 @@ void HUD_Pickup()
        float display_time = min(5, autocvar_hud_panel_pickup_time);
        entity it = last_pickup_item;
 
-       if((last_pickup_time && last_pickup_time > time - display_time && it) || autocvar__hud_configure) {
+       if((last_pickup_time && last_pickup_time > time - display_time && it) || autocvar__hud_configure)
+       {
+               if(autocvar__hud_configure)
+                       it = ITEM_ArmorMega;
+
                string str_timer, str_name, icon;
-               vector sz, sz2;
                vector fontsize = '1 1 0' * mySize.y;
                vector iconsize = fontsize * autocvar_hud_panel_pickup_iconsize;
 
-               if(autocvar__hud_configure)
-                       icon = strcat(hud_skin_path, "/armor_mega");
-               else
-                       icon = strcat(hud_skin_path, "/", ((it.model2) ? it.model2 : it.m_icon));
+               icon = strcat(hud_skin_path, "/", (it.model2) ? it.model2 : it.m_icon);
+               if(precache_pic(icon) == "")
+                       icon = strcat("gfx/hud/default/", (it.model2) ? it.model2 : it.m_icon);
 
-               sz = draw_getimagesize(icon);
-               sz2 = vec2(iconsize.y*(sz.x/sz.y), iconsize.y);
-               if(autocvar__hud_configure)
-                       str_name = "Mega armor";
-               else
-                       str_name = ((last_pickup_count > 1) ? sprintf("%s (x%d)", it.m_name, last_pickup_count) : it.m_name);
+               vector sz = draw_getimagesize(icon);
+               sz = vec2(iconsize.y * (sz.y ? sz.x/sz.y : 1), iconsize.y);
+
+               str_name = ((last_pickup_count > 1) ? sprintf("%s (x%d)", it.m_name, last_pickup_count) : it.m_name);
 
                float a;
                float fade_out_time = min(display_time, autocvar_hud_panel_pickup_fade_out);
@@ -97,8 +97,8 @@ void HUD_Pickup()
                        }
                }
 
-               drawpic(pos - eY * ((iconsize.y - fontsize.y) / 2), icon, sz2, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
-               pos.x += sz2.x + fontsize.x * 0.25;
+               drawpic(pos - eY * ((iconsize.y - fontsize.y) / 2), icon, sz, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
+               pos.x += sz.x + fontsize.x * 0.25;
                str_name = textShortenToWidth(str_name, mySize.x - (pos.x - panel_pos.x), fontsize, stringwidth_nocolors);
                drawstring(pos, str_name, fontsize, '1 1 1', panel_fg_alpha * a, DRAWFLAG_NORMAL);
        }