2 Copyright (C) 1996-1997 Id Software, Inc.
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.
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.
13 See the GNU General Public License for more details.
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.
20 // host.c -- coordinates spawning and killing of local servers
31 A server can always be started, even if the system started out as a client
34 A client can NOT be started if the system started as a dedicated server.
36 Memory is cleared / released when a server or client begins, not when they end.
40 // how many frames have occurred
41 // (checked by Host_Error and Host_SaveConfig_f)
43 // LordHavoc: set when quit is executed
44 qboolean host_shuttingdown = false;
46 double host_frametime;
47 // LordHavoc: the real frametime, before slowmo and clamping are applied (used for console scrolling)
48 double host_realframetime;
49 // the real time, without any slowmo or clamping
51 // realtime from previous frame
54 // used for -developer commandline parameter, hacky hacky
58 client_t *host_client;
60 jmp_buf host_abortframe;
62 // pretend frames take this amount of time (in seconds), 0 = realtime
63 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"};
64 // shows time used by certain subsystems
65 cvar_t host_speeds = {0, "host_speeds","0", "reports how much time is used in server/graphics/sound"};
66 // LordHavoc: framerate independent slowmo
67 cvar_t slowmo = {0, "slowmo", "1.0", "controls game speed, 0.5 is half speed, 2 is double speed"};
68 // LordHavoc: framerate upper cap
69 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)"};
71 // print broadcast messages in dedicated mode
72 cvar_t sv_echobprint = {CVAR_SAVE, "sv_echobprint", "1", "prints gamecode bprint() calls to server console"};
74 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)"};
75 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)"};
76 cvar_t serverprofile = {0, "serverprofile","0", "print some timings on server code"};
78 cvar_t fraglimit = {CVAR_NOTIFY, "fraglimit","0", "ends level if this many frags is reached by any player"};
79 cvar_t timelimit = {CVAR_NOTIFY, "timelimit","0", "ends level at this time (in minutes)"};
80 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"};
82 cvar_t samelevel = {CVAR_NOTIFY, "samelevel","0", "repeats same level if level ends (due to timelimit or someone hitting an exit)"};
83 cvar_t noexit = {CVAR_NOTIFY, "noexit","0", "kills anyone attempting to use an exit"};
85 cvar_t developer = {0, "developer","0", "prints additional debugging messages and information (recommended for modders and level designers)"};
86 cvar_t developer_entityparsing = {0, "developer_entityparsing", "0", "prints detailed network entities information each time a packet is received"};
88 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)"};
89 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)"};
90 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)"};
92 cvar_t pausable = {0, "pausable","1", "allow players to pause or not"};
94 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)"};
96 cvar_t timestamps = {CVAR_SAVE, "timestamps", "0", "prints timestamps on console messages"};
97 cvar_t timeformat = {CVAR_SAVE, "timeformat", "[%b %e %X] ", "time format to use on timestamped console messages"};
101 Host_AbortCurrentFrame
103 aborts the current host frame and goes on with the next one
106 void Host_AbortCurrentFrame(void)
108 longjmp (host_abortframe, 1);
115 This shuts down both the client and server
118 void Host_Error (const char *error, ...)
120 static char hosterrorstring1[MAX_INPUTLINE];
121 static char hosterrorstring2[MAX_INPUTLINE];
122 static qboolean hosterror = false;
125 va_start (argptr,error);
126 dpvsnprintf (hosterrorstring1,sizeof(hosterrorstring1),error,argptr);
129 Con_Printf("Host_Error: %s\n", hosterrorstring1);
131 // LordHavoc: if crashing very early, or currently shutting down, do
133 if (host_framecount < 3 || host_shuttingdown)
134 Sys_Error ("Host_Error: %s", hosterrorstring1);
137 Sys_Error ("Host_Error: recursively entered (original error was: %s new error is: %s)", hosterrorstring2, hosterrorstring1);
140 strcpy(hosterrorstring2, hosterrorstring1);
142 CL_Parse_DumpPacket();
146 // print out where the crash happened, if it was caused by QC (and do a cleanup)
150 Host_ShutdownServer (false);
152 if (cls.state == ca_dedicated)
153 Sys_Error ("Host_Error: %s",hosterrorstring2); // dedicated servers exit
160 Host_AbortCurrentFrame();
163 void Host_ServerOptions (void)
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)
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);
186 else if (cl_available)
188 // client exists and not dedicated, check if -listen is specified
189 cls.state = ca_disconnected;
190 i = COM_CheckParm ("-listen");
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]);
199 // default players in some games, singleplayer in most
200 if (gamemode != GAME_GOODVSBAD2 && gamemode != GAME_NEXUIZ && gamemode != GAME_BATTLEMECH)
205 svs.maxclients = bound(1, svs.maxclients, MAX_SCOREBOARD);
207 svs.clients = (client_t *)Mem_Alloc(sv_mempool, sizeof(client_t) * svs.maxclients);
209 if (svs.maxclients > 1 && !deathmatch.integer)
210 Cvar_SetValueQuick(&deathmatch, 1);
214 =======================
216 ======================
218 void Host_SaveConfig_f(void);
219 void Host_InitLocal (void)
221 Cmd_AddCommand("saveconfig", Host_SaveConfig_f, "save settings to config.cfg immediately (also automatic when quitting)");
223 Cvar_RegisterVariable (&host_framerate);
224 Cvar_RegisterVariable (&host_speeds);
225 Cvar_RegisterVariable (&slowmo);
226 Cvar_RegisterVariable (&cl_maxfps);
228 Cvar_RegisterVariable (&sv_echobprint);
230 Cvar_RegisterVariable (&sys_ticrate);
231 Cvar_RegisterVariable (&sv_fixedframeratesingleplayer);
232 Cvar_RegisterVariable (&serverprofile);
234 Cvar_RegisterVariable (&fraglimit);
235 Cvar_RegisterVariable (&timelimit);
236 Cvar_RegisterVariable (&teamplay);
237 Cvar_RegisterVariable (&samelevel);
238 Cvar_RegisterVariable (&noexit);
239 Cvar_RegisterVariable (&skill);
240 Cvar_RegisterVariable (&developer);
241 if (forcedeveloper) // make it real now that the cvar is registered
242 Cvar_SetValue("developer", 1);
243 Cvar_RegisterVariable (&developer_entityparsing);
244 Cvar_RegisterVariable (&deathmatch);
245 Cvar_RegisterVariable (&coop);
247 Cvar_RegisterVariable (&pausable);
249 Cvar_RegisterVariable (&temp1);
251 Cvar_RegisterVariable (×tamps);
252 Cvar_RegisterVariable (&timeformat);
260 Writes key bindings and archived cvars to config.cfg
263 void Host_SaveConfig_f(void)
267 // dedicated servers initialize the host but don't parse and set the
269 // LordHavoc: don't save a config if it crashed in startup
270 if (host_framecount >= 3 && cls.state != ca_dedicated)
272 f = FS_Open ("config.cfg", "wb", false, false);
275 Con_Print("Couldn't write config.cfg.\n");
279 Key_WriteBindings (f);
280 Cvar_WriteVariables (f);
291 Sends text across to be displayed
292 FIXME: make this just a stuffed echo?
295 void SV_ClientPrint(const char *msg)
297 if (host_client->netconnection)
299 MSG_WriteByte(&host_client->netconnection->message, svc_print);
300 MSG_WriteString(&host_client->netconnection->message, msg);
308 Sends text across to be displayed
309 FIXME: make this just a stuffed echo?
312 void SV_ClientPrintf(const char *fmt, ...)
315 char msg[MAX_INPUTLINE];
317 va_start(argptr,fmt);
318 dpvsnprintf(msg,sizeof(msg),fmt,argptr);
328 Sends text to all active clients
331 void SV_BroadcastPrint(const char *msg)
336 for (i = 0, client = svs.clients;i < svs.maxclients;i++, client++)
338 if (client->spawned && client->netconnection)
340 MSG_WriteByte(&client->netconnection->message, svc_print);
341 MSG_WriteString(&client->netconnection->message, msg);
345 if (sv_echobprint.integer && cls.state == ca_dedicated)
353 Sends text to all active clients
356 void SV_BroadcastPrintf(const char *fmt, ...)
359 char msg[MAX_INPUTLINE];
361 va_start(argptr,fmt);
362 dpvsnprintf(msg,sizeof(msg),fmt,argptr);
365 SV_BroadcastPrint(msg);
372 Send text over to the client to be executed
375 void Host_ClientCommands(const char *fmt, ...)
378 char string[MAX_INPUTLINE];
380 if (!host_client->netconnection)
383 va_start(argptr,fmt);
384 dpvsnprintf(string, sizeof(string), fmt, argptr);
387 MSG_WriteByte(&host_client->netconnection->message, svc_stufftext);
388 MSG_WriteString(&host_client->netconnection->message, string);
392 =====================
395 Called when the player is getting totally kicked off the host
396 if (crash = true), don't bother sending signofs
397 =====================
399 void SV_DropClient(qboolean crash)
402 Con_Printf("Client \"%s\" dropped\n", host_client->name);
404 // make sure edict is not corrupt (from a level change for example)
405 host_client->edict = PRVM_EDICT_NUM(host_client - svs.clients + 1);
407 if (host_client->netconnection)
409 // free the client (the body stays around)
412 // LordHavoc: no opportunity for resending, so use unreliable 3 times
413 unsigned char bufdata[8];
415 memset(&buf, 0, sizeof(buf));
417 buf.maxsize = sizeof(bufdata);
418 MSG_WriteByte(&buf, svc_disconnect);
419 NetConn_SendUnreliableMessage(host_client->netconnection, &buf);
420 NetConn_SendUnreliableMessage(host_client->netconnection, &buf);
421 NetConn_SendUnreliableMessage(host_client->netconnection, &buf);
423 // break the net connection
424 NetConn_Close(host_client->netconnection);
425 host_client->netconnection = NULL;
428 // call qc ClientDisconnect function
429 // LordHavoc: don't call QC if server is dead (avoids recursive
430 // Host_Error in some mods when they run out of edicts)
431 if (host_client->clientconnectcalled && sv.active && host_client->edict)
433 // call the prog function for removing a client
434 // this will set the body to a dead frame, among other things
435 int saveSelf = prog->globals.server->self;
436 host_client->clientconnectcalled = false;
437 prog->globals.server->self = PRVM_EDICT_TO_PROG(host_client->edict);
438 PRVM_ExecuteProgram(prog->globals.server->ClientDisconnect, "QC function ClientDisconnect is missing");
439 prog->globals.server->self = saveSelf;
442 // remove leaving player from scoreboard
443 //host_client->edict->fields.server->netname = PRVM_SetEngineString(host_client->name);
444 //if ((val = PRVM_GETEDICTFIELDVALUE(host_client->edict, eval_clientcolors)))
446 //host_client->edict->fields.server->frags = 0;
447 host_client->name[0] = 0;
448 host_client->colors = 0;
449 host_client->frags = 0;
450 // send notification to all clients
451 // get number of client manually just to make sure we get it right...
452 i = host_client - svs.clients;
453 MSG_WriteByte (&sv.reliable_datagram, svc_updatename);
454 MSG_WriteByte (&sv.reliable_datagram, i);
455 MSG_WriteString (&sv.reliable_datagram, host_client->name);
456 MSG_WriteByte (&sv.reliable_datagram, svc_updatecolors);
457 MSG_WriteByte (&sv.reliable_datagram, i);
458 MSG_WriteByte (&sv.reliable_datagram, host_client->colors);
459 MSG_WriteByte (&sv.reliable_datagram, svc_updatefrags);
460 MSG_WriteByte (&sv.reliable_datagram, i);
461 MSG_WriteShort (&sv.reliable_datagram, host_client->frags);
463 // free the client now
464 if (host_client->entitydatabase)
465 EntityFrame_FreeDatabase(host_client->entitydatabase);
466 if (host_client->entitydatabase4)
467 EntityFrame4_FreeDatabase(host_client->entitydatabase4);
468 if (host_client->entitydatabase5)
469 EntityFrame5_FreeDatabase(host_client->entitydatabase5);
473 // clear a fields that matter to DP_SV_CLIENTNAME and DP_SV_CLIENTCOLORS, and also frags
474 PRVM_ED_ClearEdict(host_client->edict);
477 // clear the client struct (this sets active to false)
478 memset(host_client, 0, sizeof(*host_client));
480 // update server listing on the master because player count changed
481 // (which the master uses for filtering empty/full servers)
482 NetConn_Heartbeat(1);
489 This only happens at the end of a game, not between levels
492 void Host_ShutdownServer(qboolean crash)
496 unsigned char message[4];
498 Con_DPrintf("Host_ShutdownServer\n");
503 NetConn_Heartbeat(2);
504 NetConn_Heartbeat(2);
506 // make sure all the clients know we're disconnecting
510 MSG_WriteByte(&buf, svc_disconnect);
511 count = NetConn_SendToAll(&buf, 5);
513 Con_Printf("Host_ShutdownServer: NetConn_SendToAll failed for %u clients\n", count);
516 for (i = 0, host_client = svs.clients;i < svs.maxclients;i++, host_client++)
517 if (host_client->active)
518 SV_DropClient(crash); // server shutdown
521 NetConn_CloseServerPorts();
527 memset(&sv, 0, sizeof(sv));
528 memset(svs.clients, 0, svs.maxclients*sizeof(client_t));
536 This clears all the memory used by both the client and server, but does
537 not reinitialize anything.
540 void Host_ClearMemory (void)
542 Con_DPrint("Clearing memory\n");
546 memset (&sv, 0, sizeof(sv));
547 memset (&cl, 0, sizeof(cl));
551 //============================================================================
557 Returns false if the time is too short to run a frame
560 extern qboolean cl_capturevideo_active;
561 extern double cl_capturevideo_framerate;
562 extern qfile_t *cl_capturevideo_soundfile;
563 qboolean Host_FilterTime (double time)
565 double timecap, timeleft;
568 if (sys_ticrate.value < 0.00999 || sys_ticrate.value > 0.10001)
569 Cvar_SetValue("sys_ticrate", bound(0.01, sys_ticrate.value, 0.1));
570 if (slowmo.value < 0)
571 Cvar_SetValue("slowmo", 0);
572 if (host_framerate.value < 0.00001 && host_framerate.value != 0)
573 Cvar_SetValue("host_framerate", 0);
574 if (cl_maxfps.value < 1)
575 Cvar_SetValue("cl_maxfps", 1);
579 // disable time effects during timedemo
580 cl.frametime = host_realframetime = host_frametime = realtime - oldrealtime;
581 oldrealtime = realtime;
585 // check if framerate is too high
586 // default to sys_ticrate (server framerate - presumably low) unless we
587 // have a good reason to run faster
588 timecap = host_framerate.value;
590 timecap = sys_ticrate.value;
591 if (cls.state != ca_dedicated)
593 if (cl_capturevideo_active)
594 timecap = 1.0 / cl_capturevideo_framerate;
595 else if (vid_activewindow)
596 timecap = 1.0 / cl_maxfps.value;
599 timeleft = timecap - (realtime - oldrealtime);
603 if (timeleft * 1000 >= 10)
607 // don't totally hog the CPU
608 // try to hit exactly a steady framerate by not sleeping the full amount
609 msleft = (int)floor(timeleft * 1000);
616 // LordHavoc: copy into host_realframetime as well
617 host_realframetime = host_frametime = realtime - oldrealtime;
618 oldrealtime = realtime;
620 if (cl_capturevideo_active && !cl_capturevideo_soundfile)
621 host_frametime = timecap;
623 // apply slowmo scaling
624 host_frametime *= slowmo.value;
626 // host_framerate overrides all else
627 if (host_framerate.value)
628 host_frametime = host_framerate.value;
630 // never run a frame longer than 1 second
631 if (host_frametime > 1)
634 cl.frametime = host_frametime;
642 Host_GetConsoleCommands
644 Add them exactly as if they had been typed at the console
647 void Host_GetConsoleCommands (void)
653 cmd = Sys_ConsoleInput ();
666 void Host_ServerFrame (void)
668 // never run more than 1 frame per call because multiple frames per call it
669 // does not handle overload gracefully, slowing down is better than a
670 // sudden significant drop in framerate (or worse, freezing until the
671 // problem goes away)
672 int framecount, framelimit = 1;
679 sv.timer += host_realframetime;
682 // run the world state
683 // don't allow simulation to run too fast or too slow or logic glitches can occur
684 for (framecount = 0;framecount < framelimit && sv.timer > 0;framecount++)
686 // setup the VM frame
689 if (cl.islocalgame && !sv_fixedframeratesingleplayer.integer)
690 advancetime = min(sv.timer, sys_ticrate.value);
692 advancetime = sys_ticrate.value;
693 sv.timer -= advancetime;
695 // only advance time if not paused
696 // the game also pauses in singleplayer when menu or console is used
697 sv.frametime = advancetime * slowmo.value;
698 if (host_framerate.value)
699 sv.frametime = host_framerate.value;
700 if (sv.paused || (cl.islocalgame && (key_dest != key_game || key_consoleactive)))
703 // set the time and clear the general datagram
706 // check for network packets to the server each world step incase they
707 // come in midframe (particularly if host is running really slow)
708 NetConn_ServerFrame();
710 // move things around and think unless paused
714 // send all messages to the clients
715 SV_SendClientMessages();
717 // send an heartbeat if enough time has passed since the last one
718 NetConn_Heartbeat(0);
720 // end the server VM frame
725 // if we fell behind too many frames just don't worry about it
735 Runs all active servers
738 void _Host_Frame (float time)
740 static double time1 = 0;
741 static double time2 = 0;
742 static double time3 = 0;
743 int pass1, pass2, pass3;
745 if (setjmp(host_abortframe))
746 return; // something bad happened, or the server disconnected
748 // decide the simulation time
749 if (!Host_FilterTime(time))
752 // keep the random time dependent
755 cl.islocalgame = NetConn_IsLocalGame();
757 // get new key events
760 // Collect input into cmd
763 // process console commands
766 // if running the server locally, make intentions now
767 if (cls.state == ca_connected && sv.active)
770 //-------------------
774 //-------------------
776 // check for commands typed to the host
777 Host_GetConsoleCommands();
782 //-------------------
786 //-------------------
788 cl.oldtime = cl.time;
789 cl.time += cl.frametime;
791 NetConn_ClientFrame();
793 if (cls.state == ca_connected)
795 // if running the server remotely, send intentions now after
796 // the incoming messages have been read
807 if (host_speeds.integer)
808 time1 = Sys_DoubleTime();
812 if (host_speeds.integer)
813 time2 = Sys_DoubleTime();
816 if(csqc_usecsqclistener)
818 S_Update(&csqc_listenermatrix);
819 csqc_usecsqclistener = false;
822 S_Update(&r_refdef.viewentitymatrix);
826 if (host_speeds.integer)
828 pass1 = (time1 - time3)*1000000;
829 time3 = Sys_DoubleTime();
830 pass2 = (time2 - time1)*1000000;
831 pass3 = (time3 - time2)*1000000;
832 Con_Printf("%6ius total %6ius server %6ius gfx %6ius snd\n",
833 pass1+pass2+pass3, pass1, pass2, pass3);
839 void Host_Frame (float time)
842 static double timetotal;
843 static int timecount;
846 if (!serverprofile.integer)
852 time1 = Sys_DoubleTime ();
854 time2 = Sys_DoubleTime ();
856 timetotal += time2 - time1;
859 if (timecount < 1000)
862 m = timetotal*1000/timecount;
866 for (i=0 ; i<svs.maxclients ; i++)
868 if (svs.clients[i].active)
872 Con_Printf("serverprofile: %2i clients %2i msec\n", c, m);
875 //============================================================================
877 qboolean vid_opened = false;
878 void Host_StartVideo(void)
880 if (!vid_opened && cls.state != ca_dedicated)
888 char engineversion[128];
890 qboolean sys_nostdout = false;
892 extern void Render_Init(void);
893 extern void Mathlib_Init(void);
894 extern void FS_Init(void);
895 extern void FS_Shutdown(void);
896 extern void PR_Cmd_Init(void);
897 extern void COM_Init_Commands(void);
898 extern void FS_Init_Commands(void);
899 extern void COM_CheckRegistered(void);
900 extern qboolean host_stuffcmdsrun;
907 void Host_Init (void)
912 // LordHavoc: quake never seeded the random number generator before... heh
915 // used by everything
918 // initialize console and logging
921 // initialize console command/cvar/alias/command execution systems
927 // initialize console window (only used by sys_win.c)
930 // detect gamemode from commandline options or executable name
933 // construct a version string for the corner of the console
934 #if defined(__linux__)
938 #elif defined(__FreeBSD__)
940 #elif defined(__NetBSD__)
942 #elif defined(__OpenBSD__)
944 #elif defined(MACOSX)
949 dpsnprintf (engineversion, sizeof (engineversion), "%s %s %s", gamename, os, buildstring);
951 // COMMANDLINEOPTION: Console: -nostdout disables text output to the terminal the game was launched from
952 if (COM_CheckParm("-nostdout"))
955 Con_Printf("%s\n", engineversion);
957 // FIXME: this is evil, but possibly temporary
958 // COMMANDLINEOPTION: Console: -developer enables warnings and other notices (RECOMMENDED for mod developers)
959 if (COM_CheckParm("-developer"))
961 forcedeveloper = true;
962 developer.integer = 1;
966 // initialize filesystem (including fs_basedir, fs_gamedir, -path, -game, scr_screenshot_name)
969 // initialize various cvars that could not be initialized earlier
970 Memory_Init_Commands();
976 COM_CheckRegistered();
978 // initialize ixtable
989 Host_ServerOptions();
991 if (cls.state != ca_dedicated)
993 Con_Printf("Initializing client\n");
1008 // set up the default startmap_sp and startmap_dm aliases (mods can
1009 // override these) and then execute the quake.rc startup script
1010 if (gamemode == GAME_NEHAHRA)
1011 Cbuf_AddText("alias startmap_sp \"map nehstart\"\nalias startmap_dm \"map nehstart\"\nexec quake.rc\n");
1012 else if (gamemode == GAME_TRANSFUSION)
1013 Cbuf_AddText("alias startmap_sp \"map e1m1\"\n""alias startmap_dm \"map bb1\"\nexec quake.rc\n");
1014 else if (gamemode == GAME_NEXUIZ)
1015 Cbuf_AddText("alias startmap_sp \"map nexdm01\"\nalias startmap_dm \"map nexdm01\"\nexec quake.rc\n");
1016 else if (gamemode == GAME_TEU)
1017 Cbuf_AddText("alias startmap_sp \"map start\"\nalias startmap_dm \"map start\"\nexec teu.rc\n");
1019 Cbuf_AddText("alias startmap_sp \"map start\"\nalias startmap_dm \"map start\"\nexec quake.rc\n");
1022 // if stuffcmds wasn't run, then quake.rc is probably missing, use default
1023 if (!host_stuffcmdsrun)
1025 Cbuf_AddText("exec default.cfg\nexec config.cfg\nexec autoexec.cfg\nstuffcmds\n");
1029 // save console log up to this point to log_file if it was set by configs
1032 // FIXME: put this into some neat design, but the menu should be allowed to crash
1033 // without crashing the whole game, so this should just be a short-time solution
1036 // here comes the not so critical stuff
1037 if (setjmp(host_abortframe)) {
1041 if (cls.state != ca_dedicated)
1046 // check for special benchmark mode
1047 // 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)
1048 i = COM_CheckParm("-benchmark");
1049 if (i && i + 1 < com_argc)
1050 if (!sv.active && !cls.demoplayback && !cls.connect_trying)
1052 Cbuf_AddText(va("timedemo %s\n", com_argv[i + 1]));
1056 // check for special demo mode
1057 // COMMANDLINEOPTION: Client: -demo <demoname> runs a playdemo and quits
1058 i = COM_CheckParm("-demo");
1059 if (i && i + 1 < com_argc)
1060 if (!sv.active && !cls.demoplayback && !cls.connect_trying)
1062 Cbuf_AddText(va("playdemo %s\n", com_argv[i + 1]));
1066 // check for special demolooponly mode
1067 // COMMANDLINEOPTION: Client: -demolooponly <demoname> runs a playdemo and quits
1068 i = COM_CheckParm("-demolooponly");
1069 if (i && i + 1 < com_argc)
1070 if (!sv.active && !cls.demoplayback && !cls.connect_trying)
1072 Cbuf_AddText(va("playdemo %s\n", com_argv[i + 1]));
1076 if (cls.state == ca_dedicated || COM_CheckParm("-listen"))
1077 if (!sv.active && !cls.demoplayback && !cls.connect_trying)
1079 Cbuf_AddText("startmap_dm\n");
1083 if (!sv.active && !cls.demoplayback && !cls.connect_trying)
1085 if (gamemode == GAME_NEXUIZ)
1086 Cbuf_AddText("togglemenu\nplayvideo logo\ncd loop 1\n");
1088 Cbuf_AddText("togglemenu\n");
1092 Con_DPrint("========Initialized=========\n");
1102 FIXME: this is a callback from Sys_Quit and Sys_Error. It would be better
1103 to run quit through here before the final handoff to the sys code.
1106 void Host_Shutdown(void)
1108 static qboolean isdown = false;
1112 Con_Print("recursive shutdown\n");
1117 // be quiet while shutting down
1120 // disconnect client from server if active
1123 // shut down local server if active
1124 Host_ShutdownServer (false);
1131 // AK hmm, no PRVM_Shutdown(); yet
1133 CL_Video_Shutdown();
1135 Host_SaveConfig_f();
1137 CDAudio_Shutdown ();
1139 NetConn_Shutdown ();
1142 if (cls.state != ca_dedicated)
1144 R_Modules_Shutdown();