]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/notifications/all.qc
685febf0fdfbdab915e8c516ca8baaef3e8502c0
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / notifications / all.qc
1 #include "all.qh"
2
3 #if defined(CSQC)
4         #include <client/announcer.qh>
5 #elif defined(MENUQC)
6 #elif defined(SVQC)
7         #include <common/constants.qh>
8         #include <common/net_linked.qh>
9         #include <common/teams.qh>
10         #include <server/command/getreplies.qh>
11         #include <server/mutators/_mod.qh>
12         #include <server/world.qh>
13 #endif
14
15 // ================================================
16 //  Unified notification system, written by Samual
17 //  Last updated: August, 2013
18 // ================================================
19
20 #ifdef SVQC
21 string Notification_CheckArgs(
22         NOTIF broadcast, entity client)
23 {
24         // check supplied broadcast and target for errors
25         switch (broadcast)
26         {
27                 case NOTIF_ONE:
28                 case NOTIF_ONE_ONLY:
29                 {
30                         if (IS_NOT_A_CLIENT(client)) {
31                                 return "No client provided!";
32                         }
33                         break;
34                 }
35
36                 case NOTIF_ALL_EXCEPT:
37                 {
38                         if (IS_NOT_A_CLIENT(client)) {
39                                 return "Exception can't be a non-client!";
40                         }
41                         break;
42                 }
43
44                 case NOTIF_ALL:
45                 {
46                         if (client) {
47                                 return "Entity provided when NULL was required!";
48                         }
49                         break;
50                 }
51
52                 case NOTIF_TEAM:
53                 {
54                         if (!teamplay) {
55                                 return "Teamplay not active!";
56                         } else if (!client.team) {
57                                 // checkargs = sprintf("%sNo team provided!", checkargs);
58                         }
59                         break;
60                 }
61
62                 case NOTIF_TEAM_EXCEPT:
63                 {
64                         if (!teamplay) {
65                                 return "Teamplay not active!";
66                         } else if (IS_NOT_A_CLIENT(client)) {
67                                 return "Exception can't be a non-client!";
68                         }
69                         break;
70                 }
71
72                 default:
73                 {
74                         return sprintf("Improper broadcast: %d!", broadcast);
75                 }
76         }
77         return "";
78 }
79
80 bool Notification_ShouldSend(NOTIF broadcast, entity to_client, entity other_client)
81 {
82         if(!IS_REAL_CLIENT(to_client))
83                 return false;
84
85         switch (broadcast)
86         {
87                 case NOTIF_ONE:
88                         return (
89                                 (to_client == other_client)
90                                 ||
91                                 (IS_SPEC(to_client) && (to_client.enemy == other_client))
92                         );
93                 case NOTIF_ONE_ONLY:
94                         return (to_client == other_client);
95                 case NOTIF_TEAM:
96                         return (
97                                 (to_client.team == other_client.team)
98                                 ||
99                                 (
100                                         IS_SPEC(to_client)
101                                         &&
102                                         (to_client.enemy.team == other_client.team)
103                                 )
104                         );
105                 case NOTIF_TEAM_EXCEPT:
106                         return (
107                                 (to_client != other_client)
108                                 &&
109                                 (
110                                         (to_client.team == other_client.team)
111                                         ||
112                                         (
113                                                 IS_SPEC(to_client)
114                                                 &&
115                                                 (
116                                                         (to_client.enemy != other_client)
117                                                         &&
118                                                         (to_client.enemy.team == other_client.team)
119                                                 )
120                                         )
121                                 )
122                         );
123                 case NOTIF_ALL:
124                         return true;
125                 case NOTIF_ALL_EXCEPT:
126                         return (
127                                 (to_client != other_client)
128                                 &&
129                                 !(
130                                         IS_SPEC(to_client)
131                                         &&
132                                         (to_client.enemy == other_client)
133                                 )
134                         );
135                 default:
136                         return false;
137         }
138 }
139
140 #endif
141
142 // ===============================
143 //  Initialization Core Functions
144 // ===============================
145
146 // used by restartnotifs command to initialize notifications
147 void Destroy_Notification_Entity(entity notif)
148 {
149         if (notif.nent_name != "") strunzone(notif.nent_name);
150         if (notif.nent_snd != "") strunzone(notif.nent_snd);
151         if (notif.nent_args != "") strunzone(notif.nent_args);
152         if (notif.nent_hudargs != "") strunzone(notif.nent_hudargs);
153         if (notif.nent_icon != "") strunzone(notif.nent_icon);
154         if (notif.nent_durcnt != "") strunzone(notif.nent_durcnt);
155         if (notif.nent_string != "") strunzone(notif.nent_string);
156         delete(notif);
157 }
158
159 void Destroy_All_Notifications()
160 {
161         // kill all networked notifications and centerprints
162         #ifdef SVQC
163         Kill_Notification(NOTIF_ALL, NULL, MSG_Null, CPID_Null);
164         #else
165         centerprint_KillAll();
166         #endif
167
168         // kill all real notification entities
169         FOREACH(Notifications, true, { Destroy_Notification_Entity(it); });
170 }
171
172 string Process_Notif_Line(
173         MSG typeId,
174         bool chat,
175         string input,
176         string notiftype,
177         string notifname,
178         string stringtype)
179 {
180         #ifdef CSQC
181         if(typeId == MSG_INFO)
182         {
183                 if((chat && autocvar_notification_allow_chatboxprint)
184                         || (autocvar_notification_allow_chatboxprint == 2))
185                 {
186                         // pass 1: add ETX char at beginning of line
187                         input = strcat("\{3}", input);
188
189                         // pass 2: add ETX char at end of each new line (so that
190                         // messages with multiple lines are put through chatbox too)
191                         input = strreplace("\n", "\n\{3}", input);
192
193                         // pass 3: strip trailing ETX char
194                         if(substring(input, (strlen(input) - 1), 1) == "\{3}")
195                                 { input = substring(input, 0, (strlen(input) - 1)); }
196                 }
197         }
198         #endif
199
200         // done to both MSG_INFO and MSG_CENTER
201         if(substring(input, (strlen(input) - 1), 1) == "\n")
202         {
203                 LOG_INFOF(
204                         (
205                                 "^1TRAILING NEW LINE AT END OF NOTIFICATION: "
206                                 "^7net_type = %s, net_name = %s, string = %s."
207                         ),
208                         notiftype,
209                         notifname,
210                         stringtype
211                 );
212                 notif_error = true;
213                 input = substring(input, 1, (strlen(input) - 1));
214         }
215
216         return input;
217 }
218
219 string Process_Notif_Args(
220         float arg_type,
221         string args,
222         string notiftype,
223         string notifname)
224 {
225         string selected, remaining = args;
226         float sel_num = 0;
227
228         for (;(remaining != "");)
229         {
230                 selected = car(remaining); remaining = cdr(remaining);
231
232                 switch(arg_type)
233                 {
234                         case 1: // normal args
235                         {
236                                 if(sel_num == NOTIF_MAX_ARGS)
237                                 {
238                                         LOG_INFOF(
239                                                 (
240                                                         "^1NOTIFICATION HAS TOO MANY ARGUMENTS: "
241                                                         "^7net_type = %s, net_name = %s, max args = %d."
242                                                 ),
243                                                 notiftype,
244                                                 notifname,
245                                                 NOTIF_MAX_ARGS
246                                         );
247                                         notif_error = true;
248                                         break;
249                                 }
250
251                                 switch(strtolower(selected))
252                                 {
253                                         #define ARG_CASE_ARG_CS_SV_HA(selected,result) case selected: ++sel_num; break;
254                                         #define ARG_CASE_ARG_CS_SV_DC(selected,result) case selected: ++sel_num; break;
255                                         #define ARG_CASE_ARG_CS_SV(selected,result)    case selected: ++sel_num; break;
256                                         #define ARG_CASE_ARG_CS(selected,result)       case selected: ++sel_num; break;
257                                         #define ARG_CASE_ARG_SV(selected,result)       case selected: ++sel_num; break;
258                                         #define ARG_CASE_ARG_DC(selected,result)
259                                         #define ARG_CASE(prog,selected,result)         ARG_CASE_##prog(selected,result)
260                                         NOTIF_ARGUMENT_LIST
261                                         #undef ARG_CASE
262                                         #undef ARG_CASE_ARG_DC
263                                         #undef ARG_CASE_ARG_SV
264                                         #undef ARG_CASE_ARG_CS
265                                         #undef ARG_CASE_ARG_CS_SV
266                                         #undef ARG_CASE_ARG_CS_SV_DC
267                                         #undef ARG_CASE_ARG_CS_SV_HA
268                                         default:
269                                         {
270                                                 LOG_INFOF(
271                                                         (
272                                                                 "^1NOTIFICATION WITH UNKNOWN TOKEN IN ARGUMENT STRING: "
273                                                                 "^7net_type = %s, net_name = %s, args arg = '%s'."
274                                                         ),
275                                                         notiftype,
276                                                         notifname,
277                                                         selected
278                                                 );
279                                                 notif_error = true;
280                                                 break;
281                                         }
282                                 }
283                                 break;
284                         }
285                         case 2: // hudargs
286                         {
287                                 if(sel_num == NOTIF_MAX_HUDARGS)
288                                 {
289                                         LOG_INFOF(
290                                                 (
291                                                         "^1NOTIFICATION HAS TOO MANY ARGUMENTS: "
292                                                         "^7net_type = %s, net_name = %s, max hudargs = %d."
293                                                 ),
294                                                 notiftype,
295                                                 notifname,
296                                                 NOTIF_MAX_HUDARGS
297                                         );
298                                         notif_error = true;
299                                         break;
300                                 }
301
302                                 switch(strtolower(selected))
303                                 {
304                                         #define ARG_CASE_ARG_CS_SV_HA(selected,result) case selected: ++sel_num; break;
305                                         #define ARG_CASE_ARG_CS_SV_DC(selected,result)
306                                         #define ARG_CASE_ARG_CS_SV(selected,result)
307                                         #define ARG_CASE_ARG_CS(selected,result)
308                                         #define ARG_CASE_ARG_SV(selected,result)
309                                         #define ARG_CASE_ARG_DC(selected,result)
310                                         #define ARG_CASE(prog,selected,result)         ARG_CASE_##prog(selected,result)
311                                         NOTIF_ARGUMENT_LIST
312                                         #undef ARG_CASE
313                                         #undef ARG_CASE_ARG_DC
314                                         #undef ARG_CASE_ARG_SV
315                                         #undef ARG_CASE_ARG_CS
316                                         #undef ARG_CASE_ARG_CS_SV
317                                         #undef ARG_CASE_ARG_CS_SV_DC
318                                         #undef ARG_CASE_ARG_CS_SV_HA
319                                         default:
320                                         {
321                                                 LOG_INFOF(
322                                                         (
323                                                                 "^1NOTIFICATION WITH UNKNOWN TOKEN IN ARGUMENT STRING: "
324                                                                 "^7net_type = %s, net_name = %s, hudargs arg = '%s'."
325                                                         ),
326                                                         notiftype,
327                                                         notifname,
328                                                         selected
329                                                 );
330                                                 notif_error = true;
331                                                 break;
332                                         }
333                                 }
334                                 break;
335                         }
336                         case 3: // durcnt
337                         {
338                                 if(sel_num == NOTIF_MAX_DURCNT)
339                                 {
340                                         LOG_INFOF(
341                                                 (
342                                                         "^1NOTIFICATION HAS TOO MANY ARGUMENTS: "
343                                                         "^7net_type = %s, net_name = %s, max durcnt = %d."
344                                                 ),
345                                                 notiftype,
346                                                 notifname,
347                                                 NOTIF_MAX_DURCNT
348                                         );
349                                         notif_error = true;
350                                         break;
351                                 }
352
353                                 switch(strtolower(selected))
354                                 {
355                                         #define ARG_CASE_ARG_CS_SV_HA(selected,result)
356                                         #define ARG_CASE_ARG_CS_SV_DC(selected,result) case selected: ++sel_num; break;
357                                         #define ARG_CASE_ARG_CS_SV(selected,result)
358                                         #define ARG_CASE_ARG_CS(selected,result)
359                                         #define ARG_CASE_ARG_SV(selected,result)
360                                         #define ARG_CASE_ARG_DC(selected,result)       case selected: ++sel_num; break;
361                                         #define ARG_CASE(prog,selected,result)         ARG_CASE_##prog(selected,result)
362                                         NOTIF_ARGUMENT_LIST
363                                         #undef ARG_CASE
364                                         #undef ARG_CASE_ARG_DC
365                                         #undef ARG_CASE_ARG_SV
366                                         #undef ARG_CASE_ARG_CS
367                                         #undef ARG_CASE_ARG_CS_SV
368                                         #undef ARG_CASE_ARG_CS_SV_DC
369                                         #undef ARG_CASE_ARG_CS_SV_HA
370                                         default:
371                                         {
372                                                 if(ftos(stof(selected)) != "") { ++sel_num; }
373                                                 else
374                                                 {
375                                                         LOG_INFOF(
376                                                                 (
377                                                                         "^1NOTIFICATION WITH UNKNOWN TOKEN IN ARGUMENT STRING: "
378                                                                         "^7net_type = %s, net_name = %s, durcnt arg = '%s'."
379                                                                 ),
380                                                                 notiftype,
381                                                                 notifname,
382                                                                 selected
383                                                         );
384                                                         notif_error = true;
385                                                 }
386                                                 break;
387                                         }
388                                 }
389                                 break;
390                         }
391                 }
392         }
393         return args;
394 }
395
396 void Create_Notification_Entity(entity notif,
397         float var_default,
398         float var_cvar,
399         MSG typeId,
400         string namestring,
401         int teamnum)
402 {
403         // =====================
404         //  Global Entity Setup
405         // =====================
406         notif.nent_default = var_default;
407         notif.nent_enabled = (var_cvar >= 1);
408         notif.nent_type = typeId;
409         notif.nent_name = strzone(namestring);
410         notif.nent_teamnum = teamnum;
411
412         // Other pre-notif-setup requisites
413         notif_error = false;
414
415         switch (typeId)
416         {
417                 case MSG_ANNCE:
418                 case MSG_INFO:
419                 case MSG_CENTER:
420                 case MSG_MULTI:
421                 case MSG_CHOICE:
422                         break;
423                 default:
424                         LOG_INFOF(
425                                 (
426                                         "^1NOTIFICATION WITH IMPROPER TYPE: "
427                                         "^7net_type = %d, net_name = %s."
428                                 ),
429                                 typeId,
430                                 namestring
431                         );
432                         notif_error = true;
433                         break;
434         }
435
436         // now check to see if any errors happened
437         if (notif_error)
438         {
439                 notif.nent_enabled = false; // disable the notification so it can't cause trouble
440                 notif_global_error = true; // throw the red flag that an error happened on init
441         }
442 }
443
444 #define AnnouncerFilename(snd) sprintf("announcer/%s/%s.wav", AnnouncerOption(), snd)
445
446 void Create_Notification_Entity_Annce(entity notif,
447                                                                                 float var_cvar,
448                                                                                 string namestring,
449                                                                                 /* MSG_ANNCE */
450                                                                                 float channel,
451                                                                                 string snd,
452                                                                                 float vol,
453                                                                                 float position,
454                                                                                 float queuetime)
455                 {
456                         // Set MSG_ANNCE information and handle precaching
457                         #ifdef CSQC
458                         MSG typeId = MSG_ANNCE;
459                         if (!(GENTLE && (var_cvar == 1)))
460                         {
461                                 if(snd != "")
462                                 {
463                                         if(notif.nent_enabled)
464                                         {
465                                                 precache_sound(AnnouncerFilename(snd));
466                                                 notif.nent_channel = channel;
467                                                 notif.nent_snd = strzone(snd);
468                                                 notif.nent_vol = vol;
469                                                 notif.nent_position = position;
470                                                 notif.nent_queuetime = queuetime;
471                                         }
472                                 }
473                                 else
474                                 {
475                                         string typestring = Get_Notif_TypeName(typeId);
476                                         LOG_INFOF(
477                                                 (
478                                                         "^1NOTIFICATION WITH NO SOUND: "
479                                                         "^7net_type = %s, net_name = %s."
480                                                 ),
481                                                 typestring,
482                                                 namestring
483                                         );
484                                         notif_error = true;
485                                 }
486                         }
487                         else { notif.nent_enabled = false; }
488                         #else
489                         notif.nent_enabled = false;
490                         #endif
491
492                 }
493
494 void Create_Notification_Entity_InfoCenter(entity notif,
495                                                                                         float var_cvar,
496                                                                                         string namestring,
497                                                                                         int strnum,
498                                                                                         int flnum,
499                                                                                         /* MSG_INFO & MSG_CENTER */
500                                                                                         string args,
501                                                                                         string hudargs,
502                                                                                         string icon,
503                                                                                         CPID cpid,
504                                                                                         string durcnt,
505                                                                                         string normal,
506                                                                                         string gentle)
507                 {
508                         MSG typeId = notif.nent_type;
509                         // Set MSG_INFO and MSG_CENTER string/float counts
510                         notif.nent_stringcount = strnum;
511                         notif.nent_floatcount = flnum;
512
513                         // Only initialize arguments if we're either a client or on a dedicated server
514                         #ifdef SVQC
515                         float should_process_args = server_is_dedicated;
516                         #else
517                         float should_process_args = true;
518                         #endif
519                         string typestring = Get_Notif_TypeName(typeId);
520                         if(should_process_args)
521                         {
522                                 // ========================
523                                 //  Process Main Arguments
524                                 // ========================
525                                 if(strnum + flnum)
526                                 {
527                                         if(args != "")
528                                         {
529                                                 notif.nent_args = strzone(
530                                                         Process_Notif_Args(1, args, typestring, namestring));
531                                         }
532                                         else if((hudargs == "") && (durcnt ==""))
533                                         {
534                                                 LOG_INFOF(
535                                                         (
536                                                                 "^1NOTIFICATION HAS ARG COUNTS BUT NO ARGS OR HUDARGS OR DURCNT: "
537                                                                 "^7net_type = %s, net_name = %s, strnum = %d, flnum = %d"
538                                                         ),
539                                                         typestring,
540                                                         namestring,
541                                                         strnum,
542                                                         flnum
543                                                 );
544                                                 notif_error = true;
545                                         }
546                                 }
547                                 else if(args != "")
548                                 {
549                                         notif.nent_args = strzone(
550                                                 Process_Notif_Args(1, args, typestring, namestring));
551                                 }
552
553
554                                 // =======================================
555                                 //  Process HUD and Centerprint Arguments
556                                 //    Only processed on CSQC, as these
557                                 //    args are only for HUD features.
558                                 // =======================================
559                                 #ifdef CSQC
560                                 if(hudargs != "")
561                                 {
562                                         notif.nent_hudargs = strzone(
563                                                 Process_Notif_Args(2, hudargs, typestring, namestring));
564
565                                         if(icon != "") { notif.nent_icon = strzone(icon); }
566                                         else
567                                         {
568                                                 LOG_INFOF(
569                                                         (
570                                                                 "^1NOTIFICATION HAS HUDARGS BUT NO ICON: "
571                                                                 "^7net_type = %s, net_name = %s."
572                                                         ),
573                                                         typestring,
574                                                         namestring
575                                                 );
576                                                 notif_error = true;
577                                         }
578                                 }
579                                 else if(icon != "")
580                                 {
581                                         LOG_WARNF(
582                                                 (
583                                                         "^1NOTIFICATION HAS ICON BUT NO HUDARGS: "
584                                                         "^7net_type = %s, net_name = %s.\n"
585                                                 ),
586                                                 typestring,
587                                                 namestring
588                                         );
589                                         notif_error = true;
590                                 }
591
592                                 if (durcnt != "")
593                                 {
594                                         notif.nent_durcnt = strzone(Process_Notif_Args(3, durcnt, typestring, namestring));
595
596                                         if (cpid == CPID_Null && durcnt != "0 0")
597                                         {
598                                                 LOG_WARNF(
599                                                         (
600                                                                 "Notification has durcnt but no cpid: "
601                                                                 "net_type = %s, net_name = %s."
602                                                         ),
603                                                         typestring,
604                                                         namestring
605                                                 );
606                                                 notif_error = true;
607                                         }
608                                 }
609                                 notif.nent_cpid = cpid;
610                                 #endif
611
612
613                                 // ======================
614                                 //  Process Notif String
615                                 // ======================
616                                 #define SET_NOTIF_STRING(string,stringname) MACRO_BEGIN \
617                                         notif.nent_string = strzone(CCR( \
618                                                 Process_Notif_Line( \
619                                                         typeId, \
620                                                         (var_cvar > 1), \
621                                                         string, \
622                                                         typestring, \
623                                                         namestring, \
624                                                         stringname \
625                                                 )) \
626                                         ); \
627                                 MACRO_END
628
629                                 if(GENTLE)
630                                 {
631                                         if(gentle != "") { SET_NOTIF_STRING(gentle, "GENTLE"); }
632                                         else if(normal != "") { SET_NOTIF_STRING(normal, "NORMAL"); }
633                                 }
634                                 else if(normal != "") { SET_NOTIF_STRING(normal, "NORMAL"); }
635                                 #undef SET_NOTIF_STRING
636
637                                 // Check to make sure a string was chosen
638                                 if(notif.nent_string == "")
639                                 {
640                                         LOG_INFOF(
641                                                 (
642                                                         "^1EMPTY NOTIFICATION: "
643                                                         "^7net_type = %s, net_name = %s."
644                                                 ),
645                                                 typestring,
646                                                 namestring
647                                         );
648                                         notif_error = true;
649                                 }
650                         }
651                 }
652
653 void Create_Notification_Entity_Multi(entity notif,
654                                                                                 float var_cvar,
655                                                                                 string namestring,
656                                                                                 /* MSG_MULTI */
657                                                                                 Notification anncename,
658                                                                                 Notification infoname,
659                                                                                 Notification centername)
660                 {
661                         MSG typeId = MSG_MULTI;
662                         // Set MSG_MULTI string/float counts
663                         if (!anncename && !infoname && !centername)
664                         {
665                                 string typestring = Get_Notif_TypeName(typeId);
666                                 LOG_INFOF(
667                                         (
668                                                 "^1NOTIFICATION WITH NO SUBCALLS: "
669                                                 "^7net_type = %s, net_name = %s."
670                                         ),
671                                         typestring,
672                                         namestring
673                                 );
674                                 notif_error = true;
675                         }
676                         else
677                         {
678                                 // announcements don't actually need any arguments, so lets not even count them.
679                                 if (anncename) { notif.nent_msgannce = anncename; }
680
681                                 float infoname_stringcount = 0, infoname_floatcount = 0;
682                                 float centername_stringcount = 0, centername_floatcount = 0;
683
684                                 if (infoname)
685                                 {
686                                         notif.nent_msginfo = infoname;
687                                         infoname_stringcount = notif.nent_msginfo.nent_stringcount;
688                                         infoname_floatcount = notif.nent_msginfo.nent_floatcount;
689                                 }
690
691                                 if (centername)
692                                 {
693                                         notif.nent_msgcenter = centername;
694                                         centername_stringcount = notif.nent_msgcenter.nent_stringcount;
695                                         centername_floatcount = notif.nent_msgcenter.nent_floatcount;
696                                 }
697
698                                 // set the requirements of THIS notification to the totals of its subcalls
699                                 notif.nent_stringcount = max(infoname_stringcount, centername_stringcount);
700                                 notif.nent_floatcount = max(infoname_floatcount, centername_floatcount);
701                         }
702                 }
703
704 void Create_Notification_Entity_Choice(entity notif,
705                                                                                 float var_cvar,
706                                                                                 string namestring,
707                                                                                 /* MSG_CHOICE */
708                                                                                 float challow_def,
709                                                                                 float challow_var,
710                                                                                 MSG chtype,
711                                                                                 Notification optiona,
712                                                                                 Notification optionb)
713                 {
714                         MSG typeId = MSG_CHOICE;
715                         if (chtype == MSG_Null || !optiona || !optionb)
716                         {
717                                 string typestring = Get_Notif_TypeName(typeId);
718                                 LOG_INFOF(
719                                         (
720                                                 "^1NOTIFICATION IS MISSING CHOICE PARAMS: "
721                                                 "^7net_type = %s, net_name = %s."
722                                         ),
723                                         typestring,
724                                         namestring
725                                 );
726                                 notif_error = true;
727                         }
728                         else
729                         {
730                                 notif.nent_optiona = optiona;
731                                 notif.nent_optionb = optionb;
732                                 notif.nent_challow_def = challow_def; // 0: never allowed, 1: allowed in warmup, 2: always allowed
733                                 notif.nent_challow_var = challow_var; // 0: never allowed, 1: allowed in warmup, 2: always allowed
734                                 notif.nent_stringcount = max(notif.nent_optiona.nent_stringcount, notif.nent_optionb.nent_stringcount);
735                                 notif.nent_floatcount = max(notif.nent_optiona.nent_floatcount, notif.nent_optionb.nent_floatcount);
736
737                                 /*#ifdef NOTIFICATIONS_DEBUG
738                                 Debug_Notification(sprintf(
739                                         "Create_Notification_Entity(...): MSG_CHOICE: %s\n%s\n%s\n",
740                                         notif.nent_name,
741                                         sprintf(
742                                                 "^ optiona: %s %s : %d %d",
743                                                 Get_Notif_TypeName(notif.nent_optiona.nent_type),
744                                                 notif.nent_optiona.nent_name,
745                                                 notif.nent_optiona.nent_stringcount,
746                                                 notif.nent_optiona.nent_floatcount
747                                         ),
748                                         sprintf(
749                                                 "^ optionb: %s %s : %d %d",
750                                                 Get_Notif_TypeName(notif.nent_optionb.nent_type),
751                                                 notif.nent_optionb.nent_name,
752                                                 notif.nent_optionb.nent_stringcount,
753                                                 notif.nent_optionb.nent_floatcount
754                                         )
755                                 ));
756                                 #endif*/
757                         }
758                 }
759
760
761 // ===============
762 //  Cvar Handling
763 // ===============
764
765 // used by MSG_CHOICE to build list of choices
766 #ifdef SVQC
767 void Notification_GetCvars(entity this, entity store)
768 {
769         FOREACH(Notifications, it.nent_type == MSG_CHOICE && (!it.nent_teamnum || it.nent_teamnum == NUM_TEAM_1), {
770                 GetCvars_handleFloat(
771                         this,
772                         store,
773                         get_cvars_s,
774                         get_cvars_f,
775                         msg_choice_choices[it.nent_choice_idx],
776                         sprintf("notification_%s", Get_Notif_CvarName(it))
777                 );
778         });
779 }
780 #endif
781
782 /** used to output notifications.cfg file */
783 void Dump_Notifications(int fh, bool alsoprint)
784 {
785         #define NOTIF_WRITE(str) write_String_To_File(fh, str, alsoprint)
786
787         #define NOTIF_WRITE_ENTITY(e, description) \
788                 NOTIF_WRITE(sprintf( \
789                         "seta notification_%s \"%d\" \"%s\"\n", \
790                         Get_Notif_CvarName(e), e.nent_default, description \
791                 ))
792
793         #define NOTIF_WRITE_ENTITY_CHOICE(e, descriptiona, descriptionb) \
794                 NOTIF_WRITE(sprintf( \
795                         "seta notification_%s \"%d\" \"%s\"\n" \
796                         "seta notification_%s_ALLOWED \"%d\" \"%s\"\n", \
797                         Get_Notif_CvarName(e), e.nent_default, descriptiona, \
798                         Get_Notif_CvarName(e), e.nent_challow_def, descriptionb \
799                 ))
800
801         #define NOTIF_WRITE_HARDCODED(cvar, default, description) \
802                 NOTIF_WRITE("seta notification_" cvar " \"" default "\" \"" description "\"\n")
803
804         // Note: This warning only applies to the notifications.cfg file that is output...
805         // You ARE supposed to manually edit this function to add i.e. hard coded
806         // notification variables for mutators or game modes or such and then
807         // regenerate the notifications.cfg file from the new code.
808
809         NOTIF_WRITE(
810                 "// ********************************************** //\n"
811                 "// ** WARNING - DO NOT MANUALLY EDIT THIS FILE ** //\n"
812                 "// **                                          ** //\n"
813                 "// **  This file is automatically generated    ** //\n"
814                 "// **  by code with the command 'dumpnotifs'.  ** //\n"
815                 "// **                                          ** //\n"
816                 "// **  If you add a new notification, please   ** //\n"
817                 "// **  regenerate this file with that command  ** //\n"
818                 "// **  making sure that the output matches     ** //\n"
819                 "// **  with the lists and defaults in code.    ** //\n"
820                 "// **                                          ** //\n"
821                 "// ********************************************** //\n");
822
823         // These notifications will also append their string as a comment...
824         // This is not necessary, and does not matter if they vary between config versions,
825         // it is just a semi-helpful tool for those who want to manually change their user settings.
826
827         int NOTIF_ANNCE_COUNT = 0;
828         int NOTIF_INFO_COUNT = 0;
829         int NOTIF_CENTER_COUNT = 0;
830         int NOTIF_MULTI_COUNT = 0;
831         int NOTIF_CHOICE_COUNT = 0;
832         FOREACH(Notifications, true, {
833                 switch (it.nent_type)
834                 {
835                         case MSG_ANNCE: ++NOTIF_ANNCE_COUNT; break;
836                         case MSG_INFO: ++NOTIF_INFO_COUNT; break;
837                         case MSG_CENTER: ++NOTIF_CENTER_COUNT; break;
838                         case MSG_MULTI: ++NOTIF_MULTI_COUNT; break;
839                         case MSG_CHOICE: ++NOTIF_CHOICE_COUNT; break;
840                 }
841         });
842
843         NOTIF_WRITE(sprintf("\n// MSG_ANNCE notifications (count = %d):\n", NOTIF_ANNCE_COUNT));
844         FOREACH(Notifications, it.nent_type == MSG_ANNCE && (!it.nent_teamnum || it.nent_teamnum == NUM_TEAM_1), {
845                 NOTIF_WRITE_ENTITY(it,
846                         "0 = disabled, 1 = enabled if gentle mode is off, 2 = always enabled"
847                 );
848         });
849
850         NOTIF_WRITE(sprintf("\n// MSG_INFO notifications (count = %d):\n", NOTIF_INFO_COUNT));
851         FOREACH(Notifications, it.nent_type == MSG_INFO && (!it.nent_teamnum || it.nent_teamnum == NUM_TEAM_1), {
852                 NOTIF_WRITE_ENTITY(it,
853                         "0 = off, 1 = print to console, "
854                         "2 = print to console and chatbox (if notification_allow_chatboxprint is enabled)"
855                 );
856         });
857
858         NOTIF_WRITE(sprintf("\n// MSG_CENTER notifications (count = %d):\n", NOTIF_CENTER_COUNT));
859         FOREACH(Notifications, it.nent_type == MSG_CENTER && (!it.nent_teamnum || it.nent_teamnum == NUM_TEAM_1), {
860                 NOTIF_WRITE_ENTITY(it,
861                         "0 = off, 1 = centerprint"
862                 );
863         });
864
865         NOTIF_WRITE(sprintf("\n// MSG_MULTI notifications (count = %d):\n", NOTIF_MULTI_COUNT));
866         FOREACH(Notifications, it.nent_type == MSG_MULTI && (!it.nent_teamnum || it.nent_teamnum == NUM_TEAM_1), {
867                 NOTIF_WRITE_ENTITY(it,
868                         "Enable this multiple notification"
869                 );
870         });
871
872         NOTIF_WRITE(sprintf("\n// MSG_CHOICE notifications (count = %d):\n", NOTIF_CHOICE_COUNT));
873         FOREACH(Notifications, it.nent_type == MSG_CHOICE && (!it.nent_teamnum || it.nent_teamnum == NUM_TEAM_1), {
874                 NOTIF_WRITE_ENTITY_CHOICE(it,
875                         "Choice for this notification 0 = off, 1 = default message, 2 = verbose message",
876                         "Allow choice for this notification 0 = off, 1 = only in warmup mode, 2 = always"
877                 );
878         });
879
880         // edit these to match whichever cvars are used for specific notification options
881         NOTIF_WRITE("\n// HARD CODED notification variables:\n");
882
883         NOTIF_WRITE_HARDCODED(
884                 "allow_chatboxprint", "1",
885                 "Allow INFO notifications to be printed to chat box "
886                 "0 = do not allow, "
887                 "1 = allow only if allowed by individual notification_INFO* cvars, "
888                 "2 = force all INFO notifications to be printed to the chatbox"
889         );
890
891         NOTIF_WRITE_HARDCODED(
892                 "debug", "0",
893                 "Print extra debug information on all notification function calls "
894                 "(Requires -DNOTIFICATIONS_DEBUG flag to be enabled on QCSRC compilation)... "
895                 "0 = disabled, 1 = dprint, 2 = print"
896         );
897
898         NOTIF_WRITE_HARDCODED(
899                 "errors_are_fatal", "1",
900                 "If a notification fails upon initialization, cause a Host_Error to stop the program"
901         );
902
903         NOTIF_WRITE_HARDCODED(
904                 "item_centerprinttime", "1.5",
905                 "How long to show item information centerprint messages (like 'You got the Electro' or such)"
906         );
907
908         NOTIF_WRITE_HARDCODED(
909                 "lifetime_mapload", "10",
910                 "Amount of time that notification entities last immediately at mapload (in seconds) "
911                 "to help prevent notifications from being lost on early init (like gamestart countdown)"
912         );
913
914         NOTIF_WRITE_HARDCODED(
915                 "lifetime_runtime", "0.5",
916                 "Amount of time that notification entities last on the server during runtime (In seconds)"
917         );
918
919         NOTIF_WRITE_HARDCODED(
920                 "server_allows_location", "1",
921                 "Server side cvar for allowing death messages to show location information too"
922         );
923
924         NOTIF_WRITE_HARDCODED(
925                 "show_location", "0",
926                 "Append location information to MSG_INFO death/kill messages"
927         );
928
929         NOTIF_WRITE_HARDCODED(
930                 "show_location_string", "",
931                 "Replacement string piped into sprintf, "
932                 "so you can do different messages like this: ' at the %s' or ' (near %s)'"
933         );
934
935         NOTIF_WRITE_HARDCODED(
936                 "show_sprees", "1",
937                 "Print information about sprees in death/kill messages"
938         );
939
940         NOTIF_WRITE_HARDCODED(
941                 "show_sprees_center", "1",
942                 "Show spree information in MSG_CENTER messages... "
943                 "0 = off, 1 = target (but only for first victim) and attacker"
944         );
945
946         NOTIF_WRITE_HARDCODED(
947                 "show_sprees_center_specialonly", "1",
948                 "Don't show spree information in MSG_CENTER messages if it isn't an achievement"
949         );
950
951         NOTIF_WRITE_HARDCODED(
952                 "show_sprees_info", "3",
953                 "Show spree information in MSG_INFO messages... "
954                 "0 = off, 1 = target only, 2 = attacker only, 3 = target and attacker"
955         );
956
957         NOTIF_WRITE_HARDCODED(
958                 "show_sprees_info_newline", "1",
959                 "Show attacker spree information for MSG_INFO messages on a separate line than the death notification itself"
960         );
961
962         NOTIF_WRITE_HARDCODED(
963                 "show_sprees_info_specialonly", "1",
964                 "Don't show attacker spree information in MSG_INFO messages if it isn't an achievement"
965         );
966
967         NOTIF_WRITE(sprintf(
968                 (
969                         "\n// Notification counts (total = %d): "
970                         "MSG_ANNCE = %d, MSG_INFO = %d, MSG_CENTER = %d, MSG_MULTI = %d, MSG_CHOICE = %d\n"
971                 ),
972                 (
973                         NOTIF_ANNCE_COUNT +
974                         NOTIF_INFO_COUNT +
975                         NOTIF_CENTER_COUNT +
976                         NOTIF_MULTI_COUNT +
977                         NOTIF_CHOICE_COUNT
978                 ),
979                 NOTIF_ANNCE_COUNT,
980                 NOTIF_INFO_COUNT,
981                 NOTIF_CENTER_COUNT,
982                 NOTIF_MULTI_COUNT,
983                 NOTIF_CHOICE_COUNT
984         ));
985         #undef NOTIF_WRITE_HARDCODED
986         #undef NOTIF_WRITE_ENTITY
987         #undef NOTIF_WRITE
988 }
989
990
991 // ===============================
992 //  Frontend Notification Pushing
993 // ===============================
994
995 string Local_Notification_sprintf(
996         string input, string args,
997         string s1, string s2, string s3, string s4,
998         int f1, float f2, float f3, float f4)
999 {
1000         #ifdef NOTIFICATIONS_DEBUG
1001         Debug_Notification(sprintf(
1002                 "Local_Notification_sprintf('%s^7', '%s', %s, %s);\n",
1003                 MakeConsoleSafe(input),
1004                 args,
1005                 MakeConsoleSafe(sprintf("'%s^7', '%s^7', '%s^7', '%s^7'", s1, s2, s3, s4)),
1006                 sprintf("%d, %d, %d, %d", f1, f2, f3, f4)
1007         ));
1008         #endif
1009
1010         for (int sel_num = 0; sel_num < NOTIF_MAX_ARGS; ++sel_num) { arg_slot[sel_num] = ""; }
1011
1012         for (int sel_num = 0; (args != ""); )
1013         {
1014                 string selected = car(args); args = cdr(args);
1015                 NOTIF_HIT_MAX(NOTIF_MAX_ARGS, "Local_Notification_sprintf");
1016                 string tmp_s; // used by NOTIF_ARGUMENT_LIST
1017                 switch (strtolower(selected))
1018                 {
1019                         #define ARG_CASE_ARG_CS_SV_HA(selected, result) case selected: arg_slot[sel_num++] = result; break;
1020                         #define ARG_CASE_ARG_CS_SV_DC(selected, result) case selected: arg_slot[sel_num++] = result; break;
1021                         #define ARG_CASE_ARG_CS_SV(selected, result)    case selected: arg_slot[sel_num++] = result; break;
1022 #ifdef CSQC
1023                         #define ARG_CASE_ARG_CS(selected, result)       case selected: arg_slot[sel_num++] = result; break;
1024                         #define ARG_CASE_ARG_SV(selected, result)
1025 #else
1026                         #define ARG_CASE_ARG_CS(selected, result)
1027                         #define ARG_CASE_ARG_SV(selected, result)       case selected: arg_slot[sel_num++] = result; break;
1028 #endif
1029                         #define ARG_CASE_ARG_DC(selected, result)
1030                         #define ARG_CASE(prog, selected, result)        ARG_CASE_##prog(selected, result)
1031                         NOTIF_ARGUMENT_LIST
1032                         #undef ARG_CASE
1033                         #undef ARG_CASE_ARG_DC
1034                         #undef ARG_CASE_ARG_SV
1035                         #undef ARG_CASE_ARG_CS
1036                         #undef ARG_CASE_ARG_CS_SV
1037                         #undef ARG_CASE_ARG_CS_SV_DC
1038                         #undef ARG_CASE_ARG_CS_SV_HA
1039                         default: NOTIF_HIT_UNKNOWN(NOTIF_MAX_ARGS, "Local_Notification_sprintf")
1040                 }
1041         }
1042         return sprintf(
1043                 strcat(input, "\n"),
1044                 arg_slot[0],
1045                 arg_slot[1],
1046                 arg_slot[2],
1047                 arg_slot[3],
1048                 arg_slot[4],
1049                 arg_slot[5],
1050                 arg_slot[6]
1051         );
1052 }
1053
1054 #ifdef CSQC
1055 void Local_Notification_sound(int soundchannel, string soundfile, float soundvolume, float soundposition)
1056 {
1057         if ((soundfile != prev_soundfile) || (time >= (prev_soundtime + autocvar_cl_announcer_antispam)))
1058         {
1059                 #ifdef NOTIFICATIONS_DEBUG
1060                 Debug_Notification(sprintf(
1061                         "Local_Notification_sound(%f, '%s', %f, %f);\n",
1062                         soundchannel,
1063                         AnnouncerFilename(soundfile),
1064                         soundvolume,
1065                         soundposition
1066                 ));
1067                 #endif
1068
1069                 _sound(NULL, soundchannel, AnnouncerFilename(soundfile), soundvolume, soundposition);
1070
1071                 strcpy(prev_soundfile, soundfile);
1072                 prev_soundtime = time;
1073         }
1074         else
1075         {
1076                 #ifdef NOTIFICATIONS_DEBUG
1077                 Debug_Notification(sprintf(
1078                         (
1079                                 "Local_Notification_sound(%f, '%s', %f, %f) "
1080                                 "^1BLOCKED BY ANTISPAM:^7 prevsnd: '%s', timediff: %f, limit: %f\n"
1081                         ),
1082                         soundchannel,
1083                         AnnouncerFilename(soundfile),
1084                         soundvolume,
1085                         soundposition,
1086                         prev_soundfile,
1087                         (time - prev_soundtime),
1088                         autocvar_cl_announcer_antispam
1089                 ));
1090                 #endif
1091         }
1092 }
1093
1094 void Local_Notification_HUD_Notify_Push(
1095         string icon, string hudargs,
1096         string s1, string s2, string s3, string s4,
1097         float f1, float f2, float f3, float f4)
1098 {
1099         arg_slot[0] = ""; arg_slot[1] = "";
1100
1101         for (int sel_num = 0; (hudargs != ""); )
1102         {
1103                 string selected = car(hudargs); hudargs = cdr(hudargs);
1104                 NOTIF_HIT_MAX(NOTIF_MAX_HUDARGS, "Local_Notification_HUD_Notify_Push");
1105                 switch (strtolower(selected))
1106                 {
1107                         #define ARG_CASE_ARG_CS_SV_HA(selected, result) case selected: arg_slot[sel_num++] = result; break;
1108                         #define ARG_CASE_ARG_CS_SV_DC(selected, result)
1109                         #define ARG_CASE_ARG_CS_SV(selected, result)
1110                         #define ARG_CASE_ARG_CS(selected, result)
1111                         #define ARG_CASE_ARG_SV(selected, result)
1112                         #define ARG_CASE_ARG_DC(selected, result)
1113                         #define ARG_CASE(prog, selected, result)        ARG_CASE_##prog(selected, result)
1114                         NOTIF_ARGUMENT_LIST
1115                         #undef ARG_CASE
1116                         #undef ARG_CASE_ARG_DC
1117                         #undef ARG_CASE_ARG_SV
1118                         #undef ARG_CASE_ARG_CS
1119                         #undef ARG_CASE_ARG_CS_SV
1120                         #undef ARG_CASE_ARG_CS_SV_DC
1121                         #undef ARG_CASE_ARG_CS_SV_HA
1122                         default: NOTIF_HIT_UNKNOWN(NOTIF_MAX_HUDARGS, "Local_Notification_HUD_Notify_Push")
1123                 }
1124         }
1125         #ifdef NOTIFICATIONS_DEBUG
1126         Debug_Notification(sprintf(
1127                 "Local_Notification_HUD_Notify_Push('%s^7', '%s', %s, %s, %s);\n",
1128                 icon,
1129                 hudargs,
1130                 MakeConsoleSafe(sprintf("'%s^7', '%s^7', '%s^7', '%s^7'", s1, s2, s3, s4)),
1131                 sprintf("%d, %d, %d, %d", f1, f2, f3, f4),
1132                 MakeConsoleSafe(sprintf("'%s^7', '%s^7'", stof(arg_slot[0]), stof(arg_slot[1])))
1133         ));
1134         #endif
1135         HUD_Notify_Push(icon, arg_slot[0], arg_slot[1]);
1136 }
1137
1138 void Local_Notification_centerprint_Add(
1139         string input, string durcnt,
1140         CPID cpid, float f1, float f2)
1141 {
1142         arg_slot[0] = ""; arg_slot[1] = "";
1143
1144         for (int sel_num = 0; (durcnt != ""); )
1145         {
1146                 string selected = car(durcnt); durcnt = cdr(durcnt);
1147                 NOTIF_HIT_MAX(NOTIF_MAX_DURCNT, "Local_Notification_centerprint_Add");
1148                 switch (strtolower(selected))
1149                 {
1150                         #define ARG_CASE_ARG_CS_SV_HA(selected, result)
1151                         #define ARG_CASE_ARG_CS_SV_DC(selected, result) case selected: arg_slot[sel_num++] = result; break;
1152                         #define ARG_CASE_ARG_CS_SV(selected, result)
1153                         #define ARG_CASE_ARG_CS(selected, result)
1154                         #define ARG_CASE_ARG_SV(selected, result)
1155                         #define ARG_CASE_ARG_DC(selected, result)       case selected: arg_slot[sel_num++] = result; break;
1156                         #define ARG_CASE(prog, selected, result)        ARG_CASE_##prog(selected,result)
1157                         NOTIF_ARGUMENT_LIST
1158                         #undef ARG_CASE
1159                         #undef ARG_CASE_ARG_DC
1160                         #undef ARG_CASE_ARG_SV
1161                         #undef ARG_CASE_ARG_CS
1162                         #undef ARG_CASE_ARG_CS_SV
1163                         #undef ARG_CASE_ARG_CS_SV_DC
1164                         #undef ARG_CASE_ARG_CS_SV_HA
1165                         default:
1166                         {
1167                                 if (/* wtf */ ftos(stof(selected)) != "") { arg_slot[sel_num++] = selected; }
1168                                 else { NOTIF_HIT_UNKNOWN(NOTIF_MAX_DURCNT, "Local_Notification_centerprint_Add") }
1169                                 break;
1170                         }
1171                 }
1172         }
1173         #ifdef NOTIFICATIONS_DEBUG
1174         Debug_Notification(sprintf(
1175                 "Local_Notification_centerprint_Add('%s^7', '%s', %d, %d, %d, %d);\n",
1176                 MakeConsoleSafe(input),
1177                 durcnt,
1178                 f1, f2,
1179                 stof(arg_slot[0]),
1180                 stof(arg_slot[1])
1181         ));
1182         #endif
1183         centerprint_Add(ORDINAL(cpid), input, stof(arg_slot[0]), stof(arg_slot[1]));
1184 }
1185
1186 void Local_Notification_Queue_Run(MSG net_type, entity notif)
1187 {               
1188         switch (net_type)
1189         {
1190                 case MSG_ANNCE:
1191                 {
1192                         Local_Notification_sound(notif.nent_channel, notif.nent_snd, notif.nent_vol, notif.nent_position);
1193                         break;
1194                 }
1195         }
1196 }
1197
1198 void Local_Notification_Queue_Add(MSG net_type, entity notif, float queue_time)
1199 {       
1200         if(queue_time == -1 || time > notif_queue_next_time) {
1201                 // Run immediately
1202                 Local_Notification_Queue_Run(net_type, notif);
1203                 notif_queue_next_time = time + queue_time;
1204         } else {
1205                 // Put in queue
1206                 if(notif_queue_length >= NOTIF_QUEUE_MAX) return;
1207         
1208                 notif_queue_type[notif_queue_length] = net_type;
1209                 notif_queue_entity[notif_queue_length] = notif;
1210                 notif_queue_time[notif_queue_length] = notif_queue_next_time;
1211                 
1212                 notif_queue_next_time += queue_time;
1213                 ++notif_queue_length;
1214         }
1215 }
1216
1217 void Local_Notification_Queue_Process()
1218 {
1219         if(!notif_queue_length)
1220                 return;
1221
1222         int j;
1223         if(notif_queue_time[0] <= time) {
1224                 Local_Notification_Queue_Run(notif_queue_type[0], notif_queue_entity[0]);
1225                 
1226                 // Shift queue to the left
1227                 for (j = 0; j < notif_queue_length - 1; j++) { 
1228                         notif_queue_type[j] = notif_queue_type[j+1];
1229                         notif_queue_entity[j] = notif_queue_entity[j+1];
1230                         notif_queue_time[j] = notif_queue_time[j+1];
1231                 } 
1232                 
1233                 --notif_queue_length;
1234         }
1235 }
1236
1237 #endif
1238
1239 void Local_Notification(MSG net_type, Notification net_name, ...count)
1240 {
1241         // retreive entity of this notification
1242         entity notif = net_name;
1243         if (!notif)
1244         {
1245                 #ifdef NOTIFICATIONS_DEBUG
1246                 Debug_Notification(sprintf(
1247                         "Local_Notification(%s, NULL, ...);\n",
1248                         Get_Notif_TypeName(net_type)
1249                 ));
1250                 #endif
1251                 LOG_WARNF("Incorrect usage of Local_Notification: %s", "Null notification");
1252                 return;
1253         }
1254
1255         // check if the notification is enabled
1256         if (!notif.nent_enabled)
1257         {
1258                 #ifdef NOTIFICATIONS_DEBUG
1259                 Debug_Notification(sprintf(
1260                         "Local_Notification(%s, %s, ...): Entity was disabled...\n",
1261                         Get_Notif_TypeName(net_type),
1262                         notif.nent_name
1263                 ));
1264                 #endif
1265                 return;
1266         }
1267
1268         string s1 = CCR((notif.nent_stringcount > 0) ? ...(0, string) : "");
1269         string s2 = CCR((notif.nent_stringcount > 1) ? ...(1, string) : "");
1270         string s3 = CCR((notif.nent_stringcount > 2) ? ...(2, string) : "");
1271         string s4 = CCR((notif.nent_stringcount > 3) ? ...(3, string) : "");
1272         float f1 =  ((notif.nent_floatcount  > 0) ? ...((notif.nent_stringcount + 0), float) : 0);
1273         float f2 =  ((notif.nent_floatcount  > 1) ? ...((notif.nent_stringcount + 1), float) : 0);
1274         float f3 =  ((notif.nent_floatcount  > 2) ? ...((notif.nent_stringcount + 2), float) : 0);
1275         float f4 =  ((notif.nent_floatcount  > 3) ? ...((notif.nent_stringcount + 3), float) : 0);
1276
1277         #ifdef NOTIFICATIONS_DEBUG
1278         Debug_Notification(sprintf(
1279                 "Local_Notification(%s, %s, %s, %s);\n",
1280                 Get_Notif_TypeName(net_type),
1281                 notif.nent_name,
1282                 MakeConsoleSafe(sprintf("'%s^7', '%s^7', '%s^7', '%s^7'", s1, s2, s3, s4)),
1283                 sprintf("%d, %d, %d, %d", f1, f2, f3, f4)
1284         ));
1285         #endif
1286
1287         if ((notif.nent_stringcount + notif.nent_floatcount) != count)
1288         {
1289                 backtrace(sprintf(
1290                         (
1291                                 "Arguments mismatch for Local_Notification(%s, %s, ...)! "
1292                                 "stringcount(%d) + floatcount(%d) != count(%d)\n"
1293                                 "Check the definition and function call for accuracy...?\n"
1294                         ),
1295                         Get_Notif_TypeName(net_type),
1296                         notif.nent_name,
1297                         notif.nent_stringcount,
1298                         notif.nent_floatcount,
1299                         count
1300                 ));
1301                 return;
1302         }
1303
1304         switch (net_type)
1305         {
1306                 case MSG_ANNCE:
1307                 {
1308                         #ifdef CSQC
1309                         Local_Notification_Queue_Add(net_type, notif, notif.nent_queuetime);
1310                         #else
1311                         backtrace("MSG_ANNCE on server?... Please notify Samual immediately!\n");
1312                         #endif
1313                         break;
1314                 }
1315
1316                 case MSG_INFO:
1317                 {
1318                         print(
1319                                 Local_Notification_sprintf(
1320                                         notif.nent_string,
1321                                         notif.nent_args,
1322                                         s1, s2, s3, s4,
1323                                         f1, f2, f3, f4)
1324                         );
1325                         #ifdef CSQC
1326                         if (notif.nent_icon != "")
1327                         {
1328                                 if (notif.nent_iconargs != "")
1329                                 {
1330                                         string s = Local_Notification_sprintf(
1331                                                 notif.nent_icon,notif.nent_iconargs,
1332                                                 s1, s2, s3, s4, f1, f2, f3, f4);
1333                                         // remove the trailing newline
1334                                         notif.nent_icon = strzone(substring(s, 0, -1));
1335                                 }
1336                                 Local_Notification_HUD_Notify_Push(
1337                                         notif.nent_icon,
1338                                         notif.nent_hudargs,
1339                                         s1, s2, s3, s4,
1340                                         f1, f2, f3, f4);
1341                         }
1342                         #endif
1343                         break;
1344                 }
1345
1346                 #ifdef CSQC
1347                 case MSG_CENTER:
1348                 {
1349                         Local_Notification_centerprint_Add(
1350                                 Local_Notification_sprintf(
1351                                         notif.nent_string,
1352                                         notif.nent_args,
1353                                         s1, s2, s3, s4,
1354                                         f1, f2, f3, f4),
1355                                 notif.nent_durcnt,
1356                                 notif.nent_cpid,
1357                                 f1, f2);
1358                         break;
1359                 }
1360                 #endif
1361
1362                 case MSG_MULTI:
1363                 {
1364                         if (notif.nent_msginfo && notif.nent_msginfo.nent_enabled)
1365                         {
1366                                 Local_Notification_WOVA(
1367                                         MSG_INFO,
1368                                         notif.nent_msginfo,
1369                                         notif.nent_msginfo.nent_stringcount,
1370                                         notif.nent_msginfo.nent_floatcount,
1371                                         s1, s2, s3, s4,
1372                                         f1, f2, f3, f4);
1373                         }
1374                         #ifdef CSQC
1375                         if (notif.nent_msgannce && notif.nent_msgannce.nent_enabled)
1376                         {
1377                                 Local_Notification_WOVA(
1378                                         MSG_ANNCE,
1379                                         notif.nent_msgannce,
1380                                         0, 0,
1381                                         "", "", "", "",
1382                                         0, 0, 0, 0);
1383                         }
1384                         if (notif.nent_msgcenter && notif.nent_msgcenter.nent_enabled)
1385                         {
1386                                 Local_Notification_WOVA(
1387                                         MSG_CENTER,
1388                                         notif.nent_msgcenter,
1389                                         notif.nent_msgcenter.nent_stringcount,
1390                                         notif.nent_msgcenter.nent_floatcount,
1391                                         s1, s2, s3, s4,
1392                                         f1, f2, f3, f4);
1393                         }
1394                         #endif
1395                         break;
1396                 }
1397
1398                 case MSG_CHOICE:
1399                 {
1400                         entity found_choice = notif.nent_optiona;
1401                         if (notif.nent_challow_var && (warmup_stage || (notif.nent_challow_var == 2))) {
1402                                 switch (cvar(sprintf("notification_%s", Get_Notif_CvarName(notif))))
1403                                 {
1404                                         case 1: break;
1405                                         case 2: found_choice = notif.nent_optionb; break;
1406                                         default: return; // not enabled anyway
1407                                 }
1408                         }
1409
1410                         Local_Notification_WOVA(
1411                                 found_choice.nent_type,
1412                                 found_choice,
1413                                 found_choice.nent_stringcount,
1414                                 found_choice.nent_floatcount,
1415                                 s1, s2, s3, s4,
1416                                 f1, f2, f3, f4);
1417                         break;
1418                 }
1419         }
1420 }
1421
1422 // WOVA = Without Variable Arguments
1423 void Local_Notification_WOVA(
1424         MSG net_type, Notification net_name,
1425         float stringcount, float floatcount,
1426         string s1, string s2, string s3, string s4,
1427         float f1, float f2, float f3, float f4)
1428 {
1429         #define VARITEM(stringc, floatc, args) \
1430                 if ((stringcount == stringc) && (floatcount == floatc)) \
1431                 { Local_Notification(net_type, net_name, args); return; }
1432         EIGHT_VARS_TO_VARARGS_VARLIST
1433         #undef VARITEM
1434         Local_Notification(net_type, net_name); // some notifications don't have any arguments at all
1435 }
1436
1437
1438 // =========================
1439 //  Notification Networking
1440 // =========================
1441
1442 /** networked as a linked entity to give newly connecting clients some notification context */
1443 REGISTER_NET_LINKED(ENT_CLIENT_NOTIFICATION)
1444
1445 #ifdef CSQC
1446 NET_HANDLE(ENT_CLIENT_NOTIFICATION, bool is_new)
1447 {
1448         make_pure(this);
1449         MSG net_type = ENUMCAST(MSG, ReadByte());
1450         int net_name = ReadShort();
1451     return = true;
1452
1453         if (net_type == MSG_CENTER_KILL)
1454     {
1455         if (!is_new) return;
1456         // killing
1457         #ifdef NOTIFICATIONS_DEBUG
1458         Debug_Notification(sprintf(
1459             "Read_Notification(%d) at %f: net_type = %s, cpid = %d\n",
1460             is_new,
1461             time,
1462             Get_Notif_TypeName(net_type),
1463             net_name
1464         ));
1465         #endif
1466         int _net_name = net_name;
1467         CPID net_name = ENUMCAST(CPID, _net_name);
1468         if (net_name == CPID_Null) {
1469             centerprint_KillAll();
1470         } else {
1471             centerprint_Kill(ORDINAL(net_name));// kill group
1472         }
1473         return;
1474     }
1475
1476         Notification notif = Get_Notif_Ent(net_type, net_name);
1477
1478         #ifdef NOTIFICATIONS_DEBUG
1479         Debug_Notification(sprintf(
1480                 "Read_Notification(%d) at %f: net_type = %s, net_name = %s (%d)\n",
1481                 is_new,
1482                 time,
1483                 Get_Notif_TypeName(net_type),
1484                 notif.registered_id,
1485                 net_name
1486         ));
1487         #endif
1488
1489     if (!notif) {
1490         backtrace("Read_Notification: Could not find notification entity!\n");
1491         return false;
1492     }
1493
1494     string s1 = ((notif.nent_stringcount > 0) ? ReadString() : "");
1495     string s2 = ((notif.nent_stringcount > 1) ? ReadString() : "");
1496     string s3 = ((notif.nent_stringcount > 2) ? ReadString() : "");
1497     string s4 = ((notif.nent_stringcount > 3) ? ReadString() : "");
1498     float f1 = ((notif.nent_floatcount > 0) ? ReadLong() : 0);
1499     float f2 = ((notif.nent_floatcount > 1) ? ReadLong() : 0);
1500     float f3 = ((notif.nent_floatcount > 2) ? ReadLong() : 0);
1501     float f4 = ((notif.nent_floatcount > 3) ? ReadLong() : 0);
1502
1503     if (!is_new) return;
1504     Local_Notification_WOVA(
1505         net_type, notif,
1506         notif.nent_stringcount,
1507         notif.nent_floatcount,
1508         s1, s2, s3, s4,
1509         f1, f2, f3, f4);
1510 }
1511 #endif
1512
1513 #ifdef SVQC
1514 void Net_Notification_Remove(entity this)
1515 {
1516         #ifdef NOTIFICATIONS_DEBUG
1517         Debug_Notification(sprintf(
1518                 "Net_Notification_Remove() at %f: %s '%s - %s' notification\n",
1519                 time,
1520                 ((this.nent_net_name == -1) ? "Killed" : "Removed"),
1521                 Get_Notif_TypeName(this.nent_net_type),
1522                 this.owner.nent_name
1523         ));
1524         #endif
1525         for (int i = 0; i < this.nent_stringcount; ++i) { strfree(this.nent_strings[i]); }
1526         delete(this);
1527 }
1528
1529 bool Net_Write_Notification(entity this, entity client, int sf)
1530 {
1531         if (!Notification_ShouldSend(this.nent_broadcast, client, this.nent_client)) return false;
1532         WriteHeader(MSG_ENTITY, ENT_CLIENT_NOTIFICATION);
1533         WriteByte(MSG_ENTITY, ORDINAL(this.nent_net_type));
1534         WriteShort(MSG_ENTITY, this.nent_net_name);
1535         for (int i = 0; i < this.nent_stringcount; ++i) { WriteString(MSG_ENTITY, this.nent_strings[i]); }
1536         for (int i = 0; i < this.nent_floatcount; ++i) { WriteLong(MSG_ENTITY, this.nent_floats[i]); }
1537         return true;
1538 }
1539
1540 void Kill_Notification(
1541         NOTIF broadcast, entity client,
1542         /** message group, MSG_Null for all */
1543         MSG net_type,
1544         /** cpid group, CPID_Null for all */
1545         CPID net_cpid)
1546 {
1547         #ifdef NOTIFICATIONS_DEBUG
1548         Debug_Notification(sprintf(
1549                 "Kill_Notification(%s, '%s', %s, %d);\n",
1550                 Get_Notif_BroadcastName(broadcast),
1551                 client.netname,
1552                 (net_type ? Get_Notif_TypeName(net_type) : "0"),
1553                 net_cpid
1554         ));
1555         #endif
1556
1557         string checkargs = Notification_CheckArgs(broadcast, client);
1558         if (checkargs != "") { LOG_WARNF("Incorrect usage of Kill_Notification: %s", checkargs); return; }
1559
1560         entity net_notif = new_pure(net_kill_notification);
1561         net_notif.nent_broadcast = broadcast;
1562         net_notif.nent_client = client;
1563         net_notif.nent_net_type = MSG_CENTER_KILL;
1564         net_notif.nent_net_name = ORDINAL(net_cpid);
1565         Net_LinkEntity(net_notif, false, autocvar_notification_lifetime_runtime, Net_Write_Notification);
1566
1567         IL_EACH(g_notifications,
1568                 (it.owner.nent_type == net_type || net_type == MSG_Null) && (it.owner.nent_cpid == net_cpid || net_cpid == CPID_Null),
1569                 {
1570                         it.nent_net_name = -1;
1571                         it.nextthink = time;
1572                 }
1573         );
1574 }
1575
1576 void Send_Notification(
1577         NOTIF broadcast, entity client,
1578         MSG net_type, Notification net_name,
1579         ...count)
1580 {
1581     if (broadcast == NOTIF_ONE_ONLY && !IS_REAL_CLIENT(client)) return;
1582         entity notif = net_name;
1583         string parms = sprintf("%s, '%s', %s, %s",
1584                 Get_Notif_BroadcastName(broadcast),
1585                 client.classname,
1586                 Get_Notif_TypeName(net_type),
1587                 net_name.registered_id
1588         );
1589         #ifdef NOTIFICATIONS_DEBUG
1590         Debug_Notification(sprintf("Send_Notification(%s, ...%d);\n", parms, count));
1591         #endif
1592
1593         if (!notif)
1594         {
1595                 LOG_WARN("Send_Notification: Could not find notification entity!");
1596                 return;
1597         }
1598
1599         // check supplied broadcast, target, type, and name for errors
1600         string checkargs = Notification_CheckArgs(broadcast, client);
1601     if (!net_name) { checkargs = sprintf("No notification provided! %s", checkargs); }
1602         if (checkargs != "")
1603         {
1604                 LOG_WARNF("Incorrect usage of Send_Notification: %s", checkargs);
1605                 return;
1606         }
1607
1608         string s1 = ((0 < notif.nent_stringcount) ? ...(0, string) : "");
1609         string s2 = ((1 < notif.nent_stringcount) ? ...(1, string) : "");
1610         string s3 = ((2 < notif.nent_stringcount) ? ...(2, string) : "");
1611         string s4 = ((3 < notif.nent_stringcount) ? ...(3, string) : "");
1612         float f1 = ((0 < notif.nent_floatcount) ? ...((notif.nent_stringcount + 0), float) : 0);
1613         float f2 = ((1 < notif.nent_floatcount) ? ...((notif.nent_stringcount + 1), float) : 0);
1614         float f3 = ((2 < notif.nent_floatcount) ? ...((notif.nent_stringcount + 2), float) : 0);
1615         float f4 = ((3 < notif.nent_floatcount) ? ...((notif.nent_stringcount + 3), float) : 0);
1616
1617         #ifdef NOTIFICATIONS_DEBUG
1618         Debug_Notification(sprintf(
1619                 "Send_Notification(%s, %s, %s);\n",
1620                 parms,
1621                 MakeConsoleSafe(sprintf("'%s^7', '%s^7', '%s^7', '%s^7'", s1, s2, s3, s4)),
1622                 sprintf("%d, %d, %d, %d", f1, f2, f3, f4)
1623         ));
1624         #endif
1625
1626         if ((notif.nent_stringcount + notif.nent_floatcount) != count)
1627         {
1628                 LOG_WARNF(
1629                         "Argument mismatch for Send_Notification(%s, ...)! "
1630                         "stringcount(%d) + floatcount(%d) != count(%d)\n"
1631                         "Check the definition and function call for accuracy...?\n",
1632                         parms,
1633                         notif.nent_stringcount,
1634                         notif.nent_floatcount,
1635                         count
1636                 );
1637                 return;
1638         }
1639
1640         if (server_is_dedicated
1641                 && (broadcast == NOTIF_ALL || broadcast == NOTIF_ALL_EXCEPT)
1642                 && !(net_type == MSG_ANNCE || net_type == MSG_CENTER)
1643         )
1644         {
1645                 Local_Notification_WOVA(
1646                         net_type, net_name,
1647                         notif.nent_stringcount,
1648                         notif.nent_floatcount,
1649                         s1, s2, s3, s4,
1650                         f1, f2, f3, f4);
1651         }
1652
1653         if (net_type == MSG_CHOICE)
1654         {
1655                 // THIS GETS TRICKY... now we have to cycle through each possible player (checking broadcast)
1656                 // and then do an individual NOTIF_ONE_ONLY recursive call for each one depending on their option...
1657                 // It's slow, but it's better than the alternatives:
1658                 //   1. Constantly networking all info and letting client decide
1659                 //   2. Manually handling each separate call on per-usage basis (See old CTF usage of verbose)
1660                 entity found_choice;
1661
1662                 #define RECURSE_FROM_CHOICE(ent,action) MACRO_BEGIN \
1663                         if (notif.nent_challow_var && (warmup_stage || (notif.nent_challow_var == 2))) { \
1664                                 switch (CS_CVAR(ent).msg_choice_choices[net_name.nent_choice_idx]) \
1665                                 { \
1666                                         case 1: found_choice = notif.nent_optiona; break; \
1667                                         case 2: found_choice = notif.nent_optionb; break; \
1668                                         default: action; \
1669                                 } \
1670                         } else { \
1671                                 found_choice = notif.nent_optiona; \
1672                         } \
1673                         Send_Notification_WOVA( \
1674                                 NOTIF_ONE_ONLY, \
1675                                 ent, \
1676                                 found_choice.nent_type, \
1677                                 found_choice, \
1678                                 found_choice.nent_stringcount, \
1679                                 found_choice.nent_floatcount, \
1680                                 s1, s2, s3, s4, \
1681                                 f1, f2, f3, f4); \
1682                 MACRO_END
1683
1684                 switch (broadcast)
1685                 {
1686                         case NOTIF_ONE_ONLY: // we can potentially save processing power with this broadcast method
1687                         {
1688                                 if (IS_REAL_CLIENT(client)) {
1689                                         RECURSE_FROM_CHOICE(client, return);
1690                                 }
1691                                 break;
1692                         }
1693                         default:
1694                         {
1695                                 FOREACH_CLIENT(Notification_ShouldSend(broadcast, it, client), {
1696                                         RECURSE_FROM_CHOICE(it, continue);
1697                                 });
1698                                 break;
1699                         }
1700                 }
1701         }
1702         else
1703         {
1704                 entity net_notif = new_pure(net_notification);
1705                 IL_PUSH(g_notifications, net_notif);
1706                 net_notif.owner = notif;
1707                 net_notif.nent_broadcast = broadcast;
1708                 net_notif.nent_client = client;
1709                 net_notif.nent_net_type = net_type;
1710                 net_notif.nent_net_name = notif.m_id;
1711                 net_notif.nent_stringcount = notif.nent_stringcount;
1712                 net_notif.nent_floatcount = notif.nent_floatcount;
1713
1714                 for (int i = 0; i < net_notif.nent_stringcount; ++i) {
1715                         net_notif.nent_strings[i] = strzone(...(i, string));
1716                 }
1717                 for (int i = 0; i < net_notif.nent_floatcount; ++i) {
1718                         net_notif.nent_floats[i] = ...((net_notif.nent_stringcount + i), float);
1719                 }
1720
1721                 setthink(net_notif, Net_Notification_Remove);
1722                 net_notif.nextthink = (time > autocvar_notification_lifetime_mapload)
1723                         ? (time + autocvar_notification_lifetime_runtime)
1724                         : autocvar_notification_lifetime_mapload;
1725
1726                 Net_LinkEntity(net_notif, false, 0, Net_Write_Notification);
1727         }
1728 }
1729
1730 // WOVA = Without Variable Arguments
1731 void Send_Notification_WOVA(
1732         NOTIF broadcast, entity client,
1733         MSG net_type, Notification net_name,
1734         float stringcount, float floatcount,
1735         string s1, string s2, string s3, string s4,
1736         float f1, float f2, float f3, float f4)
1737 {
1738         #ifdef NOTIFICATIONS_DEBUG
1739         entity notif = net_name;
1740         Debug_Notification(sprintf(
1741                 "Send_Notification_WOVA(%s, %d, %d, %s, %s);\n",
1742                 sprintf(
1743                         "%s, '%s', %s, %s",
1744                         Get_Notif_BroadcastName(broadcast),
1745                         client.classname,
1746                         Get_Notif_TypeName(net_type),
1747                         notif.nent_name
1748                 ),
1749                 stringcount,
1750                 floatcount,
1751                 MakeConsoleSafe(sprintf("'%s^7', '%s^7', '%s^7', '%s^7'", s1, s2, s3, s4)),
1752                 sprintf("%d, %d, %d, %d", f1, f2, f3, f4)
1753         ));
1754         #endif
1755
1756         #define VARITEM(stringc, floatc, args) \
1757                 if ((stringcount == stringc) && (floatcount == floatc)) \
1758                 { Send_Notification(broadcast, client, net_type, net_name, args); return; }
1759         EIGHT_VARS_TO_VARARGS_VARLIST
1760         #undef VARITEM
1761         Send_Notification(broadcast, client, net_type, net_name); // some notifications don't have any arguments at all
1762 }
1763
1764 // WOCOVA = Without Counts Or Variable Arguments
1765 void Send_Notification_WOCOVA(
1766         NOTIF broadcast, entity client,
1767         MSG net_type, Notification net_name,
1768         string s1, string s2, string s3, string s4,
1769         float f1, float f2, float f3, float f4)
1770 {
1771         entity notif = net_name;
1772
1773         #ifdef NOTIFICATIONS_DEBUG
1774         Debug_Notification(sprintf(
1775                 "Send_Notification_WOCOVA(%s, %s, %s);\n",
1776                 sprintf(
1777                         "%s, '%s', %s, %s",
1778                         Get_Notif_BroadcastName(broadcast),
1779                         client.classname,
1780                         Get_Notif_TypeName(net_type),
1781                         notif.nent_name
1782                 ),
1783                 MakeConsoleSafe(sprintf("'%s^7', '%s^7', '%s^7', '%s^7'", s1, s2, s3, s4)),
1784                 sprintf("%d, %d, %d, %d", f1, f2, f3, f4)
1785         ));
1786         #endif
1787
1788         #define VARITEM(stringc, floatc, args) \
1789                 if ((notif.nent_stringcount == stringc) && (notif.nent_floatcount == floatc)) \
1790                 { Send_Notification(broadcast, client, net_type, net_name, args); return; }
1791         EIGHT_VARS_TO_VARARGS_VARLIST
1792         #undef VARITEM
1793         Send_Notification(broadcast, client, net_type, net_name); // some notifications don't have any arguments at all
1794 }
1795 #endif // ifdef SVQC