]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - host.c
Elric added deflated file support for pk3 archives (in other words: compressed pk3...
[xonotic/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         if (!crash)
429         {
430                 // send any final messages (don't check for errors)
431 #if 1
432                 // LordHavoc: no opportunity for resending, so reliable is silly
433                 MSG_WriteByte (&host_client->message, svc_disconnect);
434                 NET_SendUnreliableMessage (host_client->netconnection, &host_client->message);
435 #else
436                 if (NET_CanSendMessage (host_client->netconnection))
437                 {
438                         MSG_WriteByte (&host_client->message, svc_disconnect);
439                         NET_SendMessage (host_client->netconnection, &host_client->message);
440                 }
441 #endif
442         }
443
444         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)
445         {
446         // call the prog function for removing a client
447         // this will set the body to a dead frame, among other things
448                 saveSelf = pr_global_struct->self;
449                 pr_global_struct->self = EDICT_TO_PROG(host_client->edict);
450                 PR_ExecuteProgram (pr_global_struct->ClientDisconnect, "QC function ClientDisconnect is missing");
451                 pr_global_struct->self = saveSelf;
452         }
453
454         Sys_Printf ("Client %s removed\n",host_client->name);
455
456 // break the net connection
457         NET_Close (host_client->netconnection);
458         host_client->netconnection = NULL;
459
460 // free the client (the body stays around)
461         host_client->active = false;
462         host_client->name[0] = 0;
463         host_client->old_frags = -999999;
464         net_activeconnections--;
465
466 // send notification to all clients
467         for (i=0, client = svs.clients ; i<svs.maxclients ; i++, client++)
468         {
469                 if (!client->active)
470                         continue;
471                 MSG_WriteByte (&client->message, svc_updatename);
472                 MSG_WriteByte (&client->message, host_client - svs.clients);
473                 MSG_WriteString (&client->message, "");
474                 MSG_WriteByte (&client->message, svc_updatefrags);
475                 MSG_WriteByte (&client->message, host_client - svs.clients);
476                 MSG_WriteShort (&client->message, 0);
477                 MSG_WriteByte (&client->message, svc_updatecolors);
478                 MSG_WriteByte (&client->message, host_client - svs.clients);
479                 MSG_WriteByte (&client->message, 0);
480         }
481
482         NET_Heartbeat (1);
483 }
484
485 /*
486 ==================
487 Host_ShutdownServer
488
489 This only happens at the end of a game, not between levels
490 ==================
491 */
492 void Host_ShutdownServer(qboolean crash)
493 {
494         int i, count;
495         sizebuf_t buf;
496         char message[4];
497         double start;
498
499         if (!sv.active)
500                 return;
501
502         // print out where the crash happened, if it was caused by QC
503         PR_Crash();
504
505         sv.active = false;
506
507 // stop all client sounds immediately
508         CL_Disconnect ();
509
510         NET_Heartbeat (2);
511         NET_Heartbeat (2);
512
513 // flush any pending messages - like the score!!!
514         start = Sys_DoubleTime();
515         do
516         {
517                 count = 0;
518                 for (i=0, host_client = svs.clients ; i<svs.maxclients ; i++, host_client++)
519                 {
520                         if (host_client->active && host_client->message.cursize)
521                         {
522                                 if (NET_CanSendMessage (host_client->netconnection))
523                                 {
524                                         NET_SendMessage(host_client->netconnection, &host_client->message);
525                                         SZ_Clear (&host_client->message);
526                                 }
527                                 else
528                                 {
529                                         NET_GetMessage(host_client->netconnection);
530                                         count++;
531                                 }
532                         }
533                 }
534                 if ((Sys_DoubleTime() - start) > 3.0)
535                         break;
536         }
537         while (count);
538
539 // make sure all the clients know we're disconnecting
540         buf.data = message;
541         buf.maxsize = 4;
542         buf.cursize = 0;
543         MSG_WriteByte(&buf, svc_disconnect);
544         count = NET_SendToAll(&buf, 5);
545         if (count)
546                 Con_Printf("Host_ShutdownServer: NET_SendToAll failed for %u clients\n", count);
547
548         for (i=0, host_client = svs.clients ; i<svs.maxclients ; i++, host_client++)
549                 if (host_client->active)
550                         SV_DropClient(crash);
551
552 //
553 // clear structures
554 //
555         memset (&sv, 0, sizeof(sv));
556         memset (svs.clients, 0, svs.maxclients * sizeof(client_t));
557 }
558
559
560 /*
561 ================
562 Host_ClearMemory
563
564 This clears all the memory used by both the client and server, but does
565 not reinitialize anything.
566 ================
567 */
568 void Host_ClearMemory (void)
569 {
570         Con_DPrintf ("Clearing memory\n");
571         Mod_ClearAll ();
572
573         cls.signon = 0;
574         memset (&sv, 0, sizeof(sv));
575         memset (&cl, 0, sizeof(cl));
576 }
577
578
579 //============================================================================
580
581 /*
582 ===================
583 Host_FilterTime
584
585 Returns false if the time is too short to run a frame
586 ===================
587 */
588 extern cvar_t cl_avidemo;
589 qboolean Host_FilterTime (double time)
590 {
591         double timecap;
592         realtime += time;
593
594         if (slowmo.value < 0.0f)
595                 Cvar_SetValue("slowmo", 0.0f);
596         if (host_minfps.value < 10.0f)
597                 Cvar_SetValue("host_minfps", 10.0f);
598         if (host_maxfps.value < host_minfps.value)
599                 Cvar_SetValue("host_maxfps", host_minfps.value);
600         if (cl_avidemo.value < 0.1f && cl_avidemo.value != 0.0f)
601                 Cvar_SetValue("cl_avidemo", 0.0f);
602
603         // check if framerate is too high
604         if (cl_avidemo.value >= 0.1f)
605         {
606                 timecap = 1.0 / (double)cl_avidemo.value;
607                 if ((realtime - oldrealtime) < timecap)
608                         return false;
609         }
610         else if (!cls.timedemo)
611         {
612                 // default to sys_ticrate (server framerate - presumably low) unless we're the active window and either connected to a server or playing a video
613                 timecap = sys_ticrate.value;
614                 if (vid_activewindow && (cls.state == ca_connected || cl_videoplaying))
615                         timecap = 1.0 / host_maxfps.value;
616
617                 if ((realtime - oldrealtime) < timecap)
618                         return false;
619         }
620
621         // LordHavoc: copy into host_realframetime as well
622         host_realframetime = host_frametime = realtime - oldrealtime;
623         oldrealtime = realtime;
624
625         if (cls.timedemo)
626         {
627                 // disable time effects
628                 cl.frametime = host_frametime;
629                 return true;
630         }
631
632         if (host_framerate.value > 0)
633                 host_frametime = host_framerate.value;
634         else if (cl_avidemo.value >= 0.1f)
635                 host_frametime = (1.0 / cl_avidemo.value);
636         else
637         {
638                 // don't allow really short frames
639                 if (host_frametime > (1.0 / host_minfps.value))
640                         host_frametime = (1.0 / host_minfps.value);
641         }
642
643         cl.frametime = host_frametime = bound(0, host_frametime * slowmo.value, 0.1f); // LordHavoc: the QC code relies on no less than 10fps
644
645         return true;
646 }
647
648
649 /*
650 ===================
651 Host_GetConsoleCommands
652
653 Add them exactly as if they had been typed at the console
654 ===================
655 */
656 void Host_GetConsoleCommands (void)
657 {
658         char *cmd;
659
660         while (1)
661         {
662                 cmd = Sys_ConsoleInput ();
663                 if (!cmd)
664                         break;
665                 Cbuf_AddText (cmd);
666         }
667 }
668
669
670 /*
671 ==================
672 Host_ServerFrame
673
674 ==================
675 */
676 void Host_ServerFrame (void)
677 {
678         static double frametimetotal = 0, lastservertime = 0;
679         frametimetotal += host_frametime;
680         // LordHavoc: cap server at sys_ticrate in listen games
681         if (cls.state != ca_dedicated && svs.maxclients > 1 && ((realtime - lastservertime) < sys_ticrate.value))
682                 return;
683 // run the world state
684         if (!sv.paused && (svs.maxclients > 1 || (key_dest == key_game && !key_consoleactive)))
685                 sv.frametime = pr_global_struct->frametime = frametimetotal;
686         else
687                 sv.frametime = 0;
688         frametimetotal = 0;
689         lastservertime = realtime;
690
691 // set the time and clear the general datagram
692         SV_ClearDatagram ();
693
694 // check for new clients
695         SV_CheckForNewClients ();
696
697 // read client messages
698         SV_RunClients ();
699
700 // move things around and think
701 // always pause in single player if in console or menus
702         if (sv.frametime)
703                 SV_Physics ();
704
705 // send all messages to the clients
706         SV_SendClientMessages ();
707
708 // send an heartbeat if enough time has passed since the last one
709         NET_Heartbeat (0);
710 }
711
712
713 /*
714 ==================
715 Host_Frame
716
717 Runs all active servers
718 ==================
719 */
720 void _Host_Frame (float time)
721 {
722         static double time1 = 0;
723         static double time2 = 0;
724         static double time3 = 0;
725         int pass1, pass2, pass3;
726
727         if (setjmp (host_abortserver) )
728                 return;                 // something bad happened, or the server disconnected
729
730 // keep the random time dependent
731         rand ();
732
733 // decide the simulation time
734         if (!Host_FilterTime (time))
735         {
736                 // if time was rejected, don't totally hog the CPU
737                 Sys_Sleep();
738                 return;
739         }
740
741 // get new key events
742         Sys_SendKeyEvents ();
743
744 // allow mice or other external controllers to add commands
745         IN_Commands ();
746
747 // process console commands
748         Cbuf_Execute ();
749
750         // LordHavoc: map and load are delayed until video is initialized
751         Host_PerformSpawnServerAndLoadGame();
752
753         NET_Poll();
754
755 // if running the server locally, make intentions now
756         if (sv.active)
757                 CL_SendCmd ();
758
759 //-------------------
760 //
761 // server operations
762 //
763 //-------------------
764
765 // check for commands typed to the host
766         Host_GetConsoleCommands ();
767
768         if (sv.active)
769                 Host_ServerFrame ();
770
771 //-------------------
772 //
773 // client operations
774 //
775 //-------------------
776
777 // if running the server remotely, send intentions now after
778 // the incoming messages have been read
779         if (!sv.active)
780                 CL_SendCmd ();
781
782 // fetch results from server
783         if (cls.state == ca_connected)
784                 CL_ReadFromServer ();
785
786         ui_update();
787
788         CL_VideoFrame();
789
790 // update video
791         if (host_speeds.integer)
792                 time1 = Sys_DoubleTime ();
793
794         CL_UpdateScreen ();
795
796         if (host_speeds.integer)
797                 time2 = Sys_DoubleTime ();
798
799 // update audio
800         if (cls.signon == SIGNONS)
801         {
802                 // LordHavoc: this used to use renderer variables (eww)
803                 vec3_t forward, right, up;
804                 AngleVectors(cl.viewangles, forward, right, up);
805                 S_Update (cl_entities[cl.viewentity].render.origin, forward, right, up);
806         }
807         else
808                 S_Update (vec3_origin, vec3_origin, vec3_origin, vec3_origin);
809
810         CDAudio_Update();
811
812         if (host_speeds.integer)
813         {
814                 pass1 = (time1 - time3)*1000000;
815                 time3 = Sys_DoubleTime ();
816                 pass2 = (time2 - time1)*1000000;
817                 pass3 = (time3 - time2)*1000000;
818                 Con_Printf ("%6ius total %6ius server %6ius gfx %6ius snd\n",
819                                         pass1+pass2+pass3, pass1, pass2, pass3);
820         }
821
822         host_framecount++;
823         host_loopactive = true;
824 }
825
826 void Host_Frame (float time)
827 {
828         double time1, time2;
829         static double timetotal;
830         static int timecount;
831         int i, c, m;
832
833         if (!serverprofile.integer)
834         {
835                 _Host_Frame (time);
836                 return;
837         }
838
839         time1 = Sys_DoubleTime ();
840         _Host_Frame (time);
841         time2 = Sys_DoubleTime ();
842
843         timetotal += time2 - time1;
844         timecount++;
845
846         if (timecount < 1000)
847                 return;
848
849         m = timetotal*1000/timecount;
850         timecount = 0;
851         timetotal = 0;
852         c = 0;
853         for (i=0 ; i<svs.maxclients ; i++)
854         {
855                 if (svs.clients[i].active)
856                         c++;
857         }
858
859         Con_Printf ("serverprofile: %2i clients %2i msec\n",  c,  m);
860 }
861
862 //============================================================================
863
864 void Render_Init(void);
865
866 /*
867 ====================
868 Host_Init
869 ====================
870 */
871 void Host_Init (void)
872 {
873         // LordHavoc: quake never seeded the random number generator before... heh
874         srand(time(NULL));
875
876         // FIXME: this is evil, but possibly temporary
877         if (COM_CheckParm("-developer"))
878         {
879                 forcedeveloper = true;
880                 developer.integer = 1;
881                 developer.value = 1;
882         }
883
884         Cmd_Init ();
885         Memory_Init_Commands();
886         R_Modules_Init();
887         Cbuf_Init ();
888         V_Init ();
889         COM_Init ();
890         Host_InitLocal ();
891         W_LoadWadFile ("gfx.wad");
892         Key_Init ();
893         Con_Init ();
894         Chase_Init ();
895         M_Init ();
896         PR_Init ();
897         Mod_Init ();
898         NET_Init ();
899         SV_Init ();
900
901         Con_Printf ("Builddate: %s\n", buildstring);
902
903         if (cls.state != ca_dedicated)
904         {
905                 Palette_Init();
906                 VID_Shared_Init();
907                 VID_Init();
908
909                 Render_Init();
910                 S_Init ();
911                 CDAudio_Init ();
912                 CL_Init ();
913         }
914
915         Cbuf_InsertText ("exec quake.rc\n");
916         Cbuf_Execute ();
917         Cbuf_Execute ();
918         Cbuf_Execute ();
919         Cbuf_Execute ();
920
921         host_initialized = true;
922
923         Con_Printf ("========Quake Initialized=========\n");
924
925         if (cls.state != ca_dedicated)
926                 VID_Open();
927 }
928
929
930 /*
931 ===============
932 Host_Shutdown
933
934 FIXME: this is a callback from Sys_Quit and Sys_Error.  It would be better
935 to run quit through here before the final handoff to the sys code.
936 ===============
937 */
938 void Host_Shutdown(void)
939 {
940         static qboolean isdown = false;
941
942         if (isdown)
943         {
944                 Con_Printf ("recursive shutdown\n");
945                 return;
946         }
947         isdown = true;
948
949         Host_WriteConfiguration ();
950
951         CDAudio_Shutdown ();
952         NET_Shutdown ();
953         S_Shutdown();
954
955         if (cls.state != ca_dedicated)
956         {
957                 R_Modules_Shutdown();
958                 VID_Shutdown();
959         }
960 }
961