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