]> git.xonotic.org Git - xonotic/darkplaces.git/blob - host.c
host: Adjust timers at the end of each client or server frame, and other tweaks
[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 "quakedef.h"
23
24 #include <time.h>
25 #include "libcurl.h"
26 #include "cdaudio.h"
27 #include "cl_video.h"
28 #include "progsvm.h"
29 #include "csprogs.h"
30 #include "sv_demo.h"
31 #include "snd_main.h"
32 #include "taskqueue.h"
33 #include "thread.h"
34 #include "utf8lib.h"
35
36 /*
37
38 A server can always be started, even if the system started out as a client
39 to a remote system.
40
41 A client can NOT be started if the system started as a dedicated server.
42
43 Memory is cleared / released when a server or client begins, not when they end.
44
45 */
46
47 host_t host;
48
49 // pretend frames take this amount of time (in seconds), 0 = realtime
50 cvar_t host_framerate = {CVAR_CLIENT | CVAR_SERVER, "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 cl_maxfps if you want to limit your framerate instead, or sys_ticrate to limit server speed"};
51 cvar_t cl_maxphysicsframesperserverframe = {CVAR_CLIENT, "cl_maxphysicsframesperserverframe","10", "maximum number of physics frames per server frame"};
52 // shows time used by certain subsystems
53 cvar_t host_speeds = {CVAR_CLIENT | CVAR_SERVER, "host_speeds","0", "reports how much time is used in server/graphics/sound"};
54 cvar_t host_maxwait = {CVAR_CLIENT | CVAR_SERVER, "host_maxwait","1000", "maximum sleep time requested from the operating system in millisecond. Larger sleeps will be done using multiple host_maxwait length sleeps. Lowering this value will increase CPU load, but may help working around problems with accuracy of sleep times."};
55 cvar_t cl_minfps = {CVAR_CLIENT | CVAR_SAVE, "cl_minfps", "40", "minimum fps target - while the rendering performance is below this, it will drift toward lower quality"};
56 cvar_t cl_minfps_fade = {CVAR_CLIENT | CVAR_SAVE, "cl_minfps_fade", "1", "how fast the quality adapts to varying framerate"};
57 cvar_t cl_minfps_qualitymax = {CVAR_CLIENT | CVAR_SAVE, "cl_minfps_qualitymax", "1", "highest allowed drawdistance multiplier"};
58 cvar_t cl_minfps_qualitymin = {CVAR_CLIENT | CVAR_SAVE, "cl_minfps_qualitymin", "0.25", "lowest allowed drawdistance multiplier"};
59 cvar_t cl_minfps_qualitymultiply = {CVAR_CLIENT | CVAR_SAVE, "cl_minfps_qualitymultiply", "0.2", "multiplier for quality changes in quality change per second render time (1 assumes linearity of quality and render time)"};
60 cvar_t cl_minfps_qualityhysteresis = {CVAR_CLIENT | CVAR_SAVE, "cl_minfps_qualityhysteresis", "0.05", "reduce all quality increments by this to reduce flickering"};
61 cvar_t cl_minfps_qualitystepmax = {CVAR_CLIENT | CVAR_SAVE, "cl_minfps_qualitystepmax", "0.1", "maximum quality change in a single frame"};
62 cvar_t cl_minfps_force = {CVAR_CLIENT, "cl_minfps_force", "0", "also apply quality reductions in timedemo/capturevideo"};
63 cvar_t cl_maxfps = {CVAR_CLIENT | CVAR_SAVE, "cl_maxfps", "0", "maximum fps cap, 0 = unlimited, if game is running faster than this it will wait before running another frame (useful to make cpu time available to other programs)"};
64 cvar_t cl_maxfps_alwayssleep = {CVAR_CLIENT, "cl_maxfps_alwayssleep","1", "gives up some processing time to other applications each frame, value in milliseconds, disabled if cl_maxfps is 0"};
65 cvar_t cl_maxidlefps = {CVAR_CLIENT | CVAR_SAVE, "cl_maxidlefps", "20", "maximum fps cap when the game is not the active window (makes cpu time available to other programs"};
66
67 cvar_t developer = {CVAR_CLIENT | CVAR_SERVER | CVAR_SAVE, "developer","0", "shows debugging messages and information (recommended for all developers and level designers); the value -1 also suppresses buffering and logging these messages"};
68 cvar_t developer_extra = {CVAR_CLIENT | CVAR_SERVER, "developer_extra", "0", "prints additional debugging messages, often very verbose!"};
69 cvar_t developer_insane = {CVAR_CLIENT | CVAR_SERVER, "developer_insane", "0", "prints huge streams of information about internal workings, entire contents of files being read/written, etc.  Not recommended!"};
70 cvar_t developer_loadfile = {CVAR_CLIENT | CVAR_SERVER, "developer_loadfile","0", "prints name and size of every file loaded via the FS_LoadFile function (which is almost everything)"};
71 cvar_t developer_loading = {CVAR_CLIENT | CVAR_SERVER, "developer_loading","0", "prints information about files as they are loaded or unloaded successfully"};
72 cvar_t developer_entityparsing = {CVAR_CLIENT, "developer_entityparsing", "0", "prints detailed network entities information each time a packet is received"};
73
74 cvar_t timestamps = {CVAR_CLIENT | CVAR_SERVER | CVAR_SAVE, "timestamps", "0", "prints timestamps on console messages"};
75 cvar_t timeformat = {CVAR_CLIENT | CVAR_SERVER | CVAR_SAVE, "timeformat", "[%Y-%m-%d %H:%M:%S] ", "time format to use on timestamped console messages"};
76
77 cvar_t sessionid = {CVAR_CLIENT | CVAR_SERVER | CVAR_READONLY, "sessionid", "", "ID of the current session (use the -sessionid parameter to set it); this is always either empty or begins with a dot (.)"};
78 cvar_t locksession = {CVAR_CLIENT | CVAR_SERVER, "locksession", "0", "Lock the session? 0 = no, 1 = yes and abort on failure, 2 = yes and continue on failure"};
79
80 /*
81 ================
82 Host_AbortCurrentFrame
83
84 aborts the current host frame and goes on with the next one
85 ================
86 */
87 void Host_AbortCurrentFrame(void) DP_FUNC_NORETURN;
88 void Host_AbortCurrentFrame(void)
89 {
90         // in case we were previously nice, make us mean again
91         Sys_MakeProcessMean();
92
93         longjmp (host.abortframe, 1);
94 }
95
96 /*
97 ================
98 Host_Error
99
100 This shuts down both the client and server
101 ================
102 */
103 void Host_Error (const char *error, ...)
104 {
105         static char hosterrorstring1[MAX_INPUTLINE]; // THREAD UNSAFE
106         static char hosterrorstring2[MAX_INPUTLINE]; // THREAD UNSAFE
107         static qboolean hosterror = false;
108         va_list argptr;
109
110         // turn off rcon redirect if it was active when the crash occurred
111         // to prevent loops when it is a networking problem
112         Con_Rcon_Redirect_Abort();
113
114         va_start (argptr,error);
115         dpvsnprintf (hosterrorstring1,sizeof(hosterrorstring1),error,argptr);
116         va_end (argptr);
117
118         Con_Printf(CON_ERROR "Host_Error: %s\n", hosterrorstring1);
119
120         // LadyHavoc: if crashing very early, or currently shutting down, do
121         // Sys_Error instead
122         if (host.framecount < 3 || host.state == host_shutdown)
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         strlcpy(hosterrorstring2, hosterrorstring1, sizeof(hosterrorstring2));
130
131         CL_Parse_DumpPacket();
132
133         CL_Parse_ErrorCleanUp();
134
135         //PR_Crash();
136
137         // print out where the crash happened, if it was caused by QC (and do a cleanup)
138         PRVM_Crash(SVVM_prog);
139         PRVM_Crash(CLVM_prog);
140 #ifdef CONFIG_MENU
141         PRVM_Crash(MVM_prog);
142 #endif
143
144         cl.csqc_loaded = false;
145         Cvar_SetValueQuick(&csqc_progcrc, -1);
146         Cvar_SetValueQuick(&csqc_progsize, -1);
147
148         SV_LockThreadMutex();
149         SV_Shutdown ();
150         SV_UnlockThreadMutex();
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 static 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 < sys.argc && atoi (sys.argv[i+1]) >= 1)
180                         svs.maxclients = atoi (sys.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(&cvars_all, "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 < sys.argc && atoi (sys.argv[i+1]) >= 1)
195                                 svs.maxclients = atoi (sys.argv[i+1]);
196                 }
197                 else
198                 {
199                         // default players in some games, singleplayer in most
200                         if (gamemode != GAME_GOODVSBAD2 && !IS_NEXUIZ_DERIVED(gamemode) && gamemode != GAME_BATTLEMECH)
201                                 svs.maxclients = 1;
202                 }
203         }
204
205         svs.maxclients = svs.maxclients_next = 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_Quit_f
216 ==================
217 */
218 void Host_Quit_f(cmd_state_t *cmd)
219 {
220         if(host.state == host_shutdown)
221                 Con_Printf("shutting down already!\n");
222         else
223                 host.state = host_shutdown;
224 }
225
226 static void Host_Version_f(cmd_state_t *cmd)
227 {
228         Con_Printf("Version: %s build %s\n", gamename, buildstring);
229 }
230
231 /*
232 =======================
233 Host_InitLocal
234 ======================
235 */
236 void Host_SaveConfig_f(cmd_state_t *cmd);
237 void Host_LoadConfig_f(cmd_state_t *cmd);
238 extern cvar_t sv_writepicture_quality;
239 extern cvar_t r_texture_jpeg_fastpicmip;
240 static void Host_InitLocal (void)
241 {
242         Cmd_AddCommand(CMD_SHARED, "quit", Host_Quit_f, "quit the game");
243         Cmd_AddCommand(CMD_SHARED, "version", Host_Version_f, "print engine version");
244         Cmd_AddCommand(CMD_SHARED, "saveconfig", Host_SaveConfig_f, "save settings to config.cfg (or a specified filename) immediately (also automatic when quitting)");
245         Cmd_AddCommand(CMD_SHARED, "loadconfig", Host_LoadConfig_f, "reset everything and reload configs");
246         Cvar_RegisterVariable (&cl_maxphysicsframesperserverframe);
247         Cvar_RegisterVariable (&host_framerate);
248         Cvar_RegisterVariable (&host_speeds);
249         Cvar_RegisterVariable (&host_maxwait);
250         Cvar_RegisterVariable (&cl_minfps);
251         Cvar_RegisterVariable (&cl_minfps_fade);
252         Cvar_RegisterVariable (&cl_minfps_qualitymax);
253         Cvar_RegisterVariable (&cl_minfps_qualitymin);
254         Cvar_RegisterVariable (&cl_minfps_qualitystepmax);
255         Cvar_RegisterVariable (&cl_minfps_qualityhysteresis);
256         Cvar_RegisterVariable (&cl_minfps_qualitymultiply);
257         Cvar_RegisterVariable (&cl_minfps_force);
258         Cvar_RegisterVariable (&cl_maxfps);
259         Cvar_RegisterVariable (&cl_maxfps_alwayssleep);
260         Cvar_RegisterVariable (&cl_maxidlefps);
261
262         Cvar_RegisterVariable (&developer);
263         Cvar_RegisterVariable (&developer_extra);
264         Cvar_RegisterVariable (&developer_insane);
265         Cvar_RegisterVariable (&developer_loadfile);
266         Cvar_RegisterVariable (&developer_loading);
267         Cvar_RegisterVariable (&developer_entityparsing);
268
269         Cvar_RegisterVariable (&timestamps);
270         Cvar_RegisterVariable (&timeformat);
271
272         Cvar_RegisterVariable (&sv_writepicture_quality);
273         Cvar_RegisterVariable (&r_texture_jpeg_fastpicmip);
274 }
275
276
277 /*
278 ===============
279 Host_SaveConfig_f
280
281 Writes key bindings and archived cvars to config.cfg
282 ===============
283 */
284 static void Host_SaveConfig_to(const char *file)
285 {
286         qfile_t *f;
287
288 // dedicated servers initialize the host but don't parse and set the
289 // config.cfg cvars
290         // LadyHavoc: don't save a config if it crashed in startup
291         if (host.framecount >= 3 && cls.state != ca_dedicated && !COM_CheckParm("-benchmark") && !COM_CheckParm("-capturedemo"))
292         {
293                 f = FS_OpenRealFile(file, "wb", false);
294                 if (!f)
295                 {
296                         Con_Printf(CON_ERROR "Couldn't write %s.\n", file);
297                         return;
298                 }
299
300                 Key_WriteBindings (f);
301                 Cvar_WriteVariables (&cvars_all, f);
302
303                 FS_Close (f);
304         }
305 }
306 void Host_SaveConfig(void)
307 {
308         Host_SaveConfig_to(CONFIGFILENAME);
309 }
310 void Host_SaveConfig_f(cmd_state_t *cmd)
311 {
312         const char *file = CONFIGFILENAME;
313
314         if(Cmd_Argc(cmd) >= 2) {
315                 file = Cmd_Argv(cmd, 1);
316                 Con_Printf("Saving to %s\n", file);
317         }
318
319         Host_SaveConfig_to(file);
320 }
321
322 static void Host_AddConfigText(cmd_state_t *cmd)
323 {
324         // set up the default startmap_sp and startmap_dm aliases (mods can
325         // override these) and then execute the quake.rc startup script
326         if (gamemode == GAME_NEHAHRA)
327                 Cbuf_InsertText(cmd, "alias startmap_sp \"map nehstart\"\nalias startmap_dm \"map nehstart\"\nexec " STARTCONFIGFILENAME "\n");
328         else if (gamemode == GAME_TRANSFUSION)
329                 Cbuf_InsertText(cmd, "alias startmap_sp \"map e1m1\"\n""alias startmap_dm \"map bb1\"\nexec " STARTCONFIGFILENAME "\n");
330         else if (gamemode == GAME_TEU)
331                 Cbuf_InsertText(cmd, "alias startmap_sp \"map start\"\nalias startmap_dm \"map start\"\nexec teu.rc\n");
332         else
333                 Cbuf_InsertText(cmd, "alias startmap_sp \"map start\"\nalias startmap_dm \"map start\"\nexec " STARTCONFIGFILENAME "\n");
334         Cbuf_Execute(cmd);
335 }
336
337 /*
338 ===============
339 Host_LoadConfig_f
340
341 Resets key bindings and cvars to defaults and then reloads scripts
342 ===============
343 */
344 void Host_LoadConfig_f(cmd_state_t *cmd)
345 {
346         // reset all cvars, commands and aliases to init values
347         Cmd_RestoreInitState();
348 #ifdef CONFIG_MENU
349         // prepend a menu restart command to execute after the config
350         Cbuf_InsertText(&cmd_client, "\nmenu_restart\n");
351 #endif
352         // reset cvars to their defaults, and then exec startup scripts again
353         Host_AddConfigText(&cmd_client);
354 }
355
356 //============================================================================
357
358 /*
359 ===================
360 Host_GetConsoleCommands
361
362 Add them exactly as if they had been typed at the console
363 ===================
364 */
365 static void Host_GetConsoleCommands (void)
366 {
367         char *line;
368
369         while ((line = Sys_ConsoleInput()))
370         {
371                 if (cls.state == ca_dedicated)
372                         Cbuf_AddText(&cmd_server, line);
373                 else
374                         Cbuf_AddText(&cmd_client, line);
375         }
376 }
377
378 /*
379 ==================
380 Host_TimeReport
381
382 Returns a time report string, for example for
383 ==================
384 */
385 const char *Host_TimingReport(char *buf, size_t buflen)
386 {
387         return va(buf, buflen, "%.1f%% CPU, %.2f%% lost, offset avg %.1fms, max %.1fms, sdev %.1fms", svs.perf_cpuload * 100, svs.perf_lost * 100, svs.perf_offset_avg * 1000, svs.perf_offset_max * 1000, svs.perf_offset_sdev * 1000);
388 }
389
390 /*
391 ==================
392 Host_Frame
393
394 Runs all active servers
395 ==================
396 */
397 static void Host_Init(void);
398 void Host_Main(void)
399 {
400         double time1 = 0;
401         double time2 = 0;
402         double time3 = 0;
403         double cl_timer = 0, sv_timer = 0;
404         double clframetime, time, oldtime, newtime;
405         double wait;
406         int pass1, pass2, pass3, i;
407         char vabuf[1024];
408         qboolean playing;
409
410         host.restless = false;
411
412         Host_Init();
413
414         host.realtime = 0;
415         host.sleeptime = 0;
416         host.dirtytime = oldtime = Sys_DirtyTime();
417
418         while(host.state != host_shutdown)
419         {
420                 if (setjmp(host.abortframe))
421                 {
422                         SCR_ClearLoadingScreen(false);
423                         continue;                       // something bad happened, or the server disconnected
424                 }
425
426                 newtime = host.dirtytime = Sys_DirtyTime();
427                 time = newtime - oldtime;
428                 if (time < 0)
429                 {
430                         // warn if it's significant
431                         if (time < -0.01)
432                                 Con_Printf(CON_WARN "Host_Mingled: time stepped backwards (went from %f to %f, difference %f)\n", oldtime, newtime, time);
433                         time = 0;
434                 }
435                 else if (time >= 1800)
436                 {
437                         Con_Printf(CON_WARN "Host_Mingled: time stepped forward (went from %f to %f, difference %f)\n", oldtime, newtime, time);
438                         time = 0;
439                 }
440                 host.realtime += time;
441
442                 if (host_framerate.value < 0.00001 && host_framerate.value != 0)
443                         Cvar_SetValueQuick(&host_framerate, 0);
444
445                 TaskQueue_Frame(false);
446
447                 // keep the random time dependent, but not when playing demos/benchmarking
448                 if(!*sv_random_seed.string && !cls.demoplayback)
449                         rand();
450
451                 NetConn_UpdateSockets();
452
453                 Log_DestBuffer_Flush();
454
455                 // receive packets on each main loop iteration, as the main loop may
456                 // be undersleeping due to select() detecting a new packet
457                 if (sv.active && !svs.threaded)
458                         NetConn_ServerFrame();
459
460                 Curl_Run();
461
462                 // check for commands typed to the host
463                 Host_GetConsoleCommands();
464
465                 // process console commands
466 //              R_TimeReport("preconsole");
467                 CL_VM_PreventInformationLeaks();
468                 Cbuf_Frame(&cmd_client);
469                 Cbuf_Frame(&cmd_server);
470
471                 if(sv.active)
472                         Cbuf_Frame(&cmd_serverfromclient);
473
474 //              R_TimeReport("console");
475
476                 //Con_Printf("%6.0f %6.0f\n", cl_timer * 1000000.0, sv_timer * 1000000.0);
477
478                 // if the accumulators haven't become positive yet, wait a while
479                 if (cls.state == ca_dedicated)
480                         wait = sv_timer * -1000000.0;
481                 else if (!sv.active || svs.threaded)
482                         wait = cl_timer * -1000000.0;
483                 else
484                         wait = max(cl_timer, sv_timer) * -1000000.0;
485
486                 if (!host.restless && wait >= 1)
487                 {
488                         double time0, delta;
489
490                         if(host_maxwait.value <= 0)
491                                 wait = min(wait, 1000000.0);
492                         else
493                                 wait = min(wait, host_maxwait.value * 1000.0);
494                         if(wait < 1)
495                                 wait = 1; // because we cast to int
496
497                         time0 = Sys_DirtyTime();
498                         if (sv_checkforpacketsduringsleep.integer && !sys_usenoclockbutbenchmark.integer && !svs.threaded) {
499                                 NetConn_SleepMicroseconds((int)wait);
500                                 if (cls.state != ca_dedicated)
501                                         NetConn_ClientFrame(); // helps server browser get good ping values
502                                 // TODO can we do the same for ServerFrame? Probably not.
503                         }
504                         else
505                                 Sys_Sleep((int)wait);
506                         delta = Sys_DirtyTime() - time0;
507                         if (delta < 0 || delta >= 1800) 
508                                 delta = 0;
509                         host.sleeptime += delta;
510 //                      R_TimeReport("sleep");
511                         continue;
512                 }
513
514                 R_TimeReport("---");
515
516         //-------------------
517         //
518         // server operations
519         //
520         //-------------------
521
522                 // limit the frametime steps to no more than 100ms each
523                 if (sv_timer > 0.1)
524                 {
525                         if (!svs.threaded)
526                                 svs.perf_acc_lost += (sv_timer - 0.1);
527                         sv_timer = 0.1;
528                 }
529
530                 if (!svs.threaded)
531                 {
532                         svs.perf_acc_sleeptime = host.sleeptime;
533                         svs.perf_acc_realtime += time;
534
535                         // Look for clients who have spawned
536                         playing = false;
537                         for (i = 0, host_client = svs.clients;i < svs.maxclients;i++, host_client++)
538                                 if(host_client->begun)
539                                         if(host_client->netconnection)
540                                                 playing = true;
541                         if(sv.time < 10)
542                         {
543                                 // don't accumulate time for the first 10 seconds of a match
544                                 // so things can settle
545                                 svs.perf_acc_realtime = svs.perf_acc_sleeptime = svs.perf_acc_lost = svs.perf_acc_offset = svs.perf_acc_offset_squared = svs.perf_acc_offset_max = svs.perf_acc_offset_samples = host.sleeptime = 0;
546                         }
547                         else if(svs.perf_acc_realtime > 5)
548                         {
549                                 svs.perf_cpuload = 1 - svs.perf_acc_sleeptime / svs.perf_acc_realtime;
550                                 svs.perf_lost = svs.perf_acc_lost / svs.perf_acc_realtime;
551                                 if(svs.perf_acc_offset_samples > 0)
552                                 {
553                                         svs.perf_offset_max = svs.perf_acc_offset_max;
554                                         svs.perf_offset_avg = svs.perf_acc_offset / svs.perf_acc_offset_samples;
555                                         svs.perf_offset_sdev = sqrt(svs.perf_acc_offset_squared / svs.perf_acc_offset_samples - svs.perf_offset_avg * svs.perf_offset_avg);
556                                 }
557                                 if(svs.perf_lost > 0 && developer_extra.integer)
558                                         if(playing) // only complain if anyone is looking
559                                                 Con_DPrintf("Server can't keep up: %s\n", Host_TimingReport(vabuf, sizeof(vabuf)));
560                                 svs.perf_acc_realtime = svs.perf_acc_sleeptime = svs.perf_acc_lost = svs.perf_acc_offset = svs.perf_acc_offset_squared = svs.perf_acc_offset_max = svs.perf_acc_offset_samples = host.sleeptime = 0;
561                         }
562
563                         if (sv.active && sv_timer > 0 && !svs.threaded)
564                         {
565                                 // execute one or more server frames, with an upper limit on how much
566                                 // execution time to spend on server frames to avoid freezing the game if
567                                 // the server is overloaded, this execution time limit means the game will
568                                 // slow down if the server is taking too long.
569                                 int framecount, framelimit = 1;
570                                 double advancetime, aborttime = 0;
571                                 float offset;
572                                 prvm_prog_t *prog = SVVM_prog;
573
574                                 // run the world state
575                                 // don't allow simulation to run too fast or too slow or logic glitches can occur
576
577                                 // stop running server frames if the wall time reaches this value
578                                 if (sys_ticrate.value <= 0)
579                                         advancetime = sv_timer;
580                                 else if (cl.islocalgame && !sv_fixedframeratesingleplayer.integer)
581                                 {
582                                         // synchronize to the client frametime, but no less than 10ms and no more than 100ms
583                                         advancetime = bound(0.01, cl_timer, 0.1);
584                                 }
585                                 else
586                                 {
587                                         advancetime = sys_ticrate.value;
588                                         // listen servers can run multiple server frames per client frame
589                                         framelimit = cl_maxphysicsframesperserverframe.integer;
590                                         aborttime = Sys_DirtyTime() + 0.1;
591                                 }
592                                 if(host_timescale.value > 0 && host_timescale.value < 1)
593                                         advancetime = min(advancetime, 0.1 / host_timescale.value);
594                                 else
595                                         advancetime = min(advancetime, 0.1);
596
597                                 if(advancetime > 0)
598                                 {
599                                         offset = Sys_DirtyTime() - newtime;if (offset < 0 || offset >= 1800) offset = 0;
600                                         offset += sv_timer;
601                                         ++svs.perf_acc_offset_samples;
602                                         svs.perf_acc_offset += offset;
603                                         svs.perf_acc_offset_squared += offset * offset;
604                                         if(svs.perf_acc_offset_max < offset)
605                                                 svs.perf_acc_offset_max = offset;
606                                 }
607
608                                 // only advance time if not paused
609                                 // the game also pauses in singleplayer when menu or console is used
610                                 sv.frametime = advancetime * host_timescale.value;
611                                 if (host_framerate.value)
612                                         sv.frametime = host_framerate.value;
613                                 if (sv.paused || host.paused)
614                                         sv.frametime = 0;
615
616                                 for (framecount = 0;framecount < framelimit && sv_timer > 0;framecount++)
617                                 {
618                                         sv_timer -= advancetime;
619
620                                         // move things around and think unless paused
621                                         if (sv.frametime)
622                                                 SV_Physics();
623
624                                         // if this server frame took too long, break out of the loop
625                                         if (framelimit > 1 && Sys_DirtyTime() >= aborttime)
626                                                 break;
627                                 }
628                                 R_TimeReport("serverphysics");
629
630                                 // send all messages to the clients
631                                 SV_SendClientMessages();
632
633                                 if (sv.paused == 1 && host.realtime > sv.pausedstart && sv.pausedstart > 0) {
634                                         prog->globals.fp[OFS_PARM0] = host.realtime - sv.pausedstart;
635                                         PRVM_serverglobalfloat(time) = sv.time;
636                                         prog->ExecuteProgram(prog, PRVM_serverfunction(SV_PausedTic), "QC function SV_PausedTic is missing");
637                                 }
638
639                                 // send an heartbeat if enough time has passed since the last one
640                                 NetConn_Heartbeat(0);
641                                 R_TimeReport("servernetwork");
642                         }
643                         else
644                         {
645                                 // don't let r_speeds display jump around
646                                 R_TimeReport("serverphysics");
647                                 R_TimeReport("servernetwork");
648                         }
649                 }
650                 // if there is some time remaining from this frame, reset the timer
651                 if (sv_timer >= 0)
652                 {
653                         if (!svs.threaded)
654                                 svs.perf_acc_lost += sv_timer;
655                         sv_timer = 0;
656                 }
657
658                 sv_timer += time;
659
660         //-------------------
661         //
662         // client operations
663         //
664         //-------------------
665
666                 // limit the frametime steps to no more than 100ms each
667                 if (cl_timer > 0.1)
668                         cl_timer = 0.1;
669
670                 // get new key events
671                 Key_EventQueue_Unblock();
672                 SndSys_SendKeyEvents();
673                 Sys_SendKeyEvents();
674
675                 if (cls.state != ca_dedicated && (cl_timer > 0 || cls.timedemo || ((vid_activewindow ? cl_maxfps : cl_maxidlefps).value < 1)))
676                 {
677                         R_TimeReport("---");
678                         Collision_Cache_NewFrame();
679                         R_TimeReport("photoncache");
680 #ifdef CONFIG_VIDEO_CAPTURE
681                         // decide the simulation time
682                         if (cls.capturevideo.active)
683                         {
684                                 //***
685                                 if (cls.capturevideo.realtime)
686                                         clframetime = cl.realframetime = max(cl_timer, 1.0 / cls.capturevideo.framerate);
687                                 else
688                                 {
689                                         clframetime = 1.0 / cls.capturevideo.framerate;
690                                         cl.realframetime = max(cl_timer, clframetime);
691                                 }
692                         }
693                         else if (vid_activewindow && cl_maxfps.value >= 1 && !cls.timedemo)
694
695 #else
696                         if (vid_activewindow && cl_maxfps.value >= 1 && !cls.timedemo)
697 #endif
698                         {
699                                 clframetime = cl.realframetime = max(cl_timer, 1.0 / cl_maxfps.value);
700                                 // when running slow, we need to sleep to keep input responsive
701                                 wait = bound(0, cl_maxfps_alwayssleep.value * 1000, 100000);
702                                 if (wait > 0)
703                                         Sys_Sleep((int)wait);
704                         }
705                         else if (!vid_activewindow && cl_maxidlefps.value >= 1 && !cls.timedemo)
706                                 clframetime = cl.realframetime = max(cl_timer, 1.0 / cl_maxidlefps.value);
707                         else
708                                 clframetime = cl.realframetime = cl_timer;
709
710                         // apply slowmo scaling
711                         clframetime *= cl.movevars_timescale;
712                         // scale playback speed of demos by slowmo cvar
713                         if (cls.demoplayback)
714                         {
715                                 clframetime *= host_timescale.value;
716                                 // if demo playback is paused, don't advance time at all
717                                 if (cls.demopaused)
718                                         clframetime = 0;
719                         }
720                         else
721                         {
722                                 // host_framerate overrides all else
723                                 if (host_framerate.value)
724                                         clframetime = host_framerate.value;
725
726                                 if (cl.paused || host.paused)
727                                         clframetime = 0;
728                         }
729
730                         if (cls.timedemo)
731                                 clframetime = cl.realframetime = cl_timer;
732
733                         // deduct the frame time from the accumulator
734                         cl_timer -= cl.realframetime;
735
736                         cl.oldtime = cl.time;
737                         cl.time += clframetime;
738
739                         // update video
740                         if (host_speeds.integer)
741                                 time1 = Sys_DirtyTime();
742                         R_TimeReport("pre-input");
743
744                         // Collect input into cmd
745                         CL_Input();
746
747                         R_TimeReport("input");
748
749                         // check for new packets
750                         NetConn_ClientFrame();
751
752                         // read a new frame from a demo if needed
753                         CL_ReadDemoMessage();
754                         R_TimeReport("clientnetwork");
755
756                         // now that packets have been read, send input to server
757                         CL_SendMove();
758                         R_TimeReport("sendmove");
759
760                         // update client world (interpolate entities, create trails, etc)
761                         CL_UpdateWorld();
762                         R_TimeReport("lerpworld");
763
764                         CL_Video_Frame();
765
766                         R_TimeReport("client");
767
768                         CL_UpdateScreen();
769                         R_TimeReport("render");
770
771                         if (host_speeds.integer)
772                                 time2 = Sys_DirtyTime();
773
774                         // update audio
775                         if(cl.csqc_usecsqclistener)
776                         {
777                                 S_Update(&cl.csqc_listenermatrix);
778                                 cl.csqc_usecsqclistener = false;
779                         }
780                         else
781                                 S_Update(&r_refdef.view.matrix);
782
783                         CDAudio_Update();
784                         R_TimeReport("audio");
785
786                         // reset gathering of mouse input
787                         in_mouse_x = in_mouse_y = 0;
788
789                         if (host_speeds.integer)
790                         {
791                                 pass1 = (int)((time1 - time3)*1000000);
792                                 time3 = Sys_DirtyTime();
793                                 pass2 = (int)((time2 - time1)*1000000);
794                                 pass3 = (int)((time3 - time2)*1000000);
795                                 Con_Printf("%6ius total %6ius server %6ius gfx %6ius snd\n",
796                                                         pass1+pass2+pass3, pass1, pass2, pass3);
797                         }
798                 }
799
800                 // if there is some time remaining from this frame, reset the timer
801                 if (cl_timer >= 0)
802                         cl_timer = 0;
803
804                 cl_timer += time;
805
806 #if MEMPARANOIA
807                 Mem_CheckSentinelsGlobal();
808 #else
809                 if (developer_memorydebug.integer)
810                         Mem_CheckSentinelsGlobal();
811 #endif
812
813                 host.framecount++;
814                 oldtime = newtime;
815         }
816
817         Sys_Quit(0);
818 }
819
820 //============================================================================
821
822 qboolean vid_opened = false;
823 void Host_StartVideo(void)
824 {
825         if (!vid_opened && cls.state != ca_dedicated)
826         {
827                 vid_opened = true;
828                 // make sure we open sockets before opening video because the Windows Firewall "unblock?" dialog can screw up the graphics context on some graphics drivers
829                 NetConn_UpdateSockets();
830                 VID_Start();
831                 CDAudio_Startup();
832         }
833 }
834
835 char engineversion[128];
836
837 qboolean sys_nostdout = false;
838
839 static qfile_t *locksession_fh = NULL;
840 static qboolean locksession_run = false;
841 static void Host_InitSession(void)
842 {
843         int i;
844         char *buf;
845         Cvar_RegisterVariable(&sessionid);
846         Cvar_RegisterVariable(&locksession);
847
848         // load the session ID into the read-only cvar
849         if ((i = COM_CheckParm("-sessionid")) && (i + 1 < sys.argc))
850         {
851                 if(sys.argv[i+1][0] == '.')
852                         Cvar_SetQuick(&sessionid, sys.argv[i+1]);
853                 else
854                 {
855                         buf = (char *)Z_Malloc(strlen(sys.argv[i+1]) + 2);
856                         dpsnprintf(buf, sizeof(buf), ".%s", sys.argv[i+1]);
857                         Cvar_SetQuick(&sessionid, buf);
858                 }
859         }
860 }
861 void Host_LockSession(void)
862 {
863         if(locksession_run)
864                 return;
865         locksession_run = true;
866         if(locksession.integer != 0 && !COM_CheckParm("-readonly"))
867         {
868                 char vabuf[1024];
869                 char *p = va(vabuf, sizeof(vabuf), "%slock%s", *fs_userdir ? fs_userdir : fs_basedir, sessionid.string);
870                 FS_CreatePath(p);
871                 locksession_fh = FS_SysOpen(p, "wl", false);
872                 // TODO maybe write the pid into the lockfile, while we are at it? may help server management tools
873                 if(!locksession_fh)
874                 {
875                         if(locksession.integer == 2)
876                         {
877                                 Con_Printf(CON_WARN "WARNING: session lock %s could not be acquired. Please run with -sessionid and an unique session name. Continuing anyway.\n", p);
878                         }
879                         else
880                         {
881                                 Sys_Error("session lock %s could not be acquired. Please run with -sessionid and an unique session name.\n", p);
882                         }
883                 }
884         }
885 }
886 void Host_UnlockSession(void)
887 {
888         if(!locksession_run)
889                 return;
890         locksession_run = false;
891
892         if(locksession_fh)
893         {
894                 FS_Close(locksession_fh);
895                 // NOTE: we can NOT unlink the lock here, as doing so would
896                 // create a race condition if another process created it
897                 // between our close and our unlink
898                 locksession_fh = NULL;
899         }
900 }
901
902 /*
903 ====================
904 Host_Init
905 ====================
906 */
907 static void Host_Init (void)
908 {
909         int i;
910         const char* os;
911         char vabuf[1024];
912         cmd_state_t *cmd = &cmd_client;
913
914         host.state = host_init;
915
916         if (COM_CheckParm("-profilegameonly"))
917                 Sys_AllowProfiling(false);
918
919         // LadyHavoc: quake never seeded the random number generator before... heh
920         if (COM_CheckParm("-benchmark"))
921                 srand(0); // predictable random sequence for -benchmark
922         else
923                 srand((unsigned int)time(NULL));
924
925         // FIXME: this is evil, but possibly temporary
926         // LadyHavoc: doesn't seem very temporary...
927         // LadyHavoc: made this a saved cvar
928 // COMMANDLINEOPTION: Console: -developer enables warnings and other notices (RECOMMENDED for mod developers)
929         if (COM_CheckParm("-developer"))
930         {
931                 developer.value = developer.integer = 1;
932                 developer.string = "1";
933         }
934
935         if (COM_CheckParm("-developer2") || COM_CheckParm("-developer3"))
936         {
937                 developer.value = developer.integer = 1;
938                 developer.string = "1";
939                 developer_extra.value = developer_extra.integer = 1;
940                 developer_extra.string = "1";
941                 developer_insane.value = developer_insane.integer = 1;
942                 developer_insane.string = "1";
943                 developer_memory.value = developer_memory.integer = 1;
944                 developer_memory.string = "1";
945                 developer_memorydebug.value = developer_memorydebug.integer = 1;
946                 developer_memorydebug.string = "1";
947         }
948
949         if (COM_CheckParm("-developer3"))
950         {
951                 gl_paranoid.integer = 1;gl_paranoid.string = "1";
952                 gl_printcheckerror.integer = 1;gl_printcheckerror.string = "1";
953         }
954
955 // COMMANDLINEOPTION: Console: -nostdout disables text output to the terminal the game was launched from
956         if (COM_CheckParm("-nostdout"))
957                 sys_nostdout = 1;
958
959         // used by everything
960         Memory_Init();
961
962         // initialize console command/cvar/alias/command execution systems
963         Cmd_Init();
964
965         // initialize memory subsystem cvars/commands
966         Memory_Init_Commands();
967
968         // initialize console and logging and its cvars/commands
969         Con_Init();
970
971         // initialize various cvars that could not be initialized earlier
972         u8_Init();
973         Curl_Init_Commands();
974         Sys_Init_Commands();
975         COM_Init_Commands();
976
977         // initialize filesystem (including fs_basedir, fs_gamedir, -game, scr_screenshot_name)
978         FS_Init();
979
980         // construct a version string for the corner of the console
981         os = DP_OS_NAME;
982         dpsnprintf (engineversion, sizeof (engineversion), "%s %s %s", gamename, os, buildstring);
983         Con_Printf("%s\n", engineversion);
984
985         // initialize process nice level
986         Sys_InitProcessNice();
987
988         // initialize ixtable
989         Mathlib_Init();
990
991         // register the cvars for session locking
992         Host_InitSession();
993
994         // must be after FS_Init
995         Crypto_Init();
996         Crypto_Init_Commands();
997
998         NetConn_Init();
999         Curl_Init();
1000         PRVM_Init();
1001         Mod_Init();
1002         World_Init();
1003         SV_Init();
1004         V_Init(); // some cvars needed by server player physics (cl_rollangle etc)
1005         Host_InitLocal();
1006         Host_ServerOptions();
1007
1008         Thread_Init();
1009         TaskQueue_Init();
1010
1011         CL_Init();
1012
1013         // save off current state of aliases, commands and cvars for later restore if FS_GameDir_f is called
1014         // NOTE: menu commands are freed by Cmd_RestoreInitState
1015         Cmd_SaveInitState();
1016
1017         // FIXME: put this into some neat design, but the menu should be allowed to crash
1018         // without crashing the whole game, so this should just be a short-time solution
1019
1020         // here comes the not so critical stuff
1021         if (setjmp(host.abortframe)) {
1022                 return;
1023         }
1024
1025         Host_AddConfigText(cmd);
1026
1027         Host_StartVideo();
1028
1029         // if quake.rc is missing, use default
1030         if (!FS_FileExists("quake.rc"))
1031         {
1032                 Cbuf_InsertText(cmd, "exec default.cfg\nexec " CONFIGFILENAME "\nexec autoexec.cfg\n");
1033                 Cbuf_Execute(cmd);
1034         }
1035
1036         host.state = host_active;
1037
1038         // run stuffcmds now, deferred previously because it can crash if a server starts that early
1039         Cbuf_AddText(cmd,"stuffcmds\n");
1040         Cbuf_Execute(cmd);
1041
1042         Log_Start();
1043
1044         // put up the loading image so the user doesn't stare at a black screen...
1045         SCR_BeginLoadingPlaque(true);
1046         
1047         // check for special benchmark mode
1048 // 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)
1049         i = COM_CheckParm("-benchmark");
1050         if (i && i + 1 < sys.argc)
1051         if (!sv.active && !cls.demoplayback && !cls.connect_trying)
1052         {
1053                 Cbuf_AddText(&cmd_client, va(vabuf, sizeof(vabuf), "timedemo %s\n", sys.argv[i + 1]));
1054                 Cbuf_Execute(&cmd_client);
1055         }
1056
1057         // check for special demo mode
1058 // COMMANDLINEOPTION: Client: -demo <demoname> runs a playdemo and quits
1059         i = COM_CheckParm("-demo");
1060         if (i && i + 1 < sys.argc)
1061         if (!sv.active && !cls.demoplayback && !cls.connect_trying)
1062         {
1063                 Cbuf_AddText(&cmd_client, va(vabuf, sizeof(vabuf), "playdemo %s\n", sys.argv[i + 1]));
1064                 Cbuf_Execute(&cmd_client);
1065         }
1066
1067 #ifdef CONFIG_VIDEO_CAPTURE
1068 // COMMANDLINEOPTION: Client: -capturedemo <demoname> captures a playdemo and quits
1069         i = COM_CheckParm("-capturedemo");
1070         if (i && i + 1 < sys.argc)
1071         if (!sv.active && !cls.demoplayback && !cls.connect_trying)
1072         {
1073                 Cbuf_AddText(&cmd_client, va(vabuf, sizeof(vabuf), "playdemo %s\ncl_capturevideo 1\n", sys.argv[i + 1]));
1074                 Cbuf_Execute(&cmd_client);
1075         }
1076 #endif
1077
1078         if (cls.state == ca_dedicated || COM_CheckParm("-listen"))
1079         if (!sv.active && !cls.demoplayback && !cls.connect_trying)
1080         {
1081                 Cbuf_AddText(&cmd_client, "startmap_dm\n");
1082                 Cbuf_Execute(&cmd_client);
1083         }
1084
1085         if (!sv.active && !cls.demoplayback && !cls.connect_trying)
1086         {
1087 #ifdef CONFIG_MENU
1088                 Cbuf_AddText(&cmd_client, "togglemenu 1\n");
1089 #endif
1090                 Cbuf_Execute(&cmd_client);
1091         }
1092
1093         Con_DPrint("========Initialized=========\n");
1094
1095         if (cls.state != ca_dedicated)
1096                 SV_StartThread();
1097 }
1098
1099
1100 /*
1101 ===============
1102 Host_Shutdown
1103
1104 FIXME: this is a callback from Sys_Quit and Sys_Error.  It would be better
1105 to run quit through here before the final handoff to the sys code.
1106 ===============
1107 */
1108 void Host_Shutdown(void)
1109 {
1110         static qboolean isdown = false;
1111
1112         if (isdown)
1113         {
1114                 Con_Print("recursive shutdown\n");
1115                 return;
1116         }
1117         if (setjmp(host.abortframe))
1118         {
1119                 Con_Print("aborted the quitting frame?!?\n");
1120                 return;
1121         }
1122         isdown = true;
1123
1124         // be quiet while shutting down
1125         S_StopAllSounds();
1126
1127         // end the server thread
1128         if (svs.threaded)
1129                 SV_StopThread();
1130
1131         // disconnect client from server if active
1132         CL_Disconnect();
1133
1134         // shut down local server if active
1135         SV_LockThreadMutex();
1136         SV_Shutdown ();
1137         SV_UnlockThreadMutex();
1138
1139 #ifdef CONFIG_MENU
1140         // Shutdown menu
1141         if(MR_Shutdown)
1142                 MR_Shutdown();
1143 #endif
1144
1145         // AK shutdown PRVM
1146         // AK hmm, no PRVM_Shutdown(); yet
1147
1148         CL_Video_Shutdown();
1149
1150         Host_SaveConfig();
1151
1152         CDAudio_Shutdown ();
1153         S_Terminate ();
1154         Curl_Shutdown ();
1155         NetConn_Shutdown ();
1156
1157         if (cls.state != ca_dedicated)
1158         {
1159                 R_Modules_Shutdown();
1160                 VID_Shutdown();
1161         }
1162
1163         SV_StopThread();
1164         TaskQueue_Shutdown();
1165         Thread_Shutdown();
1166         Cmd_Shutdown();
1167         Key_Shutdown();
1168         CL_Shutdown();
1169         Sys_Shutdown();
1170         Log_Close();
1171         Crypto_Shutdown();
1172
1173         Host_UnlockSession();
1174
1175         S_Shutdown();
1176         Con_Shutdown();
1177         Memory_Shutdown();
1178 }
1179
1180 void Host_NoOperation_f(cmd_state_t *cmd)
1181 {
1182 }