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