]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/gamecommand.qc
blinking magic: if there is more than one flag, show one of these in a clever way
[divverent/nexuiz.git] / data / qcsrc / server / gamecommand.qc
1 string GotoMap(string m);
2
3 void make_mapinfo_Think()
4 {
5         if(MapInfo_FilterGametype(MAPINFO_TYPE_ALL, 0, 1))
6         {
7                 print("Done rebuiling mapinfos.\n");
8                 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), 0);
9                 remove(self);
10         }
11         else
12         {
13                 self.think = make_mapinfo_Think;
14                 self.nextthink = time;
15         }
16 }
17
18 void GameCommand(string command)
19 {
20         float argc;
21         argc = tokenize(command);
22
23         if(argv(0) == "help" || argc == 0)
24         {
25                 print("Usage: sv_cmd COMMAND..., where possible commands are:\n");
26                 print("  adminmsg clientnumber \"message\"\n");
27                 print("  teamstatus\n");
28                 print("  printstats\n");
29                 print("  make_mapinfo\n");
30                 print("  gametype dm|ctf|...\n");
31                 print("  savedb filename\n");
32                 print("  dumpdb filename\n");
33                 print("  loaddb filename\n");
34                 GameCommand_Ban("help");
35                 GameCommand_Generic("help");
36                 return;
37         }
38
39         if(GameCommand_Ban(command))
40                 return;
41
42         if(GameCommand_Generic(command))
43                 return;
44
45         if(argv(0) == "teamstatus")
46         {
47                 PrintScoreboard(world);
48                 return;
49         }
50
51         if(argv(0) == "printstats")
52         {
53                 DumpStats(FALSE);
54                 return;
55         }
56
57         if(argv(0) == "make_mapinfo")
58         {
59                 entity e;
60                 e = spawn();
61                 e.classname = "make_mapinfo";
62                 e.think = make_mapinfo_Think;
63                 e.nextthink = time;
64                 MapInfo_Enumerate();
65                 return;
66         }
67
68         if(argv(0) == "warp") if(argc == 2) if(cvar("g_campaign"))
69         {
70                 CampaignLevelWarp(stof(argv(1)));
71                 return;
72         }
73
74         if(argv(0) == "gotomap") if(argc == 2)
75         {
76                 print(GotoMap(argv(1)), "\n");
77                 return;
78         }
79
80 #ifdef MAPINFO
81         if(argv(0) == "gametype") if(argc == 2)
82         {
83                 float t, tsave;
84                 string s;
85                 s = argv(1);
86                 t = MapInfo_Type_FromString(s);
87                 tsave = MapInfo_CurrentGametype();
88                 if(t)
89                 {
90                         MapInfo_SwitchGameType(t);
91                         MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), 0);
92                         if(MapInfo_count > 0)
93                         {
94                                 bprint("Game type successfully switched to ", s, "\n");
95                         }
96                         else
97                         {
98                                 bprint("Cannot use this game type: no map for it found\n");
99                                 MapInfo_SwitchGameType(tsave);
100                                 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), 0);
101                         }
102                 }
103                 else
104                         bprint("Game type switch to ", s, " failed: this type does not exist!\n");
105                 return;
106         }
107 #endif
108
109         if(argv(0) == "adminmsg") if(argc == 3)
110         {
111                 entity client;
112                 float entno;
113                 entno = stof(argv(1));
114                 client = world;
115                 if(entno <= maxclients)
116                         client = edict_num(entno);
117                 if(client.flags & FL_CLIENT)
118                 {
119                         centerprint_atprio(client, CENTERPRIO_ADMIN, strcat("^3SERVER ADMIN:\n\n^7", argv(2)));
120                         sprint(client, strcat("\{1}\{13}^3SERVER ADMIN^7: ", argv(2), "\n"));
121                         print("Message sent to ", client.netname, "\n");
122                 }
123                 else
124                         print("Client not found\n");
125                 return;
126         }
127
128         if(argv(0) == "savedb") if(argc == 2)
129         {
130                 db_save(ServerProgsDB, argv(1));
131                 print("DB saved.\n");
132                 return;
133         }
134
135         if(argv(0) == "dumpdb") if(argc == 2)
136         {
137                 db_dump(ServerProgsDB, argv(1));
138                 print("DB dumped.\n");
139                 return;
140         }
141
142         if(argv(0) == "loaddb") if(argc == 2)
143         {
144                 db_close(ServerProgsDB);
145                 ServerProgsDB = db_load(argv(1));
146                 print("DB loaded.\n");
147                 return;
148         }
149
150         print("Invalid command. For a list of supported commands, try sv_cmd help.\n");
151 }
152