]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - host.c
more warnings fixed
[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 "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 // how many frames have occurred
40 // (checked by Host_Error and Host_SaveConfig_f)
41 int host_framecount;
42 // LordHavoc: set when quit is executed
43 qboolean host_shuttingdown = false;
44
45 double host_frametime;
46 // LordHavoc: the real frametime, before slowmo and clamping are applied (used for console scrolling)
47 double host_realframetime;
48 // the real time, without any slowmo or clamping
49 double realtime;
50 // realtime from previous frame
51 double oldrealtime;
52
53 // used for -developer commandline parameter, hacky hacky
54 int forcedeveloper;
55
56 // current client
57 client_t *host_client;
58
59 jmp_buf host_abortframe;
60
61 // pretend frames take this amount of time (in seconds), 0 = realtime
62 cvar_t host_framerate = {0, "host_framerate","0"};
63 // shows time used by certain subsystems
64 cvar_t host_speeds = {0, "host_speeds","0"};
65 // LordHavoc: framerate independent slowmo
66 cvar_t slowmo = {0, "slowmo", "1.0"};
67 // LordHavoc: framerate upper cap
68 cvar_t cl_maxfps = {CVAR_SAVE, "cl_maxfps", "1000"};
69
70 // print broadcast messages in dedicated mode
71 cvar_t sv_echobprint = {CVAR_SAVE, "sv_echobprint", "1"};
72
73 cvar_t sys_ticrate = {CVAR_SAVE, "sys_ticrate","0.05"};
74 cvar_t serverprofile = {0, "serverprofile","0"};
75
76 cvar_t fraglimit = {CVAR_NOTIFY, "fraglimit","0"};
77 cvar_t timelimit = {CVAR_NOTIFY, "timelimit","0"};
78 cvar_t teamplay = {CVAR_NOTIFY, "teamplay","0"};
79
80 cvar_t samelevel = {0, "samelevel","0"};
81 cvar_t noexit = {CVAR_NOTIFY, "noexit","0"};
82
83 cvar_t developer = {0, "developer","0"};
84
85 cvar_t skill = {0, "skill","1"};
86 cvar_t deathmatch = {0, "deathmatch","0"};
87 cvar_t coop = {0, "coop","0"};
88
89 cvar_t pausable = {0, "pausable","1"};
90
91 cvar_t temp1 = {0, "temp1","0"};
92
93 cvar_t timestamps = {CVAR_SAVE, "timestamps", "0"};
94 cvar_t timeformat = {CVAR_SAVE, "timeformat", "[%b %e %X] "};
95
96 /*
97 ================
98 Host_AbortCurrentFrame
99
100 aborts the current host frame and goes on with the next one
101 ================
102 */
103 void Host_AbortCurrentFrame(void)
104 {
105         longjmp (host_abortframe, 1);
106 }
107
108 /*
109 ================
110 Host_Error
111
112 This shuts down both the client and server
113 ================
114 */
115 void Host_Error (const char *error, ...)
116 {
117         static char hosterrorstring1[4096];
118         static char hosterrorstring2[4096];
119         static qboolean hosterror = false;
120         va_list argptr;
121
122         va_start (argptr,error);
123         dpvsnprintf (hosterrorstring1,sizeof(hosterrorstring1),error,argptr);
124         va_end (argptr);
125
126         Con_Printf("Host_Error: %s\n", hosterrorstring1);
127
128         // LordHavoc: if crashing very early, or currently shutting down, do
129         // Sys_Error instead
130         if (host_framecount < 3 || host_shuttingdown)
131                 Sys_Error ("Host_Error: %s", hosterrorstring1);
132
133         if (hosterror)
134                 Sys_Error ("Host_Error: recursively entered (original error was: %s    new error is: %s)", hosterrorstring2, hosterrorstring1);
135         hosterror = true;
136
137         strcpy(hosterrorstring2, hosterrorstring1);
138
139         CL_Parse_DumpPacket();
140
141         //PR_Crash();
142
143         // print out where the crash happened, if it was caused by QC (and do a cleanup)
144         PRVM_Crash();
145
146
147         Host_ShutdownServer (false);
148
149         if (cls.state == ca_dedicated)
150                 Sys_Error ("Host_Error: %s\n",hosterrorstring2);        // dedicated servers exit
151
152         CL_Disconnect ();
153         cls.demonum = -1;
154
155         hosterror = false;
156
157         Host_AbortCurrentFrame();
158 }
159
160 void Host_ServerOptions (void)
161 {
162         int i;
163
164         // general default
165         svs.maxclients = 8;
166
167 // COMMANDLINEOPTION: Server: -dedicated [playerlimit] starts a dedicated server (with a command console), default playerlimit is 8
168 // COMMANDLINEOPTION: Server: -listen [playerlimit] starts a multiplayer server with graphical client, like singleplayer but other players can connect, default playerlimit is 8
169         // if no client is in the executable or -dedicated is specified on
170         // commandline, start a dedicated server
171         i = COM_CheckParm ("-dedicated");
172         if (i || !cl_available)
173         {
174                 cls.state = ca_dedicated;
175                 // check for -dedicated specifying how many players
176                 if (i && i + 1 < com_argc && atoi (com_argv[i+1]) >= 1)
177                         svs.maxclients = atoi (com_argv[i+1]);
178                 if (COM_CheckParm ("-listen"))
179                         Con_Printf ("Only one of -dedicated or -listen can be specified");
180                 // default sv_public on for dedicated servers (often hosted by serious administrators), off for listen servers (often hosted by clueless users)
181                 Cvar_SetValue("sv_public", 1);
182         }
183         else if (cl_available)
184         {
185                 // client exists and not dedicated, check if -listen is specified
186                 cls.state = ca_disconnected;
187                 i = COM_CheckParm ("-listen");
188                 if (i)
189                 {
190                         // default players unless specified
191                         if (i + 1 < com_argc && atoi (com_argv[i+1]) >= 1)
192                                 svs.maxclients = atoi (com_argv[i+1]);
193                 }
194                 else
195                 {
196                         // default players in some games, singleplayer in most
197                         if (gamemode != GAME_GOODVSBAD2 && gamemode != GAME_NEXUIZ && gamemode != GAME_BATTLEMECH)
198                                 svs.maxclients = 1;
199                 }
200         }
201
202         svs.maxclients = bound(1, svs.maxclients, MAX_SCOREBOARD);
203
204         svs.clients = Mem_Alloc(sv_mempool, sizeof(client_t) * svs.maxclients);
205
206         if (svs.maxclients > 1 && !deathmatch.integer)
207                 Cvar_SetValueQuick(&deathmatch, 1);
208 }
209
210 /*
211 =======================
212 Host_InitLocal
213 ======================
214 */
215 void Host_SaveConfig_f(void);
216 void Host_InitLocal (void)
217 {
218         Cmd_AddCommand("saveconfig", Host_SaveConfig_f);
219
220         Cvar_RegisterVariable (&host_framerate);
221         Cvar_RegisterVariable (&host_speeds);
222         Cvar_RegisterVariable (&slowmo);
223         Cvar_RegisterVariable (&cl_maxfps);
224
225         Cvar_RegisterVariable (&sv_echobprint);
226
227         Cvar_RegisterVariable (&sys_ticrate);
228         Cvar_RegisterVariable (&serverprofile);
229
230         Cvar_RegisterVariable (&fraglimit);
231         Cvar_RegisterVariable (&timelimit);
232         Cvar_RegisterVariable (&teamplay);
233         Cvar_RegisterVariable (&samelevel);
234         Cvar_RegisterVariable (&noexit);
235         Cvar_RegisterVariable (&skill);
236         Cvar_RegisterVariable (&developer);
237         if (forcedeveloper) // make it real now that the cvar is registered
238                 Cvar_SetValue("developer", 1);
239         Cvar_RegisterVariable (&deathmatch);
240         Cvar_RegisterVariable (&coop);
241
242         Cvar_RegisterVariable (&pausable);
243
244         Cvar_RegisterVariable (&temp1);
245
246         Cvar_RegisterVariable (&timestamps);
247         Cvar_RegisterVariable (&timeformat);
248 }
249
250
251 /*
252 ===============
253 Host_SaveConfig_f
254
255 Writes key bindings and archived cvars to config.cfg
256 ===============
257 */
258 void Host_SaveConfig_f(void)
259 {
260         qfile_t *f;
261
262 // dedicated servers initialize the host but don't parse and set the
263 // config.cfg cvars
264         // LordHavoc: don't save a config if it crashed in startup
265         if (host_framecount >= 3 && cls.state != ca_dedicated)
266         {
267                 f = FS_Open ("config.cfg", "wb", false, false);
268                 if (!f)
269                 {
270                         Con_Print("Couldn't write config.cfg.\n");
271                         return;
272                 }
273
274                 Key_WriteBindings (f);
275                 Cvar_WriteVariables (f);
276
277                 FS_Close (f);
278         }
279 }
280
281
282 /*
283 =================
284 SV_ClientPrint
285
286 Sends text across to be displayed
287 FIXME: make this just a stuffed echo?
288 =================
289 */
290 void SV_ClientPrint(const char *msg)
291 {
292         MSG_WriteByte(&host_client->message, svc_print);
293         MSG_WriteString(&host_client->message, msg);
294 }
295
296 /*
297 =================
298 SV_ClientPrintf
299
300 Sends text across to be displayed
301 FIXME: make this just a stuffed echo?
302 =================
303 */
304 void SV_ClientPrintf(const char *fmt, ...)
305 {
306         va_list argptr;
307         char msg[4096];
308
309         va_start(argptr,fmt);
310         dpvsnprintf(msg,sizeof(msg),fmt,argptr);
311         va_end(argptr);
312
313         SV_ClientPrint(msg);
314 }
315
316 /*
317 =================
318 SV_BroadcastPrint
319
320 Sends text to all active clients
321 =================
322 */
323 void SV_BroadcastPrint(const char *msg)
324 {
325         int i;
326         client_t *client;
327
328         for (i = 0, client = svs.clients;i < svs.maxclients;i++, client++)
329         {
330                 if (client->spawned)
331                 {
332                         MSG_WriteByte(&client->message, svc_print);
333                         MSG_WriteString(&client->message, msg);
334                 }
335         }
336
337         if (sv_echobprint.integer && cls.state == ca_dedicated)
338                 Con_Print(msg);
339 }
340
341 /*
342 =================
343 SV_BroadcastPrintf
344
345 Sends text to all active clients
346 =================
347 */
348 void SV_BroadcastPrintf(const char *fmt, ...)
349 {
350         va_list argptr;
351         char msg[4096];
352
353         va_start(argptr,fmt);
354         dpvsnprintf(msg,sizeof(msg),fmt,argptr);
355         va_end(argptr);
356
357         SV_BroadcastPrint(msg);
358 }
359
360 /*
361 =================
362 Host_ClientCommands
363
364 Send text over to the client to be executed
365 =================
366 */
367 void Host_ClientCommands(const char *fmt, ...)
368 {
369         va_list argptr;
370         char string[1024];
371
372         va_start(argptr,fmt);
373         dpvsnprintf(string, sizeof(string), fmt, argptr);
374         va_end(argptr);
375
376         MSG_WriteByte(&host_client->message, svc_stufftext);
377         MSG_WriteString(&host_client->message, string);
378 }
379
380 /*
381 =====================
382 SV_DropClient
383
384 Called when the player is getting totally kicked off the host
385 if (crash = true), don't bother sending signofs
386 =====================
387 */
388 void SV_DropClient(qboolean crash)
389 {
390         int i;
391         Con_Printf("Client \"%s\" dropped\n", host_client->name);
392
393         // make sure edict is not corrupt (from a level change for example)
394         host_client->edict = PRVM_EDICT_NUM(host_client - svs.clients + 1);
395
396         if (host_client->netconnection)
397         {
398                 // free the client (the body stays around)
399                 if (!crash)
400                 {
401                         // LordHavoc: no opportunity for resending, so use unreliable 3 times
402                         MSG_WriteByte(&host_client->message, svc_disconnect);
403                         NetConn_SendUnreliableMessage(host_client->netconnection, &host_client->message);
404                         NetConn_SendUnreliableMessage(host_client->netconnection, &host_client->message);
405                         NetConn_SendUnreliableMessage(host_client->netconnection, &host_client->message);
406                 }
407                 // break the net connection
408                 NetConn_Close(host_client->netconnection);
409                 host_client->netconnection = NULL;
410         }
411
412         // call qc ClientDisconnect function
413         // LordHavoc: don't call QC if server is dead (avoids recursive
414         // Host_Error in some mods when they run out of edicts)
415         if (host_client->clientconnectcalled && sv.active && host_client->edict)
416         {
417                 // call the prog function for removing a client
418                 // this will set the body to a dead frame, among other things
419                 int saveSelf = prog->globals.server->self;
420                 host_client->clientconnectcalled = false;
421                 prog->globals.server->self = PRVM_EDICT_TO_PROG(host_client->edict);
422                 PRVM_ExecuteProgram(prog->globals.server->ClientDisconnect, "QC function ClientDisconnect is missing");
423                 prog->globals.server->self = saveSelf;
424         }
425
426         // remove leaving player from scoreboard
427         //host_client->edict->fields.server->netname = PRVM_SetEngineString(host_client->name);
428         //if ((val = PRVM_GETEDICTFIELDVALUE(host_client->edict, eval_clientcolors)))
429         //      val->_float = 0;
430         //host_client->edict->fields.server->frags = 0;
431         host_client->name[0] = 0;
432         host_client->colors = 0;
433         host_client->frags = 0;
434         // send notification to all clients
435         // get number of client manually just to make sure we get it right...
436         i = host_client - svs.clients;
437         MSG_WriteByte (&sv.reliable_datagram, svc_updatename);
438         MSG_WriteByte (&sv.reliable_datagram, i);
439         MSG_WriteString (&sv.reliable_datagram, host_client->name);
440         MSG_WriteByte (&sv.reliable_datagram, svc_updatecolors);
441         MSG_WriteByte (&sv.reliable_datagram, i);
442         MSG_WriteByte (&sv.reliable_datagram, host_client->colors);
443         MSG_WriteByte (&sv.reliable_datagram, svc_updatefrags);
444         MSG_WriteByte (&sv.reliable_datagram, i);
445         MSG_WriteShort (&sv.reliable_datagram, host_client->frags);
446
447         // free the client now
448         if (host_client->entitydatabase)
449                 EntityFrame_FreeDatabase(host_client->entitydatabase);
450         if (host_client->entitydatabase4)
451                 EntityFrame4_FreeDatabase(host_client->entitydatabase4);
452         if (host_client->entitydatabase5)
453                 EntityFrame5_FreeDatabase(host_client->entitydatabase5);
454
455         if (sv.active)
456         {
457                 // clear a fields that matter to DP_SV_CLIENTNAME and DP_SV_CLIENTCOLORS, and also frags
458                 PRVM_ED_ClearEdict(host_client->edict);
459         }
460
461         // clear the client struct (this sets active to false)
462         memset(host_client, 0, sizeof(*host_client));
463
464         // update server listing on the master because player count changed
465         // (which the master uses for filtering empty/full servers)
466         NetConn_Heartbeat(1);
467 }
468
469 /*
470 ==================
471 Host_ShutdownServer
472
473 This only happens at the end of a game, not between levels
474 ==================
475 */
476 void Host_ShutdownServer(qboolean crash)
477 {
478         int i, count;
479         sizebuf_t buf;
480         char message[4];
481
482         Con_DPrintf("Host_ShutdownServer\n");
483
484         if (!sv.active)
485                 return;
486
487         SV_VM_Begin();
488
489         NetConn_Heartbeat(2);
490         NetConn_Heartbeat(2);
491
492 // make sure all the clients know we're disconnecting
493         buf.data = message;
494         buf.maxsize = 4;
495         buf.cursize = 0;
496         MSG_WriteByte(&buf, svc_disconnect);
497         count = NetConn_SendToAll(&buf, 5);
498         if (count)
499                 Con_Printf("Host_ShutdownServer: NetConn_SendToAll failed for %u clients\n", count);
500
501         for (i = 0, host_client = svs.clients;i < svs.maxclients;i++, host_client++)
502                 if (host_client->active) {
503                         SV_DropClient(crash); // server shutdown
504                 }
505
506         NetConn_CloseServerPorts();
507
508         sv.active = false;
509 //
510 // clear structures
511 //
512         memset(&sv, 0, sizeof(sv));
513         memset(svs.clients, 0, svs.maxclients*sizeof(client_t));
514
515         PRVM_ResetProg();
516
517         SV_VM_End();
518 }
519
520
521 /*
522 ================
523 Host_ClearMemory
524
525 This clears all the memory used by both the client and server, but does
526 not reinitialize anything.
527 ================
528 */
529 void Host_ClearMemory (void)
530 {
531         Con_DPrint("Clearing memory\n");
532         Mod_ClearAll ();
533
534         cls.signon = 0;
535         memset (&sv, 0, sizeof(sv));
536         memset (&cl, 0, sizeof(cl));
537 }
538
539
540 //============================================================================
541
542 /*
543 ===================
544 Host_FilterTime
545
546 Returns false if the time is too short to run a frame
547 ===================
548 */
549 extern qboolean cl_capturevideo_active;
550 extern double cl_capturevideo_framerate;
551 extern qfile_t *cl_capturevideo_soundfile;
552 qboolean Host_FilterTime (double time)
553 {
554         double timecap, timeleft;
555         realtime += time;
556
557         if (sys_ticrate.value < 0.00999 || sys_ticrate.value > 0.10001)
558                 Cvar_SetValue("sys_ticrate", bound(0.01, sys_ticrate.value, 0.1));
559         if (slowmo.value < 0)
560                 Cvar_SetValue("slowmo", 0);
561         if (host_framerate.value < 0.00001 && host_framerate.value != 0)
562                 Cvar_SetValue("host_framerate", 0);
563         if (cl_maxfps.value < 1)
564                 Cvar_SetValue("cl_maxfps", 1);
565
566         if (cls.timedemo)
567         {
568                 // disable time effects during timedemo
569                 cl.frametime = host_realframetime = host_frametime = realtime - oldrealtime;
570                 oldrealtime = realtime;
571                 return true;
572         }
573
574         // check if framerate is too high
575         // default to sys_ticrate (server framerate - presumably low) unless we
576         // have a good reason to run faster
577         timecap = host_framerate.value;
578         if (!timecap)
579                 timecap = sys_ticrate.value;
580         if (cls.state != ca_dedicated)
581         {
582                 if (cl_capturevideo_active)
583                         timecap = 1.0 / cl_capturevideo_framerate;
584                 else if (vid_activewindow)
585                         timecap = 1.0 / cl_maxfps.value;
586         }
587
588         timeleft = timecap - (realtime - oldrealtime);
589         if (timeleft > 0)
590         {
591                 int msleft;
592                 // don't totally hog the CPU
593                 if (cls.state == ca_dedicated)
594                 {
595                         // if dedicated, try to use as little cpu as possible by waiting
596                         // just a little longer than necessary
597                         // (yes this means it doesn't quite keep up with the framerate)
598                         msleft = (int)ceil(timeleft * 1000);
599                 }
600                 else
601                 {
602                         // if not dedicated, try to hit exactly a steady framerate by not
603                         // sleeping the full amount
604                         msleft = (int)floor(timeleft * 1000);
605                 }
606                 if (msleft > 0)
607                         Sys_Sleep(msleft);
608                 return false;
609         }
610
611         // LordHavoc: copy into host_realframetime as well
612         host_realframetime = host_frametime = realtime - oldrealtime;
613         oldrealtime = realtime;
614
615         if (cl_capturevideo_active && !cl_capturevideo_soundfile)
616                 host_frametime = timecap;
617
618         // apply slowmo scaling
619         host_frametime *= slowmo.value;
620
621         // host_framerate overrides all else
622         if (host_framerate.value)
623                 host_frametime = host_framerate.value;
624
625         // never run a frame longer than 1 second
626         if (host_frametime > 1)
627                 host_frametime = 1;
628
629         cl.frametime = host_frametime;
630
631         return true;
632 }
633
634
635 /*
636 ===================
637 Host_GetConsoleCommands
638
639 Add them exactly as if they had been typed at the console
640 ===================
641 */
642 void Host_GetConsoleCommands (void)
643 {
644         char *cmd;
645
646         while (1)
647         {
648                 cmd = Sys_ConsoleInput ();
649                 if (!cmd)
650                         break;
651                 Cbuf_AddText (cmd);
652         }
653 }
654
655 /*
656 ==================
657 Host_ServerFrame
658
659 ==================
660 */
661 void Host_ServerFrame (void)
662 {
663         // never run more than 5 frames at a time as a sanity limit
664         int framecount, framelimit = 5;
665         double advancetime;
666         if (!sv.active)
667         {
668                 sv.timer = 0;
669                 return;
670         }
671         sv.timer += host_realframetime;
672
673
674         // run the world state
675         // don't allow simulation to run too fast or too slow or logic glitches can occur
676         for (framecount = 0;framecount < framelimit && sv.timer > 0;framecount++)
677         {
678                 // setup the VM frame
679                 SV_VM_Begin();
680
681                 if (cl.islocalgame)
682                         advancetime = min(sv.timer, sys_ticrate.value);
683                 else
684                         advancetime = sys_ticrate.value;
685                 sv.timer -= advancetime;
686
687                 // only advance time if not paused
688                 // the game also pauses in singleplayer when menu or console is used
689                 sv.frametime = advancetime * slowmo.value;
690                 if (host_framerate.value)
691                         sv.frametime = host_framerate.value;
692                 if (sv.paused || (cl.islocalgame && (key_dest != key_game || key_consoleactive)))
693                         sv.frametime = 0;
694
695                 // set the time and clear the general datagram
696                 SV_ClearDatagram();
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                 // move things around and think unless paused
703                 if (sv.frametime)
704                         SV_Physics();
705
706                 // send all messages to the clients
707                 SV_SendClientMessages();
708
709                 // send an heartbeat if enough time has passed since the last one
710                 NetConn_Heartbeat(0);
711
712                 // end the server VM frame
713                 SV_VM_End();
714         }
715
716
717         // if we fell behind too many frames just don't worry about it
718         if (sv.timer > 0)
719                 sv.timer = 0;
720 }
721
722
723 /*
724 ==================
725 Host_Frame
726
727 Runs all active servers
728 ==================
729 */
730 void _Host_Frame (float time)
731 {
732         static double time1 = 0;
733         static double time2 = 0;
734         static double time3 = 0;
735         int pass1, pass2, pass3;
736
737         if (setjmp(host_abortframe))
738                 return;                 // something bad happened, or the server disconnected
739
740         // decide the simulation time
741         if (!Host_FilterTime(time))
742                 return;
743
744         // keep the random time dependent
745         rand();
746
747         cl.islocalgame = NetConn_IsLocalGame();
748
749         // get new key events
750         Sys_SendKeyEvents();
751
752         // Collect input into cmd
753         CL_Move();
754
755         // process console commands
756         Cbuf_Execute();
757
758         // if running the server locally, make intentions now
759         if (cls.state == ca_connected && sv.active)
760                 CL_SendCmd();
761
762 //-------------------
763 //
764 // server operations
765 //
766 //-------------------
767
768         // check for commands typed to the host
769         Host_GetConsoleCommands();
770
771         if (sv.active)
772                 Host_ServerFrame();
773
774 //-------------------
775 //
776 // client operations
777 //
778 //-------------------
779
780         cl.oldtime = cl.time;
781         cl.time += cl.frametime;
782
783         NetConn_ClientFrame();
784
785         if (cls.state == ca_connected)
786         {
787                 // if running the server remotely, send intentions now after
788                 // the incoming messages have been read
789                 if (!sv.active)
790                         CL_SendCmd();
791                 CL_ReadFromServer();
792         }
793
794         //ui_update();
795
796         CL_VideoFrame();
797
798         // update video
799         if (host_speeds.integer)
800                 time1 = Sys_DoubleTime();
801
802         CL_UpdateScreen();
803
804         if (host_speeds.integer)
805                 time2 = Sys_DoubleTime();
806
807         // update audio
808         S_Update(&r_refdef.viewentitymatrix);
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 }
824
825 void Host_Frame (float time)
826 {
827         double time1, time2;
828         static double timetotal;
829         static int timecount;
830         int i, c, m;
831
832         if (!serverprofile.integer)
833         {
834                 _Host_Frame (time);
835                 return;
836         }
837
838         time1 = Sys_DoubleTime ();
839         _Host_Frame (time);
840         time2 = Sys_DoubleTime ();
841
842         timetotal += time2 - time1;
843         timecount++;
844
845         if (timecount < 1000)
846                 return;
847
848         m = timetotal*1000/timecount;
849         timecount = 0;
850         timetotal = 0;
851         c = 0;
852         for (i=0 ; i<svs.maxclients ; i++)
853         {
854                 if (svs.clients[i].active)
855                         c++;
856         }
857
858         Con_Printf("serverprofile: %2i clients %2i msec\n",  c,  m);
859 }
860
861 //============================================================================
862
863 qboolean vid_opened = false;
864 void Host_StartVideo(void)
865 {
866         if (!vid_opened && cls.state != ca_dedicated)
867         {
868                 vid_opened = true;
869                 VID_Start();
870                 CDAudio_Startup();
871         }
872 }
873
874 char engineversion[128];
875
876 qboolean sys_nostdout = false;
877
878 extern void Render_Init(void);
879 extern void Mathlib_Init(void);
880 extern void FS_Init(void);
881 extern void FS_Shutdown(void);
882 extern void PR_Cmd_Init(void);
883 extern void COM_Init_Commands(void);
884 extern void FS_Init_Commands(void);
885 extern void COM_CheckRegistered(void);
886 extern qboolean host_stuffcmdsrun;
887
888 /*
889 ====================
890 Host_Init
891 ====================
892 */
893 void Host_Init (void)
894 {
895         int i;
896         const char* os;
897
898         // LordHavoc: quake never seeded the random number generator before... heh
899         srand(time(NULL));
900
901         // used by everything
902         Memory_Init();
903
904         // initialize console and logging
905         Con_Init();
906
907         // initialize console command/cvar/alias/command execution systems
908         Cmd_Init();
909
910         // parse commandline
911         COM_InitArgv();
912
913         // initialize console window (only used by sys_win.c)
914         Sys_InitConsole();
915
916         // detect gamemode from commandline options or executable name
917         COM_InitGameType();
918
919         // construct a version string for the corner of the console
920 #if defined(__linux__)
921         os = "Linux";
922 #elif defined(WIN32)
923         os = "Windows";
924 #elif defined(__FreeBSD__)
925         os = "FreeBSD";
926 #elif defined(__NetBSD__)
927         os = "NetBSD";
928 #elif defined(__OpenBSD__)
929         os = "OpenBSD";
930 #elif defined(MACOSX)
931         os = "Mac OS X";
932 #else
933         os = "Unknown";
934 #endif
935         dpsnprintf (engineversion, sizeof (engineversion), "%s %s %s", gamename, os, buildstring);
936
937 // COMMANDLINEOPTION: Console: -nostdout disables text output to the terminal the game was launched from
938         if (COM_CheckParm("-nostdout"))
939                 sys_nostdout = 1;
940         else
941                 Con_Printf("%s\n", engineversion);
942
943         // FIXME: this is evil, but possibly temporary
944 // COMMANDLINEOPTION: Console: -developer enables warnings and other notices (RECOMMENDED for mod developers)
945         if (COM_CheckParm("-developer"))
946         {
947                 forcedeveloper = true;
948                 developer.integer = 1;
949                 developer.value = 1;
950         }
951
952         // initialize filesystem (including fs_basedir, fs_gamedir, -path, -game, scr_screenshot_name)
953         FS_Init();
954
955         // initialize various cvars that could not be initialized earlier
956         Memory_Init_Commands();
957         Con_Init_Commands();
958         Cmd_Init_Commands();
959         Sys_Init_Commands();
960         COM_Init_Commands();
961         FS_Init_Commands();
962         COM_CheckRegistered();
963
964         // initialize ixtable
965         Mathlib_Init();
966
967         NetConn_Init();
968         //PR_Init();
969         //PR_Cmd_Init();
970         PRVM_Init();
971         Mod_Init();
972         SV_Init();
973         Host_InitCommands();
974         Host_InitLocal();
975         Host_ServerOptions();
976
977         if (cls.state != ca_dedicated)
978         {
979                 Con_Printf("Initializing client\n");
980
981                 R_Modules_Init();
982                 Palette_Init();
983                 MR_Init_Commands();
984                 VID_Shared_Init();
985                 VID_Init();
986                 Render_Init();
987                 S_Init();
988                 CDAudio_Init();
989                 Key_Init();
990                 V_Init();
991                 CL_Init();
992         }
993
994         // set up the default startmap_sp and startmap_dm aliases (mods can
995         // override these) and then execute the quake.rc startup script
996         if (gamemode == GAME_NEHAHRA)
997                 Cbuf_AddText("alias startmap_sp \"map nehstart\"\nalias startmap_dm \"map nehstart\"\nexec quake.rc\n");
998         else if (gamemode == GAME_TRANSFUSION)
999                 Cbuf_AddText("alias startmap_sp \"map e1m1\"\n""alias startmap_dm \"map bb1\"\nexec quake.rc\n");
1000         else if (gamemode == GAME_NEXUIZ)
1001                 Cbuf_AddText("alias startmap_sp \"map nexdm01\"\nalias startmap_dm \"map nexdm01\"\nexec quake.rc\n");
1002         else if (gamemode == GAME_TEU)
1003                 Cbuf_AddText("alias startmap_sp \"map start\"\nalias startmap_dm \"map start\"\nexec teu.rc\n");
1004         else
1005                 Cbuf_AddText("alias startmap_sp \"map start\"\nalias startmap_dm \"map start\"\nexec quake.rc\n");
1006         Cbuf_Execute();
1007
1008         // if stuffcmds wasn't run, then quake.rc is probably missing, use default
1009         if (!host_stuffcmdsrun)
1010         {
1011                 Cbuf_AddText("exec default.cfg\nexec config.cfg\nexec autoexec.cfg\nstuffcmds\n");
1012                 Cbuf_Execute();
1013         }
1014
1015         // save console log up to this point to log_file if it was set by configs
1016         Log_Start();
1017
1018         // FIXME: put this into some neat design, but the menu should be allowed to crash
1019         // without crashing the whole game, so this should just be a short-time solution
1020         Host_StartVideo();
1021
1022         // here comes the not so critical stuff
1023         if (setjmp(host_abortframe)) {
1024                 return;
1025         }
1026
1027         if (cls.state != ca_dedicated)
1028         {
1029                 MR_Init();
1030         }
1031
1032         // check for special benchmark mode
1033 // 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)
1034         i = COM_CheckParm("-benchmark");
1035         if (i && i + 1 < com_argc)
1036         if (!sv.active && !cls.demoplayback && !cls.connect_trying)
1037         {
1038                 Cbuf_AddText(va("timedemo %s\n", com_argv[i + 1]));
1039                 Cbuf_Execute();
1040         }
1041
1042         // check for special demo mode
1043 // COMMANDLINEOPTION: Client: -demo <demoname> runs a playdemo and quits
1044         i = COM_CheckParm("-demo");
1045         if (i && i + 1 < com_argc)
1046         if (!sv.active && !cls.demoplayback && !cls.connect_trying)
1047         {
1048                 Cbuf_AddText(va("playdemo %s\n", com_argv[i + 1]));
1049                 Cbuf_Execute();
1050         }
1051
1052         // check for special demolooponly mode
1053 // COMMANDLINEOPTION: Client: -demolooponly <demoname> runs a playdemo and quits
1054         i = COM_CheckParm("-demolooponly");
1055         if (i && i + 1 < com_argc)
1056         if (!sv.active && !cls.demoplayback && !cls.connect_trying)
1057         {
1058                 Cbuf_AddText(va("playdemo %s\n", com_argv[i + 1]));
1059                 Cbuf_Execute();
1060         }
1061
1062         if (cls.state == ca_dedicated || COM_CheckParm("-listen"))
1063         if (!sv.active && !cls.demoplayback && !cls.connect_trying)
1064         {
1065                 Cbuf_AddText("startmap_dm\n");
1066                 Cbuf_Execute();
1067         }
1068
1069         if (!sv.active && !cls.demoplayback && !cls.connect_trying)
1070         {
1071                 if (gamemode == GAME_NEXUIZ)
1072                         Cbuf_AddText("togglemenu\nplayvideo logo\ncd loop 1\n");
1073                 else
1074                         Cbuf_AddText("togglemenu\n");
1075                 Cbuf_Execute();
1076         }
1077
1078         Con_DPrint("========Initialized=========\n");
1079
1080         Host_StartVideo();
1081 }
1082
1083
1084 /*
1085 ===============
1086 Host_Shutdown
1087
1088 FIXME: this is a callback from Sys_Quit and Sys_Error.  It would be better
1089 to run quit through here before the final handoff to the sys code.
1090 ===============
1091 */
1092 void Host_Shutdown(void)
1093 {
1094         static qboolean isdown = false;
1095
1096         if (isdown)
1097         {
1098                 Con_Print("recursive shutdown\n");
1099                 return;
1100         }
1101         isdown = true;
1102
1103         // be quiet while shutting down
1104         S_StopAllSounds();
1105
1106         // disconnect client from server if active
1107         CL_Disconnect();
1108
1109         // shut down local server if active
1110         Host_ShutdownServer (false);
1111
1112         // Shutdown menu
1113         if(MR_Shutdown)
1114                 MR_Shutdown();
1115
1116         // AK shutdown PRVM
1117         // AK hmm, no PRVM_Shutdown(); yet
1118
1119         CL_Video_Shutdown();
1120
1121         Host_SaveConfig_f();
1122
1123         CDAudio_Shutdown ();
1124         S_Terminate ();
1125         NetConn_Shutdown ();
1126         //PR_Shutdown ();
1127
1128         if (cls.state != ca_dedicated)
1129         {
1130                 R_Modules_Shutdown();
1131                 VID_Shutdown();
1132         }
1133
1134         Cmd_Shutdown();
1135         CL_Shutdown();
1136         Sys_Shutdown();
1137         Log_Close();
1138         FS_Shutdown();
1139         Memory_Shutdown();
1140 }
1141