]> icculus.org git repositories - divverent/darkplaces.git/blob - host.c
if a (supposedly) quake sky texture is not 128x256, upload it just as a solid layer
[divverent/darkplaces.git] / host.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 // host.c -- coordinates spawning and killing of local servers
21
22 #include <time.h>
23 #include "quakedef.h"
24 #include "cl_video.h"
25
26 /*
27
28 A server can always be started, even if the system started out as a client
29 to a remote system.
30
31 A client can NOT be started if the system started as a dedicated server.
32
33 Memory is cleared / released when a server or client begins, not when they end.
34
35 */
36
37 // true if into command execution
38 qboolean host_initialized;
39 // LordHavoc: used to turn Host_Error into Sys_Error if starting up or shutting down
40 qboolean host_loopactive = false;
41 // LordHavoc: set when quit is executed
42 qboolean host_shuttingdown = false;
43
44 double host_frametime;
45 // LordHavoc: the real frametime, before slowmo and clamping are applied (used for console scrolling)
46 double host_realframetime;
47 // the real time, without any slowmo or clamping
48 double realtime;
49 // realtime from previous frame
50 double oldrealtime;
51 // how many frames have occurred
52 int host_framecount;
53
54 // used for -developer commandline parameter, hacky hacky
55 int forcedeveloper;
56
57 // current client
58 client_t *host_client;
59
60 jmp_buf host_abortserver;
61
62 // pretend frames take this amount of time (in seconds), 0 = realtime
63 cvar_t host_framerate = {0, "host_framerate","0"};
64 // shows time used by certain subsystems
65 cvar_t host_speeds = {0, "host_speeds","0"};
66 // LordHavoc: framerate independent slowmo
67 cvar_t slowmo = {0, "slowmo", "1.0"};
68 // LordHavoc: game logic lower cap on framerate (if framerate is below this is, it pretends it is this, so game logic will run normally)
69 cvar_t host_minfps = {CVAR_SAVE, "host_minfps", "10"};
70 // LordHavoc: framerate upper cap
71 cvar_t host_maxfps = {CVAR_SAVE, "host_maxfps", "1000"};
72
73 // print broadcast messages in dedicated mode
74 cvar_t sv_echobprint = {CVAR_SAVE, "sv_echobprint", "1"};
75
76 cvar_t sys_ticrate = {CVAR_SAVE, "sys_ticrate","0.05"};
77 cvar_t serverprofile = {0, "serverprofile","0"};
78
79 cvar_t fraglimit = {CVAR_NOTIFY, "fraglimit","0"};
80 cvar_t timelimit = {CVAR_NOTIFY, "timelimit","0"};
81 cvar_t teamplay = {CVAR_NOTIFY, "teamplay","0"};
82
83 cvar_t samelevel = {0, "samelevel","0"};
84 cvar_t noexit = {CVAR_NOTIFY, "noexit","0"};
85
86 cvar_t developer = {0, "developer","0"};
87
88 cvar_t skill = {0, "skill","1"};
89 cvar_t deathmatch = {0, "deathmatch","0"};
90 cvar_t coop = {0, "coop","0"};
91
92 cvar_t pausable = {0, "pausable","1"};
93
94 cvar_t temp1 = {0, "temp1","0"};
95
96 cvar_t timestamps = {CVAR_SAVE, "timestamps", "0"};
97 cvar_t timeformat = {CVAR_SAVE, "timeformat", "[%b %e %X] "};
98
99 /*
100 ================
101 Host_Error
102
103 This shuts down both the client and server
104 ================
105 */
106 void PRVM_ProcessError(void);
107 static char hosterrorstring1[4096];
108 static char hosterrorstring2[4096];
109 static qboolean hosterror = false;
110 void Host_Error (const char *error, ...)
111 {
112         va_list argptr;
113
114         va_start (argptr,error);
115         vsprintf (hosterrorstring1,error,argptr);
116         va_end (argptr);
117
118         Con_Printf("Host_Error: %s\n", hosterrorstring1);
119
120         // LordHavoc: if first frame has not been shown, or currently shutting
121         // down, do Sys_Error instead
122         if (!host_loopactive || host_shuttingdown)
123                 Sys_Error ("Host_Error: %s", hosterrorstring1);
124
125         if (hosterror)
126                 Sys_Error ("Host_Error: recursively entered (original error was: %s    new error is: %s)", hosterrorstring2, hosterrorstring1);
127         hosterror = true;
128
129         strcpy(hosterrorstring2, hosterrorstring1);
130
131         CL_Parse_DumpPacket();
132
133         PR_Crash();
134
135         //PRVM_Crash(); // crash current prog
136
137         // crash all prvm progs
138         PRVM_CrashAll();
139
140         PRVM_ProcessError();
141
142         Host_ShutdownServer (false);
143
144         if (cls.state == ca_dedicated)
145                 Sys_Error ("Host_Error: %s\n",hosterrorstring2);        // dedicated servers exit
146
147         CL_Disconnect ();
148         cls.demonum = -1;
149
150         hosterror = false;
151
152         longjmp (host_abortserver, 1);
153 }
154
155 mempool_t *sv_clients_mempool = NULL;
156
157 void Host_ServerOptions (void)
158 {
159         int i, numplayers;
160
161         // general default
162         numplayers = 8;
163
164 // COMMANDLINEOPTION: Server: -dedicated [playerlimit] starts a dedicated server (with a command console), default playerlimit is 8
165 // COMMANDLINEOPTION: Server: -listen [playerlimit] starts a multiplayer server with graphical client, like singleplayer but other players can connect, default playerlimit is 8
166         if (cl_available)
167         {
168                 // client exists, check what mode the user wants
169                 i = COM_CheckParm ("-dedicated");
170                 if (i)
171                 {
172                         cls.state = ca_dedicated;
173                         // default players unless specified
174                         if (i != (com_argc - 1))
175                                 numplayers = atoi (com_argv[i+1]);
176                         if (COM_CheckParm ("-listen"))
177                                 Sys_Error ("Only one of -dedicated or -listen can be specified");
178                 }
179                 else
180                 {
181                         cls.state = ca_disconnected;
182                         i = COM_CheckParm ("-listen");
183                         if (i)
184                         {
185                                 // default players unless specified
186                                 if (i != (com_argc - 1))
187                                         numplayers = atoi (com_argv[i+1]);
188                         }
189                         else
190                         {
191                                 // default players in some games, singleplayer in most
192                                 if (gamemode != GAME_TRANSFUSION && gamemode != GAME_GOODVSBAD2 && gamemode != GAME_NEXUIZ && gamemode != GAME_BATTLEMECH)
193                                         numplayers = 1;
194                         }
195                 }
196         }
197         else
198         {
199                 // no client in the executable, always start dedicated server
200                 if (COM_CheckParm ("-listen"))
201                         Sys_Error ("-listen not available in a dedicated server executable");
202                 cls.state = ca_dedicated;
203                 // check for -dedicated specifying how many players
204                 i = COM_CheckParm ("-dedicated");
205                 // default players unless specified
206                 if (i && i != (com_argc - 1))
207                         numplayers = atoi (com_argv[i+1]);
208         }
209
210         if (numplayers < 1)
211                 numplayers = 8;
212
213         numplayers = bound(1, numplayers, MAX_SCOREBOARD);
214
215         if (numplayers > 1 && !deathmatch.integer)
216                 Cvar_SetValueQuick(&deathmatch, 1);
217
218         svs.maxclients = numplayers;
219         sv_clients_mempool = Mem_AllocPool("server clients", 0, NULL);
220         svs.clients = Mem_Alloc(sv_clients_mempool, sizeof(client_t) * svs.maxclients);
221 }
222
223 /*
224 =======================
225 Host_InitLocal
226 ======================
227 */
228 void Host_SaveConfig_f(void);
229 void Host_InitLocal (void)
230 {
231         Host_InitCommands ();
232         
233         Cmd_AddCommand("saveconfig", Host_SaveConfig_f);
234
235         Cvar_RegisterVariable (&host_framerate);
236         Cvar_RegisterVariable (&host_speeds);
237         Cvar_RegisterVariable (&slowmo);
238         Cvar_RegisterVariable (&host_minfps);
239         Cvar_RegisterVariable (&host_maxfps);
240
241         Cvar_RegisterVariable (&sv_echobprint);
242
243         Cvar_RegisterVariable (&sys_ticrate);
244         Cvar_RegisterVariable (&serverprofile);
245
246         Cvar_RegisterVariable (&fraglimit);
247         Cvar_RegisterVariable (&timelimit);
248         Cvar_RegisterVariable (&teamplay);
249         Cvar_RegisterVariable (&samelevel);
250         Cvar_RegisterVariable (&noexit);
251         Cvar_RegisterVariable (&skill);
252         Cvar_RegisterVariable (&developer);
253         if (forcedeveloper) // make it real now that the cvar is registered
254                 Cvar_SetValue("developer", 1);
255         Cvar_RegisterVariable (&deathmatch);
256         Cvar_RegisterVariable (&coop);
257
258         Cvar_RegisterVariable (&pausable);
259
260         Cvar_RegisterVariable (&temp1);
261
262         Cvar_RegisterVariable (&timestamps);
263         Cvar_RegisterVariable (&timeformat);
264
265         Host_ServerOptions ();
266 }
267
268
269 /*
270 ===============
271 Host_SaveConfig_f
272
273 Writes key bindings and archived cvars to config.cfg
274 ===============
275 */
276 void Host_SaveConfig_f(void)
277 {
278         qfile_t *f;
279
280 // dedicated servers initialize the host but don't parse and set the
281 // config.cfg cvars
282         if (host_initialized && cls.state != ca_dedicated)
283         {
284                 f = FS_Open ("config.cfg", "w", false);
285                 if (!f)
286                 {
287                         Con_Print("Couldn't write config.cfg.\n");
288                         return;
289                 }
290
291                 Key_WriteBindings (f);
292                 Cvar_WriteVariables (f);
293
294                 FS_Close (f);
295         }
296 }
297
298
299 /*
300 =================
301 SV_ClientPrint
302
303 Sends text across to be displayed
304 FIXME: make this just a stuffed echo?
305 =================
306 */
307 void SV_ClientPrint(const char *msg)
308 {
309         MSG_WriteByte(&host_client->message, svc_print);
310         MSG_WriteString(&host_client->message, msg);
311 }
312
313 /*
314 =================
315 SV_ClientPrintf
316
317 Sends text across to be displayed
318 FIXME: make this just a stuffed echo?
319 =================
320 */
321 void SV_ClientPrintf(const char *fmt, ...)
322 {
323         va_list argptr;
324         char msg[4096];
325
326         va_start(argptr,fmt);
327         vsnprintf(msg,sizeof(msg),fmt,argptr);
328         va_end(argptr);
329
330         SV_ClientPrint(msg);
331 }
332
333 /*
334 =================
335 SV_BroadcastPrint
336
337 Sends text to all active clients
338 =================
339 */
340 void SV_BroadcastPrint(const char *msg)
341 {
342         int i;
343         client_t *client;
344
345         for (i = 0, client = svs.clients;i < svs.maxclients;i++, client++)
346         {
347                 if (client->spawned)
348                 {
349                         MSG_WriteByte(&client->message, svc_print);
350                         MSG_WriteString(&client->message, msg);
351                 }
352         }
353
354         if (sv_echobprint.integer && cls.state == ca_dedicated)
355                 Sys_Print(msg);
356 }
357
358 /*
359 =================
360 SV_BroadcastPrintf
361
362 Sends text to all active clients
363 =================
364 */
365 void SV_BroadcastPrintf(const char *fmt, ...)
366 {
367         va_list argptr;
368         char msg[4096];
369
370         va_start(argptr,fmt);
371         vsnprintf(msg,sizeof(msg),fmt,argptr);
372         va_end(argptr);
373
374         SV_BroadcastPrint(msg);
375 }
376
377 /*
378 =================
379 Host_ClientCommands
380
381 Send text over to the client to be executed
382 =================
383 */
384 void Host_ClientCommands(const char *fmt, ...)
385 {
386         va_list argptr;
387         char string[1024];
388
389         va_start(argptr,fmt);
390         vsprintf(string, fmt,argptr);
391         va_end(argptr);
392
393         MSG_WriteByte(&host_client->message, svc_stufftext);
394         MSG_WriteString(&host_client->message, string);
395 }
396
397 /*
398 =====================
399 SV_DropClient
400
401 Called when the player is getting totally kicked off the host
402 if (crash = true), don't bother sending signofs
403 =====================
404 */
405 void SV_DropClient(qboolean crash)
406 {
407         Con_Printf("Client \"%s\" dropped\n", host_client->name);
408
409         // send any final messages (don't check for errors)
410         if (host_client->netconnection)
411         {
412                 // free the client (the body stays around)
413                 if (!crash)
414                 {
415                         // LordHavoc: no opportunity for resending, so use unreliable
416                         MSG_WriteByte(&host_client->message, svc_disconnect);
417                         NetConn_SendUnreliableMessage(host_client->netconnection, &host_client->message);
418                 }
419
420                 // break the net connection
421                 NetConn_Close(host_client->netconnection);
422                 host_client->netconnection = NULL;
423
424                 // LordHavoc: don't call QC if server is dead (avoids recursive
425                 // Host_Error in some mods when they run out of edicts)
426                 if (sv.active && host_client->edict && host_client->spawned)
427                 {
428                         // call the prog function for removing a client
429                         // this will set the body to a dead frame, among other things
430                         int saveSelf = pr_global_struct->self;
431                         pr_global_struct->self = EDICT_TO_PROG(host_client->edict);
432                         PR_ExecuteProgram(pr_global_struct->ClientDisconnect, "QC function ClientDisconnect is missing");
433                         pr_global_struct->self = saveSelf;
434                 }
435         }
436
437         // remove leaving player from scoreboard
438         // clear a fields that matter to DP_SV_CLIENTNAME and DP_SV_CLIENTCOLORS, and also frags
439         ED_ClearEdict(host_client->edict);
440         //host_client->edict->v->netname = PR_SetString(host_client->name);
441         //if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_clientcolors)))
442         //      val->_float = 0;
443         //host_client->edict->v->frags = 0;
444         host_client->name[0] = 0;
445         host_client->colors = 0;
446         host_client->frags = 0;
447         // send notification to all clients
448         MSG_WriteByte (&sv.reliable_datagram, svc_updatename);
449         MSG_WriteByte (&sv.reliable_datagram, host_client->number);
450         MSG_WriteString (&sv.reliable_datagram, host_client->name);
451         MSG_WriteByte (&sv.reliable_datagram, svc_updatecolors);
452         MSG_WriteByte (&sv.reliable_datagram, host_client->number);
453         MSG_WriteByte (&sv.reliable_datagram, host_client->colors);
454         MSG_WriteByte (&sv.reliable_datagram, svc_updatefrags);
455         MSG_WriteByte (&sv.reliable_datagram, host_client->number);
456         MSG_WriteShort (&sv.reliable_datagram, host_client->frags);
457
458         // free the client now
459         if (host_client->entitydatabase)
460                 EntityFrame_FreeDatabase(host_client->entitydatabase);
461         if (host_client->entitydatabase4)
462                 EntityFrame4_FreeDatabase(host_client->entitydatabase4);
463         if (host_client->entitydatabase5)
464                 EntityFrame5_FreeDatabase(host_client->entitydatabase5);
465         // clear the client struct (this sets active to false)
466         memset(host_client, 0, sizeof(*host_client));
467
468         // update server listing on the master because player count changed
469         // (which the master uses for filtering empty/full servers)
470         NetConn_Heartbeat(1);
471 }
472
473 /*
474 ==================
475 Host_ShutdownServer
476
477 This only happens at the end of a game, not between levels
478 ==================
479 */
480 void Host_ShutdownServer(qboolean crash)
481 {
482         int i, count;
483         sizebuf_t buf;
484         char message[4];
485
486         Con_DPrintf("Host_ShutdownServer\n");
487
488         if (!sv.active)
489                 return;
490
491         // print out where the crash happened, if it was caused by QC
492         PR_Crash();
493
494         NetConn_Heartbeat(2);
495         NetConn_Heartbeat(2);
496
497 // make sure all the clients know we're disconnecting
498         buf.data = message;
499         buf.maxsize = 4;
500         buf.cursize = 0;
501         MSG_WriteByte(&buf, svc_disconnect);
502         count = NetConn_SendToAll(&buf, 5);
503         if (count)
504                 Con_Printf("Host_ShutdownServer: NetConn_SendToAll failed for %u clients\n", count);
505
506         for (i = 0, host_client = svs.clients;i < svs.maxclients;i++, host_client++)
507                 if (host_client->active)
508                         SV_DropClient(crash); // server shutdown
509
510         NetConn_CloseServerPorts();
511
512         sv.active = false;
513
514 //
515 // clear structures
516 //
517         memset(&sv, 0, sizeof(sv));
518         memset(svs.clients, 0, svs.maxclients*sizeof(client_t));
519 }
520
521
522 /*
523 ================
524 Host_ClearMemory
525
526 This clears all the memory used by both the client and server, but does
527 not reinitialize anything.
528 ================
529 */
530 void Host_ClearMemory (void)
531 {
532         Con_DPrint("Clearing memory\n");
533         Mod_ClearAll ();
534
535         cls.signon = 0;
536         memset (&sv, 0, sizeof(sv));
537         memset (&cl, 0, sizeof(cl));
538 }
539
540
541 //============================================================================
542
543 /*
544 ===================
545 Host_FilterTime
546
547 Returns false if the time is too short to run a frame
548 ===================
549 */
550 extern cvar_t cl_avidemo;
551 qboolean Host_FilterTime (double time)
552 {
553         double timecap, timeleft;
554         realtime += time;
555
556         if (slowmo.value < 0.0f)
557                 Cvar_SetValue("slowmo", 0.0f);
558         if (host_minfps.value < 10.0f)
559                 Cvar_SetValue("host_minfps", 10.0f);
560         if (host_maxfps.value < host_minfps.value)
561                 Cvar_SetValue("host_maxfps", host_minfps.value);
562         if (cl_avidemo.value < 0.1f && cl_avidemo.value != 0.0f)
563                 Cvar_SetValue("cl_avidemo", 0.0f);
564
565         // check if framerate is too high
566         if (!cls.timedemo)
567         {
568                 // default to sys_ticrate (server framerate - presumably low) unless we
569                 // have a good reason to run faster
570                 timecap = sys_ticrate.value;
571                 if (cls.state != ca_dedicated)
572                 {
573                         if (cl_avidemo.value >= 0.1f)
574                                 timecap = 1.0 / (double)cl_avidemo.value;
575                         else if (vid_activewindow)
576                                 timecap = 1.0 / host_maxfps.value;
577                 }
578
579                 timeleft = oldrealtime + timecap - realtime;
580                 if (timeleft > 0)
581                 {
582                         // don't totally hog the CPU
583                         if (timeleft >= 0.02)
584                                 Sys_Sleep((int)(timeleft * 1000) - 5);
585                         return false;
586                 }
587         }
588
589         // LordHavoc: copy into host_realframetime as well
590         host_realframetime = host_frametime = realtime - oldrealtime;
591         oldrealtime = realtime;
592
593         if (cls.timedemo)
594         {
595                 // disable time effects
596                 cl.frametime = host_frametime;
597                 return true;
598         }
599
600         if (host_framerate.value > 0)
601                 host_frametime = host_framerate.value;
602         else if (cl_avidemo.value >= 0.1f)
603                 host_frametime = (1.0 / cl_avidemo.value);
604         else
605         {
606                 // don't allow really short frames
607                 if (host_frametime > (1.0 / host_minfps.value))
608                         host_frametime = (1.0 / host_minfps.value);
609         }
610
611         cl.frametime = host_frametime = bound(0, host_frametime * slowmo.value, 0.1f); // LordHavoc: the QC code relies on no less than 10fps
612
613         return true;
614 }
615
616
617 /*
618 ===================
619 Host_GetConsoleCommands
620
621 Add them exactly as if they had been typed at the console
622 ===================
623 */
624 void Host_GetConsoleCommands (void)
625 {
626         char *cmd;
627
628         while (1)
629         {
630                 cmd = Sys_ConsoleInput ();
631                 if (!cmd)
632                         break;
633                 Cbuf_AddText (cmd);
634         }
635 }
636
637
638 /*
639 ==================
640 Host_ServerFrame
641
642 ==================
643 */
644 void Host_ServerFrame (void)
645 {
646         static double frametimetotal = 0, lastservertime = 0;
647         frametimetotal += host_frametime;
648         // LordHavoc: cap server at sys_ticrate in networked games
649         if (!cl.islocalgame && ((realtime - lastservertime) < sys_ticrate.value))
650                 return;
651
652         NetConn_ServerFrame();
653
654 // run the world state
655         if (!sv.paused && (!cl.islocalgame || (key_dest == key_game && !key_consoleactive)))
656                 sv.frametime = pr_global_struct->frametime = frametimetotal;
657         else
658                 sv.frametime = 0;
659         frametimetotal = 0;
660         lastservertime = realtime;
661
662 // set the time and clear the general datagram
663         SV_ClearDatagram();
664
665 // read client messages
666         SV_RunClients();
667
668 // move things around and think
669 // always pause in single player if in console or menus
670         if (sv.frametime)
671                 SV_Physics();
672
673 // send all messages to the clients
674         SV_SendClientMessages();
675
676 // send an heartbeat if enough time has passed since the last one
677         NetConn_Heartbeat(0);
678 }
679
680
681 /*
682 ==================
683 Host_Frame
684
685 Runs all active servers
686 ==================
687 */
688 void _Host_Frame (float time)
689 {
690         static double time1 = 0;
691         static double time2 = 0;
692         static double time3 = 0;
693         int pass1, pass2, pass3;
694         usercmd_t cmd; // Used for receiving input
695
696         if (setjmp(host_abortserver))
697                 return;                 // something bad happened, or the server disconnected
698
699         // keep the random time dependent
700         rand();
701
702         // decide the simulation time
703         if (!Host_FilterTime(time))
704                 return;
705
706         cl.islocalgame = NetConn_IsLocalGame();
707
708         // get new key events
709         Sys_SendKeyEvents();
710
711         // allow mice or other external controllers to add commands
712         IN_Commands();
713
714         // Collect input into cmd
715         IN_ProcessMove(&cmd);
716
717         // process console commands
718         Cbuf_Execute();
719
720         // if running the server locally, make intentions now
721         if (cls.state == ca_connected && sv.active)
722                 CL_SendCmd(&cmd);
723
724 //-------------------
725 //
726 // server operations
727 //
728 //-------------------
729
730         // check for commands typed to the host
731         Host_GetConsoleCommands();
732
733         if (sv.active)
734                 Host_ServerFrame();
735
736 //-------------------
737 //
738 // client operations
739 //
740 //-------------------
741
742         cl.oldtime = cl.time;
743         cl.time += cl.frametime;
744
745         NetConn_ClientFrame();
746
747         if (cls.state == ca_connected)
748         {
749                 // if running the server remotely, send intentions now after
750                 // the incoming messages have been read
751                 if (!sv.active)
752                         CL_SendCmd(&cmd);
753                 CL_ReadFromServer();
754         }
755
756         //ui_update();
757
758         CL_VideoFrame();
759
760         // update video
761         if (host_speeds.integer)
762                 time1 = Sys_DoubleTime();
763
764         CL_UpdateScreen();
765
766         if (host_speeds.integer)
767                 time2 = Sys_DoubleTime();
768
769         // update audio
770         if (cls.signon == SIGNONS && cl.viewentity >= 0 && cl.viewentity < MAX_EDICTS && cl_entities[cl.viewentity].state_current.active)
771         {
772                 // LordHavoc: this used to use renderer variables (eww)
773                 S_Update(&cl_entities[cl.viewentity].render.matrix);
774         }
775         else
776                 S_Update(&identitymatrix);
777
778         CDAudio_Update();
779
780         if (host_speeds.integer)
781         {
782                 pass1 = (time1 - time3)*1000000;
783                 time3 = Sys_DoubleTime();
784                 pass2 = (time2 - time1)*1000000;
785                 pass3 = (time3 - time2)*1000000;
786                 Con_Printf("%6ius total %6ius server %6ius gfx %6ius snd\n",
787                                         pass1+pass2+pass3, pass1, pass2, pass3);
788         }
789
790         host_framecount++;
791         host_loopactive = true;
792
793 }
794
795 void Host_Frame (float time)
796 {
797         double time1, time2;
798         static double timetotal;
799         static int timecount;
800         int i, c, m;
801
802         if (!serverprofile.integer)
803         {
804                 _Host_Frame (time);
805                 return;
806         }
807
808         time1 = Sys_DoubleTime ();
809         _Host_Frame (time);
810         time2 = Sys_DoubleTime ();
811
812         timetotal += time2 - time1;
813         timecount++;
814
815         if (timecount < 1000)
816                 return;
817
818         m = timetotal*1000/timecount;
819         timecount = 0;
820         timetotal = 0;
821         c = 0;
822         for (i=0 ; i<svs.maxclients ; i++)
823         {
824                 if (svs.clients[i].active)
825                         c++;
826         }
827
828         Con_Printf("serverprofile: %2i clients %2i msec\n",  c,  m);
829 }
830
831 //============================================================================
832
833 void Render_Init(void);
834
835 /*
836 ====================
837 Host_Init
838 ====================
839 */
840 void Host_Init (void)
841 {
842         int i;
843
844         // LordHavoc: quake never seeded the random number generator before... heh
845         srand(time(NULL));
846
847         // FIXME: this is evil, but possibly temporary
848 // COMMANDLINEOPTION: Console: -developer enables warnings and other notices (RECOMMENDED for mod developers)
849         if (COM_CheckParm("-developer"))
850         {
851                 forcedeveloper = true;
852                 developer.integer = 1;
853                 developer.value = 1;
854         }
855
856         Cmd_Init();
857         Memory_Init_Commands();
858         R_Modules_Init();
859         Cbuf_Init();
860         V_Init();
861         COM_Init();
862         Host_InitLocal();
863         Key_Init();
864         Con_Init();
865         PR_Init();
866         PRVM_Init();
867         Mod_Init();
868         NetConn_Init();
869         SV_Init();
870
871         Con_Printf("Builddate: %s\n", buildstring);
872
873         if (cls.state != ca_dedicated)
874         {
875                 Palette_Init();
876                 MR_Init_Commands();
877                 VID_Shared_Init();
878                 VID_Init();
879
880                 Render_Init();
881                 S_Init();
882                 CDAudio_Init();
883                 CL_Init();
884         }
885
886         // only cvars are executed when host_initialized == false
887         if (gamemode == GAME_TEU)
888                 Cbuf_InsertText("exec teu.rc\n");
889         else
890                 Cbuf_InsertText("exec quake.rc\n");
891         Cbuf_Execute();
892
893         host_initialized = true;
894
895         Con_DPrint("========Initialized=========\n");
896
897         if (cls.state != ca_dedicated)
898         {
899                 VID_Open();
900                 SCR_BeginLoadingPlaque();
901                 MR_Init();
902         }
903
904         // stuff it again so the first host frame will execute it again, this time
905         // in its entirety
906         if (gamemode == GAME_TEU)
907                 Cbuf_InsertText("exec teu.rc\n");
908         else
909                 Cbuf_InsertText("exec quake.rc\n");
910
911         // check for special benchmark mode
912 // COMMANDLINEOPTION: Client: -benchmark <demoname> runs a timedemo and quits, results of any timedemo can be found in gamedir/benchmark.log (for example id1/benchmark.log)
913         i = COM_CheckParm("-benchmark");
914         if (i && i + 1 < com_argc)
915                 Cbuf_InsertText(va("timedemo %s\n", com_argv[i + 1]));
916
917         Cbuf_Execute();
918
919         // We must wait for the log_file cvar to be initialized to start the log
920         Log_Start ();
921 }
922
923
924 /*
925 ===============
926 Host_Shutdown
927
928 FIXME: this is a callback from Sys_Quit and Sys_Error.  It would be better
929 to run quit through here before the final handoff to the sys code.
930 ===============
931 */
932 void Host_Shutdown(void)
933 {
934         static qboolean isdown = false;
935
936         if (isdown)
937         {
938                 Con_Print("recursive shutdown\n");
939                 return;
940         }
941         isdown = true;
942
943         // disconnect client from server if active
944         CL_Disconnect();
945
946         // shut down local server if active
947         Host_ShutdownServer (false);
948
949         // Shutdown menu
950         if(MR_Shutdown)
951                 MR_Shutdown();
952
953         // AK shutdown PRVM
954         // AK hmm, no PRVM_Shutdown(); yet
955
956
957         Host_SaveConfig_f();
958
959         CDAudio_Shutdown ();
960         NetConn_Shutdown ();
961
962         if (cls.state != ca_dedicated)
963         {
964                 R_Modules_Shutdown();
965                 VID_Shutdown();
966         }
967
968         Sys_Shutdown();
969         Log_Close ();
970 }
971