]> icculus.org git repositories - divverent/darkplaces.git/blob - host.c
Several changes to the SFX lock code in the sound engine, mainly to make sure SFXs...
[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 "cdaudio.h"
25 #include "cl_video.h"
26 #include "progsvm.h"
27
28 /*
29
30 A server can always be started, even if the system started out as a client
31 to a remote system.
32
33 A client can NOT be started if the system started as a dedicated server.
34
35 Memory is cleared / released when a server or client begins, not when they end.
36
37 */
38
39 // true if into command execution
40 qboolean host_initialized;
41 // LordHavoc: used to turn Host_Error into Sys_Error if starting up or shutting down
42 qboolean host_loopactive = false;
43 // LordHavoc: set when quit is executed
44 qboolean host_shuttingdown = false;
45
46 double host_frametime;
47 // LordHavoc: the real frametime, before slowmo and clamping are applied (used for console scrolling)
48 double host_realframetime;
49 // the real time, without any slowmo or clamping
50 double realtime;
51 // realtime from previous frame
52 double oldrealtime;
53 // how many frames have occurred
54 int host_framecount;
55
56 // used for -developer commandline parameter, hacky hacky
57 int forcedeveloper;
58
59 // current client
60 client_t *host_client;
61
62 jmp_buf host_abortserver;
63
64 // pretend frames take this amount of time (in seconds), 0 = realtime
65 cvar_t host_framerate = {0, "host_framerate","0"};
66 // shows time used by certain subsystems
67 cvar_t host_speeds = {0, "host_speeds","0"};
68 // LordHavoc: framerate independent slowmo
69 cvar_t slowmo = {0, "slowmo", "1.0"};
70 // LordHavoc: framerate upper cap
71 cvar_t cl_maxfps = {CVAR_SAVE, "cl_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 (&cl_maxfps);
239
240         Cvar_RegisterVariable (&sv_echobprint);
241
242         Cvar_RegisterVariable (&sys_ticrate);
243         Cvar_RegisterVariable (&serverprofile);
244
245         Cvar_RegisterVariable (&fraglimit);
246         Cvar_RegisterVariable (&timelimit);
247         Cvar_RegisterVariable (&teamplay);
248         Cvar_RegisterVariable (&samelevel);
249         Cvar_RegisterVariable (&noexit);
250         Cvar_RegisterVariable (&skill);
251         Cvar_RegisterVariable (&developer);
252         if (forcedeveloper) // make it real now that the cvar is registered
253                 Cvar_SetValue("developer", 1);
254         Cvar_RegisterVariable (&deathmatch);
255         Cvar_RegisterVariable (&coop);
256
257         Cvar_RegisterVariable (&pausable);
258
259         Cvar_RegisterVariable (&temp1);
260
261         Cvar_RegisterVariable (&timestamps);
262         Cvar_RegisterVariable (&timeformat);
263
264         Host_ServerOptions ();
265 }
266
267
268 /*
269 ===============
270 Host_SaveConfig_f
271
272 Writes key bindings and archived cvars to config.cfg
273 ===============
274 */
275 void Host_SaveConfig_f(void)
276 {
277         qfile_t *f;
278
279 // dedicated servers initialize the host but don't parse and set the
280 // config.cfg cvars
281         if (host_initialized && cls.state != ca_dedicated)
282         {
283                 f = FS_Open ("config.cfg", "w", false);
284                 if (!f)
285                 {
286                         Con_Print("Couldn't write config.cfg.\n");
287                         return;
288                 }
289
290                 Key_WriteBindings (f);
291                 Cvar_WriteVariables (f);
292
293                 FS_Close (f);
294         }
295 }
296
297
298 /*
299 =================
300 SV_ClientPrint
301
302 Sends text across to be displayed
303 FIXME: make this just a stuffed echo?
304 =================
305 */
306 void SV_ClientPrint(const char *msg)
307 {
308         MSG_WriteByte(&host_client->message, svc_print);
309         MSG_WriteString(&host_client->message, msg);
310 }
311
312 /*
313 =================
314 SV_ClientPrintf
315
316 Sends text across to be displayed
317 FIXME: make this just a stuffed echo?
318 =================
319 */
320 void SV_ClientPrintf(const char *fmt, ...)
321 {
322         va_list argptr;
323         char msg[4096];
324
325         va_start(argptr,fmt);
326         vsnprintf(msg,sizeof(msg),fmt,argptr);
327         va_end(argptr);
328
329         SV_ClientPrint(msg);
330 }
331
332 /*
333 =================
334 SV_BroadcastPrint
335
336 Sends text to all active clients
337 =================
338 */
339 void SV_BroadcastPrint(const char *msg)
340 {
341         int i;
342         client_t *client;
343
344         for (i = 0, client = svs.clients;i < svs.maxclients;i++, client++)
345         {
346                 if (client->spawned)
347                 {
348                         MSG_WriteByte(&client->message, svc_print);
349                         MSG_WriteString(&client->message, msg);
350                 }
351         }
352
353         if (sv_echobprint.integer && cls.state == ca_dedicated)
354                 Sys_Print(msg);
355 }
356
357 /*
358 =================
359 SV_BroadcastPrintf
360
361 Sends text to all active clients
362 =================
363 */
364 void SV_BroadcastPrintf(const char *fmt, ...)
365 {
366         va_list argptr;
367         char msg[4096];
368
369         va_start(argptr,fmt);
370         vsnprintf(msg,sizeof(msg),fmt,argptr);
371         va_end(argptr);
372
373         SV_BroadcastPrint(msg);
374 }
375
376 /*
377 =================
378 Host_ClientCommands
379
380 Send text over to the client to be executed
381 =================
382 */
383 void Host_ClientCommands(const char *fmt, ...)
384 {
385         va_list argptr;
386         char string[1024];
387
388         va_start(argptr,fmt);
389         vsprintf(string, fmt,argptr);
390         va_end(argptr);
391
392         MSG_WriteByte(&host_client->message, svc_stufftext);
393         MSG_WriteString(&host_client->message, string);
394 }
395
396 /*
397 =====================
398 SV_DropClient
399
400 Called when the player is getting totally kicked off the host
401 if (crash = true), don't bother sending signofs
402 =====================
403 */
404 void SV_DropClient(qboolean crash)
405 {
406         int i;
407         Con_Printf("Client \"%s\" dropped\n", host_client->name);
408
409         // make sure edict is not corrupt (from a level change for example)
410         host_client->edict = EDICT_NUM(host_client - svs.clients + 1);
411
412         if (host_client->netconnection)
413         {
414                 // free the client (the body stays around)
415                 if (!crash)
416                 {
417                         // LordHavoc: no opportunity for resending, so use unreliable
418                         MSG_WriteByte(&host_client->message, svc_disconnect);
419                         NetConn_SendUnreliableMessage(host_client->netconnection, &host_client->message);
420                 }
421                 // break the net connection
422                 NetConn_Close(host_client->netconnection);
423                 host_client->netconnection = NULL;
424         }
425
426         // call qc ClientDisconnect function
427         // LordHavoc: don't call QC if server is dead (avoids recursive
428         // Host_Error in some mods when they run out of edicts)
429         if (host_client->active && sv.active && host_client->edict && host_client->spawned)
430         {
431                 // call the prog function for removing a client
432                 // this will set the body to a dead frame, among other things
433                 int saveSelf = pr_global_struct->self;
434                 pr_global_struct->self = EDICT_TO_PROG(host_client->edict);
435                 PR_ExecuteProgram(pr_global_struct->ClientDisconnect, "QC function ClientDisconnect is missing");
436                 pr_global_struct->self = saveSelf;
437         }
438
439         // remove leaving player from scoreboard
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         // get number of client manually just to make sure we get it right...
449         i = host_client - svs.clients;
450         MSG_WriteByte (&sv.reliable_datagram, svc_updatename);
451         MSG_WriteByte (&sv.reliable_datagram, i);
452         MSG_WriteString (&sv.reliable_datagram, host_client->name);
453         MSG_WriteByte (&sv.reliable_datagram, svc_updatecolors);
454         MSG_WriteByte (&sv.reliable_datagram, i);
455         MSG_WriteByte (&sv.reliable_datagram, host_client->colors);
456         MSG_WriteByte (&sv.reliable_datagram, svc_updatefrags);
457         MSG_WriteByte (&sv.reliable_datagram, i);
458         MSG_WriteShort (&sv.reliable_datagram, host_client->frags);
459
460         // free the client now
461         if (host_client->entitydatabase)
462                 EntityFrame_FreeDatabase(host_client->entitydatabase);
463         if (host_client->entitydatabase4)
464                 EntityFrame4_FreeDatabase(host_client->entitydatabase4);
465         if (host_client->entitydatabase5)
466                 EntityFrame5_FreeDatabase(host_client->entitydatabase5);
467         
468         if (sv.active)
469         {
470                 // clear a fields that matter to DP_SV_CLIENTNAME and DP_SV_CLIENTCOLORS, and also frags
471                 ED_ClearEdict(host_client->edict);
472         }
473         
474         // clear the client struct (this sets active to false)
475         memset(host_client, 0, sizeof(*host_client));
476
477         // update server listing on the master because player count changed
478         // (which the master uses for filtering empty/full servers)
479         NetConn_Heartbeat(1);
480 }
481
482 /*
483 ==================
484 Host_ShutdownServer
485
486 This only happens at the end of a game, not between levels
487 ==================
488 */
489 void Host_ShutdownServer(qboolean crash)
490 {
491         int i, count;
492         sizebuf_t buf;
493         char message[4];
494
495         Con_DPrintf("Host_ShutdownServer\n");
496
497         if (!sv.active)
498                 return;
499
500         // print out where the crash happened, if it was caused by QC
501         PR_Crash();
502
503         NetConn_Heartbeat(2);
504         NetConn_Heartbeat(2);
505
506 // make sure all the clients know we're disconnecting
507         buf.data = message;
508         buf.maxsize = 4;
509         buf.cursize = 0;
510         MSG_WriteByte(&buf, svc_disconnect);
511         count = NetConn_SendToAll(&buf, 5);
512         if (count)
513                 Con_Printf("Host_ShutdownServer: NetConn_SendToAll failed for %u clients\n", count);
514
515         for (i = 0, host_client = svs.clients;i < svs.maxclients;i++, host_client++)
516                 if (host_client->active)
517                         SV_DropClient(crash); // server shutdown
518
519         NetConn_CloseServerPorts();
520
521         sv.active = false;
522
523 //
524 // clear structures
525 //
526         memset(&sv, 0, sizeof(sv));
527         memset(svs.clients, 0, svs.maxclients*sizeof(client_t));
528 }
529
530
531 /*
532 ================
533 Host_ClearMemory
534
535 This clears all the memory used by both the client and server, but does
536 not reinitialize anything.
537 ================
538 */
539 void Host_ClearMemory (void)
540 {
541         Con_DPrint("Clearing memory\n");
542         Mod_ClearAll ();
543
544         cls.signon = 0;
545         memset (&sv, 0, sizeof(sv));
546         memset (&cl, 0, sizeof(cl));
547 }
548
549
550 //============================================================================
551
552 /*
553 ===================
554 Host_FilterTime
555
556 Returns false if the time is too short to run a frame
557 ===================
558 */
559 extern qboolean cl_capturevideo_active;
560 extern double cl_capturevideo_framerate;
561 qboolean Host_FilterTime (double time)
562 {
563         double timecap, timeleft;
564         realtime += time;
565
566         if (sys_ticrate.value < 0.01 || sys_ticrate.value > 0.1)
567                 Cvar_SetValue("sys_ticrate", bound(0.01, sys_ticrate.value, 0.1));
568         if (slowmo.value < 0)
569                 Cvar_SetValue("slowmo", 0);
570         if (host_framerate.value < 0.00001 && host_framerate.value != 0)
571                 Cvar_SetValue("host_framerate", 0);
572         if (cl_maxfps.value < 1)
573                 Cvar_SetValue("cl_maxfps", 1);
574
575         if (cls.timedemo)
576         {
577                 // disable time effects during timedemo
578                 cl.frametime = host_realframetime = host_frametime = realtime - oldrealtime;
579                 oldrealtime = realtime;
580                 return true;
581         }
582
583         // check if framerate is too high
584         // default to sys_ticrate (server framerate - presumably low) unless we
585         // have a good reason to run faster
586         timecap = host_framerate.value;
587         if (!timecap)
588                 timecap = sys_ticrate.value;
589         if (cls.state != ca_dedicated)
590         {
591                 if (cl_capturevideo_active)
592                         timecap = 1.0 / cl_capturevideo_framerate;
593                 else if (vid_activewindow)
594                         timecap = 1.0 / cl_maxfps.value;
595         }
596
597         timeleft = (oldrealtime - realtime) + timecap;
598         if (timeleft > 0)
599         {
600                 int msleft;
601                 // don't totally hog the CPU
602                 if (cls.state == ca_dedicated)
603                 {
604                         // if dedicated, try to use as little cpu as possible by waiting
605                         // just a little longer than necessary
606                         // (yes this means it doesn't quite keep up with the framerate)
607                         msleft = (int)ceil(timeleft * 1000);
608                 }
609                 else
610                 {
611                         // if not dedicated, try to hit exactly a steady framerate by not
612                         // sleeping the full amount
613                         msleft = (int)floor(timeleft * 1000);
614                 }
615                 if (msleft > 0)
616                         Sys_Sleep(msleft);
617                 return false;
618         }
619
620         // LordHavoc: copy into host_realframetime as well
621         host_realframetime = host_frametime = realtime - oldrealtime;
622         oldrealtime = realtime;
623
624         // apply slowmo scaling
625         host_frametime *= slowmo.value;
626
627         // host_framerate overrides all else
628         if (host_framerate.value)
629                 host_frametime = host_framerate.value;
630
631         // never run a frame longer than 1 second
632         if (host_frametime > 1)
633                 host_frametime = 1;
634
635         cl.frametime = host_frametime;
636
637         return true;
638 }
639
640
641 /*
642 ===================
643 Host_GetConsoleCommands
644
645 Add them exactly as if they had been typed at the console
646 ===================
647 */
648 void Host_GetConsoleCommands (void)
649 {
650         char *cmd;
651
652         while (1)
653         {
654                 cmd = Sys_ConsoleInput ();
655                 if (!cmd)
656                         break;
657                 Cbuf_AddText (cmd);
658         }
659 }
660
661
662 /*
663 ==================
664 Host_ServerFrame
665
666 ==================
667 */
668 void Host_ServerFrame (void)
669 {
670         // never run more than 20 frames at a time as a sanity limit
671         int framecount, framelimit = 20;
672         double advancetime;
673         static double frametimetotal = 0, lastservertime = 0;
674         frametimetotal += host_frametime;
675         // LordHavoc: cap server at sys_ticrate in networked games
676         if (frametimetotal < 0.001 || (!cl.islocalgame && cls.state == ca_connected && sv.active && ((realtime - lastservertime) < sys_ticrate.value)))
677                 return;
678         lastservertime = realtime;
679
680         // set the time and clear the general datagram
681         SV_ClearDatagram();
682
683         // run the world state
684         // don't allow simulation to run too fast or too slow or logic glitches can occur
685         for (framecount = 0;framecount < framelimit && frametimetotal > 0;framecount++, frametimetotal -= advancetime)
686         {
687                 advancetime = min(frametimetotal, sys_ticrate.value);
688
689                 // only advance time if not paused
690                 // the game also pauses in singleplayer when menu or console is used
691                 if (!sv.paused && (!cl.islocalgame || (key_dest == key_game && !key_consoleactive)))
692                         sv.frametime = advancetime;
693                 else
694                         sv.frametime = 0;
695
696                 pr_global_struct->frametime = sv.frametime;
697
698                 // check for network packets to the server each world step incase they
699                 // come in midframe (particularly if host is running really slow)
700                 NetConn_ServerFrame();
701
702                 // read client messages
703                 SV_RunClients();
704
705                 // move things around and think unless paused
706                 if (sv.frametime)
707                         SV_Physics();
708         }
709
710         // send all messages to the clients
711         SV_SendClientMessages();
712
713         // send an heartbeat if enough time has passed since the last one
714         NetConn_Heartbeat(0);
715 }
716
717
718 /*
719 ==================
720 Host_Frame
721
722 Runs all active servers
723 ==================
724 */
725 void _Host_Frame (float time)
726 {
727         static double time1 = 0;
728         static double time2 = 0;
729         static double time3 = 0;
730         int pass1, pass2, pass3;
731         usercmd_t cmd; // Used for receiving input
732
733         if (setjmp(host_abortserver))
734                 return;                 // something bad happened, or the server disconnected
735
736         // decide the simulation time
737         if (!Host_FilterTime(time))
738                 return;
739
740         // keep the random time dependent
741         rand();
742
743         cl.islocalgame = NetConn_IsLocalGame();
744
745         // get new key events
746         Sys_SendKeyEvents();
747
748         // allow mice or other external controllers to add commands
749         IN_Commands();
750
751         // Collect input into cmd
752         IN_ProcessMove(&cmd);
753
754         // process console commands
755         Cbuf_Execute();
756
757         // if running the server locally, make intentions now
758         if (cls.state == ca_connected && sv.active)
759                 CL_SendCmd(&cmd);
760
761 //-------------------
762 //
763 // server operations
764 //
765 //-------------------
766
767         // check for commands typed to the host
768         Host_GetConsoleCommands();
769
770         if (sv.active)
771                 Host_ServerFrame();
772
773 //-------------------
774 //
775 // client operations
776 //
777 //-------------------
778
779         cl.oldtime = cl.time;
780         cl.time += cl.frametime;
781
782         NetConn_ClientFrame();
783
784         if (cls.state == ca_connected)
785         {
786                 // if running the server remotely, send intentions now after
787                 // the incoming messages have been read
788                 if (!sv.active)
789                         CL_SendCmd(&cmd);
790                 CL_ReadFromServer();
791         }
792
793         //ui_update();
794
795         CL_VideoFrame();
796
797         // update video
798         if (host_speeds.integer)
799                 time1 = Sys_DoubleTime();
800
801         CL_UpdateScreen();
802
803         if (host_speeds.integer)
804                 time2 = Sys_DoubleTime();
805
806         // update audio
807         if (cls.signon == SIGNONS && cl.viewentity >= 0 && cl.viewentity < MAX_EDICTS && cl_entities[cl.viewentity].state_current.active)
808         {
809                 // LordHavoc: this used to use renderer variables (eww)
810                 S_Update(&cl_entities[cl.viewentity].render.matrix);
811         }
812         else
813                 S_Update(&identitymatrix);
814
815         CDAudio_Update();
816
817         if (host_speeds.integer)
818         {
819                 pass1 = (time1 - time3)*1000000;
820                 time3 = Sys_DoubleTime();
821                 pass2 = (time2 - time1)*1000000;
822                 pass3 = (time3 - time2)*1000000;
823                 Con_Printf("%6ius total %6ius server %6ius gfx %6ius snd\n",
824                                         pass1+pass2+pass3, pass1, pass2, pass3);
825         }
826
827         host_framecount++;
828         host_loopactive = true;
829
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         int i;
880
881         // LordHavoc: quake never seeded the random number generator before... heh
882         srand(time(NULL));
883
884         // FIXME: this is evil, but possibly temporary
885 // COMMANDLINEOPTION: Console: -developer enables warnings and other notices (RECOMMENDED for mod developers)
886         if (COM_CheckParm("-developer"))
887         {
888                 forcedeveloper = true;
889                 developer.integer = 1;
890                 developer.value = 1;
891         }
892
893         Cmd_Init();
894         Memory_Init_Commands();
895         R_Modules_Init();
896         Cbuf_Init();
897         V_Init();
898         COM_Init();
899         Host_InitLocal();
900         Key_Init();
901         Con_Init();
902         PR_Init();
903         PRVM_Init();
904         Mod_Init();
905         NetConn_Init();
906         SV_Init();
907
908         Con_Printf("Builddate: %s\n", buildstring);
909
910         if (cls.state != ca_dedicated)
911         {
912                 Palette_Init();
913                 MR_Init_Commands();
914                 VID_Shared_Init();
915                 VID_Init();
916
917                 Render_Init();
918                 S_Init();
919                 CDAudio_Init();
920                 CL_Init();
921         }
922
923         // only cvars are executed when host_initialized == false
924         if (gamemode == GAME_TEU)
925                 Cbuf_InsertText("exec teu.rc\n");
926         else
927                 Cbuf_InsertText("exec quake.rc\n");
928         Cbuf_Execute();
929
930         host_initialized = true;
931
932         Con_DPrint("========Initialized=========\n");
933
934         if (cls.state != ca_dedicated)
935         {
936                 VID_Open();
937                 CL_InitTEnts ();  // We must wait after sound startup to load tent sounds
938                 SCR_BeginLoadingPlaque();
939                 MR_Init();
940         }
941
942         // stuff it again so the first host frame will execute it again, this time
943         // in its entirety
944         if (gamemode == GAME_TEU)
945                 Cbuf_InsertText("exec teu.rc\n");
946         else
947                 Cbuf_InsertText("exec quake.rc\n");
948
949         if (!sv.active && (cls.state == ca_dedicated || COM_CheckParm("-listen")))
950         {
951                 if (gamemode == GAME_TRANSFUSION)
952                         Cbuf_InsertText ("map bb1\n");
953                 else if (gamemode == GAME_NEXUIZ)
954                         Cbuf_InsertText ("map nexdm01\n");
955                 else
956                         Cbuf_InsertText ("map start\n");
957         }
958
959         // check for special benchmark mode
960 // 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)
961         i = COM_CheckParm("-benchmark");
962         if (i && i + 1 < com_argc)
963                 Cbuf_InsertText(va("timedemo %s\n", com_argv[i + 1]));
964
965         Cbuf_Execute();
966
967         // We must wait for the log_file cvar to be initialized to start the log
968         Log_Start ();
969 }
970
971
972 /*
973 ===============
974 Host_Shutdown
975
976 FIXME: this is a callback from Sys_Quit and Sys_Error.  It would be better
977 to run quit through here before the final handoff to the sys code.
978 ===============
979 */
980 void Host_Shutdown(void)
981 {
982         static qboolean isdown = false;
983
984         if (isdown)
985         {
986                 Con_Print("recursive shutdown\n");
987                 return;
988         }
989         isdown = true;
990
991         // disconnect client from server if active
992         CL_Disconnect();
993
994         // shut down local server if active
995         Host_ShutdownServer (false);
996
997         // Shutdown menu
998         if(MR_Shutdown)
999                 MR_Shutdown();
1000
1001         // AK shutdown PRVM
1002         // AK hmm, no PRVM_Shutdown(); yet
1003
1004
1005         Host_SaveConfig_f();
1006
1007         CDAudio_Shutdown ();
1008         NetConn_Shutdown ();
1009
1010         if (cls.state != ca_dedicated)
1011         {
1012                 R_Modules_Shutdown();
1013                 VID_Shutdown();
1014         }
1015
1016         Sys_Shutdown();
1017         Log_Close ();
1018 }
1019