]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/hud/hud.qc
Fix PANEL_CONFIG_MAIN check
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / hud / hud.qc
1 #include "hud.qh"
2
3 #include "panel/scoreboard.qh"
4 #include "hud_config.qh"
5 #include "../mapvoting.qh"
6 #include "../teamradar.qh"
7 #include <common/t_items.qh>
8 #include <common/deathtypes/all.qh>
9 #include <common/items/all.qc>
10 #include <common/mapinfo.qh>
11 #include <common/vehicles/all.qh>
12 #include <common/mutators/mutator/waypoints/all.qh>
13 #include <common/stats.qh>
14 #include <lib/csqcmodel/cl_player.qh>
15 #include <server/mutators/mutator/gamemode_ctf.qh> // TODO: remove
16
17
18 /*
19 ==================
20 Misc HUD functions
21 ==================
22 */
23
24 vector HUD_Get_Num_Color (float x, float maxvalue)
25 {
26         float blinkingamt;
27         vector color;
28         if(x >= maxvalue) {
29                 color.x = sin(2*M_PI*time);
30                 color.y = 1;
31                 color.z = sin(2*M_PI*time);
32         }
33         else if(x > maxvalue * 0.75) {
34                 color.x = 0.4 - (x-150)*0.02 * 0.4; //red value between 0.4 -> 0
35                 color.y = 0.9 + (x-150)*0.02 * 0.1; // green value between 0.9 -> 1
36                 color.z = 0;
37         }
38         else if(x > maxvalue * 0.5) {
39                 color.x = 1 - (x-100)*0.02 * 0.6; //red value between 1 -> 0.4
40                 color.y = 1 - (x-100)*0.02 * 0.1; // green value between 1 -> 0.9
41                 color.z = 1 - (x-100)*0.02; // blue value between 1 -> 0
42         }
43         else if(x > maxvalue * 0.25) {
44                 color.x = 1;
45                 color.y = 1;
46                 color.z = 0.2 + (x-50)*0.02 * 0.8; // blue value between 0.2 -> 1
47         }
48         else if(x > maxvalue * 0.1) {
49                 color.x = 1;
50                 color.y = (x-20)*90/27/100; // green value between 0 -> 1
51                 color.z = (x-20)*90/27/100 * 0.2; // blue value between 0 -> 0.2
52         }
53         else {
54                 color.x = 1;
55                 color.y = 0;
56                 color.z = 0;
57         }
58
59         blinkingamt = (1 - x/maxvalue/0.25);
60         if(blinkingamt > 0)
61         {
62                 color.x = color.x - color.x * blinkingamt * sin(2*M_PI*time);
63                 color.y = color.y - color.y * blinkingamt * sin(2*M_PI*time);
64                 color.z = color.z - color.z * blinkingamt * sin(2*M_PI*time);
65         }
66         return color;
67 }
68
69 float HUD_GetRowCount(int item_count, vector size, float item_aspect)
70 {
71     TC(int, item_count);
72         float aspect = size_y / size_x;
73         return bound(1, floor((sqrt(4 * item_aspect * aspect * item_count + aspect * aspect) + aspect + 0.5) / 2), item_count);
74 }
75
76 vector HUD_GetTableSize_BestItemAR(int item_count, vector psize, float item_aspect)
77 {
78     TC(int, item_count);
79         float columns, rows;
80         float ratio, best_ratio = 0;
81         float best_columns = 1, best_rows = 1;
82         bool vertical = (psize.x / psize.y >= item_aspect);
83         if(vertical)
84         {
85                 psize = eX * psize.y + eY * psize.x;
86                 item_aspect = 1 / item_aspect;
87         }
88
89         rows = ceil(sqrt(item_count));
90         columns = ceil(item_count/rows);
91         while(columns >= 1)
92         {
93                 ratio = (psize.x/columns) / (psize.y/rows);
94                 if(ratio > item_aspect)
95                         ratio = item_aspect * item_aspect / ratio;
96
97                 if(ratio <= best_ratio)
98                         break; // ratio starts decreasing by now, skip next configurations
99
100                 best_columns = columns;
101                 best_rows = rows;
102                 best_ratio = ratio;
103
104                 if(columns == 1)
105                         break;
106
107                 --columns;
108                 rows = ceil(item_count/columns);
109         }
110
111         if(vertical)
112                 return eX * best_rows + eY * best_columns;
113         else
114                 return eX * best_columns + eY * best_rows;
115 }
116
117 /*
118 ==================
119 HUD panels
120 ==================
121 */
122
123 //basically the same code of draw_ButtonPicture and draw_VertButtonPicture for the menu
124 void HUD_Panel_DrawProgressBar(vector theOrigin, vector theSize, string pic, float length_ratio, bool vertical, float baralign, vector theColor, float theAlpha, int drawflag)
125 {
126     TC(bool, vertical); TC(int, drawflag);
127         if(!length_ratio || !theAlpha)
128                 return;
129         if(length_ratio > 1)
130                 length_ratio = 1;
131         if (baralign == 3)
132         {
133                 if(length_ratio < -1)
134                         length_ratio = -1;
135         }
136         else if(length_ratio < 0)
137                 return;
138
139         theOrigin = HUD_Shift(theOrigin);
140         theSize = HUD_Scale(theSize);
141
142         vector square;
143         vector width, height;
144         if(vertical) {
145                 pic = strcat(hud_skin_path, "/", pic, "_vertical");
146                 if(precache_pic(pic) == "") {
147                         pic = "gfx/hud/default/progressbar_vertical";
148                 }
149
150         if (baralign == 1) // bottom align
151                         theOrigin.y += (1 - length_ratio) * theSize.y;
152         else if (baralign == 2) // center align
153             theOrigin.y += 0.5 * (1 - length_ratio) * theSize.y;
154         else if (baralign == 3) // center align, positive values down, negative up
155                 {
156                         theSize.y *= 0.5;
157                         if (length_ratio > 0)
158                                 theOrigin.y += theSize.y;
159                         else
160                         {
161                                 theOrigin.y += (1 + length_ratio) * theSize.y;
162                                 length_ratio = -length_ratio;
163                         }
164                 }
165                 theSize.y *= length_ratio;
166
167                 vector bH;
168                 width = eX * theSize.x;
169                 height = eY * theSize.y;
170                 if(theSize.y <= theSize.x * 2)
171                 {
172                         // button not high enough
173                         // draw just upper and lower part then
174                         square = eY * theSize.y * 0.5;
175                         bH = eY * (0.25 * theSize.y / (theSize.x * 2));
176                         drawsubpic(theOrigin,          square + width, pic, '0 0 0', eX + bH, theColor, theAlpha, drawflag);
177                         drawsubpic(theOrigin + square, square + width, pic, eY - bH, eX + bH, theColor, theAlpha, drawflag);
178                 }
179                 else
180                 {
181                         square = eY * theSize.x;
182                         drawsubpic(theOrigin,                   width   +     square, pic, '0 0    0', '1 0.25 0', theColor, theAlpha, drawflag);
183                         drawsubpic(theOrigin +          square, theSize - 2 * square, pic, '0 0.25 0', '1 0.5  0', theColor, theAlpha, drawflag);
184                         drawsubpic(theOrigin + height - square, width   +     square, pic, '0 0.75 0', '1 0.25 0', theColor, theAlpha, drawflag);
185                 }
186         } else {
187                 pic = strcat(hud_skin_path, "/", pic);
188                 if(precache_pic(pic) == "") {
189                         pic = "gfx/hud/default/progressbar";
190                 }
191
192                 if (baralign == 1) // right align
193                         theOrigin.x += (1 - length_ratio) * theSize.x;
194         else if (baralign == 2) // center align
195             theOrigin.x += 0.5 * (1 - length_ratio) * theSize.x;
196         else if (baralign == 3) // center align, positive values on the right, negative on the left
197                 {
198                         theSize.x *= 0.5;
199                         if (length_ratio > 0)
200                                 theOrigin.x += theSize.x;
201                         else
202                         {
203                                 theOrigin.x += (1 + length_ratio) * theSize.x;
204                                 length_ratio = -length_ratio;
205                         }
206                 }
207                 theSize.x *= length_ratio;
208
209                 vector bW;
210                 width = eX * theSize.x;
211                 height = eY * theSize.y;
212                 if(theSize.x <= theSize.y * 2)
213                 {
214                         // button not wide enough
215                         // draw just left and right part then
216                         square = eX * theSize.x * 0.5;
217                         bW = eX * (0.25 * theSize.x / (theSize.y * 2));
218                         drawsubpic(theOrigin,          square + height, pic, '0 0 0', eY + bW, theColor, theAlpha, drawflag);
219                         drawsubpic(theOrigin + square, square + height, pic, eX - bW, eY + bW, theColor, theAlpha, drawflag);
220                 }
221                 else
222                 {
223                         square = eX * theSize.y;
224                         drawsubpic(theOrigin,                  height  +     square, pic, '0    0 0', '0.25 1 0', theColor, theAlpha, drawflag);
225                         drawsubpic(theOrigin +         square, theSize - 2 * square, pic, '0.25 0 0', '0.5  1 0', theColor, theAlpha, drawflag);
226                         drawsubpic(theOrigin + width - square, height  +     square, pic, '0.75 0 0', '0.25 1 0', theColor, theAlpha, drawflag);
227                 }
228         }
229 }
230
231 void HUD_Panel_DrawHighlight(vector pos, vector mySize, vector color, float theAlpha, int drawflag)
232 {
233     TC(int, drawflag);
234         if(!theAlpha)
235                 return;
236
237         pos = HUD_Shift(pos);
238         mySize = HUD_Scale(mySize);
239
240         string pic;
241         pic = strcat(hud_skin_path, "/num_leading");
242         if(precache_pic(pic) == "") {
243                 pic = "gfx/hud/default/num_leading";
244         }
245
246         drawsubpic(pos, eX * min(mySize.x * 0.5, mySize.y) + eY * mySize.y, pic, '0 0 0', '0.25 1 0', color, theAlpha, drawflag);
247         if(mySize.x/mySize.y > 2)
248                 drawsubpic(pos + eX * mySize.y, eX * (mySize.x - 2 * mySize.y) + eY * mySize.y, pic, '0.25 0 0', '0.5 1 0', color, theAlpha, drawflag);
249         drawsubpic(pos + eX * mySize.x - eX * min(mySize.x * 0.5, mySize.y), eX * min(mySize.x * 0.5, mySize.y) + eY * mySize.y, pic, '0.75 0 0', '0.25 1 0', color, theAlpha, drawflag);
250 }
251
252 void DrawNumIcon_expanding(vector myPos, vector mySize, float x, string icon, bool vertical, int icon_right_align, vector color, float theAlpha, float fadelerp)
253 {
254     TC(bool, vertical); TC(int, icon_right_align);
255         vector newPos = '0 0 0', newSize = '0 0 0';
256         vector picpos, numpos;
257
258         if (vertical)
259         {
260                 if(mySize.y/mySize.x > 2)
261                 {
262                         newSize.y = 2 * mySize.x;
263                         newSize.x = mySize.x;
264
265                         newPos.y = myPos.y + (mySize.y - newSize.y) / 2;
266                         newPos.x = myPos.x;
267                 }
268                 else
269                 {
270                         newSize.x = 1/2 * mySize.y;
271                         newSize.y = mySize.y;
272
273                         newPos.x = myPos.x + (mySize.x - newSize.x) / 2;
274                         newPos.y = myPos.y;
275                 }
276
277                 if(icon_right_align)
278                 {
279                         numpos = newPos;
280                         picpos = newPos + eY * newSize.x;
281                 }
282                 else
283                 {
284                         picpos = newPos;
285                         numpos = newPos + eY * newSize.x;
286                 }
287
288                 newSize.y /= 2;
289                 drawpic_aspect_skin(picpos, icon, newSize, '1 1 1', panel_fg_alpha * theAlpha, DRAWFLAG_NORMAL);
290                 // make number smaller than icon, it looks better
291                 // reduce only y to draw numbers with different number of digits with the same y size
292                 numpos.y += newSize.y * ((1 - 0.7) / 2);
293                 newSize.y *= 0.7;
294                 drawstring_aspect(numpos, ftos(x), newSize, color, panel_fg_alpha * theAlpha, DRAWFLAG_NORMAL);
295                 return;
296         }
297
298         if(mySize.x/mySize.y > 3)
299         {
300                 newSize.x = 3 * mySize.y;
301                 newSize.y = mySize.y;
302
303                 newPos.x = myPos.x + (mySize.x - newSize.x) / 2;
304                 newPos.y = myPos.y;
305         }
306         else
307         {
308                 newSize.y = 1/3 * mySize.x;
309                 newSize.x = mySize.x;
310
311                 newPos.y = myPos.y + (mySize.y - newSize.y) / 2;
312                 newPos.x = myPos.x;
313         }
314
315         if(icon_right_align) // right align
316         {
317                 numpos = newPos;
318                 picpos = newPos + eX * 2 * newSize.y;
319         }
320         else // left align
321         {
322                 numpos = newPos + eX * newSize.y;
323                 picpos = newPos;
324         }
325
326         // NOTE: newSize_x is always equal to 3 * mySize_y so we can use
327         // '2 1 0' * newSize_y instead of eX * (2/3) * newSize_x + eY * newSize_y
328         drawstring_aspect_expanding(numpos, ftos(x), '2 1 0' * newSize.y, color, panel_fg_alpha * theAlpha, DRAWFLAG_NORMAL, fadelerp);
329         drawpic_aspect_skin_expanding(picpos, icon, '1 1 0' * newSize.y, '1 1 1', panel_fg_alpha * theAlpha, DRAWFLAG_NORMAL, fadelerp);
330 }
331
332 void DrawNumIcon(vector myPos, vector mySize, float x, string icon, bool vertical, int icon_right_align, vector color, float theAlpha)
333 {
334     TC(bool, vertical); TC(int, icon_right_align);
335         DrawNumIcon_expanding(myPos, mySize, x, icon, vertical, icon_right_align, color, theAlpha, 0);
336 }
337
338 #include "all.inc"
339
340 /*
341 ==================
342 Main HUD system
343 ==================
344 */
345
346 void CSQC_BUMBLE_GUN_HUD();
347
348 void HUD_Vehicle()
349 {
350         if(autocvar__hud_configure) return;
351         if(intermission == 2) return;
352
353         if(hud == HUD_BUMBLEBEE_GUN)
354                 CSQC_BUMBLE_GUN_HUD();
355         else {
356                 Vehicle info = Vehicles_from(hud);
357                 info.vr_hud(info);
358         }
359 }
360
361 void HUD_Panel_Draw(entity panent)
362 {
363         panel = panent;
364         if (autocvar__hud_configure)
365         {
366                 if (!(panel.panel_configflags & PANEL_CONFIG_MAIN))
367                         return;
368                 panel.panel_draw();
369                 return;
370         }
371
372         bool draw_allowed = false;
373         if ((panel.panel_showflags & PANEL_SHOW_MINIGAME) && HUD_Minigame_Showpanels())
374                 draw_allowed = true;
375         else if((panel.panel_showflags & PANEL_SHOW_MAPVOTE) && intermission == 2)
376                 draw_allowed = true;
377         else if (panel.panel_showflags & PANEL_SHOW_MAINGAME)
378                 draw_allowed = true;
379
380         if (draw_allowed)
381         {
382                 if (panel.panel_showflags & PANEL_SHOW_WITH_SB)
383                         panel_fade_alpha = 1;
384                 else
385                 {
386                         panel_fade_alpha = 1 - scoreboard_fade_alpha;
387                         if(!panel_fade_alpha)
388                                 return;
389                 }
390                 panel.panel_draw();
391         }
392 }
393
394 void HUD_Reset()
395 {
396         // reset gametype specific icons
397         if(gametype.m_modicons_reset)
398                 gametype.m_modicons_reset();
399 }
400
401 float autocvar_hud_dynamic_shake = 1;
402 float autocvar_hud_dynamic_shake_damage_max = 130;
403 float autocvar_hud_dynamic_shake_damage_min = 10;
404 float autocvar_hud_dynamic_shake_scale = 0.2;
405 float hud_dynamic_shake_x[10] = {0,    1, -0.7,  0.5, -0.3,  0.2, -0.1,  0.1,  0.0, 0};
406 float hud_dynamic_shake_y[10] = {0,  0.4,  0.8, -0.2, -0.6,  0.0,  0.3,  0.1, -0.1, 0};
407 bool Hud_Shake_Update()
408 {
409         if(time - hud_dynamic_shake_time < 0)
410                 return false;
411
412         float anim_speed = 17 + 9 * hud_dynamic_shake_factor;
413         float elapsed_time = (time - hud_dynamic_shake_time) * anim_speed;
414         int i = floor(elapsed_time);
415         if(i >= 9)
416                 return false;
417
418         float f = elapsed_time - i;
419         hud_dynamic_shake_realofs.x = (1 - f) * hud_dynamic_shake_x[i] + f * hud_dynamic_shake_x[i+1];
420         hud_dynamic_shake_realofs.y = (1 - f) * hud_dynamic_shake_y[i] + f * hud_dynamic_shake_y[i+1];
421         hud_dynamic_shake_realofs.z = 0;
422         hud_dynamic_shake_realofs *= hud_dynamic_shake_factor * autocvar_hud_dynamic_shake_scale;
423         hud_dynamic_shake_realofs.x = bound(-0.1, hud_dynamic_shake_realofs.x, 0.1) * vid_conwidth;
424         hud_dynamic_shake_realofs.y = bound(-0.1, hud_dynamic_shake_realofs.y, 0.1) * vid_conheight;
425         return true;
426 }
427
428 void calc_followmodel_ofs(entity view);
429 void Hud_Dynamic_Frame()
430 {
431         vector ofs = '0 0 0';
432         hud_scale = '1 1 0';
433         hud_shift = '0 0 0';
434         if (autocvar_hud_dynamic_follow)
435         {
436                 entity view = CSQCModel_server2csqc(player_localentnum - 1);
437                 calc_followmodel_ofs(view);
438                 ofs = -cl_followmodel_ofs * autocvar_hud_dynamic_follow_scale;
439                 ofs.x *= autocvar_hud_dynamic_follow_scale_xyz.z;
440                 ofs.y *= autocvar_hud_dynamic_follow_scale_xyz.x;
441                 ofs.z *= autocvar_hud_dynamic_follow_scale_xyz.y;
442
443                 if (fabs(ofs.x) < 0.001) ofs.x = 0;
444                 if (fabs(ofs.y) < 0.001) ofs.y = 0;
445                 if (fabs(ofs.z) < 0.001) ofs.z = 0;
446                 ofs.x = bound(-0.1, ofs.x, 0.1);
447                 ofs.y = bound(-0.1, ofs.y, 0.1);
448                 ofs.z = bound(-0.1, ofs.z, 0.1);
449
450                 hud_shift.x = ofs.y * vid_conwidth;
451                 hud_shift.y = ofs.z * vid_conheight;
452                 hud_shift.z = ofs.x;
453
454                 hud_scale.x = (1 + hud_shift.z);
455                 hud_scale.y = hud_scale.x;
456         }
457
458         if(autocvar_hud_dynamic_shake > 0)
459         {
460                 static float old_health = 0;
461                 float health = max(-1, STAT(HEALTH));
462                 if(hud_dynamic_shake_factor == -1) // don't allow the effect for this frame
463                 {
464                         hud_dynamic_shake_factor = 0;
465                         old_health = health;
466                 }
467                 else
468                 {
469                         float new_hud_dynamic_shake_factor = 0;
470                         if (old_health - health >= autocvar_hud_dynamic_shake_damage_min
471                                 && autocvar_hud_dynamic_shake_damage_max > autocvar_hud_dynamic_shake_damage_min
472                                 && old_health > 0 && !intermission)
473                         {
474                                 float m = max(autocvar_hud_dynamic_shake_damage_min, 1);
475                                 new_hud_dynamic_shake_factor = (old_health - health - m) / (autocvar_hud_dynamic_shake_damage_max - m);
476                                 if(new_hud_dynamic_shake_factor >= 1)
477                                         new_hud_dynamic_shake_factor = 1;
478                                 if(new_hud_dynamic_shake_factor >= hud_dynamic_shake_factor)
479                                 {
480                                         hud_dynamic_shake_factor = new_hud_dynamic_shake_factor;
481                                         hud_dynamic_shake_time = time;
482                                 }
483                         }
484                         old_health = health;
485                         if(hud_dynamic_shake_factor)
486                                 if(!Hud_Shake_Update())
487                                         hud_dynamic_shake_factor = 0;
488                 }
489
490                 if(hud_dynamic_shake_factor > 0)
491                 {
492                         hud_shift.x += hud_dynamic_shake_realofs.x;
493                         hud_shift.y += hud_dynamic_shake_realofs.y;
494                 }
495         }
496
497         hud_scale_center.x = 0.5 * vid_conwidth;
498         hud_scale_center.y = 0.5 * vid_conheight;
499
500         hud_scale_current = hud_scale;
501         hud_shift_current = hud_shift;
502 }
503
504 void HUD_Main()
505 {
506         int i;
507         if(hud_configure_menu_open == 1)
508                 hud_fade_alpha = 1;
509         else
510                 hud_fade_alpha = 1 - autocvar__menu_alpha;
511
512         HUD_Configure_Frame();
513
514         Hud_Dynamic_Frame();
515
516         if(scoreboard_fade_alpha == 1)
517                 if(autocvar__menu_alpha == 1)
518                         return;
519
520         // Drawing stuff
521         if (hud_skin_prev != autocvar_hud_skin)
522         {
523                 if (hud_skin_path)
524                         strunzone(hud_skin_path);
525                 hud_skin_path = strzone(strcat("gfx/hud/", autocvar_hud_skin));
526                 if (hud_skin_prev)
527                         strunzone(hud_skin_prev);
528                 hud_skin_prev = strzone(autocvar_hud_skin);
529         }
530
531         // draw the dock
532         if(autocvar_hud_dock != "" && autocvar_hud_dock != "0")
533         {
534                 int f;
535                 vector color;
536                 float hud_dock_color_team = autocvar_hud_dock_color_team;
537                 if((teamplay) && hud_dock_color_team) {
538                         if(autocvar__hud_configure && myteam == NUM_SPECTATOR)
539                                 color = '1 0 0' * hud_dock_color_team;
540                         else
541                                 color = myteamcolors * hud_dock_color_team;
542                 }
543                 else if(autocvar_hud_configure_teamcolorforced && autocvar__hud_configure && hud_dock_color_team) {
544                         color = '1 0 0' * hud_dock_color_team;
545                 }
546                 else
547                 {
548                         string hud_dock_color = autocvar_hud_dock_color;
549                         if(hud_dock_color == "shirt") {
550                                 f = stof(getplayerkeyvalue(current_player, "colors"));
551                                 color = colormapPaletteColor(floor(f / 16), 0);
552                         }
553                         else if(hud_dock_color == "pants") {
554                                 f = stof(getplayerkeyvalue(current_player, "colors"));
555                                 color = colormapPaletteColor(f % 16, 1);
556                         }
557                         else
558                                 color = stov(hud_dock_color);
559                 }
560
561                 string pic;
562                 pic = strcat(hud_skin_path, "/", autocvar_hud_dock);
563                 if(precache_pic(pic) == "") {
564                         pic = strcat(hud_skin_path, "/dock_medium");
565                         if(precache_pic(pic) == "") {
566                                 pic = "gfx/hud/default/dock_medium";
567                         }
568                 }
569                 drawpic('0 0 0', pic, eX * vid_conwidth + eY * vid_conheight, color, autocvar_hud_dock_alpha * hud_fade_alpha, DRAWFLAG_NORMAL); // no aspect ratio forcing on dock...
570         }
571
572         // cache the panel order into the panel_order array
573         if(autocvar__hud_panelorder != hud_panelorder_prev) {
574                 for(i = 0; i < hud_panels_COUNT; ++i)
575                         panel_order[i] = -1;
576                 string s = "";
577                 int p_num;
578                 bool warning = false;
579                 int argc = tokenize_console(autocvar__hud_panelorder);
580                 if (argc > hud_panels_COUNT)
581                         warning = true;
582                 //first detect wrong/missing panel numbers
583                 for(i = 0; i < hud_panels_COUNT; ++i) {
584                         p_num = stoi(argv(i));
585                         if (p_num >= 0 && p_num < hud_panels_COUNT) { //correct panel number?
586                                 if (panel_order[p_num] == -1) //found for the first time?
587                                         s = strcat(s, ftos(p_num), " ");
588                                 panel_order[p_num] = 1; //mark as found
589                         }
590                         else
591                                 warning = true;
592                 }
593                 for(i = 0; i < hud_panels_COUNT; ++i) {
594                         if (panel_order[i] == -1) {
595                                 warning = true;
596                                 s = strcat(s, ftos(i), " "); //add missing panel number
597                         }
598                 }
599                 if (warning)
600                         LOG_TRACE("Automatically fixed wrong/missing panel numbers in _hud_panelorder");
601
602                 cvar_set("_hud_panelorder", s);
603                 if(hud_panelorder_prev)
604                         strunzone(hud_panelorder_prev);
605                 hud_panelorder_prev = strzone(s);
606
607                 //now properly set panel_order
608                 tokenize_console(s);
609                 for(i = 0; i < hud_panels_COUNT; ++i) {
610                         panel_order[i] = stof(argv(i));
611                 }
612         }
613
614         hud_draw_maximized = 0;
615         // draw panels in the order specified by panel_order array
616         for(i = hud_panels_COUNT - 1; i >= 0; --i)
617                 HUD_Panel_Draw(hud_panels_from(panel_order[i]));
618
619         HUD_Vehicle();
620
621         hud_draw_maximized = 1; // panels that may be maximized must check this var
622         // draw maximized panels on top
623         if(hud_panel_radar_maximized)
624                 HUD_Panel_Draw(HUD_PANEL(RADAR));
625         if(autocvar__con_chat_maximized)
626                 HUD_Panel_Draw(HUD_PANEL(CHAT));
627         if(hud_panel_quickmenu)
628                 HUD_Panel_Draw(HUD_PANEL(QUICKMENU));
629         HUD_Panel_Draw(HUD_PANEL(SCOREBOARD));
630
631         if (intermission == 2)
632                 HUD_Reset();
633
634         HUD_Configure_PostDraw();
635
636         hud_configure_prev = autocvar__hud_configure;
637 }