]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/gamecommand.qc
Beginning of "who" command which lists extra detailed information about each player
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / gamecommand.qc
index c3cb7847ee868636e28b6282a3db05bed6025f88..7d24f2e5ab1614fdaa482dbbb04927704b825346 100644 (file)
@@ -1,6 +1,6 @@
 // =====================================================
 //  Server side game commands code, reworked by Samual
-//  Last updated: November 8th, 2011
+//  Last updated: December 6th, 2011
 // =====================================================
 
 #define GC_REQUEST_COMMAND 1
@@ -12,6 +12,11 @@ string GotoMap(string m);
 
 void race_deleteTime(string map, float pos);
 
+#define SHUFFLETEAMS_MAX_PLAYERS 255
+#define SHUFFLETEAMS_MAX_TEAMS 4
+float shuffleteams_players[SHUFFLETEAMS_MAX_PLAYERS]; // maximum of 255 player slots
+float shuffleteams_teams[SHUFFLETEAMS_MAX_TEAMS]; // maximum of 4 teams
+
 
 // ============================
 //  Misc. Supporting Functions
@@ -108,7 +113,7 @@ void modelbug()
 //  Command Sub-Functions
 // =======================
 
-void GameCommand_adminmsg(float request, float argc)
+void GameCommand_adminmsg(float request, float argc) // todo: re-write this, plus support multiple clients at once like moveplayer
 {
        switch(request)
        {
@@ -198,7 +203,7 @@ void GameCommand_allspec(float request, float argc)
                        string reason = argv(1);
                        float i;
                        
-                       FOR_EACH_PLAYER(client)
+                       FOR_EACH_REALPLAYER(client)
                        {
                                self = client;
                                PutObserverInServer();
@@ -214,7 +219,7 @@ void GameCommand_allspec(float request, float argc)
                {
                        print("\nUsage:^3 sv_cmd allspec [reason]\n");
                        print("  Where 'reason' is an optional argument for explanation of allspec command.\n");
-                       print("See also: ^2moveplayer^7\n");
+                       print("See also: ^2moveplayer, shuffleteams^7\n");
                        return;
                }
        }
@@ -617,7 +622,7 @@ void GameCommand_defer_clear_all(float request)
                                GameCommand_defer_clear(GC_REQUEST_COMMAND, argc);      
                                ++i;
                        }
-                       if(i) { bprint(strcat("Successfully stuffed defer clear to all clients (", ftos(i), ")\n")); } // should a message be added if no players were found? 
+                       if(i) { print(strcat("Successfully stuffed defer clear to all clients (", ftos(i), ")\n")); } // should a message be added if no players were found? 
                        return;
                }
                
@@ -942,7 +947,9 @@ void GameCommand_lockteams(float request)
                                bprint("^1The teams are now locked.\n");
                        }
                        else
-                               bprint("That command can only be used in a team-based gamemode.\n");
+                       {
+                               bprint("lockteams command can only be used in a team-based gamemode.\n");
+                       }
                        return;
                }
                        
@@ -1116,7 +1123,7 @@ void GameCommand_moveplayer(float request, float argc)
                                }
                                
                                if(successful)
-                                       print("Successfully moved players ", successful, " to destination ", destination, ".\n");
+                                       bprint("Successfully moved players ", successful, " to destination ", destination, ".\n");
                                else
                                        print("No players given (", original_targets, ") are able to move.\n");
                                        
@@ -1137,7 +1144,7 @@ void GameCommand_moveplayer(float request, float argc)
                        print("    2 (10) no centerprint, admin message; 3 (11) no centerprint, no admin message\n");
                        print("Examples: moveplayer 1,3,5 red 3\n");
                        print("          moveplayer 2 spec \n");
-                       print("See also: ^2allspec^7\n");
+                       print("See also: ^2allspec, shuffleteams^7\n");
                        return;
                }
        }
@@ -1194,7 +1201,7 @@ void GameCommand_onslaught_updatelinks(float request) // UNTESTED // should this
        }
 }
 
