1 // ================================================
2 // Unified notification system, written by Samual
3 // Last updated: June, 2013
4 // ================================================
6 string Get_Notif_TypeName(float net_type)
10 case MSG_ANNCE: return "MSG_ANNCE";
11 case MSG_INFO: return "MSG_INFO";
12 case MSG_CENTER: return "MSG_CENTER";
13 case MSG_CENTER_CPID: return "MSG_CENTER_CPID";
14 case MSG_MULTI: return "MSG_MULTI";
16 backtrace(sprintf("Get_Notif_TypeName(%d): Improper net type!\n", net_type));
20 entity Get_Notif_Ent(float net_type, float net_name)
24 case MSG_ANNCE: return msg_annce_notifs[net_name - 1];
25 case MSG_INFO: return msg_info_notifs[net_name - 1];
26 case MSG_CENTER: return msg_center_notifs[net_name - 1];
27 case MSG_MULTI: return msg_multi_notifs[net_name - 1];
29 backtrace(sprintf("Get_Notif_Ent(%d, %d): Improper net type!\n", net_type, net_name));
33 string Notification_CheckArgs_TypeName(float net_type, float net_name)
35 // check supplied type and name for errors
36 string checkargs = "";
37 #define CHECKARG_TYPENAME(type) case MSG_##type##: \
38 { if(!net_name || (net_name > NOTIF_##type##_COUNT)) \
39 { checkargs = sprintf("Improper name: %d!", net_name); } break; }
42 CHECKARG_TYPENAME(ANNCE)
43 CHECKARG_TYPENAME(INFO)
44 CHECKARG_TYPENAME(CENTER)
45 CHECKARG_TYPENAME(MULTI)
46 default: { checkargs = sprintf("Improper type: %d!", checkargs, net_type); break; }
48 #undef CHECKARG_TYPENAME
53 string Notification_CheckArgs(
54 float broadcast, entity client,
55 float net_type, float net_name)
57 // check supplied broadcast, target, type, and name for errors
58 string checkargs = Notification_CheckArgs_TypeName(net_type, net_name);
59 if(checkargs != "") { checkargs = strcat(checkargs, " "); }
65 if(IS_NOT_A_CLIENT(client))
66 { checkargs = sprintf("%sNo client provided!", checkargs); }
70 case NOTIF_ALL_EXCEPT:
72 if(IS_NOT_A_CLIENT(client))
73 { checkargs = sprintf("%sException can't be a non-client!", checkargs); }
80 { checkargs = sprintf("%sEntity provided when world was required!", checkargs); }
85 case NOTIF_TEAM_EXCEPT:
87 if not(teamplay) { checkargs = sprintf("%sTeamplay not active!", checkargs); }
88 else if(IS_NOT_A_CLIENT(client))
90 if(broadcast == NOTIF_TEAM) { checkargs = sprintf("%sNo client provided!", checkargs); }
91 else { checkargs = sprintf("%sException can't be a non-client!", checkargs); }
96 default: { checkargs = sprintf("%sImproper broadcast: %d!", checkargs, broadcast); break; }
102 // ===============================
103 // Initialization Core Functions
104 // ===============================
106 // used by restartnotifs command to initialize notifications
107 void Destroy_Notification_Entity(entity notif)
109 if(notif.nent_name != "") { strunzone(notif.nent_name); }
110 if(notif.nent_snd != "") { strunzone(notif.nent_snd); }
111 if(notif.nent_args != "") { strunzone(notif.nent_args); }
112 if(notif.nent_hudargs != "") { strunzone(notif.nent_hudargs); }
113 if(notif.nent_icon != "") { strunzone(notif.nent_icon); }
114 if(notif.nent_durcnt != "") { strunzone(notif.nent_durcnt); }
115 if(notif.nent_string != "") { strunzone(notif.nent_string); }
119 void Destroy_All_Notifications(void)
124 #define DESTROY_LOOP(type,count) \
125 for(i = 1; i <= count; ++i) \
127 notif = Get_Notif_Ent(type, i); \
128 if not(notif) { backtrace("Destroy_All_Notifications(): Missing notification entity!\n"); return; } \
129 Destroy_Notification_Entity(notif); \
132 // kill all networked notifications and centerprints
134 Kill_Notification(NOTIF_ALL, world, 0, 0);
136 reset_centerprint_messages();
139 // kill all real notification entities
140 DESTROY_LOOP(MSG_ANNCE, NOTIF_ANNCE_COUNT)
141 DESTROY_LOOP(MSG_INFO, NOTIF_INFO_COUNT)
142 DESTROY_LOOP(MSG_CENTER, NOTIF_CENTER_COUNT)
143 DESTROY_LOOP(MSG_MULTI, NOTIF_MULTI_COUNT)
147 string Process_Notif_Line(
158 if((chat && autocvar_notification_allow_chatboxprint)
159 || (autocvar_notification_allow_chatboxprint == 2))
161 // pass 1: add ETX char at beginning of line
162 input = strcat("\{3}", input);
164 // pass 2: add ETX char at end of each new line (so that
165 // messages with multiple lines are put through chatbox too)
166 input = strreplace("\n", "\n\{3}", input);
168 // pass 3: strip trailing ETX char
169 if(substring(input, (strlen(input) - 1), 1) == "\{3}")
170 { input = substring(input, 0, (strlen(input) - 1)); }
173 if(substring(input, (strlen(input) - 1), 1) != "\n")
177 "^1MISSING/BROKEN NEW LINE AT END OF NOTIFICATION: ",
178 "^7net_type = %s, net_name = %s, string = %s.\n"
185 return strcat(input, "\n");
191 string Process_Notif_Args(
197 string selected, remaining = args;
200 for(;(remaining != "");)
202 selected = car(remaining); remaining = cdr(remaining);
206 case 1: // normal args
208 if(sel_num == NOTIF_MAX_ARGS)
212 "^1NOTIFICATION HAS TOO MANY ARGUMENTS: ",
213 "^7net_type = %s, net_name = %s, max args = %d.\n"
223 switch(strtolower(selected))
225 #define ARG_CASE(prog,selected,result) \
226 #if (prog != ARG_DC) \
227 case selected: { ++sel_num; break; } \
235 "^1NOTIFICATION WITH UNKNOWN TOKEN IN ARGUMENT STRING: ",
236 "^7net_type = %s, net_name = %s, args arg = '%s'.\n"
250 if(sel_num == NOTIF_MAX_HUDARGS)
254 "^1NOTIFICATION HAS TOO MANY ARGUMENTS: ",
255 "^7net_type = %s, net_name = %s, max hudargs = %d.\n"
265 switch(strtolower(selected))
267 #define ARG_CASE(prog,selected,result) \
268 #if (prog == ARG_CS_SV_HA) \
269 case selected: { ++sel_num; break; } \
277 "^1NOTIFICATION WITH UNKNOWN TOKEN IN ARGUMENT STRING: ",
278 "^7net_type = %s, net_name = %s, hudargs arg = '%s'.\n"
292 if(sel_num == NOTIF_MAX_DURCNT)
296 "^1NOTIFICATION HAS TOO MANY ARGUMENTS: ",
297 "^7net_type = %s, net_name = %s, max durcnt = %d.\n"
307 switch(strtolower(selected))
309 #define ARG_CASE(prog,selected,result) \
310 #if (prog == ARG_CS_SV_DC) || (prog == ARG_DC) \
311 case selected: { ++sel_num; break; } \
317 if(ftos(stof(selected)) != "") { ++sel_num; }
322 "^1NOTIFICATION WITH UNKNOWN TOKEN IN ARGUMENT STRING: ",
323 "^7net_type = %s, net_name = %s, durcnt arg = '%s'.\n"
341 void Create_Notification_Entity(
366 // =====================
367 // Global Entity Setup
368 // =====================
369 entity notif = spawn();
370 string typestring = "";
375 typestring = "MSG_ANNCE";
376 msg_annce_notifs[nameid - 1] = notif;
377 notif.classname = "msg_annce_notification";
382 typestring = "MSG_INFO";
383 msg_info_notifs[nameid - 1] = notif;
384 notif.classname = "msg_info_notification";
389 typestring = "MSG_CENTER";
390 msg_center_notifs[nameid - 1] = notif;
391 notif.classname = "msg_center_notification";
396 typestring = "MSG_MULTI";
397 msg_multi_notifs[nameid - 1] = notif;
398 notif.classname = "MSG_MULTI_notification";
406 "^1NOTIFICATION WITH IMPROPER TYPE: ",
407 "^7net_type = %d, net_name = %s.\n"
412 return; // It's not possible to recover from this one
415 notif.nent_default = var_default;
416 notif.nent_name = strzone(namestring);
417 notif.nent_id = nameid;
418 notif.nent_enabled = (1 <= var_cvar);
420 // Other pre-notif-setup requisites
423 // ====================
424 // Notification Setup
425 // ====================
428 // Set MSG_MULTI string/float counts
429 if((anncename == NO_MSG) && (infoname == NO_MSG) && (centername == NO_MSG))
433 "^1NOTIFICATION WITH NO SUBCALLS: ",
434 "^7net_type = %s, net_name = %s.\n"
443 // announcements don't actually need any arguments, so lets not even count them.
444 if(anncename != NO_MSG) { notif.nent_msgannce = msg_annce_notifs[anncename - 1]; }
446 float infoname_stringcount = 0, infoname_floatcount = 0;
447 float centername_stringcount = 0, centername_floatcount = 0;
449 if(infoname != NO_MSG)
451 notif.nent_msginfo = msg_info_notifs[infoname - 1];
452 infoname_stringcount = notif.nent_msginfo.nent_stringcount;
453 infoname_floatcount = notif.nent_msginfo.nent_floatcount;
456 if(centername != NO_MSG)
458 notif.nent_msgcenter = msg_center_notifs[centername - 1];
459 centername_stringcount = notif.nent_msgcenter.nent_stringcount;
460 centername_floatcount = notif.nent_msgcenter.nent_floatcount;
463 // set the requirements of THIS notification to the totals of its subcalls
464 notif.nent_stringcount = max(infoname_stringcount, centername_stringcount);
465 notif.nent_floatcount = max(infoname_floatcount, centername_floatcount);
468 else if(typeid == MSG_ANNCE)
470 // Set MSG_ANNCE information and handle precaching
472 if not(GENTLE && (var_cvar == 1))
476 if(notif.nent_enabled)
478 precache_sound(sprintf("announcer/%s/%s.wav", autocvar_cl_announcer, snd));
479 notif.nent_channel = channel;
480 notif.nent_snd = strzone(snd);
481 notif.nent_vol = vol;
482 notif.nent_position = position;
489 "^1NOTIFICATION WITH NO SOUND: ",
490 "^7net_type = %s, net_name = %s.\n"
498 else { notif.nent_enabled = FALSE; }
500 notif.nent_enabled = FALSE;
505 // Set MSG_INFO and MSG_CENTER string/float counts
506 notif.nent_stringcount = strnum;
507 notif.nent_floatcount = flnum;
509 // Only initialize arguments if we're either a client or on a dedicated server
511 float should_process_args = server_is_dedicated;
513 float should_process_args = TRUE;
516 if(should_process_args)
518 // ========================
519 // Process Main Arguments
520 // ========================
525 notif.nent_args = strzone(
526 Process_Notif_Args(1, args, typestring, namestring));
528 else if((hudargs == "") && (durcnt ==""))
532 "^1NOTIFICATION HAS ARG COUNTS BUT NO ARGS OR HUDARGS OR DURCNT: ",
533 "^7net_type = %s, net_name = %s, strnum = %d, flnum = %d\n"
545 notif.nent_args = strzone(
546 Process_Notif_Args(1, args, typestring, namestring));
550 // =======================================
551 // Process HUD and Centerprint Arguments
552 // Only processed on CSQC, as these
553 // args are only for HUD features.
554 // =======================================
558 notif.nent_hudargs = strzone(
559 Process_Notif_Args(2, hudargs, typestring, namestring));
561 if(icon != "") { notif.nent_icon = strzone(icon); }
566 "^1NOTIFICATION HAS HUDARGS BUT NO ICON: ",
567 "^7net_type = %s, net_name = %s.\n"
579 "^1NOTIFICATION HAS ICON BUT NO HUDARGS: ",
580 "^7net_type = %s, net_name = %s.\n"
590 notif.nent_durcnt = strzone(
591 Process_Notif_Args(3, durcnt, typestring, namestring));
593 if(cpid != NO_MSG) { notif.nent_cpid = cpid; }
598 "^1NOTIFICATION HAS DURCNT BUT NO CPID: ",
599 "^7net_type = %s, net_name = %s.\n"
607 else if(cpid != NO_MSG) { notif.nent_cpid = cpid; }
611 // ======================
612 // Process Notif String
613 // ======================
614 #define SET_NOTIF_STRING(string,stringname) \
615 notif.nent_string = strzone(CCR( \
616 Process_Notif_Line( \
628 if(gentle != "") { SET_NOTIF_STRING(gentle, "GENTLE") }
629 else if(normal != "") { SET_NOTIF_STRING(normal, "NORMAL") }
631 else if(normal != "") { SET_NOTIF_STRING(normal, "NORMAL") }
633 #undef SET_NOTIF_STRING
635 // Check to make sure a string was chosen
636 if(notif.nent_string == "")
640 "^1EMPTY NOTIFICATION: ",
641 "^7net_type = %s, net_name = %s.\n"
651 // now check to see if any errors happened
654 notif.nent_enabled = FALSE; // disable the notification so it can't cause trouble
655 notif_global_error = TRUE; // throw the red flag that an error happened on init
660 // =========================================
661 // Cvar Handling With 'dumpnotifs' Command
662 // =========================================
664 void Dump_Notifications(float fh, float alsoprint)
666 #define NOTIF_WRITE(a) { \
668 if(alsoprint) { print(a); } }
669 #define NOTIF_WRITE_ENTITY(description) { \
672 "seta notification_%s \"%d\" \"%s\"\n", \
673 e.nent_name, e.nent_default, description \
675 NOTIF_WRITE(notif_msg) }
676 #define NOTIF_WRITE_HARDCODED(cvar,default,description) { \
679 "seta notification_%s \"%s\" \"%s\"\n", \
680 cvar, default, description \
682 NOTIF_WRITE(notif_msg) }
688 // Note: This warning only applies to the notifications.cfg file that is output...
690 // You ARE supposed to manually edit this function to add i.e. hard coded
691 // notification variables for mutators or game modes or such and then
692 // regenerate the notifications.cfg file from the new code.
694 NOTIF_WRITE("// ********************************************** //\n");
695 NOTIF_WRITE("// ** WARNING - DO NOT MANUALLY EDIT THIS FILE ** //\n");
696 NOTIF_WRITE("// ** ** //\n");
697 NOTIF_WRITE("// ** This file is automatically generated ** //\n");
698 NOTIF_WRITE("// ** by code with the command 'dumpnotifs'. ** //\n");
699 NOTIF_WRITE("// ** ** //\n");
700 NOTIF_WRITE("// ** If you add a new notification, please ** //\n");
701 NOTIF_WRITE("// ** regenerate this file with that command ** //\n");
702 NOTIF_WRITE("// ** making sure that the output matches ** //\n");
703 NOTIF_WRITE("// ** with the lists and defaults in code. ** //\n");
704 NOTIF_WRITE("// ** ** //\n");
705 NOTIF_WRITE("// ********************************************** //\n");
707 // These notifications will also append their string as a comment...
708 // This is not necessary, and does not matter if they vary between config versions,
709 // it is just a semi-helpful tool for those who want to manually change their user settings.
711 NOTIF_WRITE(sprintf("\n// MSG_ANNCE notifications (count = %d):\n", NOTIF_ANNCE_COUNT));
712 for(i = 1; i <= NOTIF_ANNCE_COUNT; ++i)
714 e = Get_Notif_Ent(MSG_ANNCE, i);
715 if not(e) { backtrace("Dump_Notifications(): Missing notification entity!\n"); return; }
718 "Notification control cvar: 0 = disabled, 1 = enabled if gentle mode is off, 2 = always enabled)"
722 NOTIF_WRITE(sprintf("\n// MSG_INFO notifications (count = %d):\n", NOTIF_INFO_COUNT));
723 for(i = 1; i <= NOTIF_INFO_COUNT; ++i)
725 e = Get_Notif_Ent(MSG_INFO, i);
726 if not(e) { backtrace("Dump_Notifications(): Missing notification entity!\n"); return; }
729 "Notification control cvar: 0 = off, 1 = print to console, "
730 "2 = print to console and chatbox (if notification_allow_chatboxprint is enabled)"
734 NOTIF_WRITE(sprintf("\n// MSG_CENTER notifications (count = %d):\n", NOTIF_CENTER_COUNT));
735 for(i = 1; i <= NOTIF_CENTER_COUNT; ++i)
737 e = Get_Notif_Ent(MSG_CENTER, i);
738 if not(e) { backtrace("Dump_Notifications(): Missing notification entity!\n"); return; }
741 "Notification control cvar: 0 = off, 1 = centerprint"
745 NOTIF_WRITE(sprintf("\n// MSG_MULTI notifications (count = %d):\n", NOTIF_MULTI_COUNT));
746 for(i = 1; i <= NOTIF_MULTI_COUNT; ++i)
748 e = Get_Notif_Ent(MSG_MULTI, i);
749 if not(e) { backtrace("Dump_Notifications(): Missing notification entity!\n"); return; }
752 "Notification control cvar: 0 = off, 1 = trigger subcalls"
756 // edit these to match whichever cvars are used for specific notification options
757 NOTIF_WRITE("\n// HARD CODED notification variables:\n");
759 NOTIF_WRITE_HARDCODED(
760 "allow_chatboxprint", "1",
761 "Allow notifications to be printed to chat box by setting notification cvar to 2 "
762 "(You can also set this cvar to 2 to force ALL notifications to be printed to the chatbox)"
765 NOTIF_WRITE_HARDCODED(
766 "ctf_capture_verbose", "0",
767 "Show extra information when someone captures a flag"
770 NOTIF_WRITE_HARDCODED(
771 "ctf_pickup_enemy_verbose", "0",
772 "Show extra information if an enemy picks up a flag"
775 NOTIF_WRITE_HARDCODED(
776 "ctf_pickup_team_verbose", "0",
777 "Show extra information if a team mate picks up a flag"
780 NOTIF_WRITE_HARDCODED(
782 "Print extra debug information on all notification function calls "
783 "(Requires -DNOTIFICATIONS_DEBUG flag to be enabled on QCSRC compilation)... "
784 "0 = disabled, 1 = dprint, 2 = print"
787 NOTIF_WRITE_HARDCODED(
788 "errors_are_fatal", "1",
789 "If a notification fails upon initialization, cause a Host_Error to stop the program"
792 NOTIF_WRITE_HARDCODED(
794 "Show extra information when you frag someone (or when you are fragged"
797 NOTIF_WRITE_HARDCODED(
798 "item_centerprinttime", "1.5",
799 "How long to show item information centerprint messages (like 'You got the Electro' or such)"
802 NOTIF_WRITE_HARDCODED(
803 "lifetime_mapload", "10",
804 "Amount of time that notification entities last immediately at mapload (in seconds) "
805 "to help prevent notifications from being lost on early init (like gamestart countdown)"
808 NOTIF_WRITE_HARDCODED(
809 "lifetime_runtime", "0.5",
810 "Amount of time that notification entities last on the server during runtime (In seconds)"
813 NOTIF_WRITE_HARDCODED(
814 "server_allows_frag_verbose", "1",
815 "Server side cvar for showing extra information in frag messages... 0 = no extra frag information, "
816 "1 = frag information only in warmup, 2 = frag information allowed all the time"
819 NOTIF_WRITE_HARDCODED(
820 "server_allows_location", "1",
821 "Server side cvar for allowing death messages to show location information too"
824 NOTIF_WRITE_HARDCODED(
825 "show_location", "0",
826 "Append location information to MSG_INFO death/kill messages"
829 NOTIF_WRITE_HARDCODED(
830 "show_location_string", "",
831 "Replacement string piped into sprintf, "
832 "so you can do different messages like this: ' at the %s' or ' (near %s)'"
835 NOTIF_WRITE_HARDCODED(
837 "Print information about sprees in death/kill messages"
840 NOTIF_WRITE_HARDCODED(
841 "show_sprees_center", "1",
842 "Show spree information in MSG_CENTER messages... "
843 "0 = off, 1 = target (but only for first victim) and attacker"
846 NOTIF_WRITE_HARDCODED(
847 "show_sprees_center_specialonly", "1",
848 "Don't show spree information in MSG_CENTER messages if it isn't an achievement"
851 NOTIF_WRITE_HARDCODED(
852 "show_sprees_info", "3",
853 "Show spree information in MSG_INFO messages... "
854 "0 = off, 1 = target only, 2 = attacker only, 3 = target and attacker"
857 NOTIF_WRITE_HARDCODED(
858 "show_sprees_info_newline", "1",
859 "Show attacker spree information for MSG_INFO messages on a separate line than the death notification itself"
862 NOTIF_WRITE_HARDCODED(
863 "show_sprees_info_specialonly", "1",
864 "Don't show attacker spree information in MSG_INFO messages if it isn't an achievement"
869 "\n// Notification counts (total = %d): ",
870 "MSG_ANNCE = %d, MSG_INFO = %d, MSG_CENTER = %d, MSG_MULTI = %d\n"
885 #undef NOTIF_WRITE_HARDCODED
886 #undef NOTIF_WRITE_ENTITY
891 void Notification_GetCvars()
893 GetCvars_handleFloat(get_cvars_s, get_cvars_f, FRAG_VERBOSE, "notification_frag_verbose");
898 // ===============================
899 // Frontend Notification Pushing
900 // ===============================
902 #ifdef NOTIFICATIONS_DEBUG
903 void Debug_Notification(string input)
905 switch(autocvar_notification_debug)
907 case 1: { dprint(input); break; }
908 case 2: { print(input); break; }
913 string Local_Notification_sprintf(
914 string input, string args,
915 string s1, string s2, string s3, string s4,
916 float f1, float f2, float f3, float f4)
918 #ifdef NOTIFICATIONS_DEBUG
919 Debug_Notification(sprintf(
920 "Local_Notification_sprintf('%s^7', '%s', %s, %s);\n",
921 MakeConsoleSafe(input),
923 MakeConsoleSafe(sprintf("'%s^7', '%s^7', '%s^7', '%s^7'", s1, s2, s3, s4)),
924 sprintf("%d, %d, %d, %d", f1, f2, f3, f4)
930 for(sel_num = 0; sel_num < NOTIF_MAX_ARGS; ++sel_num) { arg_slot[sel_num] = ""; }
934 for(sel_num = 0;(args != "");)
936 selected = car(args); args = cdr(args);
937 NOTIF_HIT_MAX(NOTIF_MAX_ARGS, "Local_Notification_sprintf")
938 switch(strtolower(selected))
940 #define ARG_CASE(prog,selected,result) \
942 #if (prog != ARG_SV) && (prog != ARG_DC) \
943 case selected: { arg_slot[sel_num] = result; ++sel_num; break; } \
946 #if (prog != ARG_CS) && (prog != ARG_DC) \
947 case selected: { arg_slot[sel_num] = result; ++sel_num; break; } \
952 default: NOTIF_HIT_UNKNOWN(NOTIF_MAX_ARGS, "Local_Notification_sprintf")
955 return sprintf(input, arg_slot[0], arg_slot[1], arg_slot[2], arg_slot[3], arg_slot[4], arg_slot[5], arg_slot[6]);
959 void Local_Notification_sound(
960 float soundchannel, string soundfile,
961 float soundvolume, float soundposition)
963 if((soundfile != prev_soundfile) || (time >= (prev_soundtime + autocvar_cl_announcer_antispam)))
965 #ifdef NOTIFICATIONS_DEBUG
966 Debug_Notification(sprintf(
967 "Local_Notification_sound(world, %f, '%s', %f, %f);\n",
970 "announcer/%s/%s.wav",
971 autocvar_cl_announcer,
983 "announcer/%s/%s.wav",
984 autocvar_cl_announcer,
991 if(prev_soundfile) { strunzone(prev_soundfile); }
992 prev_soundfile = strzone(soundfile);
993 prev_soundtime = time;
997 #ifdef NOTIFICATIONS_DEBUG
998 Debug_Notification(sprintf(
1000 "Local_Notification_sound(world, %f, '%s', %f, %f) ",
1001 "^1BLOCKED BY ANTISPAM:^7 prevsnd: '%s', timediff: %f, limit: %f\n"
1005 "announcer/%s/%s.wav",
1006 autocvar_cl_announcer,
1012 (time - prev_soundtime),
1013 autocvar_cl_announcer_antispam
1019 void Local_Notification_HUD_Notify_Push(
1020 string icon, string hudargs,
1021 string s1, string s2, string s3, string s4)
1025 arg_slot[0] = ""; arg_slot[1] = "";
1027 for(sel_num = 0;(hudargs != "");)
1029 selected = car(hudargs); hudargs = cdr(hudargs);
1030 NOTIF_HIT_MAX(NOTIF_MAX_HUDARGS, "Local_Notification_HUD_Notify_Push")
1031 switch(strtolower(selected))
1033 #define ARG_CASE(prog,selected,result) \
1034 #if (prog == ARG_CS_SV_HA) \
1035 case selected: { arg_slot[sel_num] = result; ++sel_num; break; } \
1039 default: NOTIF_HIT_UNKNOWN(NOTIF_MAX_HUDARGS, "Local_Notification_HUD_Notify_Push")
1042 #ifdef NOTIFICATIONS_DEBUG
1043 Debug_Notification(sprintf(
1044 "Local_Notification_HUD_Notify_Push('%s^7', '%s', %s, %s);\n",
1047 MakeConsoleSafe(sprintf("'%s^7', '%s^7', '%s^7', '%s^7'", s1, s2, s3, s4)),
1048 MakeConsoleSafe(sprintf("'%s^7', '%s^7'", stof(arg_slot[0]), stof(arg_slot[1])))
1051 HUD_Notify_Push(icon, arg_slot[0], arg_slot[1]);
1054 void Local_Notification_centerprint_generic(
1055 string input, string durcnt,
1056 float cpid, float f1, float f2)
1060 arg_slot[0] = ""; arg_slot[1] = "";
1062 for(sel_num = 0;(durcnt != "");)
1064 selected = car(durcnt); durcnt = cdr(durcnt);
1065 NOTIF_HIT_MAX(NOTIF_MAX_DURCNT, "Local_Notification_centerprint_generic")
1066 switch(strtolower(selected))
1068 #define ARG_CASE(prog,selected,result) \
1069 #if (prog == ARG_CS_SV_DC) || (prog == ARG_DC) \
1070 case selected: { arg_slot[sel_num] = result; ++sel_num; break; } \
1076 if(ftos(stof(selected)) != "") { arg_slot[sel_num] = selected; ++sel_num; }
1077 else { NOTIF_HIT_UNKNOWN(NOTIF_MAX_DURCNT, "Local_Notification_centerprint_generic") }
1082 #ifdef NOTIFICATIONS_DEBUG
1083 Debug_Notification(sprintf(
1084 "Local_Notification_centerprint_generic('%s^7', '%s', %d, %d, %d, %d);\n",
1085 MakeConsoleSafe(input),
1088 stof(arg_slot[0]), stof(arg_slot[1])
1091 centerprint_generic(cpid, input, stof(arg_slot[0]), stof(arg_slot[1]));
1095 void Local_Notification(float net_type, float net_name, ...count)
1097 // check supplied type and name for errors
1098 string checkargs = Notification_CheckArgs_TypeName(net_type, net_name);
1099 if(checkargs != "") { backtrace(sprintf("Incorrect usage of Local_Notification: %s\n", checkargs)); return; }
1101 entity notif = Get_Notif_Ent(net_type, net_name);
1102 if not(notif) { backtrace("Local_Notification: Could not find notification entity!\n"); return; }
1103 if not(notif.nent_enabled)
1105 #ifdef NOTIFICATIONS_DEBUG
1106 Debug_Notification(sprintf(
1107 "Local_Notification(%s, %s): Entity was disabled...\n",
1108 Get_Notif_TypeName(net_type),
1115 if((notif.nent_stringcount + notif.nent_floatcount) > count)
1119 "Not enough arguments for Local_Notification(%s, %s, ...)! ",
1120 "stringcount(%d) + floatcount(%d) > count(%d)\n",
1121 "Check the definition and function call for accuracy...?\n"
1123 Get_Notif_TypeName(net_type), notif.nent_name,
1124 notif.nent_stringcount, notif.nent_floatcount, count
1128 else if((notif.nent_stringcount + notif.nent_floatcount) < count)
1132 "Too many arguments for Local_Notification(%s, %s, ...)! ",
1133 "stringcount(%d) + floatcount(%d) < count(%d)\n",
1134 "Check the definition and function call for accuracy...?\n"
1136 Get_Notif_TypeName(net_type), notif.nent_name,
1137 notif.nent_stringcount, notif.nent_floatcount, count
1142 string s1 = ((0 < notif.nent_stringcount) ? ...(0, string) : "");
1143 string s2 = ((1 < notif.nent_stringcount) ? ...(1, string) : "");
1144 string s3 = ((2 < notif.nent_stringcount) ? ...(2, string) : "");
1145 string s4 = ((3 < notif.nent_stringcount) ? ...(3, string) : "");
1146 float f1 = ((0 < notif.nent_floatcount) ? ...((notif.nent_stringcount + 0), float) : 0);
1147 float f2 = ((1 < notif.nent_floatcount) ? ...((notif.nent_stringcount + 1), float) : 0);
1148 float f3 = ((2 < notif.nent_floatcount) ? ...((notif.nent_stringcount + 2), float) : 0);
1149 float f4 = ((3 < notif.nent_floatcount) ? ...((notif.nent_stringcount + 3), float) : 0);
1151 #ifdef NOTIFICATIONS_DEBUG
1152 Debug_Notification(sprintf(
1153 "Local_Notification(%s, %s, %s, %s);\n",
1154 Get_Notif_TypeName(net_type),
1156 MakeConsoleSafe(sprintf("'%s^7', '%s^7', '%s^7', '%s^7'", s1, s2, s3, s4)),
1157 sprintf("%d, %d, %d, %d", f1, f2, f3, f4)
1166 Local_Notification_sound(
1173 backtrace("MSG_ANNCE on server?... Please notify Samual immediately!\n");
1181 Local_Notification_sprintf(
1188 if(notif.nent_icon != "")
1190 Local_Notification_HUD_Notify_Push(
1202 Local_Notification_centerprint_generic(
1203 Local_Notification_sprintf(
1217 if(notif.nent_msginfo)
1218 if(notif.nent_msginfo.nent_enabled)
1220 Local_Notification_WOVA(
1222 notif.nent_msginfo.nent_id,
1223 notif.nent_msginfo.nent_stringcount,
1224 notif.nent_msginfo.nent_floatcount,
1229 if(notif.nent_msgannce)
1230 if(notif.nent_msgannce.nent_enabled)
1232 Local_Notification_WOVA(
1234 notif.nent_msgannce.nent_id,
1239 if(notif.nent_msgcenter)
1240 if(notif.nent_msgcenter.nent_enabled)
1242 Local_Notification_WOVA(
1244 notif.nent_msgcenter.nent_id,
1245 notif.nent_msgcenter.nent_stringcount,
1246 notif.nent_msgcenter.nent_floatcount,
1256 // WOVA = Without Variable Arguments
1257 void Local_Notification_WOVA(
1258 float net_type, float net_name,
1259 float stringcount, float floatcount,
1260 string s1, string s2, string s3, string s4,
1261 float f1, float f2, float f3, float f4)
1263 #define VARITEM(stringc,floatc,args) \
1264 if((stringcount == stringc) && (floatcount == floatc)) \
1265 { Local_Notification(net_type, net_name, args); return; }
1266 EIGHT_VARS_TO_VARARGS_VARLIST
1268 Local_Notification(net_type, net_name); // some notifications don't have any arguments at all
1272 // =========================
1273 // Notification Networking
1274 // =========================
1277 void Read_Notification(float is_new)
1279 float net_type = ReadByte();
1280 float net_name = ReadShort();
1284 if(net_type == MSG_CENTER_CPID)
1286 #ifdef NOTIFICATIONS_DEBUG
1287 Debug_Notification(sprintf(
1288 "Read_Notification(%d) at %f: net_type = %s, net_name = %d\n",
1291 Get_Notif_TypeName(net_type),
1298 if(net_name == 0) { reset_centerprint_messages(); }
1299 else if(net_name != NO_CPID)
1301 // in this case, net_name IS the cpid we want to kill
1302 centerprint_generic(net_name, "", 0, 0);
1307 "Read_Notification(%d) at %f: ^1TRIED TO KILL NO_CPID CENTERPRINT!\n",
1316 notif = Get_Notif_Ent(net_type, net_name);
1317 if not(notif) { backtrace("Read_Notification: Could not find notification entity!\n"); return; }
1319 #ifdef NOTIFICATIONS_DEBUG
1320 Debug_Notification(sprintf(
1321 "Read_Notification(%d) at %f: net_type = %s, net_name = %s\n",
1324 Get_Notif_TypeName(net_type),
1329 string s1 = ((0 < notif.nent_stringcount) ? ReadString() : "");
1330 string s2 = ((1 < notif.nent_stringcount) ? ReadString() : "");
1331 string s3 = ((2 < notif.nent_stringcount) ? ReadString() : "");
1332 string s4 = ((3 < notif.nent_stringcount) ? ReadString() : "");
1333 float f1 = ((0 < notif.nent_floatcount) ? ReadLong() : 0);
1334 float f2 = ((1 < notif.nent_floatcount) ? ReadLong() : 0);
1335 float f3 = ((2 < notif.nent_floatcount) ? ReadLong() : 0);
1336 float f4 = ((3 < notif.nent_floatcount) ? ReadLong() : 0);
1340 Local_Notification_WOVA(
1342 notif.nent_stringcount,
1343 notif.nent_floatcount,
1352 void Net_Notification_Remove()
1354 if not(self) { backtrace(sprintf("Net_Notification_Remove() at %f: Missing self!?\n", time)); return; }
1356 #ifdef NOTIFICATIONS_DEBUG
1357 Debug_Notification(sprintf(
1358 "Net_Notification_Remove() at %f: %s '%s - %s' notification\n",
1360 ((self.nent_net_name == -1) ? "Killed" : "Removed"),
1361 Get_Notif_TypeName(self.nent_net_type),
1362 self.owner.nent_name
1367 for(i = 0; i < 4; ++i) { if(self.nent_strings[i]) { strunzone(self.nent_strings[i]); } }
1371 float Net_Write_Notification(entity client, float sf)
1373 float i, send = FALSE;
1375 switch(self.nent_broadcast)
1377 case NOTIF_ONE: // send to one client and their spectator
1380 (client == self.nent_client)
1385 (client.enemy == self.nent_client)
1390 case NOTIF_ONE_ONLY: // send ONLY to one client
1392 if(client == self.nent_client) { send = TRUE; }
1395 case NOTIF_TEAM: // send only to X team and their spectators
1398 (client.team == self.nent_client.team)
1403 (client.enemy.team == self.nent_client.team)
1408 case NOTIF_TEAM_EXCEPT: // send only to X team and their spectators, except for Y person and their spectators
1411 (client != self.nent_client)
1414 (client.team == self.nent_client.team)
1420 (client.enemy != self.nent_client)
1422 (client.enemy.team == self.nent_client.team)
1429 case NOTIF_ALL: // send to everyone
1434 case NOTIF_ALL_EXCEPT: // send to everyone except X person and their spectators
1437 (client != self.nent_client)
1442 (client.enemy == self.nent_client)
1447 default: { send = FALSE; break; }
1452 WriteByte(MSG_ENTITY, ENT_CLIENT_NOTIFICATION);
1453 WriteByte(MSG_ENTITY, self.nent_net_type);
1454 WriteShort(MSG_ENTITY, self.nent_net_name);
1455 for(i = 0; i < self.nent_stringcount; ++i) { WriteString(MSG_ENTITY, self.nent_strings[i]); }
1456 for(i = 0; i < self.nent_floatcount; ++i) { WriteLong(MSG_ENTITY, self.nent_floats[i]); }
1462 void Kill_Notification(
1463 float broadcast, entity client,
1464 float net_type, float net_name)
1466 string checkargs = Notification_CheckArgs(broadcast, client, 1, 1);
1467 if(checkargs != "") { backtrace(sprintf("Incorrect usage of Kill_Notification: %s\n", checkargs)); return; }
1469 #ifdef NOTIFICATIONS_DEBUG
1470 Debug_Notification(sprintf(
1471 "Kill_Notification(%d, '%s', %s, %d);\n",
1474 (net_type ? Get_Notif_TypeName(net_type) : "0"),
1479 entity notif, net_notif;
1480 float killed_cpid = NO_CPID;
1486 killed_cpid = 0; // kill ALL centerprints
1494 entity notif = Get_Notif_Ent(net_type, net_name);
1495 if not(notif) { backtrace("Kill_Notification: Could not find notification entity!\n"); return; }
1498 killed_cpid = notif.nent_cpid;
1500 killed_cpid = NO_CPID;
1504 killed_cpid = 0; // kill ALL centerprints
1509 case MSG_CENTER_CPID:
1511 killed_cpid = net_name;
1516 if(killed_cpid != NO_CPID)
1518 net_notif = spawn();
1519 net_notif.classname = "net_kill_notification";
1520 net_notif.nent_broadcast = broadcast;
1521 net_notif.nent_client = client;
1522 net_notif.nent_net_type = MSG_CENTER_CPID;
1523 net_notif.nent_net_name = killed_cpid;
1524 Net_LinkEntity(net_notif, FALSE, autocvar_notification_lifetime_runtime, Net_Write_Notification);
1527 for(notif = world; (notif = find(notif, classname, "net_notification"));)
1531 if((killed_cpid != NO_CPID) && (notif.nent_net_type == MSG_CENTER))
1533 if(notif.owner.nent_cpid == killed_cpid)
1535 notif.nent_net_name = -1;
1536 notif.nextthink = time;
1538 else { continue; } // we ARE looking for a specific CPID, don't kill everything else too
1540 else if(notif.nent_net_type == net_type)
1544 if(notif.nent_net_name == net_name) { notif.nent_net_name = -1; notif.nextthink = time; }
1545 else { continue; } // we ARE looking for a certain net_name, don't kill everything else too
1547 else { notif.nent_net_name = -1; notif.nextthink = time; }
1549 else { continue; } // we ARE looking for a certain net_type, don't kill everything else too
1551 else { notif.nent_net_name = -1; notif.nextthink = time; }
1555 void Send_Notification(
1556 float broadcast, entity client,
1557 float net_type, float net_name,
1560 // check supplied broadcast, target, type, and name for errors
1561 string checkargs = Notification_CheckArgs(broadcast, client, net_type, net_name);
1562 if(checkargs != "") { backtrace(sprintf("Incorrect usage of Send_Notification: %s\n", checkargs)); return; }
1564 // retreive counts for the arguments of this notification
1565 entity notif = Get_Notif_Ent(net_type, net_name);
1566 if not(notif) { backtrace("Send_Notification: Could not find notification entity!\n"); return; }
1568 if((notif.nent_stringcount + notif.nent_floatcount) > count)
1572 "Not enough arguments for Send_Notification(%d, %s, %s, ...)! ",
1573 "stringcount(%d) + floatcount(%d) > count(%d)\n",
1574 "Check the definition and function call for accuracy...?\n"
1576 broadcast, Get_Notif_TypeName(net_type), notif.nent_name,
1577 notif.nent_stringcount, notif.nent_floatcount, count
1581 else if((notif.nent_stringcount + notif.nent_floatcount) < count)
1585 "Too many arguments for Send_Notification(%d, %s, %s, ...)! ",
1586 "stringcount(%d) + floatcount(%d) < count(%d)\n",
1587 "Check the definition and function call for accuracy...?\n"
1589 broadcast, Get_Notif_TypeName(net_type), notif.nent_name,
1590 notif.nent_stringcount, notif.nent_floatcount, count
1595 #ifdef NOTIFICATIONS_DEBUG
1596 string s1 = ((0 < notif.nent_stringcount) ? ...(0, string) : "");
1597 string s2 = ((1 < notif.nent_stringcount) ? ...(1, string) : "");
1598 string s3 = ((2 < notif.nent_stringcount) ? ...(2, string) : "");
1599 string s4 = ((3 < notif.nent_stringcount) ? ...(3, string) : "");
1600 float f1 = ((0 < notif.nent_floatcount) ? ...((notif.nent_stringcount + 0), float) : 0);
1601 float f2 = ((1 < notif.nent_floatcount) ? ...((notif.nent_stringcount + 1), float) : 0);
1602 float f3 = ((2 < notif.nent_floatcount) ? ...((notif.nent_stringcount + 2), float) : 0);
1603 float f4 = ((3 < notif.nent_floatcount) ? ...((notif.nent_stringcount + 3), float) : 0);
1604 Debug_Notification(sprintf(
1605 "Send_Notification(%d, %s, %s, %s, %s);\n",
1607 Get_Notif_TypeName(net_type),
1609 MakeConsoleSafe(sprintf("'%s^7', '%s^7', '%s^7', '%s^7'", s1, s2, s3, s4)),
1610 sprintf("%d, %d, %d, %d", f1, f2, f3, f4)
1614 entity net_notif = spawn();
1615 net_notif.owner = notif;
1616 net_notif.classname = "net_notification";
1617 net_notif.nent_broadcast = broadcast;
1618 net_notif.nent_client = client;
1619 net_notif.nent_net_type = net_type;
1620 net_notif.nent_net_name = net_name;
1621 net_notif.nent_stringcount = notif.nent_stringcount;
1622 net_notif.nent_floatcount = notif.nent_floatcount;
1625 for(i = 0; i < net_notif.nent_stringcount; ++i)
1626 { net_notif.nent_strings[i] = strzone(...(i, string)); }
1627 for(i = 0; i < net_notif.nent_floatcount; ++i)
1628 { net_notif.nent_floats[i] = ...((net_notif.nent_stringcount + i), float); }
1630 net_notif.think = Net_Notification_Remove;
1631 net_notif.nextthink =
1632 ((time > autocvar_notification_lifetime_mapload)
1634 (time + autocvar_notification_lifetime_runtime)
1636 autocvar_notification_lifetime_mapload
1639 Net_LinkEntity(net_notif, FALSE, 0, Net_Write_Notification);
1645 broadcast == NOTIF_ALL
1647 broadcast == NOTIF_ALL_EXCEPT
1651 net_type == MSG_ANNCE
1653 net_type == MSG_CENTER
1657 Local_Notification_WOVA(
1659 notif.nent_stringcount,
1660 notif.nent_floatcount,
1661 IFSTR(0), IFSTR(1), IFSTR(2), IFSTR(3),
1662 IFFL(0), IFFL(1), IFFL(2), IFFL(3));
1666 // WOVA = Without Variable Arguments
1667 void Send_Notification_WOVA(
1668 float broadcast, entity client,
1669 float net_type, float net_name,
1670 string s1, string s2, string s3, string s4,
1671 float f1, float f2, float f3, float f4)
1673 entity notif = Get_Notif_Ent(net_type, net_name);
1675 #ifdef NOTIFICATIONS_DEBUG
1676 Debug_Notification(sprintf(
1677 "Send_Notification_WOVA(%d, %s, %s, %s, %s);\n",
1679 Get_Notif_TypeName(net_type),
1681 MakeConsoleSafe(sprintf("'%s^7', '%s^7', '%s^7', '%s^7'", s1, s2, s3, s4)),
1682 sprintf("%d, %d, %d, %d", f1, f2, f3, f4)
1686 #define VARITEM(stringc,floatc,args) \
1687 if((notif.nent_stringcount == stringc) && (notif.nent_floatcount == floatc)) \
1688 { Send_Notification(broadcast, client, net_type, net_name, args); return; }
1689 EIGHT_VARS_TO_VARARGS_VARLIST
1691 Send_Notification(broadcast, client, net_type, net_name); // some notifications don't have any arguments at all
1693 #endif // ifdef SVQC