]> icculus.org git repositories - divverent/darkplaces.git/blob - host.c
fixed M_ScanSaves to use FS_Open properly
[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_EndGame
102 ================
103 */
104 void Host_EndGame (const char *format, ...)
105 {
106         va_list argptr;
107         char string[1024];
108
109         va_start (argptr,format);
110         vsprintf (string,format,argptr);
111         va_end (argptr);
112         Con_DPrintf ("Host_EndGame: %s\n",string);
113
114         if (sv.active)
115                 Host_ShutdownServer (false);
116
117         if (cls.state == ca_dedicated)
118                 Sys_Error ("Host_EndGame: %s\n",string);        // dedicated servers exit
119
120         if (cls.demonum != -1)
121                 CL_NextDemo ();
122         else
123                 CL_Disconnect ();
124
125         longjmp (host_abortserver, 1);
126 }
127
128 /*
129 ================
130 Host_Error
131
132 This shuts down both the client and server
133 ================
134 */
135 char hosterrorstring[4096];
136 extern char sv_spawnmap[MAX_QPATH];
137 extern char sv_loadgame[MAX_OSPATH];
138 void Host_Error (const char *error, ...)
139 {
140         va_list argptr;
141         static qboolean inerror = false;
142
143         // make sure we don't get in a loading loop
144         sv_loadgame[0] = 0;
145         sv_spawnmap[0] = 0;
146
147         // LordHavoc: if first frame has not been shown, or currently shutting
148         // down, do Sys_Error instead
149         if (!host_loopactive || host_shuttingdown)
150         {
151                 char string[4096];
152                 va_start (argptr,error);
153                 vsprintf (string,error,argptr);
154                 va_end (argptr);
155                 Sys_Error ("%s", string);
156         }
157
158         if (inerror)
159         {
160                 char string[4096];
161                 va_start (argptr,error);
162                 vsprintf (string,error,argptr);
163                 va_end (argptr);
164                 Sys_Error ("Host_Error: recursively entered (original error was: %s    new error is: %s)", hosterrorstring, string);
165         }
166         inerror = true;
167
168         va_start (argptr,error);
169         vsprintf (hosterrorstring,error,argptr);
170         va_end (argptr);
171         Con_Printf ("Host_Error: %s\n",hosterrorstring);
172
173         CL_Parse_DumpPacket();
174
175         PR_Crash();
176
177         if (sv.active)
178                 Host_ShutdownServer (false);
179
180         if (cls.state == ca_dedicated)
181                 Sys_Error ("Host_Error: %s\n",hosterrorstring); // dedicated servers exit
182
183         CL_Disconnect ();
184         cls.demonum = -1;
185
186         // unload any partially loaded models
187         Mod_ClearErrorModels();
188
189         inerror = false;
190
191         longjmp (host_abortserver, 1);
192 }
193
194 void Host_ServerOptions (void)
195 {
196         int i, numplayers;
197
198         if (cl_available)
199         {
200                 // client exists, check what mode the user wants
201                 i = COM_CheckParm ("-dedicated");
202                 if (i)
203                 {
204                         cls.state = ca_dedicated;
205                         numplayers = 8;
206                         if (i != (com_argc - 1))
207                                 numplayers = atoi (com_argv[i+1]);
208                         if (COM_CheckParm ("-listen"))
209                                 Sys_Error ("Only one of -dedicated or -listen can be specified");
210                 }
211                 else
212                 {
213                         numplayers = 1;
214                         cls.state = ca_disconnected;
215                         i = COM_CheckParm ("-listen");
216                         if (i)
217                         {
218                                 numplayers = 8;
219                                 if (i != (com_argc - 1))
220                                         numplayers = atoi (com_argv[i+1]);
221                         }
222                 }
223         }
224         else
225         {
226                 // no client in the executable, start dedicated server
227                 if (COM_CheckParm ("-listen"))
228                         Sys_Error ("-listen not available in a dedicated server executable");
229                 numplayers = 8;
230                 cls.state = ca_dedicated;
231                 // check for -dedicated specifying how many players
232                 i = COM_CheckParm ("-dedicated");
233                 if (i && i != (com_argc - 1))
234                         numplayers = atoi (com_argv[i+1]);
235         }
236
237         if (numplayers < 1)
238                 numplayers = 8;
239         if (numplayers > MAX_SCOREBOARD)
240                 numplayers = MAX_SCOREBOARD;
241
242         // Transfusion doesn't support single player games
243         if (gamemode == GAME_TRANSFUSION && numplayers < 4)
244                 numplayers = 4;
245
246         if (numplayers > 1)
247                 Cvar_SetValueQuick (&deathmatch, 1);
248         else
249                 Cvar_SetValueQuick (&deathmatch, 0);
250
251         svs.maxclients = 0;
252         SV_SetMaxClients(numplayers);
253 }
254
255 static mempool_t *clients_mempool;
256 void SV_SetMaxClients(int n)
257 {
258         if (sv.active)
259                 return;
260         n = bound(1, n, MAX_SCOREBOARD);
261         if (svs.maxclients == n)
262                 return;
263         svs.maxclients = n;
264         if (!clients_mempool)
265                 clients_mempool = Mem_AllocPool("clients");
266         if (svs.clients)
267                 Mem_Free(svs.clients);
268         svs.clients = Mem_Alloc(clients_mempool, svs.maxclients*sizeof(client_t));
269 }
270
271
272 /*
273 =======================
274 Host_InitLocal
275 ======================
276 */
277 void Host_InitLocal (void)
278 {
279         Host_InitCommands ();
280
281         Cvar_RegisterVariable (&host_framerate);
282         Cvar_RegisterVariable (&host_speeds);
283         Cvar_RegisterVariable (&slowmo);
284         Cvar_RegisterVariable (&host_minfps);
285         Cvar_RegisterVariable (&host_maxfps);
286
287         Cvar_RegisterVariable (&sv_echobprint);
288
289         Cvar_RegisterVariable (&sys_ticrate);
290         Cvar_RegisterVariable (&serverprofile);
291
292         Cvar_RegisterVariable (&fraglimit);
293         Cvar_RegisterVariable (&timelimit);
294         Cvar_RegisterVariable (&teamplay);
295         Cvar_RegisterVariable (&samelevel);
296         Cvar_RegisterVariable (&noexit);
297         Cvar_RegisterVariable (&skill);
298         Cvar_RegisterVariable (&developer);
299         if (forcedeveloper) // make it real now that the cvar is registered
300                 Cvar_SetValue("developer", 1);
301         Cvar_RegisterVariable (&deathmatch);
302         Cvar_RegisterVariable (&coop);
303
304         Cvar_RegisterVariable (&pausable);
305
306         Cvar_RegisterVariable (&temp1);
307
308         Cvar_RegisterVariable (&timestamps);
309         Cvar_RegisterVariable (&timeformat);
310
311         Host_ServerOptions ();
312 }
313
314
315 /*
316 ===============
317 Host_WriteConfiguration
318
319 Writes key bindings and archived cvars to config.cfg
320 ===============
321 */
322 void Host_WriteConfiguration (void)
323 {
324         qfile_t *f;
325
326 // dedicated servers initialize the host but don't parse and set the
327 // config.cfg cvars
328         if (host_initialized && cls.state != ca_dedicated)
329         {
330                 f = FS_Open ("config.cfg", "w", false);
331                 if (!f)
332                 {
333                         Con_Printf ("Couldn't write config.cfg.\n");
334                         return;
335                 }
336
337                 Key_WriteBindings (f);
338                 Cvar_WriteVariables (f);
339
340                 FS_Close (f);
341         }
342 }
343
344
345 /*
346 =================
347 SV_ClientPrintf
348
349 Sends text across to be displayed
350 FIXME: make this just a stuffed echo?
351 =================
352 */
353 void SV_ClientPrintf (const char *fmt, ...)
354 {
355         va_list argptr;
356         char string[1024];
357
358         va_start (argptr,fmt);
359         vsprintf (string, fmt,argptr);
360         va_end (argptr);
361
362         MSG_WriteByte (&host_client->message, svc_print);
363         MSG_WriteString (&host_client->message, string);
364 }
365
366 /*
367 =================
368 SV_BroadcastPrintf
369
370 Sends text to all active clients
371 =================
372 */
373 void SV_BroadcastPrintf (const char *fmt, ...)
374 {
375         va_list argptr;
376         char string[1024];
377         int i;
378
379         va_start (argptr,fmt);
380         vsprintf (string, fmt,argptr);
381         va_end (argptr);
382
383         for (i=0 ; i<svs.maxclients ; i++)
384                 if (svs.clients[i].active && svs.clients[i].spawned)
385                 {
386                         MSG_WriteByte (&svs.clients[i].message, svc_print);
387                         MSG_WriteString (&svs.clients[i].message, string);
388                 }
389
390         if (sv_echobprint.integer && cls.state == ca_dedicated)
391                 Sys_Printf ("%s", string);
392 }
393
394 /*
395 =================
396 Host_ClientCommands
397
398 Send text over to the client to be executed
399 =================
400 */
401 void Host_ClientCommands (const char *fmt, ...)
402 {
403         va_list argptr;
404         char string[1024];
405
406         va_start (argptr,fmt);
407         vsprintf (string, fmt,argptr);
408         va_end (argptr);
409
410         MSG_WriteByte (&host_client->message, svc_stufftext);
411         MSG_WriteString (&host_client->message, string);
412 }
413
414 /*
415 =====================
416 SV_DropClient
417
418 Called when the player is getting totally kicked off the host
419 if (crash = true), don't bother sending signofs
420 =====================
421 */
422 void SV_DropClient (qboolean crash)
423 {
424         int saveSelf;
425         int i;
426         client_t *client;
427
428         Con_Printf ("Client \"%s\" dropped\n", host_client->name);
429
430         if (!crash)
431         {
432                 // send any final messages (don't check for errors)
433                 if (host_client->netconnection && !host_client->netconnection->disconnected)
434                 {
435 #if 1
436                         // LordHavoc: no opportunity for resending, so reliable is silly
437                         MSG_WriteByte (&host_client->message, svc_disconnect);
438                         NET_SendUnreliableMessage (host_client->netconnection, &host_client->message);
439 #else
440                         if (NET_CanSendMessage (host_client->netconnection))
441                         {
442                                 MSG_WriteByte (&host_client->message, svc_disconnect);
443                                 NET_SendMessage (host_client->netconnection, &host_client->message);
444                         }
445 #endif
446                 }
447         }
448
449 // break the net connection
450         NET_Close (host_client->netconnection);
451         host_client->netconnection = NULL;
452
453 // free the client (the body stays around)
454         host_client->active = false;
455         // note: don't clear name yet
456         net_activeconnections--;
457
458         if (sv.active && host_client->edict && host_client->spawned) // LordHavoc: don't call QC if server is dead (avoids recursive Host_Error in some mods when they run out of edicts)
459         {
460         // call the prog function for removing a client
461         // this will set the body to a dead frame, among other things
462                 saveSelf = pr_global_struct->self;
463                 pr_global_struct->self = EDICT_TO_PROG(host_client->edict);
464                 PR_ExecuteProgram (pr_global_struct->ClientDisconnect, "QC function ClientDisconnect is missing");
465                 pr_global_struct->self = saveSelf;
466         }
467
468         // now clear name (after ClientDisconnect was called)
469         host_client->name[0] = 0;
470         host_client->old_frags = -999999;
471
472         // send notification to all clients
473         for (i=0, client = svs.clients ; i<svs.maxclients ; i++, client++)
474         {
475                 if (!client->active)
476                         continue;
477                 MSG_WriteByte (&client->message, svc_updatename);
478                 MSG_WriteByte (&client->message, host_client - svs.clients);
479                 MSG_WriteString (&client->message, "");
480                 MSG_WriteByte (&client->message, svc_updatefrags);
481                 MSG_WriteByte (&client->message, host_client - svs.clients);
482                 MSG_WriteShort (&client->message, 0);
483                 MSG_WriteByte (&client->message, svc_updatecolors);
484                 MSG_WriteByte (&client->message, host_client - svs.clients);
485                 MSG_WriteByte (&client->message, 0);
486         }
487
488         NET_Heartbeat (1);
489 }
490
491 /*
492 ==================
493 Host_ShutdownServer
494
495 This only happens at the end of a game, not between levels
496 ==================
497 */
498 void Host_ShutdownServer(qboolean crash)
499 {
500         int i, count;
501         sizebuf_t buf;
502         char message[4];
503         double start;
504
505         if (!sv.active)
506                 return;
507
508         // print out where the crash happened, if it was caused by QC
509         PR_Crash();
510
511         sv.active = false;
512
513 // stop all client sounds immediately
514         CL_Disconnect ();
515
516         NET_Heartbeat (2);
517         NET_Heartbeat (2);
518
519 // flush any pending messages - like the score!!!
520         start = Sys_DoubleTime();
521         do
522         {
523                 count = 0;
524                 for (i=0, host_client = svs.clients ; i<svs.maxclients ; i++, host_client++)
525                 {
526                         if (host_client->active && host_client->message.cursize)
527                         {
528                                 if (NET_CanSendMessage (host_client->netconnection))
529                                 {
530                                         NET_SendMessage(host_client->netconnection, &host_client->message);
531                                         SZ_Clear (&host_client->message);
532                                 }
533                                 else
534                                 {
535                                         NET_GetMessage(host_client->netconnection);
536                                         count++;
537                                 }
538                         }
539                 }
540                 if ((Sys_DoubleTime() - start) > 3.0)
541                         break;
542         }
543         while (count);
544
545 // make sure all the clients know we're disconnecting
546         buf.data = message;
547         buf.maxsize = 4;
548         buf.cursize = 0;
549         MSG_WriteByte(&buf, svc_disconnect);
550         count = NET_SendToAll(&buf, 5);
551         if (count)
552                 Con_Printf("Host_ShutdownServer: NET_SendToAll failed for %u clients\n", count);
553
554         for (i=0, host_client = svs.clients ; i<svs.maxclients ; i++, host_client++)
555                 if (host_client->active)
556                         SV_DropClient(crash); // server shutdown
557
558 //
559 // clear structures
560 //
561         memset (&sv, 0, sizeof(sv));
562         memset (svs.clients, 0, svs.maxclients * sizeof(client_t));
563 }
564
565
566 /*
567 ================
568 Host_ClearMemory
569
570 This clears all the memory used by both the client and server, but does
571 not reinitialize anything.
572 ================
573 */
574 void Host_ClearMemory (void)
575 {
576         Con_DPrintf ("Clearing memory\n");
577         Mod_ClearAll ();
578
579         cls.signon = 0;
580         memset (&sv, 0, sizeof(sv));
581         memset (&cl, 0, sizeof(cl));
582 }
583
584
585 //============================================================================
586
587 /*
588 ===================
589 Host_FilterTime
590
591 Returns false if the time is too short to run a frame
592 ===================
593 */
594 extern cvar_t cl_avidemo;
595 qboolean Host_FilterTime (double time)
596 {
597         double timecap;
598         realtime += time;
599
600         if (slowmo.value < 0.0f)
601                 Cvar_SetValue("slowmo", 0.0f);
602         if (host_minfps.value < 10.0f)
603                 Cvar_SetValue("host_minfps", 10.0f);
604         if (host_maxfps.value < host_minfps.value)
605                 Cvar_SetValue("host_maxfps", host_minfps.value);
606         if (cl_avidemo.value < 0.1f && cl_avidemo.value != 0.0f)
607                 Cvar_SetValue("cl_avidemo", 0.0f);
608
609         // check if framerate is too high
610         if (cl_avidemo.value >= 0.1f)
611         {
612                 timecap = 1.0 / (double)cl_avidemo.value;
613                 if ((realtime - oldrealtime) < timecap)
614                         return false;
615         }
616         else if (!cls.timedemo)
617         {
618                 // default to sys_ticrate (server framerate - presumably low) unless we're the active window and either connected to a server or playing a video
619                 timecap = sys_ticrate.value;
620                 if (vid_activewindow && (cls.state == ca_connected || cl_videoplaying))
621                         timecap = 1.0 / host_maxfps.value;
622
623                 if ((realtime - oldrealtime) < timecap)
624                         return false;
625         }
626
627         // LordHavoc: copy into host_realframetime as well
628         host_realframetime = host_frametime = realtime - oldrealtime;
629         oldrealtime = realtime;
630
631         if (cls.timedemo)
632         {
633                 // disable time effects
634                 cl.frametime = host_frametime;
635                 return true;
636         }
637
638         if (host_framerate.value > 0)
639                 host_frametime = host_framerate.value;
640         else if (cl_avidemo.value >= 0.1f)
641                 host_frametime = (1.0 / cl_avidemo.value);
642         else
643         {
644                 // don't allow really short frames
645                 if (host_frametime > (1.0 / host_minfps.value))
646                         host_frametime = (1.0 / host_minfps.value);
647         }
648
649         cl.frametime = host_frametime = bound(0, host_frametime * slowmo.value, 0.1f); // LordHavoc: the QC code relies on no less than 10fps
650
651         return true;
652 }
653
654
655 /*
656 ===================
657 Host_GetConsoleCommands
658
659 Add them exactly as if they had been typed at the console
660 ===================
661 */
662 void Host_GetConsoleCommands (void)
663 {
664         char *cmd;
665
666         while (1)
667         {
668                 cmd = Sys_ConsoleInput ();
669                 if (!cmd)
670                         break;
671                 Cbuf_AddText (cmd);
672         }
673 }
674
675
676 /*
677 ==================
678 Host_ServerFrame
679
680 ==================
681 */
682 void Host_ServerFrame (void)
683 {
684         static double frametimetotal = 0, lastservertime = 0;
685         frametimetotal += host_frametime;
686         // LordHavoc: cap server at sys_ticrate in listen games
687         if (cls.state != ca_dedicated && svs.maxclients > 1 && ((realtime - lastservertime) < sys_ticrate.value))
688                 return;
689 // run the world state
690         if (!sv.paused && (svs.maxclients > 1 || (key_dest == key_game && !key_consoleactive)))
691                 sv.frametime = pr_global_struct->frametime = frametimetotal;
692         else
693                 sv.frametime = 0;
694         frametimetotal = 0;
695         lastservertime = realtime;
696
697 // set the time and clear the general datagram
698         SV_ClearDatagram ();
699
700 // check for new clients
701         SV_CheckForNewClients ();
702
703 // read client messages
704         SV_RunClients ();
705
706 // move things around and think
707 // always pause in single player if in console or menus
708         if (sv.frametime)
709                 SV_Physics ();
710
711 // send all messages to the clients
712         SV_SendClientMessages ();
713
714 // send an heartbeat if enough time has passed since the last one
715         NET_Heartbeat (0);
716 }
717
718
719 /*
720 ==================
721 Host_Frame
722
723 Runs all active servers
724 ==================
725 */
726 void _Host_Frame (float time)
727 {
728         static double time1 = 0;
729         static double time2 = 0;
730         static double time3 = 0;
731         int pass1, pass2, pass3;
732
733         if (setjmp (host_abortserver) )
734                 return;                 // something bad happened, or the server disconnected
735
736 // keep the random time dependent
737         rand ();
738
739 // decide the simulation time
740         if (!Host_FilterTime (time))
741         {
742                 // if time was rejected, don't totally hog the CPU
743                 Sys_Sleep();
744                 return;
745         }
746
747 // get new key events
748         Sys_SendKeyEvents ();
749
750 // allow mice or other external controllers to add commands
751         IN_Commands ();
752
753 // process console commands
754         Cbuf_Execute ();
755
756         // LordHavoc: map and load are delayed until video is initialized
757         Host_PerformSpawnServerAndLoadGame();
758
759         NET_Poll();
760
761 // if running the server locally, make intentions now
762         if (sv.active)
763                 CL_SendCmd ();
764
765 //-------------------
766 //
767 // server operations
768 //
769 //-------------------
770
771 // check for commands typed to the host
772         Host_GetConsoleCommands ();
773
774         if (sv.active)
775                 Host_ServerFrame ();
776
777 //-------------------
778 //
779 // client operations
780 //
781 //-------------------
782
783 // if running the server remotely, send intentions now after
784 // the incoming messages have been read
785         if (!sv.active)
786                 CL_SendCmd ();
787
788 // fetch results from server
789         if (cls.state == ca_connected)
790                 CL_ReadFromServer ();
791
792         ui_update();
793
794         CL_VideoFrame();
795
796 // update video
797         if (host_speeds.integer)
798                 time1 = Sys_DoubleTime ();
799
800         CL_UpdateScreen ();
801
802         if (host_speeds.integer)
803                 time2 = Sys_DoubleTime ();
804
805 // update audio
806         if (cls.signon == SIGNONS)
807         {
808                 // LordHavoc: this used to use renderer variables (eww)
809                 vec3_t forward, right, up;
810                 AngleVectors(cl.viewangles, forward, right, up);
811                 S_Update (cl_entities[cl.viewentity].render.origin, forward, right, up);
812         }
813         else
814                 S_Update (vec3_origin, vec3_origin, vec3_origin, vec3_origin);
815
816         CDAudio_Update();
817
818         if (host_speeds.integer)
819         {
820                 pass1 = (time1 - time3)*1000000;
821                 time3 = Sys_DoubleTime ();
822                 pass2 = (time2 - time1)*1000000;
823                 pass3 = (time3 - time2)*1000000;
824                 Con_Printf ("%6ius total %6ius server %6ius gfx %6ius snd\n",
825                                         pass1+pass2+pass3, pass1, pass2, pass3);
826         }
827
828         host_framecount++;
829         host_loopactive = true;
830 }
831
832 void Host_Frame (float time)
833 {
834         double time1, time2;
835         static double timetotal;
836         static int timecount;
837         int i, c, m;
838
839         if (!serverprofile.integer)
840         {
841                 _Host_Frame (time);
842                 return;
843         }
844
845         time1 = Sys_DoubleTime ();
846         _Host_Frame (time);
847         time2 = Sys_DoubleTime ();
848
849         timetotal += time2 - time1;
850         timecount++;
851
852         if (timecount < 1000)
853                 return;
854
855         m = timetotal*1000/timecount;
856         timecount = 0;
857         timetotal = 0;
858         c = 0;
859         for (i=0 ; i<svs.maxclients ; i++)
860         {
861                 if (svs.clients[i].active)
862                         c++;
863         }
864
865         Con_Printf ("serverprofile: %2i clients %2i msec\n",  c,  m);
866 }
867
868 //============================================================================
869
870 void Render_Init(void);
871
872 /*
873 ====================
874 Host_Init
875 ====================
876 */
877 void Host_Init (void)
878 {
879         // LordHavoc: quake never seeded the random number generator before... heh
880         srand(time(NULL));
881
882         // FIXME: this is evil, but possibly temporary
883         if (COM_CheckParm("-developer"))
884         {
885                 forcedeveloper = true;
886                 developer.integer = 1;
887                 developer.value = 1;
888         }
889
890         Cmd_Init ();
891         Memory_Init_Commands();
892         R_Modules_Init();
893         Cbuf_Init ();
894         V_Init ();
895         COM_Init ();
896         Host_InitLocal ();
897         W_LoadWadFile ("gfx.wad");
898         Key_Init ();
899         Con_Init ();
900         Chase_Init ();
901         M_Init ();
902         PR_Init ();
903         Mod_Init ();
904         NET_Init ();
905         SV_Init ();
906
907         Con_Printf ("Builddate: %s\n", buildstring);
908
909         if (cls.state != ca_dedicated)
910         {
911                 Palette_Init();
912                 VID_Shared_Init();
913                 VID_Init();
914
915                 Render_Init();
916                 S_Init ();
917                 CDAudio_Init ();
918                 CL_Init ();
919         }
920
921         Cbuf_InsertText ("exec quake.rc\n");
922         Cbuf_Execute ();
923         Cbuf_Execute ();
924         Cbuf_Execute ();
925         Cbuf_Execute ();
926
927         host_initialized = true;
928
929         Con_Printf ("========Quake Initialized=========\n");
930
931         if (cls.state != ca_dedicated)
932                 VID_Open();
933 }
934
935
936 /*
937 ===============
938 Host_Shutdown
939
940 FIXME: this is a callback from Sys_Quit and Sys_Error.  It would be better
941 to run quit through here before the final handoff to the sys code.
942 ===============
943 */
944 void Host_Shutdown(void)
945 {
946         static qboolean isdown = false;
947
948         if (isdown)
949         {
950                 Con_Printf ("recursive shutdown\n");
951                 return;
952         }
953         isdown = true;
954
955         Host_WriteConfiguration ();
956
957         CDAudio_Shutdown ();
958         NET_Shutdown ();
959         S_Shutdown();
960
961         if (cls.state != ca_dedicated)
962         {
963                 R_Modules_Shutdown();
964                 VID_Shutdown();
965         }
966 }
967