]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/hud/panel/centerprint.qc
Cleanup
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / hud / panel / centerprint.qc
1 #include "centerprint.qh"
2
3 #include "scoreboard.qh"
4
5 // CenterPrint (#16)
6
7 const int CENTERPRINT_MAX_MSGS = 10;
8 const int CENTERPRINT_MAX_ENTRIES = 50;
9 const float CENTERPRINT_SPACING = 0.7;
10 int cpm_index;
11 string centerprint_messages[CENTERPRINT_MAX_MSGS];
12 int centerprint_msgID[CENTERPRINT_MAX_MSGS];
13 float centerprint_time[CENTERPRINT_MAX_MSGS];
14 float centerprint_expire_time[CENTERPRINT_MAX_MSGS];
15 int centerprint_countdown_num[CENTERPRINT_MAX_MSGS];
16 bool centerprint_showing;
17
18 void centerprint_generic(int new_id, string strMessage, float duration, int countdown_num)
19 {
20     TC(int, new_id); TC(int, countdown_num);
21         //printf("centerprint_generic(%d, '%s^7', %d, %d);\n", new_id, strMessage, duration, countdown_num);
22         int i, j;
23
24         if(strMessage == "" && new_id == 0)
25                 return;
26
27         // strip trailing newlines
28         j = strlen(strMessage) - 1;
29         while(substring(strMessage, j, 1) == "\n" && j >= 0)
30                 --j;
31         if (j < strlen(strMessage) - 1)
32                 strMessage = substring(strMessage, 0, j + 1);
33
34         if(strMessage == "" && new_id == 0)
35                 return;
36
37         // strip leading newlines
38         j = 0;
39         while(substring(strMessage, j, 1) == "\n" && j < strlen(strMessage))
40                 ++j;
41         if (j > 0)
42                 strMessage = substring(strMessage, j, strlen(strMessage) - j);
43
44         if(strMessage == "" && new_id == 0)
45                 return;
46
47         if (!centerprint_showing)
48                 centerprint_showing = true;
49
50         for (i=0, j=cpm_index; i<CENTERPRINT_MAX_MSGS; ++i, ++j)
51         {
52                 if (j == CENTERPRINT_MAX_MSGS)
53                         j = 0;
54                 if (new_id && new_id == centerprint_msgID[j])
55                 {
56                         if (strMessage == "" && centerprint_messages[j] != "" && centerprint_countdown_num[j] == 0)
57                         {
58                                 // fade out the current msg (duration and countdown_num are ignored)
59                                 centerprint_time[j] = min(5, autocvar_hud_panel_centerprint_fade_out);
60                                 centerprint_expire_time[j] = -1; // don't use the variable time here!
61                                 return;
62                         }
63                         break; // found a msg with the same id, at position j
64                 }
65         }
66
67         if (i == CENTERPRINT_MAX_MSGS)
68         {
69                 // a msg with the same id was not found, add the msg at the next position
70                 --cpm_index;
71                 if (cpm_index == -1)
72                         cpm_index = CENTERPRINT_MAX_MSGS - 1;
73                 j = cpm_index;
74         }
75         if(centerprint_messages[j])
76                 strunzone(centerprint_messages[j]);
77         centerprint_messages[j] = strzone(strMessage);
78         centerprint_msgID[j] = new_id;
79         if (duration < 0)
80         {
81                 centerprint_time[j] = -1;
82                 centerprint_expire_time[j] = -1; // don't use the variable time here!
83         }
84         else
85         {
86                 if(duration == 0)
87                         duration = max(1, autocvar_hud_panel_centerprint_time);
88                 centerprint_time[j] = duration;
89                 centerprint_expire_time[j] = -1; // don't use the variable time here!
90         }
91         centerprint_countdown_num[j] = countdown_num;
92 }
93
94 void centerprint_kill(int id)
95 {
96     TC(int, id);
97         centerprint_generic(id, "", 0, 0);
98 }
99
100 void centerprint_hud(string strMessage)
101 {
102         centerprint_generic(0, strMessage, autocvar_hud_panel_centerprint_time, 0);
103 }
104
105 void reset_centerprint_messages()
106 {
107         for (int i=0; i<CENTERPRINT_MAX_MSGS; ++i)
108         {
109                 centerprint_expire_time[i] = 0;
110                 centerprint_time[i] = 1;
111                 centerprint_msgID[i] = 0;
112                 if(centerprint_messages[i])
113                         strunzone(centerprint_messages[i]);
114                 centerprint_messages[i] = string_null;
115         }
116 }
117 float hud_configure_cp_generation_time;
118 void HUD_CenterPrint ()
119 {
120         if(!autocvar__hud_configure)
121         {
122                 if(!autocvar_hud_panel_centerprint) return;
123
124                 if(hud_configure_prev)
125                         reset_centerprint_messages();
126         }
127         else
128         {
129                 if(!hud_configure_prev)
130                 {
131                         reset_centerprint_messages();
132                         hud_configure_cp_generation_time = time; // show a message immediately
133                 }
134                 if (time > hud_configure_cp_generation_time)
135                 {
136                         if(highlightedPanel == HUD_PANEL(CENTERPRINT))
137                         {
138                                 float r;
139                                 r = random();
140                                 if (r > 0.8)
141                                         centerprint_generic(floor(r*1000), strcat(sprintf("^3Countdown message at time %s", seconds_tostring(time)), ", seconds left: ^COUNT"), 1, 10);
142                                 else if (r > 0.55)
143                                         centerprint_generic(0, sprintf("^1Multiline message at time %s that\n^1lasts longer than normal", seconds_tostring(time)), 20, 0);
144                                 else
145                                         centerprint_hud(sprintf("Message at time %s", seconds_tostring(time)));
146                                 hud_configure_cp_generation_time = time + 1 + random()*4;
147                         }
148                         else
149                         {
150                                 centerprint_generic(0, sprintf("Centerprint message", seconds_tostring(time)), 10, 0);
151                                 hud_configure_cp_generation_time = time + 10 - random()*3;
152                         }
153                 }
154         }
155
156         // this panel fades only when the menu does
157         float hud_fade_alpha_save = hud_fade_alpha;
158         if(hud_configure_menu_open == 1)
159                 hud_fade_alpha = 1;
160         else
161                 hud_fade_alpha = 1 - autocvar__menu_alpha;
162
163         HUD_Panel_UpdateCvars();
164         hud_fade_alpha = hud_fade_alpha_save;
165
166         if ( HUD_Radar_Clickable() )
167         {
168                 if (hud_panel_radar_bottom >= 0.96 * vid_conheight)
169                         return;
170
171                 panel_pos = eY * hud_panel_radar_bottom + eX * 0.5 * (vid_conwidth - panel_size_x);
172                 panel_size_y = min(panel_size_y, vid_conheight - hud_panel_radar_bottom);
173         }
174         else if(!autocvar__hud_configure && scoreboard_fade_alpha)
175         {
176                 // move the panel below the scoreboard
177                 if (scoreboard_bottom >= 0.96 * vid_conheight)
178                         return;
179                 vector target_pos;
180                 target_pos = eY * scoreboard_bottom + eX * 0.5 * (vid_conwidth - panel_size.x);
181                 if(target_pos.y > panel_pos.y)
182                 {
183                         panel_pos = panel_pos + (target_pos - panel_pos) * sqrt(scoreboard_fade_alpha);
184                         panel_size.y = min(panel_size.y, vid_conheight - scoreboard_bottom);
185                 }
186         }
187
188         if (autocvar_hud_panel_centerprint_dynamichud)
189                 HUD_Scale_Enable();
190         else
191                 HUD_Scale_Disable();
192         HUD_Panel_DrawBg(1);
193
194         if (!centerprint_showing)
195                 return;
196
197         if(panel_bg_padding)
198         {
199                 panel_pos += '1 1 0' * panel_bg_padding;
200                 panel_size -= '2 2 0' * panel_bg_padding;
201         }
202
203         int entries;
204         float height;
205         vector fontsize;
206         // entries = bound(1, floor(CENTERPRINT_MAX_ENTRIES * 4 * panel_size_y/panel_size_x), CENTERPRINT_MAX_ENTRIES);
207         // height = panel_size_y/entries;
208         // fontsize = '1 1 0' * height;
209         height = vid_conheight/50 * autocvar_hud_panel_centerprint_fontscale;
210         fontsize = '1 1 0' * height;
211         entries = bound(1, floor(panel_size.y/height), CENTERPRINT_MAX_ENTRIES);
212
213         int i, j, k, n, g;
214         float a, sz, align, current_msg_posY = 0, msg_size;
215         vector pos;
216         string ts;
217         bool all_messages_expired = true;
218
219         pos = panel_pos;
220         if (autocvar_hud_panel_centerprint_flip)
221                 pos.y += panel_size.y;
222         align = bound(0, autocvar_hud_panel_centerprint_align, 1);
223         for (g=0, i=0, j=cpm_index; i<CENTERPRINT_MAX_MSGS; ++i, ++j)
224         {
225                 if (j == CENTERPRINT_MAX_MSGS)
226                         j = 0;
227                 if (centerprint_expire_time[j] == -1)
228                 {
229                         // here we are sure the time variable is not altered by CSQC_Ent_Update
230                         centerprint_expire_time[j] = time;
231                         if (centerprint_time[j] > 0)
232                                 centerprint_expire_time[j] += centerprint_time[j];
233                 }
234                 if (centerprint_expire_time[j] <= time)
235                 {
236                         if (centerprint_countdown_num[j] && centerprint_time[j] > 0)
237                         {
238                                 centerprint_countdown_num[j] = centerprint_countdown_num[j] - 1;
239                                 if (centerprint_countdown_num[j] == 0)
240                                         continue;
241                                 centerprint_expire_time[j] = centerprint_expire_time[j] + centerprint_time[j];
242                         }
243                         else if(centerprint_time[j] != -1)
244                                 continue;
245                 }
246
247                 all_messages_expired = false;
248
249                 // fade the centerprint_hud in/out
250                 if(centerprint_time[j] < 0)  // Expired but forced. Expire time is the fade-in time.
251                         a = (time - centerprint_expire_time[j]) / max(0.0001, autocvar_hud_panel_centerprint_fade_in);
252                 else if(centerprint_expire_time[j] - autocvar_hud_panel_centerprint_fade_out > time)  // Regularily printed. Not fading out yet.
253                         a = (time - (centerprint_expire_time[j] - centerprint_time[j])) / max(0.0001, autocvar_hud_panel_centerprint_fade_in);
254                 else // Expiring soon, so fade it out.
255                         a = (centerprint_expire_time[j] - time) / max(0.0001, autocvar_hud_panel_centerprint_fade_out);
256
257                 // while counting down show it anyway in order to hold the current message position
258                 if (a <= 0.5/255.0 && centerprint_countdown_num[j] == 0)  // Guaranteed invisible - don't show.
259                         continue;
260                 if (a > 1)
261                         a = 1;
262
263                 // set the size from fading in/out before subsequent fading
264                 sz = autocvar_hud_panel_centerprint_fade_minfontsize + a * (1 - autocvar_hud_panel_centerprint_fade_minfontsize);
265
266                 // also fade it based on positioning
267                 if(autocvar_hud_panel_centerprint_fade_subsequent)
268                 {
269                         // pass one: all messages after the first have half alpha
270                         a = a * bound(autocvar_hud_panel_centerprint_fade_subsequent_passone_minalpha, (1 - (g / max(1, autocvar_hud_panel_centerprint_fade_subsequent_passone))), 1);
271                         // pass two: after that, gradually lower alpha even more for each message
272                         a = a * bound(autocvar_hud_panel_centerprint_fade_subsequent_passtwo_minalpha, (1 - (g / max(1, autocvar_hud_panel_centerprint_fade_subsequent_passtwo))), 1);
273                 }
274                 a *= panel_fg_alpha;
275
276                 // finally set the size based on the new alpha from subsequent fading
277                 sz = sz * (autocvar_hud_panel_centerprint_fade_subsequent_minfontsize + a * (1 - autocvar_hud_panel_centerprint_fade_subsequent_minfontsize));
278                 drawfontscale = hud_scale * sz;
279
280                 if (centerprint_countdown_num[j])
281                         n = tokenizebyseparator(strreplace("^COUNT", count_seconds(centerprint_countdown_num[j]), centerprint_messages[j]), "\n");
282                 else
283                         n = tokenizebyseparator(centerprint_messages[j], "\n");
284
285                 if (autocvar_hud_panel_centerprint_flip)
286                 {
287                         // check if the message can be entirely shown
288                         for(k = 0; k < n; ++k)
289                         {
290                                 getWrappedLine_remaining = argv(k);
291                                 while(getWrappedLine_remaining)
292                                 {
293                                         ts = getWrappedLine(panel_size.x * hud_scale.x * sz, fontsize, stringwidth_colors);
294                                         if (ts != "")
295                                                 pos.y -= fontsize.y;
296                                         else
297                                                 pos.y -= fontsize.y * CENTERPRINT_SPACING/2;
298                                 }
299                         }
300                         current_msg_posY = pos.y; // save starting pos (first line) of the current message
301                 }
302
303                 msg_size = pos.y;
304                 for(k = 0; k < n; ++k)
305                 {
306                         getWrappedLine_remaining = argv(k);
307                         while(getWrappedLine_remaining)
308                         {
309                                 ts = getWrappedLine(panel_size.x * hud_scale.x * sz, fontsize, stringwidth_colors);
310                                 if (ts != "")
311                                 {
312                                         if (align)
313                                                 pos.x = panel_pos.x + (panel_size.x - stringwidth(ts, true, fontsize) * sz) * align;
314                                         if (a > 0.5/255.0)  // Otherwise guaranteed invisible - don't show. This is checked a second time after some multiplications with other factors were done so temporary changes of these cannot cause flicker.
315                                                 drawcolorcodedstring(pos + eY * 0.5 * (1 - sz * hud_scale.x) * fontsize.y, ts, fontsize, a, DRAWFLAG_NORMAL);
316                                         pos.y += fontsize.y;
317                                 }
318                                 else
319                                         pos.y += fontsize.y * CENTERPRINT_SPACING/2;
320                         }
321                 }
322
323                 ++g; // move next position number up
324
325                 msg_size = pos.y - msg_size;
326                 if (autocvar_hud_panel_centerprint_flip)
327                 {
328                         pos.y = current_msg_posY - CENTERPRINT_SPACING * fontsize.y;
329                         if (a < 1 && centerprint_msgID[j] == 0) // messages with id can be replaced just after they are faded out, so never move over them the next messages
330                                 pos.y += (msg_size + CENTERPRINT_SPACING * fontsize.y) * (1 - sqrt(sz));
331
332                         if (pos.y < panel_pos.y) // check if the next message can be shown
333                         {
334                                 drawfontscale = hud_scale;
335                                 return;
336                         }
337                 }
338                 else
339                 {
340                         pos.y += CENTERPRINT_SPACING * fontsize.y;
341                         if (a < 1 && centerprint_msgID[j] == 0) // messages with id can be replaced just after they are faded out, so never move over them the next messages
342                                 pos.y -= (msg_size + CENTERPRINT_SPACING * fontsize.y) * (1 - sqrt(sz));
343
344                         if(pos.y > panel_pos.y + panel_size.y - fontsize.y) // check if the next message can be shown
345                         {
346                                 drawfontscale = hud_scale;
347                                 return;
348                         }
349                 }
350         }
351         drawfontscale = hud_scale;
352         if (all_messages_expired)
353         {
354                 centerprint_showing = false;
355                 reset_centerprint_messages();
356         }
357 }