-void GameCommand_playerdemo(float request, float argc) // UNTESTED // TODO: change the if statements for sub arguments to switches
+void GameCommand_playerdemo(float request, float argc) // UNTESTED
 {      
        switch(request)
        {
@@ -1204,57 +1211,64 @@ void GameCommand_playerdemo(float request, float argc) // UNTESTED // TODO: chan
                        float i, n, entno;
                        string s;
                        
-                       if(argv(1) == "read")
+                       switch(argv(1))
                        {
-                               // TODO: Create a general command for looking this up, save a lot of space everywhere in this file
-                               entno = stof(argv(2));
-                               if((entno < 1) | (entno > maxclients)) {
-                                       print("Player ", argv(2), " doesn't exist\n");
+                               case "read":
+                               {
+                                       // TODO: Create a general command for looking this up, save a lot of space everywhere in this file
+                                       entno = GetFilteredNumber(argv(2));
+                                       if((entno < 1) | (entno > maxclients)) {
+                                               print("Player ", argv(2), " doesn't exist\n");
+                                               return;
+                                       }
+                                       client = edict_num(entno);
+                                       if(clienttype(client) != CLIENTTYPE_BOT) {
+                                               print("Player ", client.netname, " is not a bot\n");
+                                               return;
+                                       }
+                                       self = client;
+                                       playerdemo_open_read(argv(3));
                                        return;
                                }
-                               client = edict_num(entno);
-                               if(clienttype(client) != CLIENTTYPE_BOT) {
-                                       print("Player ", client.netname, " is not a bot\n");
+                               
+                               case "write":
+                               {
+                                       entno = GetFilteredNumber(argv(2));
+                                       if((entno < 1) | (entno > maxclients)) {
+                                               print("Player ", argv(2), " doesn't exist\n");
+                                               return;
+                                       }
+                                       client = edict_num(entno);
+                                       self = client;
+                                       playerdemo_open_write(argv(3));
                                        return;
                                }
-                               self = client;
-                               playerdemo_open_read(argv(3));
-                               return;
-                       }
-                       else if(argv(1) == "write")
-                       {
-                               entno = stof(argv(2));
-                               if((entno < 1) | (entno > maxclients)) {
-                                       print("Player ", argv(2), " doesn't exist\n");
+                               
+                               case "auto_read_and_write":
+                               {
+                                       s = argv(2);
+                                       n = GetFilteredNumber(argv(3));
+                                       cvar_set("bot_number", ftos(n));
+                                       localcmd("wait; wait; wait\n");
+                                       for(i = 0; i < n; ++i)
+                                               localcmd("sv_cmd playerdemo read ", ftos(i+2), " ", s, ftos(i+1), "\n");
+                                       localcmd("sv_cmd playerdemo write 1 ", ftos(n+1), "\n");
                                        return;
                                }
-                               client = edict_num(entno);
-                               self = client;
-                               playerdemo_open_write(argv(3));
-                               return;
-                       }
-                       else if(argv(1) == "auto_read_and_write")
-                       {
-                               s = argv(2);
-                               n = stof(argv(3));
-                               cvar_set("bot_number", ftos(n));
-                               localcmd("wait; wait; wait\n");
-                               for(i = 0; i < n; ++i)
-                                       localcmd("sv_cmd playerdemo read ", ftos(i+2), " ", s, ftos(i+1), "\n");
-                               localcmd("sv_cmd playerdemo write 1 ", ftos(n+1), "\n");
-                               return;
-                       }
-                       else if(argv(1) == "auto_read")
-                       {
-                               s = argv(2);
-                               n = stof(argv(3));
-                               cvar_set("bot_number", ftos(n));
-                               localcmd("wait; wait; wait\n");
-                               for(i = 0; i < n; ++i)
-                                       localcmd("sv_cmd playerdemo read ", ftos(i+2), " ", s, ftos(i+1), "\n");
+                               
+                               case "auto_read":
+                               {
+                                       s = argv(2);
+                                       n = GetFilteredNumber(argv(3));
+                                       cvar_set("bot_number", ftos(n));
+                                       localcmd("wait; wait; wait\n");
+                                       for(i = 0; i < n; ++i)
+                                               localcmd("sv_cmd playerdemo read ", ftos(i+2), " ", s, ftos(i+1), "\n");
+                                       return;
+                               }
+                               
                                return;
                        }
-                       return;
                }
                        
                default:
@@ -1384,16 +1398,17 @@ void GameCommand_setbots(float request, float argc)
        {
                case GC_REQUEST_COMMAND:
                {
-                       if(argc >= 3 && argv(1) == "setbots")
+                       if(argc >= 2)
                        {
                                cvar_settemp("minplayers", "0");
-                               cvar_settemp("bot_number", argv(2));
+                               cvar_settemp("bot_number", argv(1));
                                bot_fixcount();
                                return;
                        }
                }
                        
                default:
+                       print("Incorrect parameters for ^2setbots^7\n");
                case GC_REQUEST_USAGE:
                {
                        print("\nUsage:^3 sv_cmd setbots botnumber\n");
@@ -1404,6 +1419,109 @@ void GameCommand_setbots(float request, float argc)
        }
 }
 
+void GameCommand_shuffleteams(float request)
+{
+       switch(request)
+       {
+               case GC_REQUEST_COMMAND:
+               {
+                       if(teamplay)
+                       {
+                               entity tmp_player;
+                               float i, x, z, t_teams, t_players, team_color;
+
+                               // count the total amount of players and total amount of teams
+                               FOR_EACH_PLAYER(tmp_player)
+                               {
+                                       CheckAllowedTeams(tmp_player);
+                                       
+                                       if(c1 >= 0) t_teams = max(1, t_teams);
+                                       if(c2 >= 0) t_teams = max(2, t_teams);
+                                       if(c3 >= 0) t_teams = max(3, t_teams);
+                                       if(c4 >= 0) t_teams = max(4, t_teams);
+                                       
+                                       ++t_players;
+                               }
+                               
+                               // build a list of the players in a random order
+                               FOR_EACH_PLAYER(tmp_player)
+                               {
+                                       for(;;)
+                                       {
+                                               i = bound(1, floor(random() * maxclients) + 1, maxclients);
+                                               
+                                               if(shuffleteams_players[i])
+                                               {
+                                                       continue; // a player is already assigned to this slot
+                                               }
+                                               else
+                                               {
+                                                       shuffleteams_players[i] = num_for_edict(tmp_player);
+                                                       break;
+                                               }
+                                       }
+                               }
+
+                               // finally, from the list made earlier, re-join the players in different order. 
+                               for(i = 1; i <= t_teams; ++i)
+                               {
+                                       // find out how many players to assign to this team
+                                       x = (t_players / t_teams);
+                                       x = ((i == 1) ? ceil(x) : floor(x));
+                                       
+                                       team_color = NumberToTeamNumber(i);
+                                       
+                                       // sort through the random list of players made earlier 
+                                       for(z = 1; z <= maxclients; ++z)
+                                       {                                                       
+                                               if not(shuffleteams_teams[i] >= x)
+                                               {
+                                                       if not(shuffleteams_players[z])
+                                                               continue; // not a player, move on to next random slot
+                                                               
+                                                       self = edict_num(shuffleteams_players[z]); // TODO: add sanity checks for this entity to make sure it's okay and not some error.
+                                                               
+                                                       if(self.team != team_color) 
+                                                               MoveToTeam(self, team_color, 6, 0);
+
+                                                       shuffleteams_players[z] = 0;
+                                                       shuffleteams_teams[i] = shuffleteams_teams[i] + 1;
+                                               }
+                                               else
+                                               {
+                                                       break; // move on to next team
+                                               }
+                                       }
+                               }
+                               
+                               bprint("Successfully shuffled the players around randomly.\n");
+                               
+                               // clear the buffers now
+                               for (i=0; i<SHUFFLETEAMS_MAX_PLAYERS; ++i)
+                                       shuffleteams_players[i] = 0;
+                               
+                               for (i=0; i<SHUFFLETEAMS_MAX_TEAMS; ++i)
+                                       shuffleteams_teams[i] = 0;
+                       }
+                       else
+                       {
+                               print("Can't shuffle teams when currently not playing a team game.\n");
+                       }
+                       
+                       return;
+               }
+                       
+               default:
+               case GC_REQUEST_USAGE:
+               {
+                       print("\nUsage:^3 sv_cmd shuffleteams\n");
+                       print("  No arguments required.\n");
+                       print("See also: ^2moveplayer, allspec^7\n");
+                       return;
+               }
+       }
+}
+
 void GameCommand_stuffto(float request, float argc)
 {
        // This... is a fairly dangerous and powerful command... - It allows any arguments to be sent to a client via rcon.
@@ -1420,7 +1538,7 @@ void GameCommand_stuffto(float request, float argc)
                        
                        if(argc == 3)
                        {
-                               entno = stof(argv(1));
+                               entno = GetFilteredNumber(argv(1));
                                client = world;
                                if(entno <= maxclients)
                                        client = edict_num(entno);
@@ -1514,6 +1632,7 @@ void GameCommand_trace(float request, float argc)
                        switch(argv(1))
                        {
                                case "debug":
+                               {
                                        print("TEST CASE. If this returns the runaway loop counter error, possibly everything is oaky.\n");
                                        for(;;)
                                        {
@@ -1602,8 +1721,10 @@ void GameCommand_trace(float request, float argc)
                                                }
                                        }
                                        return;
+                               }
                                        
                                case "debug2":
+                               {
                                        e = nextent(world);
                                        tracebox(e.origin + '0 0 32', e.mins, e.maxs, e.origin + '0 0 -1024', MOVE_NORMAL, e);
                                        vv = trace_endpos;
@@ -1631,8 +1752,10 @@ void GameCommand_trace(float request, float argc)
                                        }
                                        print("highest possible dist: ", ftos(f), "\n");
                                        return;
+                               }
                                
                                case "walk":
+                               {
                                        if(argc == 3)
                                        {
                                                e = nextent(world);
@@ -1642,8 +1765,10 @@ void GameCommand_trace(float request, float argc)
                                                        print("cannot walk\n");
                                                return;
                                        }
-                                               
+                               }
+                               
                                case "showline":
+                               {
                                        if(argc == 3)
                                        {
                                                vv = stov(argv(1));
@@ -1653,11 +1778,14 @@ void GameCommand_trace(float request, float argc)
                                                trailparticles(world, particleeffectnum("TR_CRYLINKPLASMA"), trace_endpos, dv);
                                                return;
                                        }
-                               // no default case, just go straight to "invalid arguments"
+                               }
+                               
+                               // no default case, just go straight to invalid
                        }
                }
                        
                default:
+                       print("Incorrect parameters for ^2trace^7\n");
                case GC_REQUEST_USAGE:
                {
                        print("\nUsage:^3 sv_cmd trace command [arguments]\n");
@@ -1679,7 +1807,9 @@ void GameCommand_unlockteams(float request)
                                bprint("^1The teams are now unlocked.\n");
                        }
                        else
-                               bprint("That command can only be used in a team-based gamemode.\n");
+                       {
+                               bprint("unlockteams command can only be used in a team-based gamemode.\n");
+                       }
                        return;
                }
                        
@@ -1742,8 +1872,8 @@ void GameCommand_(float request)
                default:
                case GC_REQUEST_USAGE:
                {
-                       sprint(self, "\nUsage:^3 cmd \n");
-                       sprint(self, "  No arguments required.\n");
+                       print("\nUsage:^3 sv_cmd \n");
+                       print("  No arguments required.\n");
                        return;
                }
        }
@@ -1751,13 +1881,12 @@ void GameCommand_(float request)
 */
 
 
-// ===========================
-//  Macro system for commands
-// ===========================
+// ==================================
+//  Macro system for server commands
+// ==================================
 
-// For now, the list has to be split up due to the suckage called fteqcc which limits macros to only 1024 characters
 // Do not hard code aliases for these, instead create them in commands.cfg... also: keep in alphabetical order, please ;)
-#define SERVER_COMMANDS_1(request,arguments) \
+#define SERVER_COMMANDS(request,arguments,command) \
        SERVER_COMMAND("adminmsg", GameCommand_adminmsg(request, arguments), "Send an admin message to a client directly") \
        SERVER_COMMAND("allready", GameCommand_allready(request), "Restart the server and reset the players") \
        SERVER_COMMAND("allspec", GameCommand_allspec(request, arguments), "Force all players to spectate") \
@@ -1766,9 +1895,6 @@ void GameCommand_(float request)
        SERVER_COMMAND("bot_cmd", GameCommand_bot_cmd(request, arguments), "Control and send commands to bots") \
        SERVER_COMMAND("cointoss", GameCommand_cointoss(request, arguments), "Flip a virtual coin and give random result") \
        SERVER_COMMAND("cvar_changes", GameCommand_cvar_changes(request), "Prints a list of all changed server cvars") \
-       /* nothing */
-       
-#define SERVER_COMMANDS_2(request,arguments) \
        SERVER_COMMAND("cvar_purechanges", GameCommand_cvar_purechanges(request), "Prints a list of all changed gameplay cvars") \
        SERVER_COMMAND("database", GameCommand_database(request, arguments), "Extra controls of the serverprogs database") \
        SERVER_COMMAND("defer_clear", GameCommand_defer_clear(request, arguments), "Clear all queued defer commands for a specific client") \
@@ -1776,9 +1902,6 @@ void GameCommand_(float request)
        SERVER_COMMAND("delrec", GameCommand_delrec(request, arguments), "Delete race time record for a map") \
        SERVER_COMMAND("effectindexdump", GameCommand_effectindexdump(request), "Dump list of effects from code and effectinfo.txt") \
        SERVER_COMMAND("extendmatchtime", GameCommand_extendmatchtime(request), "Increase the timelimit value incrementally") \
-               /* nothing */
-
-#define SERVER_COMMANDS_3(request,arguments) \
        SERVER_COMMAND("find", GameCommand_find(request, arguments), "Search through entities for matching classname") \
        SERVER_COMMAND("gametype", GameCommand_gametype(request, arguments), "Simple command to change the active gametype") \
        SERVER_COMMAND("gettaginfo", GameCommand_gettaginfo(request, arguments), "Get specific information about a weapon model") \
@@ -1787,9 +1910,6 @@ void GameCommand_(float request)
        SERVER_COMMAND("lockteams", GameCommand_lockteams(request), "Disable the ability for players to switch or enter teams") \
        SERVER_COMMAND("make_mapinfo", GameCommand_make_mapinfo(request), "Automatically rebuild mapinfo files") \
        SERVER_COMMAND("modelbug", GameCommand_modelbug(request), "TODO foobar") \
-       /* nothing */
-
-#define SERVER_COMMANDS_4(request,arguments) \
        SERVER_COMMAND("moveplayer", GameCommand_moveplayer(request, arguments), "Change the team/status of a player") \
        SERVER_COMMAND("nospectators", GameCommand_nospectators(request), "Automatically remove spectators from a match") \
        SERVER_COMMAND("onslaught_updatelinks", GameCommand_onslaught_updatelinks(request), "Refresh link status for onslaught") \
@@ -1798,17 +1918,16 @@ void GameCommand_(float request)
        SERVER_COMMAND("radarmap", GameCommand_radarmap(request, arguments), "Generate a radar image of the map") \
        SERVER_COMMAND("rankings", GameCommand_rankings(request), "Print information about rankings") \
        SERVER_COMMAND("records", GameCommand_records(request), "List top 10 records for the current map") \
-       /* nothing */
-
-#define SERVER_COMMANDS_5(request,arguments) \
        SERVER_COMMAND("reducematchtime", GameCommand_reducematchtime(request), "Decrease the timelimit value incrementally") \
        SERVER_COMMAND("setbots", GameCommand_setbots(request, arguments), "Adjust how many bots are in the match") \
+       SERVER_COMMAND("shuffleteams", GameCommand_shuffleteams(request), "Randomly move players to different teams") \
        SERVER_COMMAND("stuffto", GameCommand_stuffto(request, arguments), "Send a command to be executed on a client") \
        SERVER_COMMAND("teamstatus", GameCommand_teamstatus(request), "Show information about player and team scores") \
        SERVER_COMMAND("time", GameCommand_time(request), "Print different formats/readouts of time") \
        SERVER_COMMAND("trace", GameCommand_trace(request, arguments), "Various debugging tools with tracing") \
        SERVER_COMMAND("unlockteams", GameCommand_unlockteams(request), "Enable the ability for players to switch or enter teams") \
        SERVER_COMMAND("warp", GameCommand_warp(request, arguments), "Choose different level in campaign") \
+       SERVER_COMMAND("vote", VoteCommand(request, world, arguments, command), "Server side control of voting") /* handled in server/vote.qc */ \
        /* nothing */
 
 void GameCommand_macro_help()
@@ -1816,26 +1935,18 @@ void GameCommand_macro_help()
        #define SERVER_COMMAND(name,function,description) \
                { print("  ^2", name, "^7: ", description, "\n"); }
                
-       SERVER_COMMANDS_1(0, 0)
-       SERVER_COMMANDS_2(0, 0)
-       SERVER_COMMANDS_3(0, 0)
-       SERVER_COMMANDS_4(0, 0)
-       SERVER_COMMANDS_5(0, 0)
+       SERVER_COMMANDS(0, 0, "")
        #undef SERVER_COMMAND
        
        return;
 }
 
