X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=cl_demo.c;h=f8fbe5b5b3ff65862093762106da16ddda50763f;hb=e22be35609a3da42c7546adbc4ea943fb8847d95;hp=2e5c17c94a8e8f15ed6a25619580aaef452a3c91;hpb=0a05c446ba26bd5897645a37ceec8646c5bc93eb;p=xonotic%2Fdarkplaces.git diff --git a/cl_demo.c b/cl_demo.c index 2e5c17c9..f8fbe5b5 100644 --- a/cl_demo.c +++ b/cl_demo.c @@ -67,7 +67,7 @@ void CL_NextDemo (void) } dpsnprintf (str, sizeof(str), "playdemo %s\n", cls.demos[cls.demonum]); - Cbuf_InsertText(&cmd_client, str); + Cbuf_InsertText(cmd_local, str); cls.demonum++; } @@ -98,8 +98,7 @@ void CL_StopPlayback (void) if (!cls.demostarting) // only quit if not starting another demo if (Sys_CheckParm("-demo") || Sys_CheckParm("-capturedemo")) - Host_Quit_f(&cmd_client); - + host.state = host_shutdown; } /* @@ -275,7 +274,7 @@ void CL_ReadDemoMessage(void) CL_ParseServerMessage(); if (cls.signon != SIGNONS) - Cbuf_Execute((&cmd_client)->cbuf); // immediately execute svc_stufftext if in the demo before connect! + Cbuf_Execute((cmd_local)->cbuf); // immediately execute svc_stufftext if in the demo before connect! // In case the demo contains a "svc_disconnect" message if (!cls.demoplayback) @@ -407,7 +406,7 @@ void CL_Record_f(cmd_state_t *cmd) ==================== CL_PlayDemo_f -play [demoname] +playdemo [demoname] ==================== */ void CL_PlayDemo_f(cmd_state_t *cmd) @@ -419,7 +418,7 @@ void CL_PlayDemo_f(cmd_state_t *cmd) if (Cmd_Argc(cmd) != 2) { - Con_Print("play : plays a demo\n"); + Con_Print("playdemo : plays a demo\n"); return; } @@ -437,8 +436,10 @@ void CL_PlayDemo_f(cmd_state_t *cmd) cls.demostarting = true; // disconnect from server - CL_Disconnect (); - SV_Shutdown (); + if(cls.state == ca_connected) + CL_Disconnect(); + if(sv.active) + SV_Shutdown(); // update networking ports (this is mainly just needed at startup) NetConn_UpdateSockets(); @@ -530,7 +531,7 @@ static void CL_FinishTimeDemo (void) if(atoi(sys.argv[i + 1]) > benchmark_runs) { // restart the benchmark - Cbuf_AddText(&cmd_client, va(vabuf, sizeof(vabuf), "timedemo %s\n", cls.demoname)); + Cbuf_AddText(cmd_local, va(vabuf, sizeof(vabuf), "timedemo %s\n", cls.demoname)); // cannot execute here } else @@ -579,11 +580,11 @@ static void CL_FinishTimeDemo (void) } Z_Free(history); history = NULL; - Host_Quit_f(&cmd_client); + host.state = host_shutdown; } } else - Host_Quit_f(&cmd_client); + host.state = host_shutdown; } } @@ -693,8 +694,7 @@ static void CL_Stopdemo_f(cmd_state_t *cmd) { if (!cls.demoplayback) return; - CL_Disconnect (); - SV_Shutdown (); + CL_Disconnect(); } // LadyHavoc: pausedemo command @@ -709,15 +709,15 @@ static void CL_PauseDemo_f(cmd_state_t *cmd) void CL_Demo_Init(void) { - Cmd_AddCommand(CMD_CLIENT, "record", CL_Record_f, "record a demo"); - Cmd_AddCommand(CMD_CLIENT, "stop", CL_Stop_f, "stop recording or playing a demo"); - Cmd_AddCommand(CMD_CLIENT, "playdemo", CL_PlayDemo_f, "watch a demo file"); - Cmd_AddCommand(CMD_CLIENT, "timedemo", CL_TimeDemo_f, "play back a demo as fast as possible and save statistics to benchmark.log"); - Cmd_AddCommand(CMD_CLIENT, "startdemos", CL_Startdemos_f, "start playing back the selected demos sequentially (used at end of startup script)"); - Cmd_AddCommand(CMD_CLIENT, "demos", CL_Demos_f, "restart looping demos defined by the last startdemos command"); - Cmd_AddCommand(CMD_CLIENT, "stopdemo", CL_Stopdemo_f, "stop playing or recording demo (like stop command) and return to looping demos"); + Cmd_AddCommand(CF_CLIENT, "record", CL_Record_f, "record a demo"); + Cmd_AddCommand(CF_CLIENT, "stop", CL_Stop_f, "stop recording or playing a demo"); + Cmd_AddCommand(CF_CLIENT, "playdemo", CL_PlayDemo_f, "watch a demo file"); + Cmd_AddCommand(CF_CLIENT, "timedemo", CL_TimeDemo_f, "play back a demo as fast as possible and save statistics to benchmark.log"); + Cmd_AddCommand(CF_CLIENT, "startdemos", CL_Startdemos_f, "start playing back the selected demos sequentially (used at end of startup script)"); + Cmd_AddCommand(CF_CLIENT, "demos", CL_Demos_f, "restart looping demos defined by the last startdemos command"); + Cmd_AddCommand(CF_CLIENT, "stopdemo", CL_Stopdemo_f, "stop playing or recording demo (like stop command) and return to looping demos"); // LadyHavoc: added pausedemo - Cmd_AddCommand(CMD_CLIENT, "pausedemo", CL_PauseDemo_f, "pause demo playback (can also safely pause demo recording if using QUAKE, QUAKEDP or NEHAHRAMOVIE protocol, useful for making movies)"); + Cmd_AddCommand(CF_CLIENT, "pausedemo", CL_PauseDemo_f, "pause demo playback (can also safely pause demo recording if using QUAKE, QUAKEDP or NEHAHRAMOVIE protocol, useful for making movies)"); Cvar_RegisterVariable (&cl_autodemo); Cvar_RegisterVariable (&cl_autodemo_nameformat); Cvar_RegisterVariable (&cl_autodemo_delete);