]> icculus.org git repositories - divverent/darkplaces.git/blob - host_cmd.c
added R_ScrollTexCoord2f (copies while texture coordinates with an offset)
[divverent/darkplaces.git] / host_cmd.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20
21 #include "quakedef.h"
22
23 int current_skill;
24 char sv_spawnmap[MAX_QPATH];
25 char sv_loadgame[MAX_OSPATH];
26
27 mfunction_t *ED_FindFunction (char *name);
28
29 /*
30 ==================
31 Host_Quit_f
32 ==================
33 */
34
35 extern qboolean host_shuttingdown;
36 void Host_Quit_f (void)
37 {
38         host_shuttingdown = true;
39         CL_Disconnect ();
40         Host_ShutdownServer(false);
41
42         Sys_Quit ();
43 }
44
45
46 /*
47 ==================
48 Host_Status_f
49 ==================
50 */
51 void Host_Status_f (void)
52 {
53         client_t *client;
54         int seconds, minutes, hours = 0, j;
55         void (*print) (const char *fmt, ...);
56
57         if (cmd_source == src_command)
58         {
59                 if (!sv.active)
60                 {
61                         Cmd_ForwardToServer ();
62                         return;
63                 }
64                 print = Con_Printf;
65         }
66         else
67                 print = SV_ClientPrintf;
68
69         print ("host:    %s\n", Cvar_VariableString ("hostname"));
70         print ("version: %s build %s\n", gamename, buildstring);
71         if (tcpipAvailable)
72                 print ("tcp/ip:  %s\n", my_tcpip_address);
73         if (ipxAvailable)
74                 print ("ipx:     %s\n", my_ipx_address);
75         print ("map:     %s\n", sv.name);
76         print ("players: %i active (%i max)\n\n", net_activeconnections, svs.maxclients);
77         for (j=0, client = svs.clients ; j<svs.maxclients ; j++, client++)
78         {
79                 if (!client->active)
80                         continue;
81                 seconds = (int)(net_time - client->netconnection->connecttime);
82                 minutes = seconds / 60;
83                 if (minutes)
84                 {
85                         seconds -= (minutes * 60);
86                         hours = minutes / 60;
87                         if (hours)
88                                 minutes -= (hours * 60);
89                 }
90                 else
91                         hours = 0;
92                 print ("#%-2u %-16.16s  %3i  %2i:%02i:%02i\n", j+1, client->name, (int)client->edict->v->frags, hours, minutes, seconds);
93                 print ("   %s\n", client->netconnection->address);
94         }
95 }
96
97
98 /*
99 ==================
100 Host_God_f
101
102 Sets client to godmode
103 ==================
104 */
105 void Host_God_f (void)
106 {
107         if (cmd_source == src_command)
108         {
109                 Cmd_ForwardToServer ();
110                 return;
111         }
112
113         if (pr_global_struct->deathmatch)
114                 return;
115
116         sv_player->v->flags = (int)sv_player->v->flags ^ FL_GODMODE;
117         if (!((int)sv_player->v->flags & FL_GODMODE) )
118                 SV_ClientPrintf ("godmode OFF\n");
119         else
120                 SV_ClientPrintf ("godmode ON\n");
121 }
122
123 void Host_Notarget_f (void)
124 {
125         if (cmd_source == src_command)
126         {
127                 Cmd_ForwardToServer ();
128                 return;
129         }
130
131         if (pr_global_struct->deathmatch)
132                 return;
133
134         sv_player->v->flags = (int)sv_player->v->flags ^ FL_NOTARGET;
135         if (!((int)sv_player->v->flags & FL_NOTARGET) )
136                 SV_ClientPrintf ("notarget OFF\n");
137         else
138                 SV_ClientPrintf ("notarget ON\n");
139 }
140
141 qboolean noclip_anglehack;
142
143 void Host_Noclip_f (void)
144 {
145         if (cmd_source == src_command)
146         {
147                 Cmd_ForwardToServer ();
148                 return;
149         }
150
151         if (pr_global_struct->deathmatch)
152                 return;
153
154         if (sv_player->v->movetype != MOVETYPE_NOCLIP)
155         {
156                 noclip_anglehack = true;
157                 sv_player->v->movetype = MOVETYPE_NOCLIP;
158                 SV_ClientPrintf ("noclip ON\n");
159         }
160         else
161         {
162                 noclip_anglehack = false;
163                 sv_player->v->movetype = MOVETYPE_WALK;
164                 SV_ClientPrintf ("noclip OFF\n");
165         }
166 }
167
168 /*
169 ==================
170 Host_Fly_f
171
172 Sets client to flymode
173 ==================
174 */
175 void Host_Fly_f (void)
176 {
177         if (cmd_source == src_command)
178         {
179                 Cmd_ForwardToServer ();
180                 return;
181         }
182
183         if (pr_global_struct->deathmatch)
184                 return;
185
186         if (sv_player->v->movetype != MOVETYPE_FLY)
187         {
188                 sv_player->v->movetype = MOVETYPE_FLY;
189                 SV_ClientPrintf ("flymode ON\n");
190         }
191         else
192         {
193                 sv_player->v->movetype = MOVETYPE_WALK;
194                 SV_ClientPrintf ("flymode OFF\n");
195         }
196 }
197
198
199 /*
200 ==================
201 Host_Ping_f
202
203 ==================
204 */
205 void Host_Ping_f (void)
206 {
207         int             i, j;
208         float   total;
209         client_t        *client;
210
211         if (cmd_source == src_command)
212         {
213                 Cmd_ForwardToServer ();
214                 return;
215         }
216
217         SV_ClientPrintf ("Client ping times:\n");
218         for (i=0, client = svs.clients ; i<svs.maxclients ; i++, client++)
219         {
220                 if (!client->active)
221                         continue;
222                 total = 0;
223                 for (j=0 ; j<NUM_PING_TIMES ; j++)
224                         total+=client->ping_times[j];
225                 total /= NUM_PING_TIMES;
226                 SV_ClientPrintf ("%4i %s\n", (int)(total*1000), client->name);
227         }
228 }
229
230 /*
231 ===============================================================================
232
233 SERVER TRANSITIONS
234
235 ===============================================================================
236 */
237
238 /*
239 ======================
240 Host_Map_f
241
242 handle a
243 map <servername>
244 command from the console.  Active clients are kicked off.
245 ======================
246 */
247 void Host_Map_f (void)
248 {
249         if (cmd_source != src_command)
250                 return;
251
252         cls.demonum = -1;               // stop demo loop in case this fails
253
254         SCR_BeginLoadingPlaque ();
255
256         CL_Disconnect ();
257         Host_ShutdownServer(false);
258
259         key_dest = key_game;                    // remove console or menu
260
261         svs.serverflags = 0;                    // haven't completed an episode yet
262         strcpy (sv_spawnmap, Cmd_Argv(1));
263 }
264
265 /*
266 ==================
267 Host_Changelevel_f
268
269 Goes to a new map, taking all clients along
270 ==================
271 */
272 void Host_Changelevel_f (void)
273 {
274         if (Cmd_Argc() != 2)
275         {
276                 Con_Printf ("changelevel <levelname> : continue game on a new level\n");
277                 return;
278         }
279         if (!sv.active || cls.demoplayback)
280         {
281                 Con_Printf ("Only the server may changelevel\n");
282                 return;
283         }
284         SV_SaveSpawnparms ();
285         strcpy (sv_spawnmap, Cmd_Argv(1));
286 }
287
288 /*
289 ==================
290 Host_Restart_f
291
292 Restarts the current server for a dead player
293 ==================
294 */
295 void Host_Restart_f (void)
296 {
297         if (cls.demoplayback || !sv.active)
298                 return;
299
300         if (cmd_source != src_command)
301                 return;
302         strcpy (sv_spawnmap, sv.name);
303 }
304
305 /*
306 ==================
307 Host_Reconnect_f
308
309 This command causes the client to wait for the signon messages again.
310 This is sent just before a server changes levels
311 ==================
312 */
313 void Host_Reconnect_f (void)
314 {
315         SCR_BeginLoadingPlaque ();
316         cls.signon = 0;         // need new connection messages
317 }
318
319 /*
320 =====================
321 Host_Connect_f
322
323 User command to connect to server
324 =====================
325 */
326 void Host_Connect_f (void)
327 {
328         char name[MAX_QPATH];
329
330         cls.demonum = -1;               // stop demo loop in case this fails
331         if (cls.demoplayback)
332                 CL_Disconnect ();
333         strcpy (name, Cmd_Argv(1));
334         CL_EstablishConnection (name);
335         Host_Reconnect_f ();
336 }
337
338
339 /*
340 ===============================================================================
341
342 LOAD / SAVE GAME
343
344 ===============================================================================
345 */
346
347 #define SAVEGAME_VERSION        5
348
349 /*
350 ===============
351 Host_SavegameComment
352
353 Writes a SAVEGAME_COMMENT_LENGTH character comment describing the current
354 ===============
355 */
356 void Host_SavegameComment (char *text)
357 {
358         int             i;
359         char    kills[20];
360
361         for (i=0 ; i<SAVEGAME_COMMENT_LENGTH ; i++)
362                 text[i] = ' ';
363         memcpy (text, cl.levelname, strlen(cl.levelname));
364         sprintf (kills,"kills:%3i/%3i", cl.stats[STAT_MONSTERS], cl.stats[STAT_TOTALMONSTERS]);
365         memcpy (text+22, kills, strlen(kills));
366 // convert space to _ to make stdio happy
367         for (i=0 ; i<SAVEGAME_COMMENT_LENGTH ; i++)
368                 if (text[i] == ' ')
369                         text[i] = '_';
370         text[SAVEGAME_COMMENT_LENGTH] = '\0';
371 }
372
373
374 /*
375 ===============
376 Host_Savegame_f
377 ===============
378 */
379 void Host_Savegame_f (void)
380 {
381         char    name[256];
382         qfile_t *f;
383         int             i;
384         char    comment[SAVEGAME_COMMENT_LENGTH+1];
385
386         if (cmd_source != src_command)
387                 return;
388
389         if (!sv.active)
390         {
391                 Con_Printf ("Not playing a local game.\n");
392                 return;
393         }
394
395         if (cl.intermission)
396         {
397                 Con_Printf ("Can't save in intermission.\n");
398                 return;
399         }
400
401         if (svs.maxclients != 1)
402         {
403                 Con_Printf ("Can't save multiplayer games.\n");
404                 return;
405         }
406
407         if (Cmd_Argc() != 2)
408         {
409                 Con_Printf ("save <savename> : save a game\n");
410                 return;
411         }
412
413         if (strstr(Cmd_Argv(1), ".."))
414         {
415                 Con_Printf ("Relative pathnames are not allowed.\n");
416                 return;
417         }
418
419         for (i=0 ; i<svs.maxclients ; i++)
420         {
421                 if (svs.clients[i].active && (svs.clients[i].edict->v->health <= 0) )
422                 {
423                         Con_Printf ("Can't savegame with a dead player\n");
424                         return;
425                 }
426         }
427
428         strncpy (name, Cmd_Argv(1), sizeof (name) - 1);
429         name[sizeof (name) - 1] = '\0';
430         FS_DefaultExtension (name, ".sav");
431
432         Con_Printf ("Saving game to %s...\n", name);
433         f = FS_Open (name, "w", false);
434         if (!f)
435         {
436                 Con_Printf ("ERROR: couldn't open.\n");
437                 return;
438         }
439
440         FS_Printf (f, "%i\n", SAVEGAME_VERSION);
441         Host_SavegameComment (comment);
442         FS_Printf (f, "%s\n", comment);
443         for (i=0 ; i<NUM_SPAWN_PARMS ; i++)
444                 FS_Printf (f, "%f\n", svs.clients->spawn_parms[i]);
445         FS_Printf (f, "%d\n", current_skill);
446         FS_Printf (f, "%s\n", sv.name);
447         FS_Printf (f, "%f\n",sv.time);
448
449 // write the light styles
450
451         for (i=0 ; i<MAX_LIGHTSTYLES ; i++)
452         {
453                 if (sv.lightstyles[i])
454                         FS_Printf (f, "%s\n", sv.lightstyles[i]);
455                 else
456                         FS_Printf (f,"m\n");
457         }
458
459
460         ED_WriteGlobals (f);
461         for (i=0 ; i<sv.num_edicts ; i++)
462         {
463                 ED_Write (f, EDICT_NUM(i));
464                 FS_Flush (f);
465         }
466         FS_Close (f);
467         Con_Printf ("done.\n");
468 }
469
470
471 extern mempool_t *edictstring_mempool;
472
473 /*
474 ===============
475 Host_Loadgame_f
476 ===============
477 */
478 void Host_Loadgame_f (void)
479 {
480         if (cmd_source != src_command)
481                 return;
482
483         if (Cmd_Argc() != 2)
484         {
485                 Con_Printf ("load <savename> : load a game\n");
486                 return;
487         }
488
489         strcpy (sv_loadgame, Cmd_Argv(1));
490         FS_DefaultExtension (sv_loadgame, ".sav");
491
492         Con_Printf ("Loading game from %s...\n", sv_loadgame);
493 }
494
495 void Host_PerformLoadGame(char *name)
496 {
497         qfile_t *f;
498         char mapname[MAX_QPATH];
499         float time, tfloat;
500         char buf[32768];
501         const char *start;
502         char *str;
503         int i, r;
504         edict_t *ent;
505         int entnum;
506         int version;
507         float spawn_parms[NUM_SPAWN_PARMS];
508
509         cls.demonum = -1;               // stop demo loop in case this fails
510
511         f = FS_Open (name, "r", false);
512         if (!f)
513         {
514                 Con_Printf ("ERROR: couldn't open.\n");
515                 return;
516         }
517
518         str = FS_Getline (f);
519         sscanf (str, "%i\n", &version);
520         if (version != SAVEGAME_VERSION)
521         {
522                 FS_Close (f);
523                 Con_Printf ("Savegame is version %i, not %i\n", version, SAVEGAME_VERSION);
524                 return;
525         }
526
527         SCR_BeginLoadingPlaque ();
528
529         str = FS_Getline (f);
530         for (i = 0;i < NUM_SPAWN_PARMS;i++)
531         {
532                 str = FS_Getline (f);
533                 sscanf (str, "%f\n", &spawn_parms[i]);
534         }
535 // this silliness is so we can load 1.06 save files, which have float skill values
536         str = FS_Getline (f);
537         sscanf (str, "%f\n", &tfloat);
538         current_skill = (int)(tfloat + 0.1);
539         Cvar_SetValue ("skill", (float)current_skill);
540
541         strcpy (mapname, FS_Getline (f));
542
543         str = FS_Getline (f);
544         sscanf (str, "%f\n",&time);
545
546         CL_Disconnect_f ();
547
548         SV_SpawnServer (mapname);
549         if (!sv.active)
550         {
551                 Con_Printf ("Couldn't load map\n");
552                 return;
553         }
554         sv.paused = true;               // pause until all clients connect
555         sv.loadgame = true;
556
557 // load the light styles
558
559         for (i = 0;i < MAX_LIGHTSTYLES;i++)
560         {
561                 str = FS_Getline (f);
562                 sv.lightstyles[i] = Mem_Alloc(edictstring_mempool, strlen(str)+1);
563                 strcpy (sv.lightstyles[i], str);
564         }
565
566 // load the edicts out of the savegame file
567         // -1 is the globals
568         entnum = -1;
569         while (!FS_Eof (f))
570         {
571                 for (i = 0;i < (int)sizeof(buf) - 1;i++)
572                 {
573                         r = FS_Getc (f);
574                         if (r == EOF || !r)
575                                 break;
576                         buf[i] = r;
577                         if (r == '}')
578                         {
579                                 i++;
580                                 break;
581                         }
582                 }
583                 if (i == sizeof(buf)-1)
584                         Host_Error ("Loadgame buffer overflow");
585                 buf[i] = 0;
586                 start = buf;
587                 if (!COM_ParseToken(&start))
588                 {
589                         // end of file
590                         break;
591                 }
592                 if (strcmp(com_token,"{"))
593                         Host_Error ("First token isn't a brace");
594
595                 if (entnum == -1)
596                 {
597                         // parse the global vars
598                         ED_ParseGlobals (start);
599                 }
600                 else
601                 {
602                         // parse an edict
603                         ent = EDICT_NUM(entnum);
604                         memset (ent->v, 0, progs->entityfields * 4);
605                         ent->e->free = false;
606                         ED_ParseEdict (start, ent);
607
608                         // link it into the bsp tree
609                         if (!ent->e->free)
610                                 SV_LinkEdict (ent, false);
611                 }
612
613                 entnum++;
614         }
615
616         sv.num_edicts = entnum;
617         sv.time = time;
618
619         FS_Close (f);
620
621         for (i = 0;i < NUM_SPAWN_PARMS;i++)
622                 svs.clients->spawn_parms[i] = spawn_parms[i];
623
624         if (cls.state != ca_dedicated)
625         {
626                 CL_EstablishConnection ("local");
627                 Host_Reconnect_f ();
628         }
629 }
630
631 //============================================================================
632
633 /*
634 ======================
635 Host_Name_f
636 ======================
637 */
638 void Host_Name_f (void)
639 {
640         char newName[64];
641
642         if (Cmd_Argc () == 1)
643         {
644                 Con_Printf ("\"name\" is \"%s\"\n", cl_name.string);
645                 return;
646         }
647
648         if (Cmd_Argc () == 2)
649                 strncpy(newName, Cmd_Argv(1), 15);
650         else
651                 strncpy(newName, Cmd_Args(), 15);
652         newName[15] = 0;
653
654         if (cmd_source == src_command)
655         {
656                 if (strcmp(cl_name.string, newName) == 0)
657                         return;
658                 Cvar_Set ("_cl_name", newName);
659                 if (cls.state == ca_connected)
660                         Cmd_ForwardToServer ();
661                 return;
662         }
663
664         if (host_client->name[0] && strcmp(host_client->name, "unconnected") )
665                 if (strcmp(host_client->name, newName) != 0)
666                         Con_Printf ("%s renamed to %s\n", host_client->name, newName);
667         strcpy (host_client->name, newName);
668         sv_player->v->netname = PR_SetString(host_client->name);
669
670 // send notification to all clients
671
672         MSG_WriteByte (&sv.reliable_datagram, svc_updatename);
673         MSG_WriteByte (&sv.reliable_datagram, host_client - svs.clients);
674         MSG_WriteString (&sv.reliable_datagram, host_client->name);
675 }
676
677
678 void Host_Version_f (void)
679 {
680         Con_Printf ("Version: %s build %s\n", gamename, buildstring);
681 }
682
683 void Host_Say(qboolean teamonly)
684 {
685         client_t *client;
686         client_t *save;
687         int j;
688         const char *p1, *p2;
689         // LordHavoc: 256 char say messages
690         unsigned char text[256];
691         qboolean fromServer = false;
692
693         if (cmd_source == src_command)
694         {
695                 if (cls.state == ca_dedicated)
696                 {
697                         fromServer = true;
698                         teamonly = false;
699                 }
700                 else
701                 {
702                         Cmd_ForwardToServer ();
703                         return;
704                 }
705         }
706
707         if (Cmd_Argc () < 2)
708                 return;
709
710 // turn on color set 1
711         if (!fromServer)
712                 sprintf (text, "%c%s: ", 1, host_client->name);
713         else
714                 sprintf (text, "%c<%s> ", 1, hostname.string);
715
716         save = host_client;
717
718         p1 = Cmd_Args();
719         p2 = p1 + strlen(p1);
720         // remove trailing newlines
721         while (p2 > p1 && (p2[-1] == '\n' || p2[-1] == '\r'))
722                 p2--;
723         // remove quotes if present
724         if (*p1 == '"')
725         {
726                 p1++;
727                 if (p2[-1] == '"')
728                         p2--;
729                 else
730                         Con_Printf("Host_Say: missing end quote\n");
731         }
732         while (p2 > p1 && (p2[-1] == '\n' || p2[-1] == '\r'))
733                 p2--;
734         for (j = strlen(text);j < (int)(sizeof(text) - 2) && p1 < p2;)
735                 text[j++] = *p1++;
736         text[j++] = '\n';
737         text[j++] = 0;
738
739         for (j = 0, client = svs.clients; j < svs.maxclients; j++, client++)
740         {
741                 if (!client || !client->active || !client->spawned)
742                         continue;
743                 if (teamplay.integer && teamonly && client->edict->v->team != save->edict->v->team)
744                         continue;
745                 host_client = client;
746                 SV_ClientPrintf("%s", text);
747         }
748         host_client = save;
749
750         Sys_Printf("%s", &text[1]);
751 }
752
753
754 void Host_Say_f(void)
755 {
756         Host_Say(false);
757 }
758
759
760 void Host_Say_Team_f(void)
761 {
762         Host_Say(true);
763 }
764
765
766 void Host_Tell_f(void)
767 {
768         client_t *client;
769         client_t *save;
770         int j;
771         const char *p1, *p2;
772         char text[1024]; // LordHavoc: FIXME: temporary buffer overflow fix (was 64)
773         qboolean fromServer = false;
774
775         if (cmd_source == src_command)
776         {
777                 if (cls.state == ca_dedicated)
778                         fromServer = true;
779                 else
780                 {
781                         Cmd_ForwardToServer ();
782                         return;
783                 }
784         }
785
786         if (Cmd_Argc () < 3)
787                 return;
788
789         if (!fromServer)
790                 sprintf (text, "%s: ", host_client->name);
791         else
792                 sprintf (text, "<%s> ", hostname.string);
793
794         p1 = Cmd_Args();
795         p2 = p1 + strlen(p1);
796         // remove the target name
797         while (p1 < p2 && *p1 != ' ')
798                 p1++;
799         while (p1 < p2 && *p1 == ' ')
800                 p1++;
801         // remove trailing newlines
802         while (p2 > p1 && (p2[-1] == '\n' || p2[-1] == '\r'))
803                 p2--;
804         // remove quotes if present
805         if (*p1 == '"')
806         {
807                 p1++;
808                 if (p2[-1] == '"')
809                         p2--;
810                 else
811                         Con_Printf("Host_Say: missing end quote\n");
812         }
813         while (p2 > p1 && (p2[-1] == '\n' || p2[-1] == '\r'))
814                 p2--;
815         for (j = strlen(text);j < (int)(sizeof(text) - 2) && p1 < p2;)
816                 text[j++] = *p1++;
817         text[j++] = '\n';
818         text[j++] = 0;
819
820         save = host_client;
821         for (j = 0, client = svs.clients; j < svs.maxclients; j++, client++)
822         {
823                 if (!client->active || !client->spawned)
824                         continue;
825                 if (strcasecmp(client->name, Cmd_Argv(1)))
826                         continue;
827                 host_client = client;
828                 SV_ClientPrintf("%s", text);
829                 break;
830         }
831         host_client = save;
832 }
833
834
835 /*
836 ==================
837 Host_Color_f
838 ==================
839 */
840 void Host_Color_f(void)
841 {
842         int             top, bottom;
843         int             playercolor;
844         mfunction_t *f;
845         func_t  SV_ChangeTeam;
846
847         if (Cmd_Argc() == 1)
848         {
849                 Con_Printf ("\"color\" is \"%i %i\"\n", cl_color.integer >> 4, cl_color.integer & 15);
850                 Con_Printf ("color <0-15> [0-15]\n");
851                 return;
852         }
853
854         if (Cmd_Argc() == 2)
855                 top = bottom = atoi(Cmd_Argv(1));
856         else
857         {
858                 top = atoi(Cmd_Argv(1));
859                 bottom = atoi(Cmd_Argv(2));
860         }
861
862         top &= 15;
863         // LordHavoc: allow skin colormaps 14 and 15 (was 13)
864         if (top > 15)
865                 top = 15;
866         bottom &= 15;
867         // LordHavoc: allow skin colormaps 14 and 15 (was 13)
868         if (bottom > 15)
869                 bottom = 15;
870
871         playercolor = top*16 + bottom;
872
873         if (cmd_source == src_command)
874         {
875                 Cvar_SetValue ("_cl_color", playercolor);
876                 if (cls.state == ca_connected)
877                         Cmd_ForwardToServer ();
878                 return;
879         }
880
881         if ((f = ED_FindFunction ("SV_ChangeTeam")) && (SV_ChangeTeam = (func_t)(f - pr_functions)))
882         {
883                 Con_DPrintf("Calling SV_ChangeTeam\n");
884                 pr_global_struct->time = sv.time;
885                 pr_globals[OFS_PARM0] = playercolor;
886                 pr_global_struct->self = EDICT_TO_PROG(sv_player);
887                 PR_ExecuteProgram (SV_ChangeTeam, "");
888         }
889         else
890         {
891                 host_client->colors = playercolor;
892                 sv_player->v->team = bottom + 1;
893
894                 // send notification to all clients
895                 MSG_WriteByte (&sv.reliable_datagram, svc_updatecolors);
896                 MSG_WriteByte (&sv.reliable_datagram, host_client - svs.clients);
897                 MSG_WriteByte (&sv.reliable_datagram, host_client->colors);
898         }
899 }
900
901 /*
902 ==================
903 Host_Kill_f
904 ==================
905 */
906 void Host_Kill_f (void)
907 {
908         if (cmd_source == src_command)
909         {
910                 Cmd_ForwardToServer ();
911                 return;
912         }
913
914         if (sv_player->v->health <= 0)
915         {
916                 SV_ClientPrintf ("Can't suicide -- already dead!\n");
917                 return;
918         }
919
920         pr_global_struct->time = sv.time;
921         pr_global_struct->self = EDICT_TO_PROG(host_client->edict);
922         PR_ExecuteProgram (pr_global_struct->ClientKill, "QC function ClientKill is missing");
923 }
924
925
926 /*
927 ==================
928 Host_Pause_f
929 ==================
930 */
931 void Host_Pause_f (void)
932 {
933
934         if (cmd_source == src_command)
935         {
936                 Cmd_ForwardToServer ();
937                 return;
938         }
939         if (!pausable.integer)
940                 SV_ClientPrintf ("Pause not allowed.\n");
941         else
942         {
943                 sv.paused ^= 1;
944
945                 if (sv.paused)
946                 {
947                         SV_BroadcastPrintf ("%s paused the game\n", PR_GetString(sv_player->v->netname));
948                 }
949                 else
950                 {
951                         SV_BroadcastPrintf ("%s unpaused the game\n", PR_GetString(sv_player->v->netname));
952                 }
953
954         // send notification to all clients
955                 MSG_WriteByte (&sv.reliable_datagram, svc_setpause);
956                 MSG_WriteByte (&sv.reliable_datagram, sv.paused);
957         }
958 }
959
960 //===========================================================================
961
962
963 /*
964 ==================
965 Host_PreSpawn_f
966 ==================
967 */
968 void Host_PreSpawn_f (void)
969 {
970         if (cmd_source == src_command)
971         {
972                 Con_Printf ("prespawn is not valid from the console\n");
973                 return;
974         }
975
976         if (host_client->spawned)
977         {
978                 Con_Printf ("prespawn not valid -- already spawned\n");
979                 return;
980         }
981
982         SZ_Write (&host_client->message, sv.signon.data, sv.signon.cursize);
983         MSG_WriteByte (&host_client->message, svc_signonnum);
984         MSG_WriteByte (&host_client->message, 2);
985         host_client->sendsignon = true;
986 }
987
988 /*
989 ==================
990 Host_Spawn_f
991 ==================
992 */
993 void Host_Spawn_f (void)
994 {
995         int             i;
996         client_t        *client;
997         edict_t *ent;
998         func_t RestoreGame;
999         mfunction_t *f;
1000
1001         if (cmd_source == src_command)
1002         {
1003                 Con_Printf ("spawn is not valid from the console\n");
1004                 return;
1005         }
1006
1007         if (host_client->spawned)
1008         {
1009                 Con_Printf ("Spawn not valid -- already spawned\n");
1010                 return;
1011         }
1012
1013         // LordHavoc: moved this above the QC calls at FrikaC's request
1014 // send all current names, colors, and frag counts
1015         SZ_Clear (&host_client->message);
1016
1017         ent = sv_player;
1018
1019 // run the entrance script
1020         if (sv.loadgame)
1021         {
1022                 // loaded games are fully initialized already
1023                 // if this is the last client to be connected, unpause
1024                 sv.paused = false;
1025
1026                 if ((f = ED_FindFunction ("RestoreGame")))
1027                 if ((RestoreGame = (func_t)(f - pr_functions)))
1028                 {
1029                         Con_DPrintf("Calling RestoreGame\n");
1030                         pr_global_struct->time = sv.time;
1031                         pr_global_struct->self = EDICT_TO_PROG(sv_player);
1032                         PR_ExecuteProgram (RestoreGame, "");
1033                 }
1034         }
1035         else
1036         {
1037                 eval_t *val;
1038                 // set up the edict
1039                 ED_ClearEdict(ent);
1040                 ent->v->colormap = NUM_FOR_EDICT(ent);
1041                 ent->v->team = (host_client->colors & 15) + 1;
1042                 ent->v->netname = PR_SetString(host_client->name);
1043                 if ((val = GETEDICTFIELDVALUE(ent, eval_pmodel)))
1044                         val->_float = host_client->pmodel;
1045
1046                 // copy spawn parms out of the client_t
1047
1048                 for (i=0 ; i< NUM_SPAWN_PARMS ; i++)
1049                         (&pr_global_struct->parm1)[i] = host_client->spawn_parms[i];
1050
1051                 // call the spawn function
1052
1053                 pr_global_struct->time = sv.time;
1054                 pr_global_struct->self = EDICT_TO_PROG(sv_player);
1055                 PR_ExecuteProgram (pr_global_struct->ClientConnect, "QC function ClientConnect is missing");
1056
1057                 if ((Sys_DoubleTime() - host_client->netconnection->connecttime) <= sv.time)
1058                         Sys_Printf ("%s entered the game\n", host_client->name);
1059
1060                 PR_ExecuteProgram (pr_global_struct->PutClientInServer, "QC function PutClientInServer is missing");
1061         }
1062
1063
1064 // send time of update
1065         MSG_WriteByte (&host_client->message, svc_time);
1066         MSG_WriteFloat (&host_client->message, sv.time);
1067
1068         for (i=0, client = svs.clients ; i<svs.maxclients ; i++, client++)
1069         {
1070                 MSG_WriteByte (&host_client->message, svc_updatename);
1071                 MSG_WriteByte (&host_client->message, i);
1072                 MSG_WriteString (&host_client->message, client->name);
1073                 MSG_WriteByte (&host_client->message, svc_updatefrags);
1074                 MSG_WriteByte (&host_client->message, i);
1075                 MSG_WriteShort (&host_client->message, client->old_frags);
1076                 MSG_WriteByte (&host_client->message, svc_updatecolors);
1077                 MSG_WriteByte (&host_client->message, i);
1078                 MSG_WriteByte (&host_client->message, client->colors);
1079         }
1080
1081 // send all current light styles
1082         for (i=0 ; i<MAX_LIGHTSTYLES ; i++)
1083         {
1084                 MSG_WriteByte (&host_client->message, svc_lightstyle);
1085                 MSG_WriteByte (&host_client->message, (char)i);
1086                 MSG_WriteString (&host_client->message, sv.lightstyles[i]);
1087         }
1088
1089 //
1090 // send some stats
1091 //
1092         MSG_WriteByte (&host_client->message, svc_updatestat);
1093         MSG_WriteByte (&host_client->message, STAT_TOTALSECRETS);
1094         MSG_WriteLong (&host_client->message, pr_global_struct->total_secrets);
1095
1096         MSG_WriteByte (&host_client->message, svc_updatestat);
1097         MSG_WriteByte (&host_client->message, STAT_TOTALMONSTERS);
1098         MSG_WriteLong (&host_client->message, pr_global_struct->total_monsters);
1099
1100         MSG_WriteByte (&host_client->message, svc_updatestat);
1101         MSG_WriteByte (&host_client->message, STAT_SECRETS);
1102         MSG_WriteLong (&host_client->message, pr_global_struct->found_secrets);
1103
1104         MSG_WriteByte (&host_client->message, svc_updatestat);
1105         MSG_WriteByte (&host_client->message, STAT_MONSTERS);
1106         MSG_WriteLong (&host_client->message, pr_global_struct->killed_monsters);
1107
1108 // send a fixangle
1109 // Never send a roll angle, because savegames can catch the server
1110 // in a state where it is expecting the client to correct the angle
1111 // and it won't happen if the game was just loaded, so you wind up
1112 // with a permanent head tilt
1113         MSG_WriteByte (&host_client->message, svc_setangle);
1114         for (i=0 ; i < 2 ; i++)
1115                 MSG_WriteAngle (&host_client->message, ent->v->angles[i] );
1116         MSG_WriteAngle (&host_client->message, 0 );
1117
1118         SV_WriteClientdataToMessage (sv_player, &host_client->message);
1119
1120         MSG_WriteByte (&host_client->message, svc_signonnum);
1121         MSG_WriteByte (&host_client->message, 3);
1122         host_client->sendsignon = true;
1123 }
1124
1125 /*
1126 ==================
1127 Host_Begin_f
1128 ==================
1129 */
1130 void Host_Begin_f (void)
1131 {
1132         if (cmd_source == src_command)
1133         {
1134                 Con_Printf ("begin is not valid from the console\n");
1135                 return;
1136         }
1137
1138         host_client->spawned = true;
1139 }
1140
1141 //===========================================================================
1142
1143
1144 /*
1145 ==================
1146 Host_Kick_f
1147
1148 Kicks a user off of the server
1149 ==================
1150 */
1151 void Host_Kick_f (void)
1152 {
1153         char *who;
1154         const char *message = NULL;
1155         client_t *save;
1156         int i;
1157         qboolean byNumber = false;
1158
1159         if (cmd_source == src_command)
1160         {
1161                 if (!sv.active)
1162                 {
1163                         Cmd_ForwardToServer ();
1164                         return;
1165                 }
1166         }
1167         else if (pr_global_struct->deathmatch)
1168                 return;
1169
1170         save = host_client;
1171
1172         if (Cmd_Argc() > 2 && strcmp(Cmd_Argv(1), "#") == 0)
1173         {
1174                 i = atof(Cmd_Argv(2)) - 1;
1175                 if (i < 0 || i >= svs.maxclients)
1176                         return;
1177                 if (!svs.clients[i].active)
1178                         return;
1179                 host_client = &svs.clients[i];
1180                 byNumber = true;
1181         }
1182         else
1183         {
1184                 for (i = 0, host_client = svs.clients; i < svs.maxclients; i++, host_client++)
1185                 {
1186                         if (!host_client->active)
1187                                 continue;
1188                         if (strcasecmp(host_client->name, Cmd_Argv(1)) == 0)
1189                                 break;
1190                 }
1191         }
1192
1193         if (i < svs.maxclients)
1194         {
1195                 if (cmd_source == src_command)
1196                 {
1197                         if (cls.state == ca_dedicated)
1198                                 who = "Console";
1199                         else
1200                                 who = cl_name.string;
1201                 }
1202                 else
1203                         who = save->name;
1204
1205                 // can't kick yourself!
1206                 if (host_client == save)
1207                         return;
1208
1209                 if (Cmd_Argc() > 2)
1210                 {
1211                         message = Cmd_Args();
1212                         COM_ParseToken(&message);
1213                         if (byNumber)
1214                         {
1215                                 message++;                                                      // skip the #
1216                                 while (*message == ' ')                         // skip white space
1217                                         message++;
1218                                 message += strlen(Cmd_Argv(2)); // skip the number
1219                         }
1220                         while (*message && *message == ' ')
1221                                 message++;
1222                 }
1223                 if (message)
1224                         SV_ClientPrintf ("Kicked by %s: %s\n", who, message);
1225                 else
1226                         SV_ClientPrintf ("Kicked by %s\n", who);
1227                 SV_DropClient (false); // kicked
1228         }
1229
1230         host_client = save;
1231 }
1232
1233 /*
1234 ===============================================================================
1235
1236 DEBUGGING TOOLS
1237
1238 ===============================================================================
1239 */
1240
1241 /*
1242 ==================
1243 Host_Give_f
1244 ==================
1245 */
1246 void Host_Give_f (void)
1247 {
1248         const char *t;
1249         int v;
1250         eval_t *val;
1251
1252         if (cmd_source == src_command)
1253         {
1254                 Cmd_ForwardToServer ();
1255                 return;
1256         }
1257
1258         if (pr_global_struct->deathmatch)
1259                 return;
1260
1261         t = Cmd_Argv(1);
1262         v = atoi (Cmd_Argv(2));
1263
1264         switch (t[0])
1265         {
1266         case '0':
1267         case '1':
1268         case '2':
1269         case '3':
1270         case '4':
1271         case '5':
1272         case '6':
1273         case '7':
1274         case '8':
1275         case '9':
1276                 // MED 01/04/97 added hipnotic give stuff
1277                 if (gamemode == GAME_HIPNOTIC)
1278                 {
1279                         if (t[0] == '6')
1280                         {
1281                                 if (t[1] == 'a')
1282                                 sv_player->v->items = (int)sv_player->v->items | HIT_PROXIMITY_GUN;
1283                                 else
1284                                 sv_player->v->items = (int)sv_player->v->items | IT_GRENADE_LAUNCHER;
1285                         }
1286                         else if (t[0] == '9')
1287                                 sv_player->v->items = (int)sv_player->v->items | HIT_LASER_CANNON;
1288                         else if (t[0] == '0')
1289                                 sv_player->v->items = (int)sv_player->v->items | HIT_MJOLNIR;
1290                         else if (t[0] >= '2')
1291                                 sv_player->v->items = (int)sv_player->v->items | (IT_SHOTGUN << (t[0] - '2'));
1292                 }
1293                 else
1294                 {
1295                         if (t[0] >= '2')
1296                                 sv_player->v->items = (int)sv_player->v->items | (IT_SHOTGUN << (t[0] - '2'));
1297                 }
1298                 break;
1299
1300         case 's':
1301                 if (gamemode == GAME_ROGUE)
1302                 {
1303                         if ((val = GETEDICTFIELDVALUE(sv_player, eval_ammo_shells1)))
1304                                 val->_float = v;
1305                 }
1306
1307                 sv_player->v->ammo_shells = v;
1308                 break;
1309         case 'n':
1310                 if (gamemode == GAME_ROGUE)
1311                 {
1312                         if ((val = GETEDICTFIELDVALUE(sv_player, eval_ammo_nails1)))
1313                         {
1314                                 val->_float = v;
1315                                 if (sv_player->v->weapon <= IT_LIGHTNING)
1316                                         sv_player->v->ammo_nails = v;
1317                         }
1318                 }
1319                 else
1320                 {
1321                         sv_player->v->ammo_nails = v;
1322                 }
1323                 break;
1324         case 'l':
1325                 if (gamemode == GAME_ROGUE)
1326                 {
1327                         val = GETEDICTFIELDVALUE(sv_player, eval_ammo_lava_nails);
1328                         if (val)
1329                         {
1330                                 val->_float = v;
1331                                 if (sv_player->v->weapon > IT_LIGHTNING)
1332                                         sv_player->v->ammo_nails = v;
1333                         }
1334                 }
1335                 break;
1336         case 'r':
1337                 if (gamemode == GAME_ROGUE)
1338                 {
1339                         val = GETEDICTFIELDVALUE(sv_player, eval_ammo_rockets1);
1340                         if (val)
1341                         {
1342                                 val->_float = v;
1343                                 if (sv_player->v->weapon <= IT_LIGHTNING)
1344                                         sv_player->v->ammo_rockets = v;
1345                         }
1346                 }
1347                 else
1348                 {
1349                         sv_player->v->ammo_rockets = v;
1350                 }
1351                 break;
1352         case 'm':
1353                 if (gamemode == GAME_ROGUE)
1354                 {
1355                         val = GETEDICTFIELDVALUE(sv_player, eval_ammo_multi_rockets);
1356                         if (val)
1357                         {
1358                                 val->_float = v;
1359                                 if (sv_player->v->weapon > IT_LIGHTNING)
1360                                         sv_player->v->ammo_rockets = v;
1361                         }
1362                 }
1363                 break;
1364         case 'h':
1365                 sv_player->v->health = v;
1366                 break;
1367         case 'c':
1368                 if (gamemode == GAME_ROGUE)
1369                 {
1370                         val = GETEDICTFIELDVALUE(sv_player, eval_ammo_cells1);
1371                         if (val)
1372                         {
1373                                 val->_float = v;
1374                                 if (sv_player->v->weapon <= IT_LIGHTNING)
1375                                         sv_player->v->ammo_cells = v;
1376                         }
1377                 }
1378                 else
1379                 {
1380                         sv_player->v->ammo_cells = v;
1381                 }
1382                 break;
1383         case 'p':
1384                 if (gamemode == GAME_ROGUE)
1385                 {
1386                         val = GETEDICTFIELDVALUE(sv_player, eval_ammo_plasma);
1387                         if (val)
1388                         {
1389                                 val->_float = v;
1390                                 if (sv_player->v->weapon > IT_LIGHTNING)
1391                                         sv_player->v->ammo_cells = v;
1392                         }
1393                 }
1394                 break;
1395         }
1396 }
1397
1398 edict_t *FindViewthing (void)
1399 {
1400         int             i;
1401         edict_t *e;
1402
1403         for (i=0 ; i<sv.num_edicts ; i++)
1404         {
1405                 e = EDICT_NUM(i);
1406                 if (!strcmp (PR_GetString(e->v->classname), "viewthing"))
1407                         return e;
1408         }
1409         Con_Printf ("No viewthing on map\n");
1410         return NULL;
1411 }
1412
1413 /*
1414 ==================
1415 Host_Viewmodel_f
1416 ==================
1417 */
1418 void Host_Viewmodel_f (void)
1419 {
1420         edict_t *e;
1421         model_t *m;
1422
1423         e = FindViewthing ();
1424         if (!e)
1425                 return;
1426
1427         m = Mod_ForName (Cmd_Argv(1), false, true, false);
1428         if (!m)
1429         {
1430                 Con_Printf ("Can't load %s\n", Cmd_Argv(1));
1431                 return;
1432         }
1433
1434         e->v->frame = 0;
1435         cl.model_precache[(int)e->v->modelindex] = m;
1436 }
1437
1438 /*
1439 ==================
1440 Host_Viewframe_f
1441 ==================
1442 */
1443 void Host_Viewframe_f (void)
1444 {
1445         edict_t *e;
1446         int             f;
1447         model_t *m;
1448
1449         e = FindViewthing ();
1450         if (!e)
1451                 return;
1452         m = cl.model_precache[(int)e->v->modelindex];
1453
1454         f = atoi(Cmd_Argv(1));
1455         if (f >= m->numframes)
1456                 f = m->numframes-1;
1457
1458         e->v->frame = f;
1459 }
1460
1461
1462 void PrintFrameName (model_t *m, int frame)
1463 {
1464         if (m->animscenes)
1465                 Con_Printf("frame %i: %s\n", frame, m->animscenes[frame].name);
1466         else
1467                 Con_Printf("frame %i\n", frame);
1468 }
1469
1470 /*
1471 ==================
1472 Host_Viewnext_f
1473 ==================
1474 */
1475 void Host_Viewnext_f (void)
1476 {
1477         edict_t *e;
1478         model_t *m;
1479
1480         e = FindViewthing ();
1481         if (!e)
1482                 return;
1483         m = cl.model_precache[(int)e->v->modelindex];
1484
1485         e->v->frame = e->v->frame + 1;
1486         if (e->v->frame >= m->numframes)
1487                 e->v->frame = m->numframes - 1;
1488
1489         PrintFrameName (m, e->v->frame);
1490 }
1491
1492 /*
1493 ==================
1494 Host_Viewprev_f
1495 ==================
1496 */
1497 void Host_Viewprev_f (void)
1498 {
1499         edict_t *e;
1500         model_t *m;
1501
1502         e = FindViewthing ();
1503         if (!e)
1504                 return;
1505
1506         m = cl.model_precache[(int)e->v->modelindex];
1507
1508         e->v->frame = e->v->frame - 1;
1509         if (e->v->frame < 0)
1510                 e->v->frame = 0;
1511
1512         PrintFrameName (m, e->v->frame);
1513 }
1514
1515 /*
1516 ===============================================================================
1517
1518 DEMO LOOP CONTROL
1519
1520 ===============================================================================
1521 */
1522
1523
1524 /*
1525 ==================
1526 Host_Startdemos_f
1527 ==================
1528 */
1529 void Host_Startdemos_f (void)
1530 {
1531         int             i, c;
1532
1533         if (cls.state == ca_dedicated)
1534         {
1535                 if (!sv.active && !sv_spawnmap[0])
1536                 {
1537                         if (gamemode == GAME_TRANSFUSION)
1538                                 Cbuf_AddText ("map bb1\n");
1539                         else
1540                                 Cbuf_AddText ("map start\n");
1541                 }
1542                 return;
1543         }
1544
1545         c = Cmd_Argc() - 1;
1546         if (c > MAX_DEMOS)
1547         {
1548                 Con_Printf ("Max %i demos in demoloop\n", MAX_DEMOS);
1549                 c = MAX_DEMOS;
1550         }
1551         Con_Printf ("%i demo(s) in loop\n", c);
1552
1553         for (i=1 ; i<c+1 ; i++)
1554                 strncpy (cls.demos[i-1], Cmd_Argv(i), sizeof(cls.demos[0])-1);
1555
1556         // LordHavoc: clear the remaining slots
1557         for (;i <= MAX_DEMOS;i++)
1558                 cls.demos[i-1][0] = 0;
1559
1560         if (!sv.active && cls.demonum != -1 && !cls.demoplayback)
1561         {
1562                 cls.demonum = 0;
1563                 CL_NextDemo ();
1564         }
1565         else
1566                 cls.demonum = -1;
1567 }
1568
1569
1570 /*
1571 ==================
1572 Host_Demos_f
1573
1574 Return to looping demos
1575 ==================
1576 */
1577 void Host_Demos_f (void)
1578 {
1579         if (cls.state == ca_dedicated)
1580                 return;
1581         if (cls.demonum == -1)
1582                 cls.demonum = 1;
1583         CL_Disconnect_f ();
1584         CL_NextDemo ();
1585 }
1586
1587 /*
1588 ==================
1589 Host_Stopdemo_f
1590
1591 Return to looping demos
1592 ==================
1593 */
1594 void Host_Stopdemo_f (void)
1595 {
1596         if (!cls.demoplayback)
1597                 return;
1598         CL_Disconnect ();
1599 }
1600
1601 // LordHavoc: because we don't want to load things before the video starts,
1602 // we have to delay map and game loads until AFTER video is initialized
1603 void Host_PerformSpawnServerAndLoadGame(void)
1604 {
1605         if (vid_hidden && cls.state != ca_dedicated)
1606                 return;
1607         if (sv_loadgame[0])
1608                 Host_PerformLoadGame(sv_loadgame);
1609         else if (sv_spawnmap[0])
1610                 SV_SpawnServer(sv_spawnmap);
1611         if (sv.active && cls.state == ca_disconnected)
1612                 Cmd_ExecuteString ("connect local", src_command);
1613         sv_loadgame[0] = 0;
1614         sv_spawnmap[0] = 0;
1615 }
1616
1617 //=============================================================================
1618
1619 /*
1620 ==================
1621 Host_InitCommands
1622 ==================
1623 */
1624 void Host_InitCommands (void)
1625 {
1626         Cmd_AddCommand ("status", Host_Status_f);
1627         Cmd_AddCommand ("quit", Host_Quit_f);
1628         if (gamemode == GAME_NEHAHRA)
1629         {
1630                 Cmd_AddCommand ("max", Host_God_f);
1631                 Cmd_AddCommand ("monster", Host_Notarget_f);
1632                 Cmd_AddCommand ("scrag", Host_Fly_f);
1633                 Cmd_AddCommand ("wraith", Host_Noclip_f);
1634                 Cmd_AddCommand ("gimme", Host_Give_f);
1635         }
1636         else
1637         {
1638                 Cmd_AddCommand ("god", Host_God_f);
1639                 Cmd_AddCommand ("notarget", Host_Notarget_f);
1640                 Cmd_AddCommand ("fly", Host_Fly_f);
1641                 Cmd_AddCommand ("noclip", Host_Noclip_f);
1642                 Cmd_AddCommand ("give", Host_Give_f);
1643         }
1644         Cmd_AddCommand ("map", Host_Map_f);
1645         Cmd_AddCommand ("restart", Host_Restart_f);
1646         Cmd_AddCommand ("changelevel", Host_Changelevel_f);
1647         Cmd_AddCommand ("connect", Host_Connect_f);
1648         Cmd_AddCommand ("reconnect", Host_Reconnect_f);
1649         Cmd_AddCommand ("name", Host_Name_f);
1650         Cmd_AddCommand ("version", Host_Version_f);
1651         Cmd_AddCommand ("say", Host_Say_f);
1652         Cmd_AddCommand ("say_team", Host_Say_Team_f);
1653         Cmd_AddCommand ("tell", Host_Tell_f);
1654         Cmd_AddCommand ("color", Host_Color_f);
1655         Cmd_AddCommand ("kill", Host_Kill_f);
1656         Cmd_AddCommand ("pause", Host_Pause_f);
1657         Cmd_AddCommand ("spawn", Host_Spawn_f);
1658         Cmd_AddCommand ("begin", Host_Begin_f);
1659         Cmd_AddCommand ("prespawn", Host_PreSpawn_f);
1660         Cmd_AddCommand ("kick", Host_Kick_f);
1661         Cmd_AddCommand ("ping", Host_Ping_f);
1662         Cmd_AddCommand ("load", Host_Loadgame_f);
1663         Cmd_AddCommand ("save", Host_Savegame_f);
1664
1665         Cmd_AddCommand ("startdemos", Host_Startdemos_f);
1666         Cmd_AddCommand ("demos", Host_Demos_f);
1667         Cmd_AddCommand ("stopdemo", Host_Stopdemo_f);
1668
1669         Cmd_AddCommand ("viewmodel", Host_Viewmodel_f);
1670         Cmd_AddCommand ("viewframe", Host_Viewframe_f);
1671         Cmd_AddCommand ("viewnext", Host_Viewnext_f);
1672         Cmd_AddCommand ("viewprev", Host_Viewprev_f);
1673 }
1674