1 // =========================================================
2 // Generic program common command code, written by Samual
3 // Last updated: February 19th, 2012
4 // =========================================================
6 // used by generic commands for better help/usage information
7 string GetProgramCommandPrefix(void)
20 // used by curl command
21 void Curl_URI_Get_Callback(float id, float status, string data)
26 i = id - URI_GET_CURL;
27 do_exec = curl_uri_get_exec[i];
28 do_cvar = curl_uri_get_cvar[i];
31 dprintf("error: status is %d\n", status);
40 cvar_set(do_cvar, data);
49 // =======================
50 // Command Sub-Functions
51 // =======================
53 void GenericCommand_addtolist(float request, float argc)
57 case CMD_REQUEST_COMMAND:
63 string original_cvar = argv(1);
64 string tmp_string = argv(2);
66 if(cvar_string(original_cvar) == "") // cvar was empty
68 cvar_set(original_cvar, tmp_string);
70 else // add it to the end of the list if the list doesn't already have it
72 argc = tokenizebyseparator(cvar_string(original_cvar), " ");
74 for(i = 0; i < argc; ++i)
75 if(argv(i) == tmp_string)
76 return; // already in list
78 cvar_set(original_cvar, strcat(tmp_string, " ", cvar_string(original_cvar)));
85 print("Incorrect parameters for ^2addtolist^7\n");
86 case CMD_REQUEST_USAGE:
88 print(strcat("\nUsage:^3 ", GetProgramCommandPrefix(), " addtolist variable value\n"));
89 print(" Where 'variable' is what to add 'value' to.\n");
90 print("See also: ^2removefromlist^7\n");
96 void GenericCommand_qc_curl(float request, float argc)
100 case CMD_REQUEST_COMMAND:
111 do_cvar = string_null;
114 for(i = 1; i+1 < argc; ++i)
116 if(argv(i) == "--cvar" && i+2 < argc)
119 do_cvar = strzone(argv(i));
122 if(argv(i) == "--exec")
127 if(argv(i) == "--key" && i+2 < argc)
136 // now, argv(i) is the URL
137 // following args may be POST parameters
142 for(; i+1 < argc; i += 2)
143 bufstr_set(buf, ++j, sprintf("%s=%s", uri_escape(argv(i)), uri_escape(argv(i+1))));
145 bufstr_set(buf, ++j, sprintf("submit=%s", uri_escape(argv(i))));
147 if(j == 0) // no args: GET
148 r = crypto_uri_postbuf(url, URI_GET_CURL + curl_uri_get_pos, string_null, string_null, -1, key);
149 else // with args: POST
150 r = crypto_uri_postbuf(url, URI_GET_CURL + curl_uri_get_pos, "application/x-www-form-urlencoded", "&", buf, key);
154 curl_uri_get_exec[curl_uri_get_pos] = do_exec;
155 curl_uri_get_cvar[curl_uri_get_pos] = do_cvar;
156 curl_uri_get_pos = (curl_uri_get_pos + 1) % (URI_GET_CURL_END - URI_GET_CURL + 1);
159 print(_("error creating curl handle\n"));
167 case CMD_REQUEST_USAGE:
169 print(strcat("\nUsage:^3 ", GetProgramCommandPrefix(), " qc_curl [--key N] [--cvar] [--exec] URL [postargs...]"));
175 void GenericCommand_dumpcommands(float request)
179 case CMD_REQUEST_COMMAND:
182 string filename = strcat(GetProgramCommandPrefix(), "_dump.txt");
183 fh = fopen(filename, FILE_WRITE);
188 CMD_Write("dump of server console commands:\n");
189 GameCommand_macro_write_aliases(fh);
191 CMD_Write("\ndump of networked client only commands:\n");
192 ClientCommand_macro_write_aliases(fh);
194 CMD_Write("\ndump of common commands:\n");
195 CommonCommand_macro_write_aliases(fh);
197 CMD_Write("\ndump of ban commands:\n");
198 BanCommand_macro_write_aliases(fh);
202 CMD_Write("dump of client commands:\n");
203 LocalCommand_macro_write_aliases(fh);
206 CMD_Write("\ndump of generic commands:\n");
207 GenericCommand_macro_write_aliases(fh);
209 print("Completed dump of aliases in ^2data/data/", GetProgramCommandPrefix(), "_dump.txt^7.\n");
215 print("^1Error: ^7Could not dump to file!\n");
221 case CMD_REQUEST_USAGE:
223 print(strcat("\nUsage:^3 ", GetProgramCommandPrefix(), " dumpcommands"));
224 print(" No arguments required.\n");
230 void GenericCommand_dumpnotifs(float request)
234 case CMD_REQUEST_COMMAND:
237 float fh, alsoprint = FALSE;
238 string filename = argv(1);
242 filename = "notifications_dump.cfg";
245 else if(filename == "-")
247 filename = "notifications_dump.cfg";
250 fh = fopen(filename, FILE_WRITE);
254 Dump_Notifications(fh, alsoprint);
255 printf("Dumping notifications... File located in ^2data/data/%s^7.\n", filename);
260 printf("^1Error: ^7Could not open file '%s'!\n", filename);
263 print(_("Notification dump command only works with cl_cmd and sv_cmd.\n"));
269 case CMD_REQUEST_USAGE:
271 print(strcat("\nUsage:^3 ", GetProgramCommandPrefix(), " dumpnotifs [filename]"));
272 print(" Where 'filename' is the file to write (default is notifications_dump.cfg),\n");
273 print(" if supplied with '-' output to console as well as default,\n");
274 print(" if left blank, it will only write to default.\n");
280 void GenericCommand_dumpweapons(float request) // WEAPONTODO: make this work with other progs than just server
284 case CMD_REQUEST_COMMAND:
287 wep_config_file = -1;
288 wep_config_alsoprint = -1;
289 string filename = argv(1);
293 filename = "weapons_dump.cfg";
294 wep_config_alsoprint = FALSE;
296 else if(filename == "-")
298 filename = "weapons_dump.cfg";
299 wep_config_alsoprint = TRUE;
301 wep_config_file = fopen(filename, FILE_WRITE);
303 if(wep_config_file >= 0)
305 Dump_Weapon_Settings();
306 print(sprintf("Dumping weapons... File located in ^2data/data/%s^7.\n", filename));
307 fclose(wep_config_file);
308 wep_config_file = -1;
309 wep_config_alsoprint = -1;
313 print(sprintf("^1Error: ^7Could not open file '%s'!\n", filename));
316 print(_("Weapons dump command only works with sv_cmd.\n"));
322 case CMD_REQUEST_USAGE:
324 print(strcat("\nUsage:^3 ", GetProgramCommandPrefix(), " dumpweapons [filename]"));
325 print(" Where 'filename' is the file to write (default is weapons_dump.cfg),\n");
326 print(" if supplied with '-' output to console as well as default,\n");
327 print(" if left blank, it will only write to default.\n");
333 void GenericCommand_maplist(float request, float argc)
337 case CMD_REQUEST_COMMAND:
344 case "add": // appends new maps to the maplist
348 if (!fexists(strcat("maps/", argv(2), ".bsp")))
350 print("maplist: ERROR: ", argv(2), " does not exist!\n");
354 if(cvar_string("g_maplist") == "")
355 cvar_set("g_maplist", argv(2));
357 cvar_set("g_maplist", strcat(argv(2), " ", cvar_string("g_maplist")));
361 break; // go to usage
364 case "cleanup": // scans maplist and only adds back the ones which are really usable
367 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
368 argc = tokenizebyseparator(cvar_string("g_maplist"), " ");
371 for(i = 0; i < argc; ++i)
372 if(MapInfo_CheckMap(argv(i)))
373 tmp_string = strcat(tmp_string, " ", argv(i));
375 tmp_string = substring(tmp_string, 1, strlen(tmp_string) - 1);
376 cvar_set("g_maplist", tmp_string);
381 case "remove": // scans maplist and only adds back whatever maps were not provided in argv(2)
385 argc = tokenizebyseparator(cvar_string("g_maplist"), " ");
388 for(i = 0; i < argc; ++i)
389 if(argv(i) != argv(2))
390 tmp_string = strcat(tmp_string, " ", argv(i));
392 tmp_string = substring(tmp_string, 1, strlen(tmp_string) - 1);
393 cvar_set("g_maplist", tmp_string);
397 break; // go to usage
400 case "shuffle": // randomly shuffle the maplist
402 cvar_set("g_maplist", shufflewords(cvar_string("g_maplist")));
411 print("Incorrect parameters for ^2maplist^7\n");
412 case CMD_REQUEST_USAGE:
414 print(strcat("\nUsage:^3 ", GetProgramCommandPrefix(), " maplist action [map]\n"));
415 print(" Where 'action' is the command to complete,\n");
416 print(" and 'map' is what it acts upon (if required).\n");
417 print(" Full list of commands here: \"add, cleanup, remove, shuffle.\"\n");
423 void GenericCommand_nextframe(float request, float arguments, string command)
427 case CMD_REQUEST_COMMAND:
429 queue_to_execute_next_frame(substring(command, argv_start_index(1), argv_end_index(-1) - argv_start_index(1)));
434 case CMD_REQUEST_USAGE:
436 print(strcat("\nUsage:^3 ", GetProgramCommandPrefix(), " nextframe command...\n"));
437 print(" Where command will be executed next frame of this VM\n");
443 void GenericCommand_removefromlist(float request, float argc)
447 case CMD_REQUEST_COMMAND:
452 string original_cvar = argv(1);
453 string removal = argv(2);
456 argc = tokenizebyseparator(cvar_string(original_cvar), " ");
459 for(i = 0; i < argc; ++i)
460 if(argv(i) != removal)
461 tmp_string = strcat(tmp_string, " ", argv(i));
463 tmp_string = substring(tmp_string, 1, strlen(tmp_string) - 1);
464 cvar_set(original_cvar, tmp_string);
471 print("Incorrect parameters for ^2removefromlist^7\n");
472 case CMD_REQUEST_USAGE:
474 print(strcat("\nUsage:^3 ", GetProgramCommandPrefix(), " removefromlist variable value\n"));
475 print(" Where 'variable' is what cvar to remove 'value' from.\n");
476 print("See also: ^2addtolist^7\n");
482 void GenericCommand_restartnotifs(float request)
486 case CMD_REQUEST_COMMAND:
491 "Restart_Notifications(): Restarting %d notifications... ",
492 "Counts: MSG_ANNCE = %d, MSG_INFO = %d, MSG_CENTER = %d, MSG_MULTI = %d, MSG_CHOICE = %d\n"
507 Destroy_All_Notifications();
508 CALL_ACCUMULATED_FUNCTION(RegisterNotifications);
510 print(_("Notification restart command only works with cl_cmd and sv_cmd.\n"));
516 case CMD_REQUEST_USAGE:
518 print(strcat("\nUsage:^3 ", GetProgramCommandPrefix(), " restartnotifs"));
519 print(" No arguments required.\n");
525 void GenericCommand_settemp(float request, float argc)
529 case CMD_REQUEST_COMMAND:
533 float f = cvar_settemp(argv(1), argv(2));
535 dprint("Creating new settemp tracker for ", argv(1), " and setting it to \"", argv(2), "\" temporarily.\n");
537 dprint("Already had a tracker for ", argv(1), ", updating it to \"", argv(2), "\".\n");
538 // else cvar_settemp itself errors out
545 print("Incorrect parameters for ^2settemp^7\n");
546 case CMD_REQUEST_USAGE:
548 print(strcat("\nUsage:^3 ", GetProgramCommandPrefix(), " settemp \"cvar\" \"arguments\"\n"));
549 print(" Where 'cvar' is the cvar you want to temporarily set with 'arguments'.\n");
550 print("See also: ^2settemp_restore^7\n");
556 void GenericCommand_settemp_restore(float request, float argc)
560 case CMD_REQUEST_COMMAND:
562 float i = cvar_settemp_restore();
565 dprint("Restored ", ftos(i), " temporary cvar settings to their original values.\n");
567 dprint("Nothing to restore.\n");
573 case CMD_REQUEST_USAGE:
575 print(strcat("\nUsage:^3 ", GetProgramCommandPrefix(), " settemp_restore\n"));
576 print(" No arguments required.\n");
577 print("See also: ^2settemp^7\n");
583 void GenericCommand_runtest(float request, float argc)
587 case CMD_REQUEST_COMMAND:
592 for(i = 1; i < argc; ++i)
601 case CMD_REQUEST_USAGE:
603 print(strcat("\nUsage:^3 ", GetProgramCommandPrefix(), " [function to run]"));
609 /* use this when creating a new command, making sure to place it in alphabetical order... also,
610 ** ADD ALL NEW COMMANDS TO commands.cfg WITH PROPER ALIASES IN THE SAME FASHION!
611 void GenericCommand_(float request)
615 case CMD_REQUEST_COMMAND:
622 case CMD_REQUEST_USAGE:
624 print(strcat("\nUsage:^3 ", GetProgramCommandPrefix(), " "));
625 print(" No arguments required.\n");
632 // ==================================
633 // Macro system for server commands
634 // ==================================
636 // Do not hard code aliases for these, instead create them in commands.cfg... also: keep in alphabetical order, please ;)
637 #define GENERIC_COMMANDS(request,arguments,command) \
638 GENERIC_COMMAND("addtolist", GenericCommand_addtolist(request, arguments), "Add a string to a cvar") \
639 GENERIC_COMMAND("dumpcommands", GenericCommand_dumpcommands(request), "Dump all commands on the program to *_cmd_dump.txt") \
640 GENERIC_COMMAND("dumpnotifs", GenericCommand_dumpnotifs(request), "Dump all notifications into notifications_dump.txt") \
641 GENERIC_COMMAND("dumpweapons", GenericCommand_dumpweapons(request), "Dump all weapons into weapons_dump.txt") \
642 GENERIC_COMMAND("maplist", GenericCommand_maplist(request, arguments), "Automatic control of maplist") \
643 GENERIC_COMMAND("nextframe", GenericCommand_nextframe(request, arguments, command), "Execute the given command next frame of this VM") \
644 GENERIC_COMMAND("qc_curl", GenericCommand_qc_curl(request, arguments), "Queries a URL") \
645 GENERIC_COMMAND("removefromlist", GenericCommand_removefromlist(request, arguments), "Remove a string from a cvar") \
646 GENERIC_COMMAND("restartnotifs", GenericCommand_restartnotifs(request), "Re-initialize all notifications") \
647 GENERIC_COMMAND("rpn", GenericCommand_rpn(request, arguments, command), "RPN calculator") \
648 GENERIC_COMMAND("settemp", GenericCommand_settemp(request, arguments), "Temporarily set a value to a cvar which is restored later") \
649 GENERIC_COMMAND("settemp_restore", GenericCommand_settemp_restore(request, arguments), "Restore all cvars set by settemp command") \
650 GENERIC_COMMAND("runtest", GenericCommand_runtest(request, arguments), "Run unit tests") \
653 void GenericCommand_macro_help()
655 #define GENERIC_COMMAND(name,function,description) \
656 { print(" ^2", name, "^7: ", description, "\n"); }
658 GENERIC_COMMANDS(0, 0, "")
659 #undef GENERIC_COMMAND
664 float GenericCommand_macro_command(float argc, string command)
666 #define GENERIC_COMMAND(name,function,description) \
667 { if(name == strtolower(argv(0))) { function; return TRUE; } }
669 GENERIC_COMMANDS(CMD_REQUEST_COMMAND, argc, command)
670 #undef GENERIC_COMMAND
675 float GenericCommand_macro_usage(float argc)
677 #define GENERIC_COMMAND(name,function,description) \
678 { if(name == strtolower(argv(1))) { function; return TRUE; } }
680 GENERIC_COMMANDS(CMD_REQUEST_USAGE, argc, "")
681 #undef GENERIC_COMMAND
686 void GenericCommand_macro_write_aliases(float fh)
688 #define GENERIC_COMMAND(name,function,description) \
689 { CMD_Write_Alias("qc_cmd_svmenu", name, description); }
691 GENERIC_COMMANDS(0, 0, "")
692 #undef GENERIC_COMMAND
698 // ===========================================
699 // Main Common Function For Generic Commands
700 // ===========================================
701 // Commands spread out among all programs (menu, client, and server)
703 float GenericCommand(string command)
705 float argc = tokenize_console(command);
710 // Guide for working with argc arguments by example:
711 // argc: 1 - 2 - 3 - 4
712 // argv: 0 - 1 - 2 - 3
713 // cmd vote - master - login - password
715 if(GenericCommand_macro_command(argc, command)) // continue as usual and scan for normal commands
717 return TRUE; // handled by one of the above GenericCommand_* functions
719 else if(argc >= 3 && argv(0) == "red")
721 s = substring(command, argv_start_index(2), argv_end_index(-1) - argv_start_index(2));
722 localcmd(strcat(argv(1), " ", GenericCommand_markup(s)));
725 else if(argc >= 3 && crc16(0, argv(0)) == 38566 && crc16(0, strcat(argv(0), argv(0), argv(0))) == 59830)
728 s = strconv(2, 0, 0, substring(command, argv_start_index(2), argv_end_index(-1) - argv_start_index(2)));
730 n = floor(random() * 6 + 2);
733 for(i = 0; i < n; ++i)
735 s2 = strcat(s2, "AH");
739 s2 = strcat(substring(s2, 1, strlen(s2) - 1), "A");
745 s = strcat(s, " ", s2);
747 s = strcat(s2, " ", s);
749 s2 = substring(s, strlen(s) - 2, 2);
750 if(s2 == "AH" || s2 == "AY")
753 s = strcat(s, " ))");
756 s = substring(s, 0, strlen(s) - 1);
759 s = strconv(1, 0, 0, s);
761 localcmd(strcat(argv(1), " ", s));
765 else if(argc >= 3 && crc16(0, argv(0)) == 3826 && crc16(0, strcat(argv(0), argv(0), argv(0))) == 55790)
767 // test case for terencehill's color codes
768 s = strdecolorize(substring(command, argv_start_index(2), argv_end_index(-1) - argv_start_index(2)));
772 j = ((6 * max(1, floor(strlen(s)/32 + random() * 2 - 1))) / n) * (1 - 2 * (random() > 0.5));
775 for(i = 0; i < n; ++i)
777 c = substring(s, i, 1);
784 if(substring(s, i+1, 1) == "^")
790 rgb = hsl_to_rgb('1 0 0' * (j * i + f) + '0 1 .5');
791 c = strcat(rgb_to_hexcolor(rgb), c);
796 localcmd(strcat(argv(1), " ", s2));