]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/hud/panel/ammo.qc
Dynamic HUD: Rework panel resizing/shifting in a cleaner way and implement proper...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / hud / panel / ammo.qc
1 #include "ammo.qh"
2
3 #include <common/t_items.qh>
4
5 // Ammo (#1)
6
7 void DrawNadeProgressBar(vector myPos, vector mySize, float progress, vector color)
8 {
9         HUD_Panel_DrawProgressBar(
10                 myPos + eX * autocvar_hud_panel_ammo_progressbar_xoffset * mySize.x,
11                 mySize - eX * autocvar_hud_panel_ammo_progressbar_xoffset * mySize.x,
12                 autocvar_hud_panel_ammo_progressbar_name,
13                 progress, 0, 0, color,
14                 autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
15 }
16
17 void DrawAmmoNades(vector myPos, vector mySize, bool draw_expanding, float expand_time); // TODO: mutator
18
19 void DrawAmmoItem(vector myPos, vector mySize, .int ammoType, bool isCurrent, bool isInfinite)
20 {
21     TC(bool, isCurrent); TC(bool, isInfinite);
22         if(ammoType == ammo_none)
23                 return;
24
25         // Initialize variables
26
27         int ammo;
28         if(autocvar__hud_configure)
29         {
30                 isCurrent = (ammoType == ammo_rockets); // Rockets always current
31                 ammo = 60;
32         }
33         else
34                 ammo = getstati(GetAmmoStat(ammoType));
35
36         if(!isCurrent)
37         {
38                 float scale = bound(0, autocvar_hud_panel_ammo_noncurrent_scale, 1);
39                 myPos = myPos + (mySize - mySize * scale) * 0.5;
40                 mySize = mySize * scale;
41         }
42
43         vector iconPos, textPos;
44         if(autocvar_hud_panel_ammo_iconalign)
45         {
46                 iconPos = myPos + eX * 2 * mySize.y;
47                 textPos = myPos;
48         }
49         else
50         {
51                 iconPos = myPos;
52                 textPos = myPos + eX * mySize.y;
53         }
54
55         bool isShadowed = (ammo <= 0 && !isCurrent && !isInfinite);
56
57         vector iconColor = isShadowed ? '0 0 0' : '1 1 1';
58         vector textColor;
59         if(isInfinite)
60                 textColor = '0.2 0.95 0';
61         else if(isShadowed)
62                 textColor = '0 0 0';
63         else if(ammo < 10)
64                 textColor = '0.8 0.04 0';
65         else
66                 textColor = '1 1 1';
67
68         float alpha;
69         if(isCurrent)
70                 alpha = panel_fg_alpha;
71         else if(isShadowed)
72                 alpha = panel_fg_alpha * bound(0, autocvar_hud_panel_ammo_noncurrent_alpha, 1) * 0.5;
73         else
74                 alpha = panel_fg_alpha * bound(0, autocvar_hud_panel_ammo_noncurrent_alpha, 1);
75
76         string text = isInfinite ? "\xE2\x88\x9E" : ftos(ammo); // Use infinity symbol (U+221E)
77
78         // Draw item
79
80         if(isCurrent)
81                 drawpic_aspect_skin(myPos, "ammo_current_bg", mySize, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
82
83         if(ammo > 0 && autocvar_hud_panel_ammo_progressbar)
84                 HUD_Panel_DrawProgressBar(myPos + eX * autocvar_hud_panel_ammo_progressbar_xoffset * mySize.x, mySize - eX * autocvar_hud_panel_ammo_progressbar_xoffset * mySize.x, autocvar_hud_panel_ammo_progressbar_name, ammo/autocvar_hud_panel_ammo_maxammo, 0, 0, textColor, autocvar_hud_progressbar_alpha * alpha, DRAWFLAG_NORMAL);
85
86         if(autocvar_hud_panel_ammo_text)
87                 drawstring_aspect(textPos, text, eX * (2/3) * mySize.x + eY * mySize.y, textColor, alpha, DRAWFLAG_NORMAL);
88
89         drawpic_aspect_skin(iconPos, GetAmmoPicture(ammoType), '1 1 0' * mySize.y, iconColor, alpha, DRAWFLAG_NORMAL);
90 }
91
92 int nade_prevstatus;
93 int nade_prevframe;
94 float nade_statuschange_time;
95
96 void HUD_Ammo()
97 {
98         if(hud != HUD_NORMAL) return;
99         if(!autocvar__hud_configure)
100         {
101                 if(!autocvar_hud_panel_ammo) return;
102                 if(spectatee_status == -1) return;
103         }
104
105         HUD_Panel_UpdateCvars();
106
107         draw_beginBoldFont();
108
109         vector pos, mySize;
110         pos = panel_pos;
111         mySize = panel_size;
112
113         HUD_Scale_Enable();
114         HUD_Panel_DrawBg(1);
115         if(panel_bg_padding)
116         {
117                 pos += '1 1 0' * panel_bg_padding;
118                 mySize -= '2 2 0' * panel_bg_padding;
119         }
120
121         int rows = 0, columns, row, column;
122         float nade_cnt = STAT(NADE_BONUS), nade_score = STAT(NADE_BONUS_SCORE);
123         bool draw_nades = (nade_cnt > 0 || nade_score > 0);
124         float nade_statuschange_elapsedtime;
125         int total_ammo_count;
126
127         vector ammo_size;
128         if (autocvar_hud_panel_ammo_onlycurrent)
129                 total_ammo_count = 1;
130         else
131                 total_ammo_count = AMMO_COUNT;
132
133         if(draw_nades)
134         {
135                 ++total_ammo_count;
136                 if (nade_cnt != nade_prevframe)
137                 {
138                         nade_statuschange_time = time;
139                         nade_prevstatus = nade_prevframe;
140                         nade_prevframe = nade_cnt;
141                 }
142         }
143         else
144                 nade_prevstatus = nade_prevframe = nade_statuschange_time = 0;
145
146         rows = HUD_GetRowCount(total_ammo_count, mySize, 3);
147         columns = ceil((total_ammo_count)/rows);
148         ammo_size = eX * mySize.x*(1/columns) + eY * mySize.y*(1/rows);
149
150         vector offset = '0 0 0';
151         float newSize;
152         if(ammo_size.x/ammo_size.y > 3)
153         {
154                 newSize = 3 * ammo_size.y;
155                 offset.x = ammo_size.x - newSize;
156                 pos.x += offset.x/2;
157                 ammo_size.x = newSize;
158         }
159         else
160         {
161                 newSize = 1/3 * ammo_size.x;
162                 offset.y = ammo_size.y - newSize;
163                 pos.y += offset.y/2;
164                 ammo_size.y = newSize;
165         }
166
167         Weapon wep = switchweapon;
168         int i;
169         bool infinite_ammo = (STAT(ITEMS) & IT_UNLIMITED_WEAPON_AMMO);
170         row = column = 0;
171         if(autocvar_hud_panel_ammo_onlycurrent)
172         {
173                 if(autocvar__hud_configure)
174                 {
175                         DrawAmmoItem(pos, ammo_size, ammo_rockets, true, false);
176                 }
177                 else
178                 {
179                         DrawAmmoItem(
180                                 pos,
181                                 ammo_size,
182                                 wep.ammo_field,
183                                 true,
184                                 infinite_ammo
185                         );
186                 }
187
188                 ++row;
189                 if(row >= rows)
190                 {
191                         row = 0;
192                         column = column + 1;
193                 }
194         }
195         else
196         {
197                 .int ammotype;
198                 row = column = 0;
199                 for(i = 0; i < AMMO_COUNT; ++i)
200                 {
201                         ammotype = GetAmmoFieldFromNum(i);
202                         DrawAmmoItem(
203                                 pos + eX * column * (ammo_size.x + offset.x) + eY * row * (ammo_size.y + offset.y),
204                                 ammo_size,
205                                 ammotype,
206                                 (wep.ammo_field == ammotype),
207                                 infinite_ammo
208                         );
209
210                         ++row;
211                         if(row >= rows)
212                         {
213                                 row = 0;
214                                 column = column + 1;
215                         }
216                 }
217         }
218
219         if (draw_nades)
220         {
221                 nade_statuschange_elapsedtime = time - nade_statuschange_time;
222
223                 float f = bound(0, nade_statuschange_elapsedtime*2, 1);
224
225                 DrawAmmoNades(pos + eX * column * (ammo_size.x + offset.x) + eY * row * (ammo_size.y + offset.y), ammo_size, nade_prevstatus < nade_cnt && nade_cnt != 0 && f < 1, f);
226         }
227
228         draw_endBoldFont();
229 }