]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/gamec/clientcommands.c
fixed gameversion check with g_lms & sv_spectate 0 (it didn't work in both cases...
[divverent/nexuiz.git] / data / qcsrc / server / gamec / clientcommands.c
1 void ReadyCount();
2
3 void SV_ParseClientCommand(string s) {
4         local float index;
5
6         tokenize(s);
7
8         if(argv(0) == "clogin") {
9                 if(cvar("sv_clientcommands")) {
10                         if(self.adminstatus < -5) {
11                                 sprint(self, "Too many unsuccessful tries.\n");
12                         } else if(argv(1) == cvar_string("sv_clientcommands_password")) {
13                                 self.adminstatus = 1;
14                                 sprint(self, "You now have remote admin status.\n");
15                         } else {
16                                 sprint(self, "Wrong password.\n");
17                                 // use of -- produces compiler warning in the if() line???
18                                 self.adminstatus = self.adminstatus - 1;
19                                 if(self.adminstatus == 0)
20                                         sprint(self, "You lost remote admin status.\n");
21                         }
22                 } else {
23                         sprint(self, "Clientside commands NOT allowed.\n");
24                 }
25         } else if(argv(0) == "ccmd") {
26                 if(cvar("sv_clientcommands")) {
27                         if(self.adminstatus > 0) {
28                                 local string command;
29                                 command = argv(1);
30                                 index = 2;
31                                 while(argv(index) != "") {
32                                         command = strcat(command, " ", argv(index));
33                                         index++;
34                                 }
35                                 localcmd(command);
36                         } else
37                                 sprint(self, "You don't have remote admin status.\n");
38                 } else {
39                         sprint(self, "Clientside commands NOT allowed.\n");
40                 }
41         } else if(argv(0) == "vote") {
42                 if(argv(1) == "help") {
43                         local string vmasterdis;
44                         if(!cvar("sv_vote_master")) {
45                                 vmasterdis = " ^1(disabled)";
46                         }
47                         local string vcalldis;
48                         if(!cvar("sv_vote_call")) {
49                                 vcalldis = " ^1(disabled)";
50                         }
51                         sprint(self, "^7You can use voting with \"^2cmd vote help^7\" \"^2cmd vote status^7\" \"^2cmd vote call ^3COMMAND ARGUMENTS^7\" \"^2cmd vote stop^7\" \"^2cmd vote master^7\" \"^2cmd vote do ^3COMMAND ARGUMENTS^7\" \"^2cmd vote yes^7\" \"^2cmd vote no^7\".\n");
52                         sprint(self, "^7Or if your version is up to date you can use these aliases \"^2vhelp^7\" \"^2vstatus^7\" \"^2vcall ^3COMMAND ARGUMENTS^7\" \"^2vstop^7\" \"^2vmaster^7\" \"^2vdo ^3COMMAND ARGUMENTS^7\" \"^2vyes^7\" \"^2vno^7\".\n");
53                         sprint(self, "^7\"^2help^7\" shows this info.\n");
54                         sprint(self, "^7\"^2status^7\" shows if there is a vote called and who called it.\n");
55                         sprint(self, strcat("^7\"^2call^7\" is used to call a vote. See the list of allowed commands.", vcalldis, "^7\n"));
56                         sprint(self, "^7\"^2stop^7\" can be used by the vote caller or an admin to stop a vote and maybe correct it.\n");
57                         sprint(self, strcat("^7\"^2master^7\" is used to call a vote to become a master.", vmasterdis, "^7\n"));
58                         sprint(self, "^7\"^2do^7\" If you are a master you can execute a command without a vote. See the list of allowed commands.\n");
59                         sprint(self, "^7\"^2yes^7\" and \"^2no^7\" to make your vote.\n");
60                         sprint(self, "^7If more then 50% of the players vote yes the vote is accepted.\n");
61                         sprint(self, "^7If more then 50% of the players vote no the vote is rejected.\n");
62                         sprint(self, strcat("^7The vote will end after ", cvar_string("sv_vote_timeout"), "^7 seconds.\n"));
63                         sprint(self, "^7You can call a vote for or execute these commands:\n");
64                         sprint(self, strcat("^3", cvar_string("sv_vote_commands"), "^7 and maybe further ^3arguments^7\n"));
65                 } else if(argv(1) == "status") {
66                         if(votecalled) {
67                                 sprint(self, strcat("^7Vote for \"^1", votecalledvote, "^7\" called by \"^7", votecaller.netname, "^7\".\n"));
68                         } else {
69                                 sprint(self, "^1No vote called.\n");
70                         }
71                 } else if(argv(1) == "call") {
72                         if(cvar("sv_vote_call")) {
73                                 if(votecalled) {
74                                         sprint(self, "^1There is already a vote called.\n");
75                                 } else {
76                                         local string vote;
77                                         vote = VoteParse();
78                                         if(vote == "") {
79                                                 sprint(self, "^1Your vote is empty. See help for more info.\n");
80                                         } else if(time < self.vote_next) {
81                                                 sprint(self, strcat("^1You have to wait ^2", ftos(self.vote_next - time), "^1 seconds before you can again call a vote.\n"));
82                                         } else if(VoteAllowed(strcat(argv(2)))) { // strcat seems to be necessary
83                                                 votecalled = TRUE;
84                                                 votecalledmaster = FALSE;
85                                                 votecalledvote = strzone(vote);
86                                                 votecaller = self; // remember who called the vote
87                                                 votefinished = time + cvar("sv_vote_timeout");
88                                                 votecaller.vote_vote = 1; // of course you vote yes
89                                                 votecaller.vote_next = time + cvar("sv_vote_wait");
90                                                 bprint(strcat("^3Vote for \"^1", votecalledvote, "^3\" called by \"^7", votecaller.netname, "^3\".\n"));
91                                                 VoteCount(); // needed if you are the only one
92                                         } else {
93                                                 sprint(self, "^1This vote is not ok. See help for more info.\n");
94                                         }
95                                 }
96                         } else {
97                                 sprint(self, "^1Vote calling is NOT allowed.\n");
98                         }
99                 } else if(argv(1) == "stop") {
100                         if(!votecalled) {
101                                 sprint(self, "^1No vote called.\n");
102                         } else if(self == votecaller
103                                   || self.adminstatus > 0) { // the votecaller and admins can stop a vote
104                                 VoteStop(self);
105                         } else {
106                                 sprint(self, "^1You are not allowed to stop that Vote.\n");
107                         }
108                 } else if(argv(1) == "master") {
109                         if(cvar("sv_vote_master")) {
110                                 if(votecalled) {
111                                         sprint(self, "^1There is already a vote called.\n");
112                                 } else {
113                                         votecalled = TRUE;
114                                         votecalledmaster = TRUE;
115                                         votecalledvote = strzone("^3master");
116                                         votecaller = self; // remember who called the vote
117                                         votefinished = time + cvar("sv_vote_timeout");
118                                         votecaller.vote_vote = 1; // of course you vote yes
119                                         votecaller.vote_next = time + cvar("sv_vote_wait");
120                                         bprint(strcat("\"^3", votecaller.netname, "^3\" called a vote to become ^3master^3.\n"));
121                                         VoteCount(); // needed if you are the only one
122                                 }
123                         } else {
124                                 sprint(self, "^1Vote to become master is NOT allowed.\n");
125                         }
126                 } else if(argv(1) == "do") {
127                         if(self.vote_master) {
128                                 local string dovote;
129                                 dovote = VoteParse();
130                                 if(dovote == "") {
131                                         sprint(self, "^1Your command was empty. See help for more info.\n");
132                                 } else if(VoteAllowed(strcat(argv(2)))) { // strcat seems to be necessary
133                                         bprint("\"^7", strcat(self.netname, "^2 used his ^3master^2 status to do \"^2", dovote, "^2\".\n"));
134                                         localcmd(dovote);
135                                 } else {
136                                         sprint(self, "^1This command is not ok. See help for more info.\n");
137                                 }
138                         } else {
139                                 sprint(self, "^1You are NOT a master.\n");
140                         }
141                 } else if(argv(1) == "yes") {
142                         if(!votecalled) {
143                                 sprint(self, "^1No vote called.\n");
144                         } else if(self.vote_vote == 0
145                                   || cvar("sv_vote_change")) {
146                                 sprint(self, "^1You accepted the vote.\n");
147                                 self.vote_vote = 1;
148                                 if(!cvar("sv_vote_singlecount")) {
149                                         VoteCount();
150                                 }
151                         } else {
152                                 sprint(self, "^1You have already voted.\n");
153                         }
154                 } else if(argv(1) == "no") {
155                         if(!votecalled) {
156                                 sprint(self, "^1No vote called.\n");
157                         } else if(self.vote_vote == 0
158                                   || cvar("sv_vote_change")) {
159                                 sprint(self, "^1You rejected the vote.\n");
160                                 self.vote_vote = -1;
161                                 if(!cvar("sv_vote_singlecount")) {
162                                         VoteCount();
163                                 }
164                         } else {
165                                 sprint(self, "^1You have already voted.\n");
166                         }
167                 } else {
168                         // ignore this?
169                         sprint(self, "^1Unknown vote command.\n");
170                 }
171         } else if(argv(0) == "autoswitch") {
172                 // be backwards compatible with older clients (enabled)
173                 self.autoswitch = ("0" != argv(1));
174                 local string autoswitchmsg;
175                 if (self.autoswitch) {
176                         autoswitchmsg = "on";
177                 } else {
178                         autoswitchmsg = "off";
179                 }
180                 sprint(self, strcat("^1autoswitch turned ", autoswitchmsg, "\n"));
181         } else if(argv(0) == "clientversion") {
182                 if (argv(1) == "$gameversion") {
183                         //versionmsg = "^1client is too old to get versioninfo.\nUPDATE!!! (http://www.nexuiz.com)^8";
184                         // either that or someone wants to be funny
185                         self.version = 1;
186                 } else {
187                         self.version = stof(argv(1));
188                 }
189                 if(self.version != cvar("gameversion")) 
190                 {
191                         self.classname = "observer";
192                         self.frags = -2;
193                         PutClientInServer();
194                 }
195         } else if(argv(0) == "spectate") {
196                 if(cvar("g_lms"))
197                         return; // don't allow spectating in lms, unless player runs out of lives
198                 if(self.classname == "player" && cvar("sv_spectate") == 1) {
199                         self.classname = "observer";
200                         PutClientInServer();
201                 }
202         } else if(argv(0) == "join") {
203                 if (self.classname != "player")
204                 {
205                         self.classname = "player";
206                         self.frags = 0;
207                         bprint (strcat("^4", self.netname, "^4 is playing now\n"));
208                         PutClientInServer();
209                 }
210         } else if( argv(0) == "selectteam" ) {
211                 if( !cvar("teamplay") ) {
212                         sprint( self, "selecteam can only be used in teamgames\n");
213                 } else if( argv(1) == "none" ) {
214                         SV_ChangeTeam( 0 );
215                 } else if( argv(1) == "red" ) {
216                         SV_ChangeTeam( COLOR_TEAM1 - 1 );
217                 } else if( argv(1) == "blue" ) {
218                         SV_ChangeTeam( COLOR_TEAM2 - 1 );
219                 } else if( argv(1) == "pink" ) {
220                         SV_ChangeTeam( COLOR_TEAM3 - 1 );
221                 } else if( argv(1) == "yellow" ) {
222                         SV_ChangeTeam( COLOR_TEAM4 - 1 );
223                 } else if( argv(1) == "auto" ) {
224                         JoinBestTeam( self, 0 );
225                 } else {
226                         sprint( self, strcat( "selectteam none/red/blue/pink/yellow/auto - \"", argv(1), "\" not recognised\n" ) );
227                 }
228         } else if(argv(0) == "ready") {
229                 if(cvar("sv_ready_restart"))
230                 {
231                         self.ready = TRUE;
232                         bprint(self.netname, "^2 is ready\n");
233                         ReadyCount();
234                 }
235         } else {
236                 clientcommand(self,s);
237         }
238 }
239
240 void VoteThink() {
241         if(votefinished > 0 // a vote was called
242             && time > votefinished) // time is up
243         {
244                 VoteCount();
245         }
246 }
247
248 string VoteParse() {
249         local float index;
250         index = 3;
251         local string vote;
252         vote = argv(2);
253         while(argv(index) != "") {
254                 vote = strcat(vote, " ", argv(index));
255                 index++;
256         }
257
258         // necessary for some of the string operations
259         vote = strzone(vote);
260
261         // now we remove some things that could be misused
262         index = 0;
263         local float found;
264         found = FALSE;
265         local float votelength;
266         votelength = strlen(vote);
267         while(!found && index < votelength)
268         {
269                 local string badchar;
270                 badchar = substring(vote, index, 1);
271                 if(badchar == ";"
272                    || badchar == "\r"
273                    || badchar == "\n")
274                 {
275                         found = TRUE;
276                 } else {
277                         index++;
278                 }
279         }
280         return substring(vote, 0, index);
281 }
282
283 float VoteAllowed(string votecommand) {
284         tokenize(cvar_string("sv_vote_commands"));
285         local float index;
286         index = 0;
287         while(argv(index) != "") {
288                 local string allowed;
289                 allowed = argv(index);
290                 if(votecommand == allowed) {
291                         return TRUE;
292                 }
293                 index++;
294         }
295         return FALSE;
296 }
297
298 void VoteReset() {
299         local string searchclass;
300         searchclass = "player";
301
302         while (TRUE)
303         {
304                 local entity player;
305                 player = find(player, classname, searchclass);
306                 while(player)
307                 {
308                         player.vote_vote = 0;
309                         player = find(player, classname, searchclass);
310                 }
311
312                 if("player" == searchclass) {
313                         searchclass = "observer";
314                 } else if("observer" == searchclass) {
315                         searchclass = "spectator";
316                 } else {
317                         break;
318                 }
319         }
320
321         votecalled = FALSE;
322         votecalledmaster = FALSE;
323         votefinished = 0;
324 }
325
326 void VoteAccept() {
327         bprint(strcat("^2The vote for \"^1", votecalledvote, "^2\" from \"^7", votecaller.netname, "^2\" was accepted.\n"));
328         if(votecalledmaster)
329         {
330                 votecaller.vote_master = 1;
331         } else {
332                 localcmd(votecalledvote);
333         }
334         votecaller.vote_next = 0; // people like your votes, no wait for next vote
335         VoteReset();
336 }
337
338 void VoteReject() {
339         bprint(strcat("^2The vote for \"^1", votecalledvote, "^2\" from \"^7", votecaller.netname, "^2\" was rejected.\n"));
340         VoteReset();
341 }
342
343 void VoteTimeout() {
344         bprint(strcat("^5The vote for \"^1", votecalledvote, "^5\" from \"^7", votecaller.netname, "^5\" did timeout.\n"));
345         VoteReset();
346 }
347
348 void VoteStop(entity stopper) {
349         bprint(strcat("^5The vote for \"^1", votecalledvote, "^5\" from \"^7", votecaller.netname, "^5\" was stopped by \"^5", stopper.netname, "^5\".\n"));
350         if(stopper == votecaller) {
351                 // no wait for next vote so you can correct your vote
352                 votecaller.vote_next = 0;
353         }
354         VoteReset();
355 }
356
357 void VoteCount() {
358         local float playercount;
359         playercount = 0;
360         local float yescount;
361         yescount = 0;
362         local float nocount;
363         nocount = 0;
364         local string searchclass;
365         searchclass = "player";
366
367         while (TRUE)
368         {
369                 local entity player;
370                 player = find(player, classname, searchclass);
371
372                 while(player)
373                 {
374                         if(clienttype(player) != CLIENTTYPE_BOT) {
375                                 if(player.vote_vote < 0) {
376                                         nocount++;
377                                 } else if(player.vote_vote > 0) {
378                                         yescount++;
379                                 }
380                                 playercount++;
381                         }
382                         player = find(player, classname, searchclass);
383                 }
384
385                 if("player" == searchclass) {
386                         searchclass = "observer";
387                 } else if("observer" == searchclass) {
388                         searchclass = "specator";
389                 } else {
390                         break;
391                 }
392         }
393
394         if((playercount == 1) && votecalledmaster) {
395                 // if only one player is on the server becoming vote
396                 // master is not allowed.  This could be used for
397                 // trolling or worse. 'self' is the user who has
398                 // called the vote because this function is called
399                 // by SV_ParseClientCommand. Maybe all voting should
400                 // be disabled for a single player?
401                 sprint(self, "^1You are the only player on this server so you can not become vote master.\n");
402                 votecaller.vote_next = 0;
403                 VoteReset();
404         } else if((playercount / 2) < yescount) { // vote accepted
405                 VoteAccept();
406         } else if((playercount / 2) < nocount) { // vote rejected
407                 VoteReject();
408         } else if(time > votefinished) { // vote timedout
409                 VoteTimeout();
410         } // else still running
411 }
412
413
414 void ReadyCount()
415 {
416         local entity e;
417         local float r, p;
418
419         e = find(world, classname, "player");
420
421         while(e)
422         {
423                 if(clienttype(e) == CLIENTTYPE_REAL)
424                 {
425                         p += 1;
426                         if(e.ready) r += 1;
427                 }
428                 e = find(e, classname, "player");
429         }
430
431         if(p && r == p)
432         {
433                 bprint("^1Server is restarting...\n");
434                 localcmd("restart\n");
435         }
436 }