-float GameCommand_macro_command(float argc)
+float GameCommand_macro_command(float argc, string command)
 {
        #define SERVER_COMMAND(name,function,description) \
                { if(name == strtolower(argv(0))) { function; return TRUE; } }
                
-       SERVER_COMMANDS_1(GC_REQUEST_COMMAND, argc)
-       SERVER_COMMANDS_2(GC_REQUEST_COMMAND, argc)
-       SERVER_COMMANDS_3(GC_REQUEST_COMMAND, argc)
-       SERVER_COMMANDS_4(GC_REQUEST_COMMAND, argc)
-       SERVER_COMMANDS_5(GC_REQUEST_COMMAND, argc)
+       SERVER_COMMANDS(GC_REQUEST_COMMAND, argc, command)
        #undef SERVER_COMMAND
        
        return FALSE;
@@ -1846,11 +1957,7 @@ float GameCommand_macro_usage(float argc)
        #define SERVER_COMMAND(name,function,description) \
                { if(name == strtolower(argv(1))) { function; return TRUE; } }
                
-       SERVER_COMMANDS_1(GC_REQUEST_USAGE, argc)
-       SERVER_COMMANDS_2(GC_REQUEST_USAGE, argc)
-       SERVER_COMMANDS_3(GC_REQUEST_USAGE, argc)
-       SERVER_COMMANDS_4(GC_REQUEST_USAGE, argc)
-       SERVER_COMMANDS_5(GC_REQUEST_USAGE, argc)
+       SERVER_COMMANDS(GC_REQUEST_USAGE, argc, "")
        #undef SERVER_COMMAND
        
        return FALSE;
@@ -1872,7 +1979,7 @@ void GameCommand(string command)
                {
                        print("\nUsage:^3 sv_cmd COMMAND...^7, where possible commands are:\n");
                        GameCommand_macro_help();
-                       GameCommand_Vote("help", world);
+                       
                        GameCommand_Ban("help");
                        GameCommand_Generic("help");
                        print("For help about specific commands, type sv_cmd help COMMAND\n");
@@ -1883,10 +1990,6 @@ void GameCommand(string command)
                        return;
                }
        } 
-       else if(GameCommand_Vote(command, world)) 
-       {
-               return; // handled by server/vote.qc 
-       }
        else if(GameCommand_Ban(command)) 
        {
                return; // handled by server/ipban.qc
@@ -1895,11 +1998,13 @@ void GameCommand(string command)
        {
                return; // handled by common/gamecommand.qc
        }
-       else if(GameCommand_macro_command(argc)) // continue as usual and scan for normal commands
+       else if(GameCommand_macro_command(argc, command)) // continue as usual and scan for normal commands
        {
                return; // handled by one of the above GameCommand_* functions
        }
        
        // nothing above caught the command, must be invalid
-       print("Invalid command. For a list of supported commands, try sv_cmd help.\n");
+       print("Unknown server command", ((command != "") ? strcat(" \"", command, "\"") : ""), ". For a list of supported commands, try sv_cmd help.\n");
+       
+       return;
 }
\ No newline at end of file