2004-08-23 00:15:46 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-05-29 04:26:29 +00:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
See the included (GNU.txt) GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "quakedef.h"
|
2009-04-01 22:03:56 +00:00
|
|
|
#include "fs.h"
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
void CL_FinishTimeDemo (void);
|
2005-12-15 19:15:39 +00:00
|
|
|
float demtime;
|
2011-10-27 15:46:36 +00:00
|
|
|
int demoframe;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
int cls_lastto;
|
|
|
|
int cls_lasttype;
|
|
|
|
|
2005-12-21 03:07:33 +00:00
|
|
|
void CL_PlayDemo(char *demoname);
|
|
|
|
char lastdemoname[256];
|
|
|
|
|
2007-12-15 18:45:40 +00:00
|
|
|
extern cvar_t qtvcl_forceversion1;
|
2008-01-09 00:52:31 +00:00
|
|
|
extern cvar_t qtvcl_eztvextensions;
|
2007-12-15 18:45:40 +00:00
|
|
|
|
2012-11-27 03:23:19 +00:00
|
|
|
unsigned char demobuffer[1024*66];
|
2007-12-15 18:45:40 +00:00
|
|
|
int demobuffersize;
|
|
|
|
int demopreparsedbytes;
|
|
|
|
qboolean disablepreparse;
|
2008-01-09 00:52:31 +00:00
|
|
|
qboolean endofdemo;
|
2007-12-01 05:55:44 +00:00
|
|
|
|
2008-01-09 00:52:31 +00:00
|
|
|
#define BUFFERTIME 0.5
|
2004-08-23 00:15:46 +00:00
|
|
|
/*
|
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
DEMO CODE
|
|
|
|
|
|
|
|
When a demo is playing back, all NET_SendMessages are skipped, and
|
|
|
|
NET_GetMessages are read from the demo file.
|
|
|
|
|
|
|
|
Whenever cl.time gets past the last received message, another message is
|
|
|
|
read from the demo file.
|
|
|
|
==============================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
==============
|
|
|
|
CL_StopPlayback
|
|
|
|
|
|
|
|
Called when a demo file runs out, or the user starts a game
|
|
|
|
==============
|
|
|
|
*/
|
|
|
|
void CL_StopPlayback (void)
|
|
|
|
{
|
|
|
|
if (!cls.demoplayback)
|
|
|
|
return;
|
|
|
|
|
|
|
|
Media_CaptureDemoEnd();
|
|
|
|
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_CLOSE (cls.demoinfile);
|
|
|
|
cls.demoinfile = NULL;
|
2004-08-23 00:15:46 +00:00
|
|
|
cls.state = ca_disconnected;
|
|
|
|
cls.demoplayback = DPB_NONE;
|
------------------------------------------------------------------------
r4169 | acceptthis | 2013-01-17 08:55:12 +0000 (Thu, 17 Jan 2013) | 31 lines
removed MAX_VISEDICTS limit.
PEXT2_REPLACEMENTDELTAS tweaked, now has 4 million entity limit. still not enabled by default.
TE_BEAM now maps to a separate TEQW_BEAM to avoid conflicts with QW.
added android multitouch emulation for windows/rawinput (in_simulatemultitouch).
split topcolor/bottomcolor from scoreboard, for dp's colormap|1024 feature.
now using utf-8 for windows consoles.
qcc warnings/errors now give clickable console links for quick+easy editing.
disabled menutint when the currently active item changes contrast or gamma (for OneManClan).
Added support for drawfont/drawfontscale.
tweaked the qcvm a little to reduce the number of pointers.
.doll file loading. still experimental and will likely crash. requires csqc active, even if its a dummy progs. this will be fixed in time. Still other things that need cleaning up.
windows: gl_font "?" shows the standard windows font-selection dialog, and can be used to select windows fonts. not all work. and you probably don't want to use windings.
fixed splitscreen support when playing mvds. added mini-scoreboards to splitscreen.
editor/debugger now shows asm if there's no linenumber info. also, pressing f1 for help shows the shortcuts.
Added support for .framegroups files for psk(psa) and iqm formats.
True support for ezquake's colour codes. Mutually exclusive with background colours.
path command output slightly more readable.
added support for digest_hex (MD4, SHA1, CRC16).
skingroups now colourmap correctly.
Fix terrain colour hints, and litdata from the wrong bsp.
fix ftp dual-homed issue. support epsv command, and enable ipv6 (eprt still not supported).
remove d3d11 compilation from the makefile. the required headers are not provided by mingw, and are not available to the build bot, so don't bother.
fix v *= v.x and similar opcodes.
fteqcc: fixed support for áéÃóú type chars in names. utf-8 files now properly supported (even with the utf-8 bom/identifier). utf-16 also supported.
fteqcc: fixed '#if 1 == 3 && 4' parsing.
fteqcc: -Werror acts on the warning, rather than as a separate error. Line numbers are thus more readable.
fteqcc: copyright message now includes compile date instead.
fteqccgui: the treeview control is now coloured depending on whether there were warnings/errors in the last compile.
fteqccgui: the output window is now focused and scrolls down as compilation progresses.
pr_dumpplatform command dumps out some pragmas to convert more serious warnings to errors. This is to avoid the infamous 'fteqcc sucks cos my code sucks' issue.
rewrote prespawn/modelist/soundlist code. server tracks progress now.
------------------------------------------------------------------------
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4167 fc73d0e0-1445-4013-8a0c-d673dee63da5
2013-03-12 22:29:40 +00:00
|
|
|
cls.demoseeking = false; //just in case
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
if (cls.timedemo)
|
|
|
|
CL_FinishTimeDemo ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
====================
|
|
|
|
CL_WriteDemoCmd
|
|
|
|
|
|
|
|
Writes the player0 user cmd (demos don't support split screen)
|
|
|
|
====================
|
|
|
|
*/
|
|
|
|
void CL_WriteDemoCmd (usercmd_t *pcmd)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
float fl;
|
|
|
|
qbyte c;
|
2004-12-06 01:59:05 +00:00
|
|
|
q1usercmd_t cmd;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
//nq doesn't have this info
|
|
|
|
if (cls.demorecording != 1)
|
|
|
|
return;
|
|
|
|
|
2008-01-30 02:32:00 +00:00
|
|
|
//Con_Printf("write: %ld bytes, %4.4f\n", msg->cursize, demtime);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2008-01-30 02:32:00 +00:00
|
|
|
fl = LittleFloat((float)demtime);
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_WRITE (cls.demooutfile, &fl, sizeof(fl));
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
c = dem_cmd;
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_WRITE (cls.demooutfile, &c, sizeof(c));
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2004-12-06 01:59:05 +00:00
|
|
|
// correct for byte order, bytes don't matter
|
|
|
|
|
|
|
|
cmd.buttons = pcmd->buttons;
|
|
|
|
cmd.impulse = pcmd->impulse;
|
|
|
|
cmd.msec = pcmd->msec;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
for (i = 0; i < 3; i++)
|
2004-12-06 01:59:05 +00:00
|
|
|
cmd.angles[i] = LittleFloat(pcmd->angles[i]*65536/360);
|
|
|
|
|
|
|
|
cmd.forwardmove = LittleShort(pcmd->forwardmove);
|
|
|
|
cmd.sidemove = LittleShort(pcmd->sidemove);
|
|
|
|
cmd.upmove = LittleShort(pcmd->upmove);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_WRITE (cls.demooutfile, &cmd, sizeof(cmd));
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
for (i=0 ; i<3 ; i++)
|
|
|
|
{
|
2012-07-05 19:42:36 +00:00
|
|
|
fl = LittleFloat (cl.playerview[0].viewangles[i]);
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_WRITE (cls.demooutfile, &fl, 4);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_FLUSH (cls.demooutfile);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
====================
|
|
|
|
CL_WriteDemoMessage
|
|
|
|
|
|
|
|
Dumps the current net message, prefixed by the length and view angles
|
|
|
|
====================
|
|
|
|
*/
|
2013-07-26 17:19:06 +00:00
|
|
|
void CL_WriteDemoMessage (sizebuf_t *msg, int payloadoffset)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
int len;
|
2013-06-23 02:17:02 +00:00
|
|
|
int i;
|
2004-08-23 00:15:46 +00:00
|
|
|
float fl;
|
|
|
|
qbyte c;
|
|
|
|
|
2008-01-30 02:32:00 +00:00
|
|
|
//Con_Printf("write: %ld bytes, %4.4f\n", msg->cursize, demtime);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
switch (cls.demorecording)
|
|
|
|
{
|
|
|
|
case 0:
|
2004-08-23 00:15:46 +00:00
|
|
|
return;
|
2013-07-26 17:19:06 +00:00
|
|
|
case 1: //QW
|
|
|
|
fl = LittleFloat((float)demtime);
|
|
|
|
VFS_WRITE (cls.demooutfile, &fl, sizeof(fl));
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
c = dem_read;
|
|
|
|
VFS_WRITE (cls.demooutfile, &c, sizeof(c));
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
if (*(int*)msg->data == -1)
|
|
|
|
{
|
|
|
|
//connectionless packet.
|
|
|
|
len = LittleLong (msg->cursize);
|
|
|
|
VFS_WRITE (cls.demooutfile, &len, 4);
|
|
|
|
VFS_WRITE (cls.demooutfile, msg->data + msg_readcount, msg->cursize - msg_readcount);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//regenerate a legacy netchan. no fragmentation support, but whatever. this ain't udp.
|
|
|
|
//the length
|
|
|
|
len = LittleLong (msg->cursize - msg_readcount + 8);
|
|
|
|
VFS_WRITE (cls.demooutfile, &len, 4);
|
|
|
|
//hack the netchan here.
|
|
|
|
i = cls.netchan.incoming_sequence;
|
|
|
|
VFS_WRITE (cls.demooutfile, &i, 4);
|
|
|
|
i = cls.netchan.incoming_acknowledged;
|
|
|
|
VFS_WRITE (cls.demooutfile, &i, 4);
|
|
|
|
//and the data
|
|
|
|
VFS_WRITE (cls.demooutfile, msg->data + msg_readcount, msg->cursize - msg_readcount);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2: //NQ
|
|
|
|
len = LittleLong (net_message.cursize - payloadoffset);
|
|
|
|
VFS_WRITE(cls.demooutfile, &len, sizeof(len));
|
|
|
|
for (i=0 ; i<3 ; i++)
|
|
|
|
{
|
|
|
|
float f = LittleFloat (cl.playerview[0].viewangles[i]);
|
|
|
|
VFS_WRITE(cls.demooutfile, &f, sizeof(f));
|
|
|
|
}
|
|
|
|
VFS_WRITE(cls.demooutfile, net_message.data + payloadoffset, net_message.cursize - payloadoffset);
|
|
|
|
break;
|
2013-06-23 02:17:02 +00:00
|
|
|
}
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_FLUSH (cls.demooutfile);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
2007-07-23 12:00:17 +00:00
|
|
|
int demo_preparsedemo(unsigned char *buffer, int bytes)
|
|
|
|
{
|
|
|
|
int parsed = 0;
|
|
|
|
int ofs;
|
|
|
|
unsigned int length;
|
|
|
|
#define dem_mask 7
|
2008-01-09 00:52:31 +00:00
|
|
|
if (cls.demoplayback != DPB_MVD && cls.demoplayback != DPB_EZTV)
|
2007-07-23 12:00:17 +00:00
|
|
|
return bytes; //no need if its not an mvd (this simplifies it a little)
|
|
|
|
|
|
|
|
while (bytes>2)
|
|
|
|
{
|
|
|
|
switch(buffer[1]&dem_mask)
|
|
|
|
{
|
2011-06-05 01:36:14 +00:00
|
|
|
case dem_cmd:
|
2011-06-29 18:39:11 +00:00
|
|
|
ofs = -(int)(sizeof(q1usercmd_t));
|
2011-06-05 01:36:14 +00:00
|
|
|
ofs = 0;
|
|
|
|
break;
|
2007-07-23 12:00:17 +00:00
|
|
|
case dem_set:
|
2011-06-05 01:36:14 +00:00
|
|
|
ofs = -(8);
|
2007-07-23 12:00:17 +00:00
|
|
|
break;
|
|
|
|
case dem_multiple:
|
|
|
|
ofs = 6;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ofs = 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (ofs > 0)
|
|
|
|
{
|
|
|
|
if (ofs+4 > bytes)
|
|
|
|
break;
|
|
|
|
length = (buffer[ofs+0]<<0) + (buffer[ofs+1]<<8) + (buffer[ofs+2]<<16) + (buffer[ofs+3]<<24);
|
2007-12-01 05:55:44 +00:00
|
|
|
if (length > MAX_OVERALLMSGLEN)
|
2007-12-15 18:45:40 +00:00
|
|
|
{
|
|
|
|
disablepreparse = true;
|
|
|
|
Con_Printf("Error looking ahead at demo\n");
|
2007-07-23 12:00:17 +00:00
|
|
|
return parsed;
|
2007-12-15 18:45:40 +00:00
|
|
|
}
|
2007-07-23 12:00:17 +00:00
|
|
|
ofs+=4;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
length = -ofs;
|
|
|
|
ofs = 2;
|
|
|
|
}
|
|
|
|
//ofs is now the offset of the data
|
|
|
|
if (ofs+length > bytes)
|
|
|
|
{
|
|
|
|
return parsed; //not got it all
|
|
|
|
}
|
Fixes, workarounds, and breakages. Hexen2 should work much better (-hexen2 says no mission pack, -portals says h2mp). Started working on splitting bigcoords per client, far too much work still to go on that. Removed gl_ztrick entirely. Enabled csprogs download by default. Added client support for fitzquake's 666 protocol, needs testing, some cleanup for dp protocols too, no server support, couldn't selectively enable it anyway. Now attempting to cache shadow meshes for explosions and stuff. Played with lightmaps a little, should potentially run a little faster on certain (intel?) cards. Tweeked npfte a little to try to avoid deadlocks and crashes. Fixed sky worldspawn parsing. Added h2mp's model format. Fixed baseline issue in q2 client, made servers generate q2 baselines. MOVETYPE_PUSH will not rotate extra if rotation is forced. Made status command show allowed client types. Changed lighting on weapons - should now be shaded.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3572 fc73d0e0-1445-4013-8a0c-d673dee63da5
2010-08-11 03:36:31 +00:00
|
|
|
if ((buffer[1]&dem_mask) == dem_all && (buffer[1] & ~dem_mask) && length < MAX_OVERALLMSGLEN)
|
2007-07-23 12:00:17 +00:00
|
|
|
{
|
|
|
|
net_message.cursize = length;
|
|
|
|
memcpy(net_message.data, buffer+ofs, length);
|
Fixes, workarounds, and breakages. Hexen2 should work much better (-hexen2 says no mission pack, -portals says h2mp). Started working on splitting bigcoords per client, far too much work still to go on that. Removed gl_ztrick entirely. Enabled csprogs download by default. Added client support for fitzquake's 666 protocol, needs testing, some cleanup for dp protocols too, no server support, couldn't selectively enable it anyway. Now attempting to cache shadow meshes for explosions and stuff. Played with lightmaps a little, should potentially run a little faster on certain (intel?) cards. Tweeked npfte a little to try to avoid deadlocks and crashes. Fixed sky worldspawn parsing. Added h2mp's model format. Fixed baseline issue in q2 client, made servers generate q2 baselines. MOVETYPE_PUSH will not rotate extra if rotation is forced. Made status command show allowed client types. Changed lighting on weapons - should now be shaded.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3572 fc73d0e0-1445-4013-8a0c-d673dee63da5
2010-08-11 03:36:31 +00:00
|
|
|
MSG_BeginReading(cls.netchan.netprim);
|
2011-09-03 03:49:43 +00:00
|
|
|
CLQW_ParseServerMessage();
|
2007-07-23 12:00:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
parsed += ofs+length;
|
|
|
|
buffer += ofs+length;
|
|
|
|
bytes -= ofs+length;
|
|
|
|
}
|
|
|
|
|
|
|
|
return parsed;
|
|
|
|
}
|
|
|
|
|
|
|
|
int readdemobytes(int *readpos, void *data, int len)
|
2004-12-15 19:43:22 +00:00
|
|
|
{
|
|
|
|
int i;
|
2007-12-01 05:55:44 +00:00
|
|
|
int trybytes;
|
2013-07-26 17:19:06 +00:00
|
|
|
if (len < 0)
|
|
|
|
Host_EndGame("Corrupt demo");
|
2004-12-15 19:43:22 +00:00
|
|
|
|
2007-07-23 12:00:17 +00:00
|
|
|
if (demopreparsedbytes < 0) //won't happen in normal running, but can still happen on corrupt data... if we don't disconnect first.
|
2007-12-12 11:04:04 +00:00
|
|
|
{
|
|
|
|
Con_Printf("reset preparsed (underflow)\n");
|
|
|
|
demopreparsedbytes = 0;
|
|
|
|
}
|
|
|
|
if (demopreparsedbytes > demobuffersize)
|
|
|
|
{
|
|
|
|
Con_Printf("reset preparsed (overflow)\n");
|
2007-07-23 12:00:17 +00:00
|
|
|
demopreparsedbytes = 0;
|
2007-12-12 11:04:04 +00:00
|
|
|
}
|
2006-03-14 01:25:46 +00:00
|
|
|
|
2007-12-01 05:55:44 +00:00
|
|
|
trybytes = sizeof(demobuffer)-demobuffersize;
|
|
|
|
|
2010-03-14 14:35:56 +00:00
|
|
|
i = VFS_READ(cls.demoinfile, demobuffer+demobuffersize, trybytes);
|
2007-07-23 12:00:17 +00:00
|
|
|
if (i > 0)
|
2004-12-15 19:43:22 +00:00
|
|
|
{
|
2007-07-23 12:00:17 +00:00
|
|
|
demobuffersize += i;
|
2007-12-15 18:45:40 +00:00
|
|
|
if (disablepreparse)
|
|
|
|
demopreparsedbytes = demobuffersize;
|
|
|
|
else
|
|
|
|
demopreparsedbytes += demo_preparsedemo(demobuffer+demopreparsedbytes, demobuffersize-demopreparsedbytes);
|
2007-07-23 12:00:17 +00:00
|
|
|
}
|
2006-09-17 00:59:22 +00:00
|
|
|
|
2008-01-30 02:32:00 +00:00
|
|
|
if (*readpos+len > demobuffersize)
|
2007-07-23 12:00:17 +00:00
|
|
|
{
|
2012-04-24 12:22:50 +00:00
|
|
|
if (i < 0)
|
|
|
|
{ //0 means no data available yet
|
|
|
|
endofdemo = true;
|
|
|
|
return 0;
|
|
|
|
}
|
2013-03-12 22:44:00 +00:00
|
|
|
// len = demobuffersize;
|
2008-01-09 00:52:31 +00:00
|
|
|
return 0;
|
2004-12-15 19:43:22 +00:00
|
|
|
}
|
2007-07-23 12:00:17 +00:00
|
|
|
memcpy(data, demobuffer+*readpos, len);
|
|
|
|
*readpos += len;
|
|
|
|
return len;
|
|
|
|
}
|
2004-12-15 19:43:22 +00:00
|
|
|
|
2007-07-23 12:00:17 +00:00
|
|
|
void demo_flushbytes(int bytes)
|
|
|
|
{
|
|
|
|
if (bytes > demobuffersize)
|
|
|
|
Sys_Error("demo_flushbytes: flushed too much!\n");
|
|
|
|
memmove(demobuffer, demobuffer+bytes, demobuffersize - bytes);
|
|
|
|
demobuffersize -= bytes;
|
2011-06-05 01:36:14 +00:00
|
|
|
|
|
|
|
if (demopreparsedbytes < bytes)
|
|
|
|
demopreparsedbytes = 0;
|
|
|
|
else
|
|
|
|
demopreparsedbytes -= bytes;
|
2004-12-15 19:43:22 +00:00
|
|
|
}
|
2007-07-23 12:00:17 +00:00
|
|
|
|
|
|
|
void demo_flushcache(void)
|
|
|
|
{
|
|
|
|
demobuffersize = 0;
|
|
|
|
demopreparsedbytes = 0;
|
2008-01-09 00:52:31 +00:00
|
|
|
|
|
|
|
//no errors yet
|
|
|
|
disablepreparse = false;
|
2007-07-23 12:00:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void demo_resetcache(int bytes, void *data)
|
2006-03-14 01:25:46 +00:00
|
|
|
{
|
2008-01-09 00:52:31 +00:00
|
|
|
endofdemo = false;
|
2007-07-23 12:00:17 +00:00
|
|
|
demo_flushcache();
|
|
|
|
|
|
|
|
demobuffersize = bytes;
|
2007-12-12 11:04:04 +00:00
|
|
|
demopreparsedbytes = 0;
|
2007-07-23 12:00:17 +00:00
|
|
|
memcpy(demobuffer, data, bytes);
|
|
|
|
|
|
|
|
//preparse it now
|
|
|
|
bytes = 0;
|
|
|
|
readdemobytes(&bytes, NULL, 0);
|
2006-03-14 01:25:46 +00:00
|
|
|
}
|
2004-12-15 19:43:22 +00:00
|
|
|
|
|
|
|
|
2005-12-21 03:07:33 +00:00
|
|
|
void CL_ProgressDemoTime(void)
|
|
|
|
{
|
|
|
|
extern cvar_t cl_demospeed;
|
|
|
|
|
|
|
|
if (cl.parsecount && Media_PausedDemo())
|
|
|
|
{ //console visible whilst democapturing
|
|
|
|
cls.netchan.last_received = realtime;
|
|
|
|
return;
|
|
|
|
}
|
2005-12-21 07:10:48 +00:00
|
|
|
|
------------------------------------------------------------------------
r4169 | acceptthis | 2013-01-17 08:55:12 +0000 (Thu, 17 Jan 2013) | 31 lines
removed MAX_VISEDICTS limit.
PEXT2_REPLACEMENTDELTAS tweaked, now has 4 million entity limit. still not enabled by default.
TE_BEAM now maps to a separate TEQW_BEAM to avoid conflicts with QW.
added android multitouch emulation for windows/rawinput (in_simulatemultitouch).
split topcolor/bottomcolor from scoreboard, for dp's colormap|1024 feature.
now using utf-8 for windows consoles.
qcc warnings/errors now give clickable console links for quick+easy editing.
disabled menutint when the currently active item changes contrast or gamma (for OneManClan).
Added support for drawfont/drawfontscale.
tweaked the qcvm a little to reduce the number of pointers.
.doll file loading. still experimental and will likely crash. requires csqc active, even if its a dummy progs. this will be fixed in time. Still other things that need cleaning up.
windows: gl_font "?" shows the standard windows font-selection dialog, and can be used to select windows fonts. not all work. and you probably don't want to use windings.
fixed splitscreen support when playing mvds. added mini-scoreboards to splitscreen.
editor/debugger now shows asm if there's no linenumber info. also, pressing f1 for help shows the shortcuts.
Added support for .framegroups files for psk(psa) and iqm formats.
True support for ezquake's colour codes. Mutually exclusive with background colours.
path command output slightly more readable.
added support for digest_hex (MD4, SHA1, CRC16).
skingroups now colourmap correctly.
Fix terrain colour hints, and litdata from the wrong bsp.
fix ftp dual-homed issue. support epsv command, and enable ipv6 (eprt still not supported).
remove d3d11 compilation from the makefile. the required headers are not provided by mingw, and are not available to the build bot, so don't bother.
fix v *= v.x and similar opcodes.
fteqcc: fixed support for áéÃóú type chars in names. utf-8 files now properly supported (even with the utf-8 bom/identifier). utf-16 also supported.
fteqcc: fixed '#if 1 == 3 && 4' parsing.
fteqcc: -Werror acts on the warning, rather than as a separate error. Line numbers are thus more readable.
fteqcc: copyright message now includes compile date instead.
fteqccgui: the treeview control is now coloured depending on whether there were warnings/errors in the last compile.
fteqccgui: the output window is now focused and scrolls down as compilation progresses.
pr_dumpplatform command dumps out some pragmas to convert more serious warnings to errors. This is to avoid the infamous 'fteqcc sucks cos my code sucks' issue.
rewrote prespawn/modelist/soundlist code. server tracks progress now.
------------------------------------------------------------------------
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4167 fc73d0e0-1445-4013-8a0c-d673dee63da5
2013-03-12 22:29:40 +00:00
|
|
|
if (cl_demospeed.value >= 0 && cls.state == ca_active)
|
2008-01-30 02:32:00 +00:00
|
|
|
demtime += host_frametime*cl_demospeed.value;
|
2005-12-21 03:07:33 +00:00
|
|
|
else
|
2008-01-30 02:32:00 +00:00
|
|
|
demtime += host_frametime;
|
2005-12-21 03:07:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CL_DemoJump_f(void)
|
|
|
|
{
|
|
|
|
float newtime;
|
|
|
|
char *s = Cmd_Argv(1);
|
|
|
|
char *colon = strchr(s, ':');
|
|
|
|
|
2006-01-13 06:27:18 +00:00
|
|
|
if (!cls.demoplayback)
|
|
|
|
return;
|
|
|
|
|
2012-11-27 03:23:19 +00:00
|
|
|
if (*s == '+' || *s == '-')
|
2005-12-21 03:07:33 +00:00
|
|
|
{
|
|
|
|
if (colon)
|
|
|
|
{
|
|
|
|
colon++;
|
2012-11-27 03:23:19 +00:00
|
|
|
newtime = demtime + atoi(colon) + atoi(s)*60;
|
2005-12-21 03:07:33 +00:00
|
|
|
}
|
|
|
|
else
|
2012-11-27 03:23:19 +00:00
|
|
|
newtime = demtime + atoi(s);
|
2005-12-21 03:07:33 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-11-27 03:23:19 +00:00
|
|
|
//absolute seek time
|
2005-12-21 03:07:33 +00:00
|
|
|
if (colon)
|
|
|
|
{
|
|
|
|
colon++;
|
|
|
|
newtime = atoi(colon);
|
|
|
|
newtime += atoi(s)*60;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
newtime = atoi(s);
|
2012-11-27 03:23:19 +00:00
|
|
|
}
|
------------------------------------------------------------------------
r4169 | acceptthis | 2013-01-17 08:55:12 +0000 (Thu, 17 Jan 2013) | 31 lines
removed MAX_VISEDICTS limit.
PEXT2_REPLACEMENTDELTAS tweaked, now has 4 million entity limit. still not enabled by default.
TE_BEAM now maps to a separate TEQW_BEAM to avoid conflicts with QW.
added android multitouch emulation for windows/rawinput (in_simulatemultitouch).
split topcolor/bottomcolor from scoreboard, for dp's colormap|1024 feature.
now using utf-8 for windows consoles.
qcc warnings/errors now give clickable console links for quick+easy editing.
disabled menutint when the currently active item changes contrast or gamma (for OneManClan).
Added support for drawfont/drawfontscale.
tweaked the qcvm a little to reduce the number of pointers.
.doll file loading. still experimental and will likely crash. requires csqc active, even if its a dummy progs. this will be fixed in time. Still other things that need cleaning up.
windows: gl_font "?" shows the standard windows font-selection dialog, and can be used to select windows fonts. not all work. and you probably don't want to use windings.
fixed splitscreen support when playing mvds. added mini-scoreboards to splitscreen.
editor/debugger now shows asm if there's no linenumber info. also, pressing f1 for help shows the shortcuts.
Added support for .framegroups files for psk(psa) and iqm formats.
True support for ezquake's colour codes. Mutually exclusive with background colours.
path command output slightly more readable.
added support for digest_hex (MD4, SHA1, CRC16).
skingroups now colourmap correctly.
Fix terrain colour hints, and litdata from the wrong bsp.
fix ftp dual-homed issue. support epsv command, and enable ipv6 (eprt still not supported).
remove d3d11 compilation from the makefile. the required headers are not provided by mingw, and are not available to the build bot, so don't bother.
fix v *= v.x and similar opcodes.
fteqcc: fixed support for áéÃóú type chars in names. utf-8 files now properly supported (even with the utf-8 bom/identifier). utf-16 also supported.
fteqcc: fixed '#if 1 == 3 && 4' parsing.
fteqcc: -Werror acts on the warning, rather than as a separate error. Line numbers are thus more readable.
fteqcc: copyright message now includes compile date instead.
fteqccgui: the treeview control is now coloured depending on whether there were warnings/errors in the last compile.
fteqccgui: the output window is now focused and scrolls down as compilation progresses.
pr_dumpplatform command dumps out some pragmas to convert more serious warnings to errors. This is to avoid the infamous 'fteqcc sucks cos my code sucks' issue.
rewrote prespawn/modelist/soundlist code. server tracks progress now.
------------------------------------------------------------------------
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4167 fc73d0e0-1445-4013-8a0c-d673dee63da5
2013-03-12 22:29:40 +00:00
|
|
|
if (newtime < 0)
|
|
|
|
newtime = 0;
|
2005-12-21 03:07:33 +00:00
|
|
|
|
2012-11-27 03:23:19 +00:00
|
|
|
if (newtime >= demtime)
|
------------------------------------------------------------------------
r4169 | acceptthis | 2013-01-17 08:55:12 +0000 (Thu, 17 Jan 2013) | 31 lines
removed MAX_VISEDICTS limit.
PEXT2_REPLACEMENTDELTAS tweaked, now has 4 million entity limit. still not enabled by default.
TE_BEAM now maps to a separate TEQW_BEAM to avoid conflicts with QW.
added android multitouch emulation for windows/rawinput (in_simulatemultitouch).
split topcolor/bottomcolor from scoreboard, for dp's colormap|1024 feature.
now using utf-8 for windows consoles.
qcc warnings/errors now give clickable console links for quick+easy editing.
disabled menutint when the currently active item changes contrast or gamma (for OneManClan).
Added support for drawfont/drawfontscale.
tweaked the qcvm a little to reduce the number of pointers.
.doll file loading. still experimental and will likely crash. requires csqc active, even if its a dummy progs. this will be fixed in time. Still other things that need cleaning up.
windows: gl_font "?" shows the standard windows font-selection dialog, and can be used to select windows fonts. not all work. and you probably don't want to use windings.
fixed splitscreen support when playing mvds. added mini-scoreboards to splitscreen.
editor/debugger now shows asm if there's no linenumber info. also, pressing f1 for help shows the shortcuts.
Added support for .framegroups files for psk(psa) and iqm formats.
True support for ezquake's colour codes. Mutually exclusive with background colours.
path command output slightly more readable.
added support for digest_hex (MD4, SHA1, CRC16).
skingroups now colourmap correctly.
Fix terrain colour hints, and litdata from the wrong bsp.
fix ftp dual-homed issue. support epsv command, and enable ipv6 (eprt still not supported).
remove d3d11 compilation from the makefile. the required headers are not provided by mingw, and are not available to the build bot, so don't bother.
fix v *= v.x and similar opcodes.
fteqcc: fixed support for áéÃóú type chars in names. utf-8 files now properly supported (even with the utf-8 bom/identifier). utf-16 also supported.
fteqcc: fixed '#if 1 == 3 && 4' parsing.
fteqcc: -Werror acts on the warning, rather than as a separate error. Line numbers are thus more readable.
fteqcc: copyright message now includes compile date instead.
fteqccgui: the treeview control is now coloured depending on whether there were warnings/errors in the last compile.
fteqccgui: the output window is now focused and scrolls down as compilation progresses.
pr_dumpplatform command dumps out some pragmas to convert more serious warnings to errors. This is to avoid the infamous 'fteqcc sucks cos my code sucks' issue.
rewrote prespawn/modelist/soundlist code. server tracks progress now.
------------------------------------------------------------------------
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4167 fc73d0e0-1445-4013-8a0c-d673dee63da5
2013-03-12 22:29:40 +00:00
|
|
|
cls.demoseektime = newtime;
|
2012-11-27 03:23:19 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
Con_Printf("Rewinding demo\n");
|
|
|
|
CL_PlayDemo(lastdemoname);
|
2005-12-21 03:07:33 +00:00
|
|
|
|
2012-11-27 03:23:19 +00:00
|
|
|
//now fastparse it.
|
------------------------------------------------------------------------
r4169 | acceptthis | 2013-01-17 08:55:12 +0000 (Thu, 17 Jan 2013) | 31 lines
removed MAX_VISEDICTS limit.
PEXT2_REPLACEMENTDELTAS tweaked, now has 4 million entity limit. still not enabled by default.
TE_BEAM now maps to a separate TEQW_BEAM to avoid conflicts with QW.
added android multitouch emulation for windows/rawinput (in_simulatemultitouch).
split topcolor/bottomcolor from scoreboard, for dp's colormap|1024 feature.
now using utf-8 for windows consoles.
qcc warnings/errors now give clickable console links for quick+easy editing.
disabled menutint when the currently active item changes contrast or gamma (for OneManClan).
Added support for drawfont/drawfontscale.
tweaked the qcvm a little to reduce the number of pointers.
.doll file loading. still experimental and will likely crash. requires csqc active, even if its a dummy progs. this will be fixed in time. Still other things that need cleaning up.
windows: gl_font "?" shows the standard windows font-selection dialog, and can be used to select windows fonts. not all work. and you probably don't want to use windings.
fixed splitscreen support when playing mvds. added mini-scoreboards to splitscreen.
editor/debugger now shows asm if there's no linenumber info. also, pressing f1 for help shows the shortcuts.
Added support for .framegroups files for psk(psa) and iqm formats.
True support for ezquake's colour codes. Mutually exclusive with background colours.
path command output slightly more readable.
added support for digest_hex (MD4, SHA1, CRC16).
skingroups now colourmap correctly.
Fix terrain colour hints, and litdata from the wrong bsp.
fix ftp dual-homed issue. support epsv command, and enable ipv6 (eprt still not supported).
remove d3d11 compilation from the makefile. the required headers are not provided by mingw, and are not available to the build bot, so don't bother.
fix v *= v.x and similar opcodes.
fteqcc: fixed support for áéÃóú type chars in names. utf-8 files now properly supported (even with the utf-8 bom/identifier). utf-16 also supported.
fteqcc: fixed '#if 1 == 3 && 4' parsing.
fteqcc: -Werror acts on the warning, rather than as a separate error. Line numbers are thus more readable.
fteqcc: copyright message now includes compile date instead.
fteqccgui: the treeview control is now coloured depending on whether there were warnings/errors in the last compile.
fteqccgui: the output window is now focused and scrolls down as compilation progresses.
pr_dumpplatform command dumps out some pragmas to convert more serious warnings to errors. This is to avoid the infamous 'fteqcc sucks cos my code sucks' issue.
rewrote prespawn/modelist/soundlist code. server tracks progress now.
------------------------------------------------------------------------
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4167 fc73d0e0-1445-4013-8a0c-d673dee63da5
2013-03-12 22:29:40 +00:00
|
|
|
cls.demoseektime = newtime;
|
2005-12-21 03:07:33 +00:00
|
|
|
}
|
------------------------------------------------------------------------
r4169 | acceptthis | 2013-01-17 08:55:12 +0000 (Thu, 17 Jan 2013) | 31 lines
removed MAX_VISEDICTS limit.
PEXT2_REPLACEMENTDELTAS tweaked, now has 4 million entity limit. still not enabled by default.
TE_BEAM now maps to a separate TEQW_BEAM to avoid conflicts with QW.
added android multitouch emulation for windows/rawinput (in_simulatemultitouch).
split topcolor/bottomcolor from scoreboard, for dp's colormap|1024 feature.
now using utf-8 for windows consoles.
qcc warnings/errors now give clickable console links for quick+easy editing.
disabled menutint when the currently active item changes contrast or gamma (for OneManClan).
Added support for drawfont/drawfontscale.
tweaked the qcvm a little to reduce the number of pointers.
.doll file loading. still experimental and will likely crash. requires csqc active, even if its a dummy progs. this will be fixed in time. Still other things that need cleaning up.
windows: gl_font "?" shows the standard windows font-selection dialog, and can be used to select windows fonts. not all work. and you probably don't want to use windings.
fixed splitscreen support when playing mvds. added mini-scoreboards to splitscreen.
editor/debugger now shows asm if there's no linenumber info. also, pressing f1 for help shows the shortcuts.
Added support for .framegroups files for psk(psa) and iqm formats.
True support for ezquake's colour codes. Mutually exclusive with background colours.
path command output slightly more readable.
added support for digest_hex (MD4, SHA1, CRC16).
skingroups now colourmap correctly.
Fix terrain colour hints, and litdata from the wrong bsp.
fix ftp dual-homed issue. support epsv command, and enable ipv6 (eprt still not supported).
remove d3d11 compilation from the makefile. the required headers are not provided by mingw, and are not available to the build bot, so don't bother.
fix v *= v.x and similar opcodes.
fteqcc: fixed support for áéÃóú type chars in names. utf-8 files now properly supported (even with the utf-8 bom/identifier). utf-16 also supported.
fteqcc: fixed '#if 1 == 3 && 4' parsing.
fteqcc: -Werror acts on the warning, rather than as a separate error. Line numbers are thus more readable.
fteqcc: copyright message now includes compile date instead.
fteqccgui: the treeview control is now coloured depending on whether there were warnings/errors in the last compile.
fteqccgui: the output window is now focused and scrolls down as compilation progresses.
pr_dumpplatform command dumps out some pragmas to convert more serious warnings to errors. This is to avoid the infamous 'fteqcc sucks cos my code sucks' issue.
rewrote prespawn/modelist/soundlist code. server tracks progress now.
------------------------------------------------------------------------
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4167 fc73d0e0-1445-4013-8a0c-d673dee63da5
2013-03-12 22:29:40 +00:00
|
|
|
cls.demoseeking = true;
|
2005-12-21 03:07:33 +00:00
|
|
|
}
|
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
/*
|
|
|
|
====================
|
|
|
|
CL_GetDemoMessage
|
|
|
|
|
|
|
|
FIXME...
|
|
|
|
====================
|
|
|
|
*/
|
2004-12-15 19:43:22 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
vec3_t demoangles;
|
2004-12-15 19:43:22 +00:00
|
|
|
float olddemotime = 0;
|
2005-01-26 03:39:47 +00:00
|
|
|
float nextdemotime = 0;
|
2004-08-23 00:15:46 +00:00
|
|
|
qboolean CL_GetDemoMessage (void)
|
|
|
|
{
|
|
|
|
int r, i, j, tracknum;
|
|
|
|
float f;
|
|
|
|
float demotime;
|
2004-12-08 04:14:52 +00:00
|
|
|
qbyte c, msecsadded=0;
|
2004-08-23 00:15:46 +00:00
|
|
|
usercmd_t *pcmd;
|
2004-11-18 17:55:04 +00:00
|
|
|
q1usercmd_t q1cmd;
|
2007-07-23 12:00:17 +00:00
|
|
|
int demopos = 0;
|
|
|
|
int msglength;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2008-01-09 00:52:31 +00:00
|
|
|
if (endofdemo)
|
|
|
|
{
|
|
|
|
endofdemo = false;
|
|
|
|
CL_StopPlayback ();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
#ifdef NQPROT
|
2011-05-29 04:26:29 +00:00
|
|
|
if (cls.demoplayback == DPB_NETQUAKE
|
2007-05-25 22:16:29 +00:00
|
|
|
#ifdef Q2CLIENT
|
|
|
|
|| cls.demoplayback == DPB_QUAKE2
|
|
|
|
#endif
|
|
|
|
)
|
2004-08-23 00:15:46 +00:00
|
|
|
{ //read the nq demo
|
|
|
|
|
2009-07-18 19:46:32 +00:00
|
|
|
//if we've finished reading the connection part of the demo, but not finished loading, pause the demo
|
|
|
|
if (cls.signon == 1 && !cl.worldmodel)
|
|
|
|
{
|
|
|
|
demtime = cl.gametime;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//if this is the starting frame of a timedemo
|
|
|
|
if (cls.timedemo)
|
|
|
|
if (cls.td_startframe == -1 && cls.state == ca_active)
|
|
|
|
{ //start the timer only once we are connected.
|
|
|
|
cls.td_starttime = Sys_DoubleTime();
|
|
|
|
cls.td_startframe = host_framecount;
|
|
|
|
|
|
|
|
//force the console up, we're done loading.
|
2013-10-08 14:28:11 +00:00
|
|
|
Key_Dest_Remove(kdm_console);
|
|
|
|
Key_Dest_Remove(kdm_menu);
|
2009-07-18 19:46:32 +00:00
|
|
|
scr_con_current = 0;
|
|
|
|
}
|
|
|
|
|
2007-05-25 22:16:29 +00:00
|
|
|
#ifdef Q2CLIENT
|
2004-08-23 00:15:46 +00:00
|
|
|
if (cls.demoplayback == DPB_QUAKE2 && (cls.netchan.last_received == realtime || cls.netchan.last_received > realtime-0.1))
|
|
|
|
return 0;
|
2011-05-29 04:26:29 +00:00
|
|
|
else
|
2007-05-25 22:16:29 +00:00
|
|
|
#endif
|
|
|
|
if (cls.demoplayback == DPB_NETQUAKE && cls.signon == 4/*SIGNONS*/)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2008-01-30 02:32:00 +00:00
|
|
|
if (!demtime)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
cl.gametime = 0;
|
2008-01-30 02:32:00 +00:00
|
|
|
cl.gametimemark = demtime;
|
2004-12-15 19:43:22 +00:00
|
|
|
olddemotime = 0;
|
2004-08-23 00:15:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2011-10-27 15:46:36 +00:00
|
|
|
cls.netchan.last_received = realtime;
|
|
|
|
if ((cls.timedemo && host_framecount == demoframe) || (!cls.timedemo && demtime<= cl.gametime && cl.gametime))// > dem_lasttime+demtime)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2010-11-15 02:40:31 +00:00
|
|
|
if (demtime <= cl.gametime-1)
|
2008-01-30 02:32:00 +00:00
|
|
|
demtime = cl.gametime;
|
2004-08-23 00:15:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2011-10-27 15:46:36 +00:00
|
|
|
demoframe = host_framecount;
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
2007-07-23 12:00:17 +00:00
|
|
|
if (readdemobytes(&demopos, &msglength, 4) != 4)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
if (cls.demoplayback == DPB_NETQUAKE)
|
|
|
|
{
|
|
|
|
for (i=0 ; i<3 ; i++)
|
|
|
|
{
|
2007-07-23 12:00:17 +00:00
|
|
|
readdemobytes(&demopos, &f, 4);
|
2013-07-26 17:19:06 +00:00
|
|
|
demoangles[i] = LittleFloat (f);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
}
|
2004-12-08 04:14:52 +00:00
|
|
|
|
2008-01-30 02:32:00 +00:00
|
|
|
olddemotime = demtime;
|
2004-12-15 19:43:22 +00:00
|
|
|
|
2007-07-23 12:00:17 +00:00
|
|
|
msglength = LittleLong (msglength);
|
|
|
|
if (msglength > MAX_NQMSGLEN)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
Con_Printf ("Demo message > MAX_MSGLEN");
|
|
|
|
CL_StopPlayback ();
|
|
|
|
return 0;
|
|
|
|
}
|
2007-07-23 12:00:17 +00:00
|
|
|
if (readdemobytes(&demopos, net_message.data, msglength) != msglength)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2008-01-09 00:52:31 +00:00
|
|
|
demo_flushbytes(demopos);
|
2007-07-23 12:00:17 +00:00
|
|
|
net_message.cursize = msglength;
|
2011-05-29 04:26:29 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
2008-02-04 23:41:04 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
readnext:
|
2012-04-24 12:22:50 +00:00
|
|
|
if (demopos)
|
|
|
|
{
|
|
|
|
demo_flushbytes(demopos);
|
|
|
|
demopos = 0;
|
|
|
|
}
|
2013-03-12 22:44:00 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
// read the time from the packet
|
2008-01-09 00:52:31 +00:00
|
|
|
if (cls.demoplayback == DPB_MVD || cls.demoplayback == DPB_EZTV)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2008-01-30 02:32:00 +00:00
|
|
|
if (demtime < 0)
|
2007-07-23 12:00:17 +00:00
|
|
|
{
|
2008-01-30 02:32:00 +00:00
|
|
|
readdemobytes(&demopos, NULL, 0); //keep it feeding through
|
2006-03-14 01:25:46 +00:00
|
|
|
return 0;
|
2007-07-23 12:00:17 +00:00
|
|
|
}
|
2008-01-30 02:32:00 +00:00
|
|
|
if (olddemotime > demtime)
|
|
|
|
olddemotime = demtime;
|
|
|
|
if (demtime + 1.0 < olddemotime)
|
|
|
|
demtime = olddemotime - 1.0;
|
2004-12-15 19:43:22 +00:00
|
|
|
|
2007-07-23 12:00:17 +00:00
|
|
|
if (readdemobytes(&demopos, &msecsadded, sizeof(msecsadded)) != sizeof(msecsadded))
|
2007-12-01 05:55:44 +00:00
|
|
|
{
|
2012-04-24 12:22:50 +00:00
|
|
|
Con_DPrintf("Not enough buffered\n");
|
2008-01-30 02:32:00 +00:00
|
|
|
demotime = olddemotime;
|
|
|
|
nextdemotime = demotime;
|
2013-03-12 22:44:00 +00:00
|
|
|
return 0;
|
2008-01-30 02:32:00 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
demotime = olddemotime + msecsadded*(1.0f/1000);
|
|
|
|
nextdemotime = demotime;
|
2007-12-01 05:55:44 +00:00
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-07-23 12:00:17 +00:00
|
|
|
if (readdemobytes(&demopos, &demotime, sizeof(demotime)) != sizeof(demotime))
|
2008-01-23 01:36:51 +00:00
|
|
|
{
|
2008-01-30 02:32:00 +00:00
|
|
|
Con_DPrintf("Not enough buffered\n");
|
|
|
|
olddemotime = demtime; //if we ran out of buffered demo, delay the demo parsing a little
|
2007-07-23 12:00:17 +00:00
|
|
|
return 0;
|
2008-01-23 01:36:51 +00:00
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
demotime = LittleFloat(demotime);
|
|
|
|
}
|
|
|
|
|
2012-04-24 12:22:50 +00:00
|
|
|
if (cl.sendprespawn)
|
|
|
|
{
|
|
|
|
CL_RequestNextDownload();
|
|
|
|
if (!cls.timedemo)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-05-29 04:26:29 +00:00
|
|
|
// decide if it is time to grab the next message
|
------------------------------------------------------------------------
r4169 | acceptthis | 2013-01-17 08:55:12 +0000 (Thu, 17 Jan 2013) | 31 lines
removed MAX_VISEDICTS limit.
PEXT2_REPLACEMENTDELTAS tweaked, now has 4 million entity limit. still not enabled by default.
TE_BEAM now maps to a separate TEQW_BEAM to avoid conflicts with QW.
added android multitouch emulation for windows/rawinput (in_simulatemultitouch).
split topcolor/bottomcolor from scoreboard, for dp's colormap|1024 feature.
now using utf-8 for windows consoles.
qcc warnings/errors now give clickable console links for quick+easy editing.
disabled menutint when the currently active item changes contrast or gamma (for OneManClan).
Added support for drawfont/drawfontscale.
tweaked the qcvm a little to reduce the number of pointers.
.doll file loading. still experimental and will likely crash. requires csqc active, even if its a dummy progs. this will be fixed in time. Still other things that need cleaning up.
windows: gl_font "?" shows the standard windows font-selection dialog, and can be used to select windows fonts. not all work. and you probably don't want to use windings.
fixed splitscreen support when playing mvds. added mini-scoreboards to splitscreen.
editor/debugger now shows asm if there's no linenumber info. also, pressing f1 for help shows the shortcuts.
Added support for .framegroups files for psk(psa) and iqm formats.
True support for ezquake's colour codes. Mutually exclusive with background colours.
path command output slightly more readable.
added support for digest_hex (MD4, SHA1, CRC16).
skingroups now colourmap correctly.
Fix terrain colour hints, and litdata from the wrong bsp.
fix ftp dual-homed issue. support epsv command, and enable ipv6 (eprt still not supported).
remove d3d11 compilation from the makefile. the required headers are not provided by mingw, and are not available to the build bot, so don't bother.
fix v *= v.x and similar opcodes.
fteqcc: fixed support for áéÃóú type chars in names. utf-8 files now properly supported (even with the utf-8 bom/identifier). utf-16 also supported.
fteqcc: fixed '#if 1 == 3 && 4' parsing.
fteqcc: -Werror acts on the warning, rather than as a separate error. Line numbers are thus more readable.
fteqcc: copyright message now includes compile date instead.
fteqccgui: the treeview control is now coloured depending on whether there were warnings/errors in the last compile.
fteqccgui: the output window is now focused and scrolls down as compilation progresses.
pr_dumpplatform command dumps out some pragmas to convert more serious warnings to errors. This is to avoid the infamous 'fteqcc sucks cos my code sucks' issue.
rewrote prespawn/modelist/soundlist code. server tracks progress now.
------------------------------------------------------------------------
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4167 fc73d0e0-1445-4013-8a0c-d673dee63da5
2013-03-12 22:29:40 +00:00
|
|
|
if (cls.demoseeking)
|
|
|
|
{
|
|
|
|
demtime = demotime; //warp
|
|
|
|
if (demtime >= cls.demoseektime)
|
|
|
|
cls.demoseeking = false;
|
|
|
|
}
|
|
|
|
else if (cls.timedemo)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2012-04-24 12:22:50 +00:00
|
|
|
if (cls.td_lastframe < 0)
|
|
|
|
cls.td_lastframe = demotime;
|
|
|
|
else if (demotime > cls.td_lastframe)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2012-04-24 12:22:50 +00:00
|
|
|
cls.td_lastframe = demotime;
|
|
|
|
return 0; // already read this frame's message
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
2012-04-24 12:22:50 +00:00
|
|
|
if (cls.td_startframe == -1 && cls.state == ca_active)
|
|
|
|
{ //start the timer only once we are connected.
|
|
|
|
cls.td_starttime = Sys_DoubleTime();
|
|
|
|
cls.td_startframe = host_framecount;
|
|
|
|
|
|
|
|
//force the console up, we're done loading.
|
2013-10-08 14:28:11 +00:00
|
|
|
Key_Dest_Remove(kdm_console);
|
2012-04-24 12:22:50 +00:00
|
|
|
scr_con_current = 0;
|
|
|
|
}
|
|
|
|
if (cls.td_startframe == host_framecount+1)
|
|
|
|
cls.td_starttime = Sys_DoubleTime();
|
2008-01-30 02:32:00 +00:00
|
|
|
demtime = demotime; // warp
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
else if (!cl.paused && cls.state >= ca_onserver)
|
2005-07-28 15:33:27 +00:00
|
|
|
{ // always grab until fully connected
|
2008-01-30 02:32:00 +00:00
|
|
|
if (demtime + 1.0 < demotime)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
// too far back
|
2008-01-30 02:32:00 +00:00
|
|
|
demtime = demotime - 1.0;
|
2004-08-23 00:15:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2008-01-30 02:32:00 +00:00
|
|
|
else if (demtime < demotime)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
return 0; // don't need another message yet
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2008-01-30 02:32:00 +00:00
|
|
|
demtime = demotime; // we're warping
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2008-01-09 00:52:31 +00:00
|
|
|
if (cls.demoplayback == DPB_MVD || cls.demoplayback == DPB_EZTV)
|
2004-12-08 04:14:52 +00:00
|
|
|
{
|
2008-01-23 01:36:51 +00:00
|
|
|
if ((msecsadded || cls.netchan.incoming_sequence < 2) && olddemotime != demotime)
|
2004-12-08 04:14:52 +00:00
|
|
|
{
|
2013-03-12 22:44:00 +00:00
|
|
|
if (!(cls.fteprotocolextensions2 & PEXT2_REPLACEMENTDELTAS))
|
|
|
|
{
|
|
|
|
cls.netchan.incoming_sequence++;
|
|
|
|
cls.netchan.incoming_acknowledged++;
|
|
|
|
}
|
2004-12-08 04:14:52 +00:00
|
|
|
cls.netchan.frame_latency = 0;
|
2008-01-30 02:32:00 +00:00
|
|
|
cls.netchan.last_received = realtime; // just to happy timeout check
|
2004-12-08 04:14:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
if (cls.state < ca_demostart)
|
|
|
|
Host_Error ("CL_GetDemoMessage: cls.state != ca_active");
|
2011-05-29 04:26:29 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
// get the msg type
|
2013-03-12 22:44:00 +00:00
|
|
|
if (readdemobytes (&demopos, &c, sizeof(c)) != sizeof(c))
|
2008-01-23 01:36:51 +00:00
|
|
|
{
|
2008-01-30 02:32:00 +00:00
|
|
|
Con_DPrintf("Not enough buffered\n");
|
|
|
|
olddemotime = demtime+1;
|
2006-03-14 01:25:46 +00:00
|
|
|
return 0;
|
2008-01-23 01:36:51 +00:00
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
switch (c&7)
|
|
|
|
{
|
|
|
|
case dem_cmd :
|
2013-03-12 22:44:00 +00:00
|
|
|
if (cls.demoplayback == DPB_MVD)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2013-03-12 22:44:00 +00:00
|
|
|
Con_Printf("mvd demos/qtv streams should not contain dem_cmd\n");
|
|
|
|
olddemotime = demtime+1;
|
|
|
|
CL_StopPlayback ();
|
2004-08-23 00:15:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2006-11-03 15:53:04 +00:00
|
|
|
else
|
2013-03-12 22:44:00 +00:00
|
|
|
{
|
2006-11-03 15:53:04 +00:00
|
|
|
// user sent input
|
|
|
|
i = cls.netchan.outgoing_sequence & UPDATE_MASK;
|
2013-03-12 22:53:23 +00:00
|
|
|
pcmd = &cl.outframes[i].cmd[0];
|
2007-07-23 12:00:17 +00:00
|
|
|
r = readdemobytes (&demopos, &q1cmd, sizeof(q1cmd));
|
2006-11-03 15:53:04 +00:00
|
|
|
if (r != sizeof(q1cmd))
|
|
|
|
{
|
2008-01-30 02:32:00 +00:00
|
|
|
Con_DPrintf("Not enough buffered\n");
|
|
|
|
olddemotime = demtime+1;
|
2006-11-03 15:53:04 +00:00
|
|
|
CL_StopPlayback ();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// byte order stuff
|
|
|
|
for (j = 0; j < 3; j++)
|
|
|
|
{
|
|
|
|
q1cmd.angles[j] = LittleFloat(q1cmd.angles[j]);
|
|
|
|
pcmd->angles[j] = ((int)(q1cmd.angles[j]*65536.0/360)&65535);
|
|
|
|
}
|
|
|
|
pcmd->forwardmove = q1cmd.forwardmove = LittleShort(q1cmd.forwardmove);
|
|
|
|
pcmd->sidemove = q1cmd.sidemove = LittleShort(q1cmd.sidemove);
|
|
|
|
pcmd->upmove = q1cmd.upmove = LittleShort(q1cmd.upmove);
|
|
|
|
pcmd->msec = q1cmd.msec;
|
|
|
|
pcmd->buttons = q1cmd.buttons;
|
2004-11-18 17:55:04 +00:00
|
|
|
|
|
|
|
|
2013-03-12 22:53:23 +00:00
|
|
|
cl.outframes[i].senttime = realtime;
|
2006-11-03 15:53:04 +00:00
|
|
|
cls.netchan.outgoing_sequence++;
|
2013-03-12 22:53:23 +00:00
|
|
|
cl.movesequence = cls.netchan.outgoing_sequence;
|
2006-11-03 15:53:04 +00:00
|
|
|
for (i=0 ; i<3 ; i++)
|
|
|
|
{
|
2007-07-23 12:00:17 +00:00
|
|
|
readdemobytes (&demopos, &f, 4);
|
2013-07-26 17:19:06 +00:00
|
|
|
demoangles[i] = LittleFloat (f);
|
2012-07-05 19:42:36 +00:00
|
|
|
cl.playerview[0].viewangles[i] = LittleFloat (f);
|
2006-11-03 15:53:04 +00:00
|
|
|
}
|
2012-04-24 12:22:50 +00:00
|
|
|
goto readnext;
|
2013-03-12 22:44:00 +00:00
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case dem_read:
|
|
|
|
readit:
|
|
|
|
// get the next message
|
2007-07-23 12:00:17 +00:00
|
|
|
if (readdemobytes (&demopos, &msglength, 4) != 4)
|
2008-01-23 01:36:51 +00:00
|
|
|
{
|
2008-01-30 02:32:00 +00:00
|
|
|
Con_DPrintf("Not enough buffered\n");
|
|
|
|
olddemotime = demtime+1;
|
2006-03-14 01:25:46 +00:00
|
|
|
return 0;
|
2008-01-23 01:36:51 +00:00
|
|
|
}
|
2007-07-23 12:00:17 +00:00
|
|
|
msglength = LittleLong (msglength);
|
|
|
|
//Con_Printf("read: %ld bytes\n", msglength);
|
|
|
|
if ((unsigned int)msglength > MAX_OVERALLMSGLEN)
|
2005-12-21 08:34:34 +00:00
|
|
|
{
|
|
|
|
Con_Printf ("Demo message > MAX_OVERALLMSGLEN\n");
|
|
|
|
CL_StopPlayback ();
|
|
|
|
return 0;
|
|
|
|
}
|
2007-07-23 12:00:17 +00:00
|
|
|
if (readdemobytes (&demopos, net_message.data, msglength) != msglength)
|
2007-12-01 05:55:44 +00:00
|
|
|
{
|
2008-01-30 02:32:00 +00:00
|
|
|
Con_DPrintf("Not enough buffered\n");
|
|
|
|
olddemotime = demtime+1;
|
2004-08-23 00:15:46 +00:00
|
|
|
return 0;
|
2007-12-01 05:55:44 +00:00
|
|
|
}
|
2007-07-23 12:00:17 +00:00
|
|
|
net_message.cursize = msglength;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2008-01-09 00:52:31 +00:00
|
|
|
if (cls.demoplayback == DPB_MVD || cls.demoplayback == DPB_EZTV)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2013-06-23 02:17:02 +00:00
|
|
|
int seat;
|
2004-08-23 00:15:46 +00:00
|
|
|
switch(cls_lasttype)
|
|
|
|
{
|
|
|
|
case dem_multiple:
|
2013-06-23 02:17:02 +00:00
|
|
|
for (seat = 0; seat < cl.splitclients; seat++)
|
|
|
|
{
|
|
|
|
tracknum = cl.playerview[seat].cam_spec_track;
|
|
|
|
if (!cl.playerview[seat].cam_auto)
|
|
|
|
tracknum = -1;
|
|
|
|
if (tracknum == -1 || !(cls_lastto & (1 << tracknum)))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (seat == cl.splitclients)
|
2008-01-30 02:32:00 +00:00
|
|
|
{
|
|
|
|
olddemotime = demotime;
|
|
|
|
goto readnext;
|
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
break;
|
|
|
|
case dem_single:
|
2013-06-23 02:17:02 +00:00
|
|
|
for (seat = 0; seat < cl.splitclients; seat++)
|
|
|
|
{
|
|
|
|
tracknum = cl.playerview[seat].cam_spec_track;
|
|
|
|
if (!cl.playerview[seat].cam_auto)
|
|
|
|
tracknum = -1;
|
|
|
|
if (tracknum == -1 || !(cls_lastto != tracknum))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (seat == cl.splitclients)
|
2008-01-30 02:32:00 +00:00
|
|
|
{
|
|
|
|
olddemotime = demotime;
|
2004-08-23 00:15:46 +00:00
|
|
|
goto readnext;
|
2008-01-30 02:32:00 +00:00
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
break;
|
2007-07-23 12:00:17 +00:00
|
|
|
case dem_all:
|
|
|
|
if (c & ~dem_mask)
|
2008-01-30 02:32:00 +00:00
|
|
|
{
|
|
|
|
olddemotime = demotime;
|
2007-07-23 12:00:17 +00:00
|
|
|
goto readnext;
|
2008-01-30 02:32:00 +00:00
|
|
|
}
|
2007-07-23 12:00:17 +00:00
|
|
|
break;
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case dem_set :
|
2013-03-12 22:44:00 +00:00
|
|
|
if (readdemobytes (&demopos, &j, 4) != 4)
|
|
|
|
{
|
|
|
|
olddemotime = demtime;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (readdemobytes (&demopos, &i, 4) != 4)
|
|
|
|
{
|
|
|
|
olddemotime = demtime;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
cls.netchan.outgoing_sequence = LittleLong(j);
|
2004-08-23 00:15:46 +00:00
|
|
|
cls.netchan.incoming_sequence = LittleLong(i);
|
2013-03-12 22:53:23 +00:00
|
|
|
cl.movesequence = cls.netchan.outgoing_sequence;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2008-01-09 00:52:31 +00:00
|
|
|
if (cls.demoplayback == DPB_MVD || cls.demoplayback == DPB_EZTV)
|
2004-08-23 00:15:46 +00:00
|
|
|
cls.netchan.incoming_acknowledged = cls.netchan.incoming_sequence;
|
|
|
|
goto readnext;
|
|
|
|
|
|
|
|
case dem_multiple:
|
2007-07-23 12:00:17 +00:00
|
|
|
if (readdemobytes (&demopos, &i, sizeof(i)) != sizeof(i))
|
2008-01-23 01:36:51 +00:00
|
|
|
{
|
2008-01-30 02:32:00 +00:00
|
|
|
olddemotime = demtime;
|
2006-03-14 01:25:46 +00:00
|
|
|
return 0;
|
2008-01-23 01:36:51 +00:00
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
cls_lastto = LittleLong(i);
|
|
|
|
cls_lasttype = dem_multiple;
|
|
|
|
goto readit;
|
|
|
|
|
|
|
|
case dem_single:
|
|
|
|
cls_lastto = c >> 3;
|
|
|
|
cls_lasttype = dem_single;
|
|
|
|
goto readit;
|
|
|
|
|
|
|
|
case dem_stats:
|
|
|
|
cls_lastto = c >> 3;
|
|
|
|
cls_lasttype = dem_stats;
|
|
|
|
goto readit;
|
|
|
|
|
|
|
|
case dem_all:
|
|
|
|
cls_lastto = 0;
|
|
|
|
cls_lasttype = dem_all;
|
|
|
|
goto readit;
|
|
|
|
|
|
|
|
default :
|
|
|
|
Con_Printf("Corrupted demo.\n");
|
|
|
|
CL_StopPlayback ();
|
|
|
|
return 0;
|
|
|
|
}
|
2007-07-23 12:00:17 +00:00
|
|
|
demo_flushbytes(demopos);
|
|
|
|
|
2008-01-23 01:36:51 +00:00
|
|
|
olddemotime = demotime;
|
2012-04-24 12:22:50 +00:00
|
|
|
// cls.td_lastframe = host_framecount;
|
2008-01-23 01:36:51 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
====================
|
|
|
|
CL_GetMessage
|
|
|
|
|
|
|
|
Handles recording and playback of demos, on top of NET_ code
|
|
|
|
====================
|
|
|
|
*/
|
|
|
|
qboolean CL_GetMessage (void)
|
|
|
|
{
|
|
|
|
if (cls.demoplayback != DPB_NONE)
|
|
|
|
return CL_GetDemoMessage ();
|
|
|
|
|
2011-10-27 15:46:36 +00:00
|
|
|
if (NET_GetPacket (NS_CLIENT, 0) < 0)
|
2004-08-23 00:15:46 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
====================
|
|
|
|
CL_Stop_f
|
|
|
|
|
|
|
|
stop recording a demo
|
|
|
|
====================
|
|
|
|
*/
|
|
|
|
void CL_Stop_f (void)
|
|
|
|
{
|
|
|
|
if (!cls.demorecording)
|
|
|
|
{
|
2004-11-29 01:21:00 +00:00
|
|
|
#ifndef CLIENTONLY
|
2004-08-23 00:15:46 +00:00
|
|
|
SV_MVDStop_f();
|
2013-07-26 17:19:06 +00:00
|
|
|
#else
|
2004-08-23 00:15:46 +00:00
|
|
|
Con_Printf ("Not recording a demo.\n");
|
2013-07-26 17:19:06 +00:00
|
|
|
#endif
|
2004-08-23 00:15:46 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// write a disconnect message to the demo file
|
|
|
|
SZ_Clear (&net_message);
|
|
|
|
MSG_WriteLong (&net_message, -1); // -1 sequence means out of band
|
|
|
|
MSG_WriteByte (&net_message, svc_disconnect);
|
|
|
|
MSG_WriteString (&net_message, "EndOfDemo");
|
2013-07-26 17:19:06 +00:00
|
|
|
CL_WriteDemoMessage (&net_message, sizeof(int));
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
// finish up
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_CLOSE (cls.demooutfile);
|
|
|
|
cls.demooutfile = NULL;
|
2004-08-23 00:15:46 +00:00
|
|
|
cls.demorecording = false;
|
|
|
|
Con_Printf ("Completed demo\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
====================
|
|
|
|
CL_WriteDemoMessage
|
|
|
|
|
|
|
|
Dumps the current net message, prefixed by the length and view angles
|
|
|
|
====================
|
|
|
|
*/
|
|
|
|
void CL_WriteRecordDemoMessage (sizebuf_t *msg, int seq)
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
int i;
|
|
|
|
float fl;
|
|
|
|
qbyte c;
|
|
|
|
|
2008-01-30 02:32:00 +00:00
|
|
|
//Con_Printf("write: %ld bytes, %4.4f\n", msg->cursize, demtime);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
if (!cls.demorecording)
|
|
|
|
return;
|
|
|
|
|
2008-01-30 02:32:00 +00:00
|
|
|
fl = LittleFloat((float)demtime);
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_WRITE (cls.demooutfile, &fl, sizeof(fl));
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
c = dem_read;
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_WRITE (cls.demooutfile, &c, sizeof(c));
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
len = LittleLong (msg->cursize + 8);
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_WRITE (cls.demooutfile, &len, 4);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
i = LittleLong(seq);
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_WRITE (cls.demooutfile, &i, 4);
|
|
|
|
VFS_WRITE (cls.demooutfile, &i, 4);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_WRITE (cls.demooutfile, msg->data, msg->cursize);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_FLUSH (cls.demooutfile);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CL_WriteSetDemoMessage (void)
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
float fl;
|
|
|
|
qbyte c;
|
|
|
|
|
2008-01-30 02:32:00 +00:00
|
|
|
//Con_Printf("write: %ld bytes, %4.4f\n", msg->cursize, demtime);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
if (cls.demorecording != 1)
|
2004-08-23 00:15:46 +00:00
|
|
|
return;
|
|
|
|
|
2008-01-30 02:32:00 +00:00
|
|
|
fl = LittleFloat((float)demtime);
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_WRITE (cls.demooutfile, &fl, sizeof(fl));
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
c = dem_set;
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_WRITE (cls.demooutfile, &c, sizeof(c));
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
len = LittleLong(cls.netchan.outgoing_sequence);
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_WRITE (cls.demooutfile, &len, 4);
|
2004-08-23 00:15:46 +00:00
|
|
|
len = LittleLong(cls.netchan.incoming_sequence);
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_WRITE (cls.demooutfile, &len, 4);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_FLUSH (cls.demooutfile);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
/*
|
|
|
|
record a single player game.
|
|
|
|
*/
|
|
|
|
#ifndef CLIENTONLY
|
|
|
|
mvddest_t *SV_InitRecordFile (char *name);
|
|
|
|
qboolean SV_MVD_Record (mvddest_t *dest);
|
|
|
|
void CL_RecordMap_f (void)
|
|
|
|
{
|
|
|
|
char demoname[MAX_QPATH];
|
|
|
|
char mapname[MAX_QPATH];
|
|
|
|
char *demoext;
|
|
|
|
Q_strncpyz(demoname, Cmd_Argv(1), sizeof(demoname));
|
|
|
|
Q_strncpyz(mapname, Cmd_Argv(2), sizeof(mapname));
|
|
|
|
CL_Disconnect_f();
|
|
|
|
|
|
|
|
SV_SpawnServer (mapname, NULL, false, false);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
COM_DefaultExtension(demoname, ".mvd", sizeof(demoname));
|
|
|
|
demoext = COM_FileExtension(demoname);
|
|
|
|
|
|
|
|
if (!strcmp(demoext, "mvd"))
|
|
|
|
{
|
|
|
|
if (!SV_MVD_Record (SV_InitRecordFile(demoname)))
|
|
|
|
CL_Disconnect_f();
|
|
|
|
// char buf[512];
|
|
|
|
// Cbuf_AddText(va("mvdrecord %s\n", COM_QuotedString(demoname, buf, sizeof(buf))), RESTRICT_LOCAL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cls.demooutfile = FS_OpenVFS (demoname, "wb", FS_GAME);
|
|
|
|
if (!cls.demooutfile)
|
|
|
|
{
|
|
|
|
CL_Disconnect_f();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!strcmp(demoext, "dem"))
|
|
|
|
{
|
|
|
|
cls.demorecording = 2;
|
|
|
|
VFS_PUTS(cls.demooutfile, "-1\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
cls.demorecording = 1;
|
|
|
|
CL_WriteSetDemoMessage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
====================
|
|
|
|
CL_Record_f
|
|
|
|
|
|
|
|
record <demoname> <server>
|
|
|
|
====================
|
|
|
|
*/
|
|
|
|
void CL_Record_f (void)
|
|
|
|
{
|
|
|
|
int c;
|
|
|
|
char name[MAX_OSPATH];
|
|
|
|
sizebuf_t buf;
|
|
|
|
char buf_data[MAX_QWMSGLEN];
|
|
|
|
int n, i, j;
|
2004-09-30 22:24:38 +00:00
|
|
|
char *s, *p, *fname;
|
2004-08-23 00:15:46 +00:00
|
|
|
entity_t *ent;
|
2006-07-24 04:24:41 +00:00
|
|
|
entity_state_t *es;
|
2004-08-23 00:15:46 +00:00
|
|
|
player_info_t *player;
|
|
|
|
extern char gamedirfile[];
|
|
|
|
int seq = 1;
|
|
|
|
|
|
|
|
c = Cmd_Argc();
|
2004-09-30 22:24:38 +00:00
|
|
|
if (c > 2)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2013-07-26 17:19:06 +00:00
|
|
|
#ifndef CLIENTONLY
|
|
|
|
CL_RecordMap_f();
|
|
|
|
#endif
|
2004-08-23 00:15:46 +00:00
|
|
|
Con_Printf ("record <demoname>\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cls.state != ca_active)
|
|
|
|
{
|
|
|
|
Con_Printf ("You must be connected to record.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cls.demorecording)
|
|
|
|
CL_Stop_f();
|
2011-05-29 04:26:29 +00:00
|
|
|
|
2004-09-30 22:24:38 +00:00
|
|
|
if (c == 2) //user supplied a name
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2004-09-30 22:24:38 +00:00
|
|
|
fname = Cmd_Argv(1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ //automagically generate a name
|
|
|
|
if (cl.spectator)
|
|
|
|
{ // FIXME: if tracking a player, use his name
|
|
|
|
fname = va ("spec_%s_%s",
|
|
|
|
TP_PlayerName(),
|
|
|
|
TP_MapName());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // guess game type and write demo name
|
|
|
|
i = TP_CountPlayers();
|
|
|
|
if (cl.teamplay && i >= 3)
|
|
|
|
{ // Teamplay
|
|
|
|
fname = va ("%s_%s_vs_%s_%s",
|
|
|
|
TP_PlayerName(),
|
|
|
|
TP_PlayerTeam(),
|
|
|
|
TP_EnemyTeam(),
|
|
|
|
TP_MapName());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (i == 2)
|
|
|
|
{ // Duel
|
|
|
|
fname = va ("%s_vs_%s_%s",
|
|
|
|
TP_PlayerName(),
|
|
|
|
TP_EnemyName(),
|
|
|
|
TP_MapName());
|
|
|
|
}
|
|
|
|
else if (i > 2)
|
|
|
|
{ // FFA
|
|
|
|
fname = va ("%s_ffa_%s",
|
2011-05-29 04:26:29 +00:00
|
|
|
TP_PlayerName(),
|
2004-09-30 22:24:38 +00:00
|
|
|
TP_MapName());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // one player
|
|
|
|
fname = va ("%s_%s",
|
|
|
|
TP_PlayerName(),
|
|
|
|
TP_MapName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-09 23:29:24 +00:00
|
|
|
while((p = strstr(fname, "..")))
|
2004-09-30 22:24:38 +00:00
|
|
|
{
|
|
|
|
p[0] = '_';
|
|
|
|
p[1] = '_';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the filename doesn't contain illegal characters
|
|
|
|
for (p=fname ; *p ; p++)
|
|
|
|
{
|
|
|
|
char c;
|
|
|
|
*p &= 0x7F; // strip high bit
|
|
|
|
c = *p;
|
|
|
|
if (c<=' ' || c=='?' || c=='*' || (c!=2&&(c=='\\' || c=='/')) || c==':'
|
|
|
|
|| c=='<' || c=='>' || c=='"' || c=='.')
|
|
|
|
*p = '_';
|
|
|
|
}
|
2006-01-13 06:27:18 +00:00
|
|
|
strncpy(name, fname, sizeof(name)-1-8);
|
2004-09-30 22:24:38 +00:00
|
|
|
name[sizeof(name)-1-8] = '\0';
|
|
|
|
|
|
|
|
//make a unique name (unless the user specified it).
|
|
|
|
strcat (name, ".qwd"); //we have the space
|
|
|
|
if (c != 2)
|
|
|
|
{
|
2006-01-13 06:27:18 +00:00
|
|
|
vfsfile_t *f;
|
2004-09-30 22:24:38 +00:00
|
|
|
|
2006-01-13 06:27:18 +00:00
|
|
|
f = FS_OpenVFS (name, "rb", FS_GAME);
|
2004-09-30 22:24:38 +00:00
|
|
|
if (f)
|
|
|
|
{
|
2006-03-11 03:12:10 +00:00
|
|
|
COM_StripExtension(name, name, sizeof(name));
|
2004-09-30 22:24:38 +00:00
|
|
|
p = name + strlen(name);
|
|
|
|
strcat(p, "_XX.qwd");
|
|
|
|
p++;
|
|
|
|
i = 0;
|
|
|
|
do
|
|
|
|
{
|
2006-01-13 06:27:18 +00:00
|
|
|
VFS_CLOSE (f);
|
2004-09-30 22:24:38 +00:00
|
|
|
p[0] = i%100 + '0';
|
|
|
|
p[1] = i%10 + '0';
|
2006-01-13 06:27:18 +00:00
|
|
|
f = FS_OpenVFS (name, "rb", FS_GAME);
|
2004-09-30 22:24:38 +00:00
|
|
|
i++;
|
|
|
|
} while (f && i < 100);
|
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// open the demo file
|
|
|
|
//
|
2010-03-14 14:35:56 +00:00
|
|
|
cls.demooutfile = FS_OpenVFS (name, "wb", FS_GAME);
|
|
|
|
if (!cls.demooutfile)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
Con_Printf ("ERROR: couldn't open.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Con_Printf ("recording to %s.\n", name);
|
|
|
|
cls.demorecording = true;
|
|
|
|
|
|
|
|
/*-------------------------------------------------*/
|
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
switch(cls.protocol)
|
|
|
|
{
|
|
|
|
case CP_QUAKEWORLD:
|
|
|
|
|
|
|
|
// serverdata
|
|
|
|
// send the info about the new client to all connected clients
|
|
|
|
memset(&buf, 0, sizeof(buf));
|
|
|
|
buf.data = buf_data;
|
|
|
|
buf.maxsize = sizeof(buf_data);
|
|
|
|
buf.prim = cls.netchan.netprim;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
// send the serverdata
|
|
|
|
MSG_WriteByte (&buf, svc_serverdata);
|
2004-08-23 00:15:46 +00:00
|
|
|
#ifdef PROTOCOL_VERSION_FTE
|
2013-07-26 17:19:06 +00:00
|
|
|
if (cls.fteprotocolextensions) //maintain demo compatability
|
|
|
|
{
|
|
|
|
MSG_WriteLong (&buf, PROTOCOL_VERSION_FTE);
|
|
|
|
MSG_WriteLong (&buf, cls.fteprotocolextensions);
|
|
|
|
}
|
|
|
|
if (cls.fteprotocolextensions2) //maintain demo compatability
|
|
|
|
{
|
|
|
|
MSG_WriteLong (&buf, PROTOCOL_VERSION_FTE2);
|
|
|
|
MSG_WriteLong (&buf, cls.fteprotocolextensions2);
|
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
#endif
|
2013-07-26 17:19:06 +00:00
|
|
|
MSG_WriteLong (&buf, PROTOCOL_VERSION_QW);
|
|
|
|
MSG_WriteLong (&buf, cl.servercount);
|
|
|
|
MSG_WriteString (&buf, gamedirfile);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
if (cls.fteprotocolextensions2 & PEXT2_MAXPLAYERS)
|
2013-06-23 02:17:02 +00:00
|
|
|
{
|
2013-07-26 17:19:06 +00:00
|
|
|
MSG_WriteByte (&buf, cl.allocated_client_slots);
|
|
|
|
MSG_WriteByte (&buf, cl.splitclients | (cl.spectator?128:0));
|
|
|
|
for (i = 0; i < cl.splitclients; i++)
|
|
|
|
{
|
|
|
|
MSG_WriteByte (&buf, cl.playerview[i].playernum);
|
|
|
|
}
|
2013-06-23 02:17:02 +00:00
|
|
|
}
|
2013-07-26 17:19:06 +00:00
|
|
|
else
|
2013-06-23 02:17:02 +00:00
|
|
|
{
|
2013-07-26 17:19:06 +00:00
|
|
|
for (i = 0; i < cl.splitclients; i++)
|
|
|
|
{
|
|
|
|
if (cl.spectator)
|
|
|
|
MSG_WriteByte (&buf, cl.playerview[i].playernum | 128);
|
|
|
|
else
|
|
|
|
MSG_WriteByte (&buf, cl.playerview[i].playernum);
|
|
|
|
}
|
|
|
|
if (cls.fteprotocolextensions & PEXT_SPLITSCREEN)
|
|
|
|
MSG_WriteByte (&buf, 128);
|
2013-06-23 02:17:02 +00:00
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
// send full levelname
|
|
|
|
MSG_WriteString (&buf, cl.levelname);
|
|
|
|
|
|
|
|
// send the movevars
|
|
|
|
MSG_WriteFloat(&buf, movevars.gravity);
|
|
|
|
MSG_WriteFloat(&buf, movevars.stopspeed);
|
|
|
|
MSG_WriteFloat(&buf, movevars.maxspeed);
|
|
|
|
MSG_WriteFloat(&buf, movevars.spectatormaxspeed);
|
|
|
|
MSG_WriteFloat(&buf, movevars.accelerate);
|
|
|
|
MSG_WriteFloat(&buf, movevars.airaccelerate);
|
|
|
|
MSG_WriteFloat(&buf, movevars.wateraccelerate);
|
|
|
|
MSG_WriteFloat(&buf, movevars.friction);
|
|
|
|
MSG_WriteFloat(&buf, movevars.waterfriction);
|
|
|
|
MSG_WriteFloat(&buf, movevars.entgravity);
|
|
|
|
|
|
|
|
// send server info string
|
|
|
|
MSG_WriteByte (&buf, svc_stufftext);
|
|
|
|
MSG_WriteString (&buf, va("fullserverinfo \"%s\"\n", cl.serverinfo) );
|
|
|
|
|
|
|
|
// send music (delayed)
|
|
|
|
MSG_WriteByte (&buf, svc_cdtrack);
|
|
|
|
MSG_WriteByte (&buf, 0); // none in demos
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
#ifdef PEXT_SETVIEW
|
2013-07-26 17:19:06 +00:00
|
|
|
if (cl.playerview[0].viewentity != cl.playerview[0].playernum+1) //tell the player if we have a different view entity
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2013-07-26 17:19:06 +00:00
|
|
|
MSG_WriteByte (&buf, svc_setview);
|
|
|
|
MSG_WriteEntity (&buf, cl.playerview[0].viewentity);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
2013-07-26 17:19:06 +00:00
|
|
|
#endif
|
|
|
|
// flush packet
|
2004-08-23 00:15:46 +00:00
|
|
|
CL_WriteRecordDemoMessage (&buf, seq++);
|
2011-05-29 04:26:29 +00:00
|
|
|
SZ_Clear (&buf);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
// soundlist
|
|
|
|
MSG_WriteByte (&buf, svc_soundlist);
|
|
|
|
MSG_WriteByte (&buf, 0);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
n = 0;
|
|
|
|
s = cl.sound_name[n+1];
|
|
|
|
while (*s)
|
|
|
|
{
|
|
|
|
MSG_WriteString (&buf, s);
|
|
|
|
if (buf.cursize > MAX_QWMSGLEN/2)
|
|
|
|
{
|
|
|
|
MSG_WriteByte (&buf, 0);
|
|
|
|
MSG_WriteByte (&buf, n);
|
|
|
|
CL_WriteRecordDemoMessage (&buf, seq++);
|
|
|
|
SZ_Clear (&buf);
|
|
|
|
MSG_WriteByte (&buf, svc_soundlist);
|
|
|
|
MSG_WriteByte (&buf, n + 1);
|
|
|
|
}
|
|
|
|
n++;
|
|
|
|
s = cl.sound_name[n+1];
|
|
|
|
}
|
|
|
|
if (buf.cursize)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
MSG_WriteByte (&buf, 0);
|
2013-07-26 17:19:06 +00:00
|
|
|
MSG_WriteByte (&buf, 0);
|
2004-08-23 00:15:46 +00:00
|
|
|
CL_WriteRecordDemoMessage (&buf, seq++);
|
2011-05-29 04:26:29 +00:00
|
|
|
SZ_Clear (&buf);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
// modellist
|
|
|
|
MSG_WriteByte (&buf, svc_modellist);
|
2004-08-23 00:15:46 +00:00
|
|
|
MSG_WriteByte (&buf, 0);
|
2013-07-26 17:19:06 +00:00
|
|
|
|
|
|
|
n = 0;
|
|
|
|
s = cl.model_name[n+1];
|
|
|
|
while (*s)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2013-07-26 17:19:06 +00:00
|
|
|
MSG_WriteString (&buf, s);
|
|
|
|
if (buf.cursize > MAX_QWMSGLEN/2)
|
|
|
|
{
|
|
|
|
MSG_WriteByte (&buf, 0);
|
|
|
|
MSG_WriteByte (&buf, n);
|
|
|
|
CL_WriteRecordDemoMessage (&buf, seq++);
|
|
|
|
SZ_Clear (&buf);
|
|
|
|
MSG_WriteByte (&buf, svc_modellist);
|
|
|
|
MSG_WriteByte (&buf, n + 1);
|
|
|
|
}
|
|
|
|
n++;
|
|
|
|
s = cl.model_name[n+1];
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
2013-07-26 17:19:06 +00:00
|
|
|
if (buf.cursize)
|
2007-07-23 12:00:17 +00:00
|
|
|
{
|
2013-07-26 17:19:06 +00:00
|
|
|
MSG_WriteByte (&buf, 0);
|
|
|
|
MSG_WriteByte (&buf, 0);
|
2004-08-23 00:15:46 +00:00
|
|
|
CL_WriteRecordDemoMessage (&buf, seq++);
|
2011-05-29 04:26:29 +00:00
|
|
|
SZ_Clear (&buf);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
// spawnstatic
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
for (i = 0; i < cl.num_statics; i++)
|
|
|
|
{
|
|
|
|
ent = &cl_static_entities[i].ent;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
MSG_WriteByte (&buf, svc_spawnstatic);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
for (j = 1; j < MAX_MODELS; j++)
|
|
|
|
if (ent->model == cl.model_precache[j])
|
|
|
|
break;
|
|
|
|
if (j == MAX_MODELS)
|
|
|
|
MSG_WriteByte (&buf, 0);
|
|
|
|
else
|
|
|
|
MSG_WriteByte (&buf, j);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
MSG_WriteByte (&buf, ent->framestate.g[FS_REG].frame[0]);
|
|
|
|
MSG_WriteByte (&buf, 0);
|
|
|
|
MSG_WriteByte (&buf, ent->skinnum);
|
2004-08-23 00:15:46 +00:00
|
|
|
for (j=0 ; j<3 ; j++)
|
|
|
|
{
|
2013-07-26 17:19:06 +00:00
|
|
|
MSG_WriteCoord (&buf, ent->origin[j]);
|
|
|
|
MSG_WriteAngle (&buf, ent->angles[j]);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (buf.cursize > MAX_QWMSGLEN/2)
|
|
|
|
{
|
|
|
|
CL_WriteRecordDemoMessage (&buf, seq++);
|
2011-05-29 04:26:29 +00:00
|
|
|
SZ_Clear (&buf);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
// spawnstaticsound
|
|
|
|
// static sounds are skipped in demos, life is hard
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
// baselines
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
for (i = 0; i < cl_baselines_count; i++)
|
|
|
|
{
|
|
|
|
es = cl_baselines + i;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
if (memcmp(es, &nullentitystate, sizeof(nullentitystate)))
|
|
|
|
{
|
|
|
|
MSG_WriteByte (&buf,svc_spawnbaseline);
|
|
|
|
MSG_WriteEntity (&buf, i);
|
|
|
|
|
|
|
|
MSG_WriteByte (&buf, es->modelindex);
|
|
|
|
MSG_WriteByte (&buf, es->frame);
|
|
|
|
MSG_WriteByte (&buf, es->colormap);
|
|
|
|
MSG_WriteByte (&buf, es->skinnum);
|
|
|
|
for (j=0 ; j<3 ; j++)
|
|
|
|
{
|
|
|
|
MSG_WriteCoord(&buf, es->origin[j]);
|
|
|
|
MSG_WriteAngle(&buf, es->angles[j]);
|
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
if (buf.cursize > MAX_QWMSGLEN/2)
|
|
|
|
{
|
|
|
|
CL_WriteRecordDemoMessage (&buf, seq++);
|
|
|
|
SZ_Clear (&buf);
|
|
|
|
}
|
|
|
|
}
|
2013-06-23 02:17:02 +00:00
|
|
|
}
|
2011-05-29 04:26:29 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
MSG_WriteByte (&buf, svc_stufftext);
|
|
|
|
MSG_WriteString (&buf, va("cmd spawn %i\n", cl.servercount) );
|
2011-05-29 04:26:29 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
if (buf.cursize)
|
2013-06-23 02:17:02 +00:00
|
|
|
{
|
2013-07-26 17:19:06 +00:00
|
|
|
CL_WriteRecordDemoMessage (&buf, seq++);
|
|
|
|
SZ_Clear (&buf);
|
2013-06-23 02:17:02 +00:00
|
|
|
}
|
2011-05-29 04:26:29 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
// send current status of all other players
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
for (i = 0; i < cl.allocated_client_slots; i++)
|
2013-06-23 02:17:02 +00:00
|
|
|
{
|
2013-07-26 17:19:06 +00:00
|
|
|
player = cl.players + i;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
if (player->frags != 0)
|
|
|
|
{
|
|
|
|
MSG_WriteByte (&buf, svc_updatefrags);
|
|
|
|
MSG_WriteByte (&buf, i);
|
|
|
|
MSG_WriteShort (&buf, player->frags);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (player->ping != 0)
|
|
|
|
{
|
|
|
|
MSG_WriteByte (&buf, svc_updateping);
|
|
|
|
MSG_WriteByte (&buf, i);
|
|
|
|
MSG_WriteShort (&buf, player->ping);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (player->pl != 0)
|
|
|
|
{
|
|
|
|
MSG_WriteByte (&buf, svc_updatepl);
|
|
|
|
MSG_WriteByte (&buf, i);
|
|
|
|
MSG_WriteByte (&buf, player->pl);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*player->userinfo)
|
|
|
|
{
|
|
|
|
MSG_WriteByte (&buf, svc_updateentertime);
|
|
|
|
MSG_WriteByte (&buf, i);
|
|
|
|
MSG_WriteFloat (&buf, player->entertime);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*player->userinfo)
|
|
|
|
{
|
|
|
|
MSG_WriteByte (&buf, svc_updateuserinfo);
|
|
|
|
MSG_WriteByte (&buf, i);
|
|
|
|
MSG_WriteLong (&buf, player->userid);
|
|
|
|
MSG_WriteString (&buf, player->userinfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buf.cursize > MAX_QWMSGLEN/2)
|
|
|
|
{
|
|
|
|
CL_WriteRecordDemoMessage (&buf, seq++);
|
|
|
|
SZ_Clear (&buf);
|
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
2011-05-29 04:26:29 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
// send all current light styles
|
|
|
|
for (i=0 ; i<MAX_LIGHTSTYLES ; i++)
|
|
|
|
{
|
|
|
|
if (i >= MAX_STANDARDLIGHTSTYLES)
|
|
|
|
if (!*cl_lightstyle[i].map)
|
|
|
|
continue;
|
2005-09-28 23:32:54 +00:00
|
|
|
|
2011-08-16 04:12:15 +00:00
|
|
|
#ifdef PEXT_LIGHTSTYLECOL
|
2013-07-26 17:19:06 +00:00
|
|
|
if ((cls.fteprotocolextensions & PEXT_LIGHTSTYLECOL) && cl_lightstyle[i].colour!=7 && *cl_lightstyle[i].map)
|
|
|
|
{
|
|
|
|
MSG_WriteByte (&buf, svcfte_lightstylecol);
|
|
|
|
MSG_WriteByte (&buf, (unsigned char)i);
|
|
|
|
MSG_WriteByte (&buf, cl_lightstyle[i].colour);
|
|
|
|
MSG_WriteString (&buf, cl_lightstyle[i].map);
|
|
|
|
}
|
|
|
|
else
|
2011-08-16 04:12:15 +00:00
|
|
|
#endif
|
2013-07-26 17:19:06 +00:00
|
|
|
{
|
|
|
|
MSG_WriteByte (&buf, svc_lightstyle);
|
|
|
|
MSG_WriteByte (&buf, (unsigned char)i);
|
|
|
|
MSG_WriteString (&buf, cl_lightstyle[i].map);
|
|
|
|
}
|
2011-08-16 04:12:15 +00:00
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
for (i = ((cls.fteprotocolextensions&PEXT_HEXEN2)?MAX_QW_STATS:MAX_CL_STATS); i >= 0; i--)
|
2007-07-23 12:00:17 +00:00
|
|
|
{
|
2013-07-26 17:19:06 +00:00
|
|
|
if (!cl.playerview[0].stats[i])
|
|
|
|
continue;
|
|
|
|
MSG_WriteByte (&buf, svcqw_updatestatlong);
|
|
|
|
MSG_WriteByte (&buf, i);
|
|
|
|
MSG_WriteLong (&buf, cl.playerview[0].stats[i]);
|
|
|
|
if (buf.cursize > MAX_QWMSGLEN/2)
|
|
|
|
{
|
|
|
|
CL_WriteRecordDemoMessage (&buf, seq++);
|
|
|
|
SZ_Clear (&buf);
|
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
// get the client to check and download skins
|
|
|
|
// when that is completed, a begin command will be issued
|
|
|
|
MSG_WriteByte (&buf, svc_stufftext);
|
|
|
|
MSG_WriteString (&buf, va("skins\n") );
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
CL_WriteRecordDemoMessage (&buf, seq++);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
CL_WriteSetDemoMessage();
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-07-26 17:19:06 +00:00
|
|
|
// done
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Con_Printf("Unable to begin demo recording with this network protocol\n");
|
|
|
|
CL_Stop_f();
|
|
|
|
break;
|
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
====================
|
|
|
|
CL_ReRecord_f
|
|
|
|
|
|
|
|
record <demoname>
|
|
|
|
====================
|
|
|
|
*/
|
|
|
|
void CL_ReRecord_f (void)
|
|
|
|
{
|
|
|
|
int c;
|
|
|
|
char name[MAX_OSPATH];
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
c = Cmd_Argc();
|
|
|
|
if (c != 2)
|
|
|
|
{
|
|
|
|
Con_Printf ("rerecord <demoname>\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!*cls.servername) {
|
|
|
|
Con_Printf("No server to reconnect to...\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cls.demorecording)
|
|
|
|
CL_Stop_f();
|
|
|
|
|
|
|
|
s = Cmd_Argv(1);
|
|
|
|
if (strstr(s, ".."))
|
|
|
|
{
|
|
|
|
Con_Printf ("Relative paths not allowed.\n");
|
|
|
|
return;
|
|
|
|
}
|
2011-05-29 04:26:29 +00:00
|
|
|
|
2011-07-22 15:11:35 +00:00
|
|
|
Q_snprintfz (name, sizeof(name), "%s", s);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// open the demo file
|
|
|
|
//
|
2006-03-11 03:12:10 +00:00
|
|
|
COM_DefaultExtension (name, ".qwd", sizeof(name));
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2010-03-14 14:35:56 +00:00
|
|
|
cls.demooutfile = FS_OpenVFS (name, "wb", FS_GAME);
|
|
|
|
if (!cls.demooutfile)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
Con_Printf ("ERROR: couldn't open.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Con_Printf ("recording to %s.\n", name);
|
|
|
|
cls.demorecording = true;
|
|
|
|
|
|
|
|
CL_Disconnect();
|
|
|
|
CL_BeginServerReconnect();
|
|
|
|
}
|
|
|
|
|
2005-12-06 03:09:46 +00:00
|
|
|
#ifdef WEBCLIENT
|
|
|
|
void CL_PlayDownloadedDemo(char *name, qboolean success)
|
|
|
|
{
|
|
|
|
if (success == false)
|
|
|
|
Con_Printf("Failed to download %s\n", name);
|
|
|
|
else
|
2006-02-06 01:06:17 +00:00
|
|
|
{
|
2005-12-06 03:09:46 +00:00
|
|
|
Cbuf_AddText(va("playdemo %s\n", name), RESTRICT_LOCAL);
|
2006-02-06 01:06:17 +00:00
|
|
|
}
|
2005-12-06 03:09:46 +00:00
|
|
|
}
|
|
|
|
#endif
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
====================
|
|
|
|
CL_PlayDemo_f
|
|
|
|
|
|
|
|
play [demoname]
|
|
|
|
====================
|
|
|
|
*/
|
|
|
|
void CL_PlayDemo_f (void)
|
|
|
|
{
|
2013-06-23 02:17:02 +00:00
|
|
|
char *demoname;
|
2004-08-23 00:15:46 +00:00
|
|
|
if (Cmd_Argc() != 2)
|
|
|
|
{
|
|
|
|
Con_Printf ("playdemo <demoname> : plays a demo\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-12-06 03:09:46 +00:00
|
|
|
#ifdef WEBCLIENT
|
2011-10-27 15:46:36 +00:00
|
|
|
#ifdef warningmsg
|
|
|
|
#pragma warningmsg("playdemo http://blah is broken right now")
|
2011-05-29 04:26:29 +00:00
|
|
|
#endif
|
2010-03-14 14:35:56 +00:00
|
|
|
#if 0
|
2005-12-06 03:09:46 +00:00
|
|
|
if (!strncmp(Cmd_Argv(1), "ftp://", 6) || !strncmp(Cmd_Argv(1), "http://", 7))
|
|
|
|
{
|
|
|
|
if (Cmd_ExecLevel == RESTRICT_LOCAL)
|
|
|
|
HTTP_CL_Get(Cmd_Argv(1), COM_SkipPath(Cmd_Argv(1)), CL_PlayDownloadedDemo);
|
|
|
|
return;
|
|
|
|
}
|
2010-03-14 14:35:56 +00:00
|
|
|
#endif
|
2005-12-06 03:09:46 +00:00
|
|
|
#endif
|
|
|
|
|
2013-06-23 02:17:02 +00:00
|
|
|
demoname = Cmd_Argv(1);
|
|
|
|
if (*demoname == '#' && Cmd_FromGamecode())
|
|
|
|
return;
|
|
|
|
CL_PlayDemo(demoname);
|
2005-12-21 03:07:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CL_PlayDemo(char *demoname)
|
|
|
|
{
|
|
|
|
char name[256];
|
2013-05-11 05:03:07 +00:00
|
|
|
int ft, neg = false;
|
2005-12-21 03:07:33 +00:00
|
|
|
int len;
|
|
|
|
char type;
|
2006-05-09 08:35:10 +00:00
|
|
|
char chr;
|
2005-12-21 03:07:33 +00:00
|
|
|
int protocol;
|
|
|
|
int start;
|
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
//
|
|
|
|
// disconnect from server
|
|
|
|
//
|
2004-12-08 04:14:52 +00:00
|
|
|
CL_Disconnect_f ();
|
2007-07-23 12:00:17 +00:00
|
|
|
|
|
|
|
demo_flushcache();
|
2004-08-23 00:15:46 +00:00
|
|
|
//
|
|
|
|
// open the demo file
|
|
|
|
//
|
2005-12-21 03:07:33 +00:00
|
|
|
Q_strncpyz (name, demoname, sizeof(name));
|
2006-03-11 03:12:10 +00:00
|
|
|
COM_DefaultExtension (name, ".qwd", sizeof(name));
|
2009-11-04 21:16:50 +00:00
|
|
|
if (*name == '#')
|
2010-03-14 14:35:56 +00:00
|
|
|
cls.demoinfile = VFSOS_Open(name+1, "rb");
|
2009-11-04 21:16:50 +00:00
|
|
|
else
|
2010-03-14 14:35:56 +00:00
|
|
|
cls.demoinfile = FS_OpenVFS(name, "rb", FS_GAME);
|
|
|
|
if (!cls.demoinfile)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2005-12-21 03:07:33 +00:00
|
|
|
Q_strncpyz (name, demoname, sizeof(name));
|
2006-03-11 03:12:10 +00:00
|
|
|
COM_DefaultExtension (name, ".dem", sizeof(name));
|
2009-11-04 21:16:50 +00:00
|
|
|
if (*name == '#')
|
2010-03-14 14:35:56 +00:00
|
|
|
cls.demoinfile = VFSOS_Open(name+1, "rb");
|
2009-11-04 21:16:50 +00:00
|
|
|
else
|
2010-03-14 14:35:56 +00:00
|
|
|
cls.demoinfile = FS_OpenVFS(name, "rb", FS_GAME);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
2010-03-14 14:35:56 +00:00
|
|
|
if (!cls.demoinfile)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2005-12-21 03:07:33 +00:00
|
|
|
Q_strncpyz (name, demoname, sizeof(name));
|
2006-03-11 03:12:10 +00:00
|
|
|
COM_DefaultExtension (name, ".mvd", sizeof(name));
|
2009-11-04 21:16:50 +00:00
|
|
|
if (*name == '#')
|
2010-03-14 14:35:56 +00:00
|
|
|
cls.demoinfile = VFSOS_Open(name+1, "rb");
|
2009-11-04 21:16:50 +00:00
|
|
|
else
|
2010-03-14 14:35:56 +00:00
|
|
|
cls.demoinfile = FS_OpenVFS(name, "rb", FS_GAME);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
2010-03-14 14:35:56 +00:00
|
|
|
if (!cls.demoinfile)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2006-03-06 19:22:50 +00:00
|
|
|
Con_Printf ("ERROR: couldn't open \"%s\".\n", demoname);
|
2004-08-23 00:15:46 +00:00
|
|
|
cls.demonum = -1; // stop demo loop
|
|
|
|
return;
|
|
|
|
}
|
2005-12-21 03:07:33 +00:00
|
|
|
Q_strncpyz (lastdemoname, demoname, sizeof(lastdemoname));
|
2004-08-23 00:15:46 +00:00
|
|
|
Con_Printf ("Playing demo from %s.\n", name);
|
|
|
|
|
2010-03-14 14:35:56 +00:00
|
|
|
if (!VFS_GETLEN (cls.demoinfile))
|
2006-03-14 01:25:46 +00:00
|
|
|
{
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_CLOSE(cls.demoinfile);
|
|
|
|
cls.demoinfile = NULL;
|
2006-03-14 01:25:46 +00:00
|
|
|
Con_Printf ("demo \"%s\" is empty.\n", demoname);
|
|
|
|
cls.demonum = -1; // stop demo loop
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-02-11 02:09:43 +00:00
|
|
|
if (!Q_strcasecmp(name + strlen(name) - 3, "mvd") ||
|
|
|
|
!Q_strcasecmp(name + strlen(name) - 6, "mvd.gz"))
|
2005-11-30 01:20:53 +00:00
|
|
|
{
|
2004-08-23 00:15:46 +00:00
|
|
|
cls.demoplayback = DPB_MVD;
|
2005-11-30 01:20:53 +00:00
|
|
|
cls.findtrack = true;
|
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
else
|
|
|
|
cls.demoplayback = DPB_QUAKEWORLD;
|
2005-12-21 03:07:33 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
cls.state = ca_demostart;
|
2005-01-13 16:29:20 +00:00
|
|
|
net_message.packing = SZ_RAWBYTES;
|
2013-05-03 04:28:08 +00:00
|
|
|
Netchan_Setup (NS_CLIENT, &cls.netchan, &net_from, 0);
|
2008-01-30 02:32:00 +00:00
|
|
|
demtime = 0;
|
2004-08-23 00:15:46 +00:00
|
|
|
cl.gametime = 0;
|
2008-01-30 02:32:00 +00:00
|
|
|
cl.gametimemark = demtime;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2008-01-30 02:32:00 +00:00
|
|
|
cls.netchan.last_received=demtime;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
|
2010-03-14 14:35:56 +00:00
|
|
|
start = VFS_TELL(cls.demoinfile);
|
|
|
|
VFS_READ(cls.demoinfile, &len, sizeof(len));
|
|
|
|
VFS_READ(cls.demoinfile, &type, sizeof(type));
|
|
|
|
VFS_READ(cls.demoinfile, &protocol, sizeof(protocol));
|
|
|
|
VFS_SEEK(cls.demoinfile, start);
|
2004-08-23 00:15:46 +00:00
|
|
|
if (len > 5 && type == svcq2_serverdata && protocol == PROTOCOL_VERSION_Q2)
|
|
|
|
{
|
|
|
|
#ifdef Q2CLIENT
|
|
|
|
cls.demoplayback = DPB_QUAKE2;
|
2005-05-26 12:55:34 +00:00
|
|
|
cls.protocol = CP_QUAKE2;
|
2004-08-23 00:15:46 +00:00
|
|
|
#else
|
|
|
|
Con_Printf ("ERROR: cannot play Quake2 demos.\n");
|
|
|
|
CL_StopPlayback();
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ft = 0; //work out if the first line is a int for the track number.
|
2010-03-14 14:35:56 +00:00
|
|
|
while ((VFS_READ(cls.demoinfile, &chr, 1)==1) && (chr != '\n'))
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2006-05-09 08:35:10 +00:00
|
|
|
if (chr == '-')
|
2004-08-23 00:15:46 +00:00
|
|
|
neg = true;
|
2006-05-09 08:35:10 +00:00
|
|
|
else if (chr < '0' || chr > '9')
|
2004-08-23 00:15:46 +00:00
|
|
|
break;
|
|
|
|
else
|
2006-05-09 08:35:10 +00:00
|
|
|
ft = ft * 10 + ((int)chr - '0');
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
2013-05-11 05:03:07 +00:00
|
|
|
if (neg)
|
|
|
|
ft *= -1;
|
2006-05-09 08:35:10 +00:00
|
|
|
if (chr == '\n')
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
#ifndef NQPROT
|
|
|
|
Con_Printf ("ERROR: cannot play NQ demos.\n");
|
|
|
|
CL_StopPlayback();
|
|
|
|
return;
|
|
|
|
#else
|
2013-05-11 05:03:07 +00:00
|
|
|
//fixme: play that cdtrack.
|
2005-05-26 12:55:34 +00:00
|
|
|
cls.protocol = CP_NETQUAKE;
|
2004-08-23 00:15:46 +00:00
|
|
|
cls.demoplayback = DPB_NETQUAKE; //nq demos. :o)
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
2013-05-11 05:03:07 +00:00
|
|
|
{
|
|
|
|
cls.protocol = CP_QUAKEWORLD;
|
|
|
|
|
2010-03-14 14:35:56 +00:00
|
|
|
VFS_SEEK(cls.demoinfile, start); //quakeworld demo, so go back to start.
|
2013-05-11 05:03:07 +00:00
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
2006-02-22 23:37:25 +00:00
|
|
|
|
|
|
|
TP_ExecTrigger ("f_demostart");
|
2006-03-14 01:25:46 +00:00
|
|
|
}
|
|
|
|
|
2008-01-09 00:52:31 +00:00
|
|
|
void CL_QTVPlay (vfsfile_t *newf, qboolean iseztv)
|
2006-09-17 00:59:22 +00:00
|
|
|
{
|
|
|
|
CL_Disconnect_f ();
|
|
|
|
|
2010-03-14 14:35:56 +00:00
|
|
|
cls.demoinfile = newf;
|
2006-09-17 00:59:22 +00:00
|
|
|
|
2007-07-23 12:00:17 +00:00
|
|
|
demo_flushcache(); //just in case
|
2006-09-17 00:59:22 +00:00
|
|
|
|
2008-01-09 00:52:31 +00:00
|
|
|
if (iseztv)
|
|
|
|
cls.demoplayback = DPB_EZTV;
|
|
|
|
else
|
|
|
|
cls.demoplayback = DPB_MVD;
|
|
|
|
|
2006-09-17 00:59:22 +00:00
|
|
|
cls.findtrack = true;
|
|
|
|
|
|
|
|
cls.state = ca_demostart;
|
|
|
|
net_message.packing = SZ_RAWBYTES;
|
2013-05-03 04:28:08 +00:00
|
|
|
Netchan_Setup (NS_CLIENT, &cls.netchan, &net_from, 0);
|
2008-01-30 02:32:00 +00:00
|
|
|
demtime = -BUFFERTIME;
|
2006-11-03 15:53:04 +00:00
|
|
|
cl.gametime = -BUFFERTIME;
|
2008-01-30 02:32:00 +00:00
|
|
|
cl.gametimemark = demtime;
|
|
|
|
if (demtime < -0.5)
|
|
|
|
Con_Printf("Buffering for %i seconds\n", (int)-demtime);
|
2006-09-17 00:59:22 +00:00
|
|
|
|
|
|
|
cls.netchan.last_received=realtime;
|
|
|
|
|
|
|
|
cls.protocol = CP_QUAKEWORLD;
|
|
|
|
TP_ExecTrigger ("f_demostart");
|
|
|
|
}
|
|
|
|
|
2010-03-14 14:35:56 +00:00
|
|
|
/*used with qtv*/
|
2008-01-09 00:52:31 +00:00
|
|
|
void CL_Demo_ClientCommand(char *commandtext)
|
|
|
|
{
|
|
|
|
unsigned char b = 1;
|
2008-01-23 01:36:51 +00:00
|
|
|
unsigned short len = LittleShort((unsigned short)(strlen(commandtext) + 4));
|
2011-10-27 15:46:36 +00:00
|
|
|
#ifdef warningmsg
|
|
|
|
#pragma warningmsg("this needs buffering safely")
|
2008-01-09 00:52:31 +00:00
|
|
|
#endif
|
2010-03-14 14:35:56 +00:00
|
|
|
if (cls.demoplayback == DPB_EZTV)
|
|
|
|
{
|
|
|
|
VFS_WRITE(cls.demoinfile, &len, sizeof(len));
|
|
|
|
VFS_WRITE(cls.demoinfile, &b, sizeof(b));
|
|
|
|
VFS_WRITE(cls.demoinfile, commandtext, strlen(commandtext)+1);
|
|
|
|
}
|
2008-01-09 00:52:31 +00:00
|
|
|
}
|
|
|
|
|
2007-05-28 02:23:37 +00:00
|
|
|
char qtvhostname[1024];
|
2006-09-17 00:59:22 +00:00
|
|
|
char qtvrequestbuffer[4096];
|
|
|
|
int qtvrequestsize;
|
2012-04-24 07:59:11 +00:00
|
|
|
char qtvrequestcmdbuffer[4096];
|
|
|
|
int qtvrequestcmdsize;
|
2006-09-17 00:59:22 +00:00
|
|
|
vfsfile_t *qtvrequest;
|
|
|
|
|
|
|
|
void CL_QTVPoll (void)
|
|
|
|
{
|
|
|
|
char *s, *e, *colon;
|
2007-12-15 18:45:40 +00:00
|
|
|
char *tail = NULL;
|
2006-09-17 00:59:22 +00:00
|
|
|
int len;
|
2006-11-03 15:53:04 +00:00
|
|
|
qboolean streamavailable = false;
|
|
|
|
qboolean saidheader = false;
|
2007-05-28 02:23:37 +00:00
|
|
|
menu_t *sourcesmenu = NULL;
|
|
|
|
int sourcenum = 0;
|
|
|
|
|
|
|
|
int streamid;
|
2007-08-07 00:11:21 +00:00
|
|
|
int numplayers = 0;
|
|
|
|
int numviewers = 0;
|
|
|
|
qboolean init_numplayers = false;
|
|
|
|
qboolean init_numviewers = false;
|
2008-01-09 00:52:31 +00:00
|
|
|
qboolean iseztv = false;
|
2007-05-28 02:23:37 +00:00
|
|
|
char srchost[256];
|
|
|
|
|
2006-09-17 00:59:22 +00:00
|
|
|
|
|
|
|
if (!qtvrequest)
|
|
|
|
return;
|
|
|
|
|
2012-04-24 07:59:11 +00:00
|
|
|
if (qtvrequestcmdsize)
|
|
|
|
{
|
|
|
|
len = VFS_WRITE(qtvrequest, qtvrequestcmdbuffer, qtvrequestcmdsize);
|
|
|
|
if (len > 0)
|
|
|
|
{
|
|
|
|
memmove(qtvrequestcmdbuffer, qtvrequestcmdbuffer+len, qtvrequestcmdsize-len);
|
|
|
|
qtvrequestcmdsize -= len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-17 00:59:22 +00:00
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
len = VFS_READ(qtvrequest, qtvrequestbuffer+qtvrequestsize, (sizeof(qtvrequestbuffer) - qtvrequestsize -1 > 0)?1:0);
|
|
|
|
if (len <= 0)
|
|
|
|
break;
|
|
|
|
qtvrequestsize += len;
|
|
|
|
}
|
|
|
|
qtvrequestbuffer[qtvrequestsize] = '\0';
|
2012-04-24 07:59:11 +00:00
|
|
|
|
|
|
|
if (qtvrequestsize >= sizeof(qtvrequestbuffer) - 1)
|
|
|
|
{
|
2013-03-12 22:47:42 +00:00
|
|
|
Con_Printf("%i of %i...\n", qtvrequestsize, (int)sizeof(qtvrequestbuffer));
|
2012-04-24 07:59:11 +00:00
|
|
|
len = -1;
|
|
|
|
}
|
|
|
|
if (!qtvrequestsize && len == 0)
|
2006-09-17 00:59:22 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
//make sure it's a compleate chunk.
|
|
|
|
for (s = qtvrequestbuffer; *s; s++)
|
|
|
|
{
|
|
|
|
if (s[0] == '\n' && s[1] == '\n')
|
2007-12-15 18:45:40 +00:00
|
|
|
{
|
|
|
|
tail = s+2;
|
2006-09-17 00:59:22 +00:00
|
|
|
break;
|
2007-12-15 18:45:40 +00:00
|
|
|
}
|
|
|
|
if (s[0] == '\r' && s[1] == '\n' && s[2] == '\r' && s[3] == '\n')
|
|
|
|
{
|
|
|
|
tail = s+4;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (s[0] == '\r' && s[1] == '\n' && s[2] == '\n')
|
|
|
|
{
|
|
|
|
tail = s+3;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (s[0] == '\n' && s[1] == '\r' && s[2] == '\n')
|
|
|
|
{
|
|
|
|
tail = s+3;
|
|
|
|
break;
|
|
|
|
}
|
2006-09-17 00:59:22 +00:00
|
|
|
}
|
2007-12-15 18:45:40 +00:00
|
|
|
if (!tail)
|
2012-04-24 07:59:11 +00:00
|
|
|
{
|
|
|
|
if (len < 0)
|
|
|
|
{
|
|
|
|
Con_Printf("invalid QTV handshake\n");
|
|
|
|
SCR_SetLoadingStage(LS_NONE);
|
|
|
|
VFS_CLOSE(qtvrequest);
|
|
|
|
qtvrequest = NULL;
|
|
|
|
qtvrequestsize = 0;
|
|
|
|
}
|
2006-09-17 00:59:22 +00:00
|
|
|
return;
|
2012-04-24 07:59:11 +00:00
|
|
|
}
|
2007-12-12 11:04:04 +00:00
|
|
|
s[1] = '\0'; //make sure its null terminated before the data payload
|
2006-09-17 00:59:22 +00:00
|
|
|
s = qtvrequestbuffer;
|
|
|
|
for (e = s; *e; )
|
|
|
|
{
|
2007-12-15 18:45:40 +00:00
|
|
|
if (*e == '\r')
|
|
|
|
*e = '\0';
|
|
|
|
else if (*e == '\n')
|
2006-09-17 00:59:22 +00:00
|
|
|
{
|
|
|
|
*e = '\0';
|
|
|
|
colon = strchr(s, ':');
|
|
|
|
if (colon)
|
|
|
|
*colon++ = '\0';
|
2008-01-09 00:52:31 +00:00
|
|
|
else
|
|
|
|
colon = "";
|
2007-05-28 02:23:37 +00:00
|
|
|
|
2008-01-09 00:52:31 +00:00
|
|
|
if (!strcmp(s, "PERROR"))
|
|
|
|
{ //printable error
|
|
|
|
Con_Printf("QTV Error:\n%s\n", colon);
|
|
|
|
}
|
|
|
|
else if (!strcmp(s, "PRINT"))
|
|
|
|
{ //printable error
|
|
|
|
Con_Printf("QTV:\n%s\n", colon);
|
|
|
|
}
|
|
|
|
else if (!strcmp(s, "TERROR"))
|
|
|
|
{ //printable error
|
|
|
|
Con_Printf("QTV Error:\n%s\n", colon);
|
|
|
|
}
|
|
|
|
else if (!strcmp(s, "ADEMO"))
|
|
|
|
{ //printable error
|
|
|
|
Con_Printf("Demo%s is available\n", colon);
|
|
|
|
}
|
2007-05-28 02:23:37 +00:00
|
|
|
|
2008-01-09 00:52:31 +00:00
|
|
|
//generic sourcelist responce
|
|
|
|
else if (!strcmp(s, "ASOURCE"))
|
|
|
|
{ //printable source
|
|
|
|
if (!saidheader)
|
2007-05-28 02:23:37 +00:00
|
|
|
{
|
2008-01-09 00:52:31 +00:00
|
|
|
saidheader=true;
|
|
|
|
Con_Printf("Available Sources:\n");
|
2007-05-28 02:23:37 +00:00
|
|
|
}
|
2008-01-09 00:52:31 +00:00
|
|
|
Con_Printf("%s\n", colon);
|
|
|
|
//we're too lazy to even try and parse this
|
|
|
|
}
|
2007-05-28 02:23:37 +00:00
|
|
|
|
2008-01-09 00:52:31 +00:00
|
|
|
else if (!strcmp(s, "BEGIN"))
|
|
|
|
{
|
2009-04-01 22:03:56 +00:00
|
|
|
while (*colon && *(unsigned char*)colon <= ' ')
|
|
|
|
colon++;
|
2008-01-09 00:52:31 +00:00
|
|
|
if (*colon)
|
|
|
|
Con_Printf("streaming \"%s\" from qtv\n", colon);
|
|
|
|
else
|
2013-03-12 22:44:00 +00:00
|
|
|
Con_Printf("qtv connection established to %s\n", qtvhostname);
|
2008-01-09 00:52:31 +00:00
|
|
|
streamavailable = true;
|
|
|
|
}
|
2007-05-28 02:23:37 +00:00
|
|
|
|
2008-01-09 00:52:31 +00:00
|
|
|
//eztv extensions to v1.0
|
|
|
|
else if (!strcmp(s, "QTV_EZQUAKE_EXT"))
|
|
|
|
{
|
|
|
|
iseztv = true;
|
|
|
|
Con_Printf("Warning: eztv extensions %s\n", colon);
|
|
|
|
}
|
2007-05-28 02:23:37 +00:00
|
|
|
|
2008-01-09 00:52:31 +00:00
|
|
|
//v1.1 sourcelist response includes SRCSRV, SRCHOST, SRCPLYRS, SRCVIEWS, SRCID
|
|
|
|
else if (!strcmp(s, "SRCSRV"))
|
|
|
|
{
|
|
|
|
//the proxy's source string (beware of file:blah without file:blah@blah)
|
2006-09-17 00:59:22 +00:00
|
|
|
}
|
2008-01-09 00:52:31 +00:00
|
|
|
else if (!strcmp(s, "SRCHOST"))
|
|
|
|
{
|
|
|
|
//the hostname from the server the stream came from
|
|
|
|
Q_strncpyz(srchost, colon, sizeof(srchost));
|
|
|
|
}
|
|
|
|
else if (!strcmp(s, "SRCPLYRS"))
|
|
|
|
{
|
|
|
|
//number of active players actually playing on that stream
|
|
|
|
numplayers = atoi(colon);
|
|
|
|
init_numplayers = true;
|
|
|
|
}
|
|
|
|
else if (!strcmp(s, "SRCVIEWS"))
|
2006-09-17 00:59:22 +00:00
|
|
|
{
|
2008-01-09 00:52:31 +00:00
|
|
|
//number of people watching this stream on the proxy itself
|
|
|
|
numviewers = atoi(colon);
|
|
|
|
init_numviewers = true;
|
2006-09-17 00:59:22 +00:00
|
|
|
}
|
2008-01-09 00:52:31 +00:00
|
|
|
else if (!strcmp(s, "SRCID"))
|
|
|
|
{
|
|
|
|
streamid = atoi(colon);
|
|
|
|
|
|
|
|
//now put it on a menu
|
|
|
|
if (!sourcesmenu)
|
|
|
|
{
|
|
|
|
m_state = m_complex;
|
2013-10-08 14:28:11 +00:00
|
|
|
Key_Dest_Add(kdm_menu);
|
2008-01-09 00:52:31 +00:00
|
|
|
sourcesmenu = M_CreateMenu(0);
|
|
|
|
|
2009-11-04 21:16:50 +00:00
|
|
|
MC_AddPicture(sourcesmenu, 16, 4, 32, 144, "gfx/qplaque.lmp");
|
|
|
|
MC_AddCenterPicture(sourcesmenu, 4, 24, "gfx/p_option.lmp");
|
2008-01-09 00:52:31 +00:00
|
|
|
}
|
|
|
|
if (init_numplayers == true && init_numviewers == true)
|
|
|
|
MC_AddConsoleCommand(sourcesmenu, 42, (sourcenum++)*8 + 32, va("%s (p%i, v%i)", srchost, numplayers, numviewers), va("qtvplay %i@%s\n", streamid, qtvhostname));
|
|
|
|
//else
|
|
|
|
// FIXME: add error message here
|
|
|
|
}
|
|
|
|
//end of sourcelist entry
|
|
|
|
|
2011-05-29 04:26:29 +00:00
|
|
|
//from e to s, we have a line
|
2006-09-17 00:59:22 +00:00
|
|
|
s = e+1;
|
|
|
|
}
|
|
|
|
e++;
|
|
|
|
}
|
|
|
|
|
2006-11-03 15:53:04 +00:00
|
|
|
if (streamavailable)
|
2006-09-17 00:59:22 +00:00
|
|
|
{
|
2008-01-09 00:52:31 +00:00
|
|
|
CL_QTVPlay(qtvrequest, iseztv);
|
2006-09-17 00:59:22 +00:00
|
|
|
qtvrequest = NULL;
|
2007-12-15 18:45:40 +00:00
|
|
|
demo_resetcache(qtvrequestsize - (tail-qtvrequestbuffer), tail);
|
2006-09-17 00:59:22 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-04-24 07:59:11 +00:00
|
|
|
SCR_SetLoadingStage(LS_NONE);
|
2006-09-17 00:59:22 +00:00
|
|
|
VFS_CLOSE(qtvrequest);
|
|
|
|
qtvrequest = NULL;
|
|
|
|
qtvrequestsize = 0;
|
|
|
|
}
|
|
|
|
|
2006-11-03 15:53:04 +00:00
|
|
|
char *strchrrev(char *str, char chr)
|
|
|
|
{
|
|
|
|
char *firstchar = str;
|
|
|
|
for (str = str + strlen(str)-1; str>=firstchar; str--)
|
|
|
|
if (*str == chr)
|
|
|
|
return str;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-04-01 22:03:56 +00:00
|
|
|
void CL_ParseQTVFile(vfsfile_t *f, const char *fname, qtvfile_t *result)
|
2006-09-17 00:59:22 +00:00
|
|
|
{
|
2009-04-01 22:03:56 +00:00
|
|
|
char buffer[2048];
|
|
|
|
char *s;
|
|
|
|
memset(result, 0, sizeof(*result));
|
|
|
|
if (!f)
|
2006-11-03 15:53:04 +00:00
|
|
|
{
|
2009-11-04 21:16:50 +00:00
|
|
|
Con_Printf("Couldn't open QTV file: %s\n", fname);
|
2009-04-01 22:03:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!VFS_GETS(f, buffer, sizeof(buffer)-1))
|
|
|
|
{
|
2009-11-04 21:16:50 +00:00
|
|
|
Con_Printf("Empty QTV file: %s\n", fname);
|
2009-04-01 22:03:56 +00:00
|
|
|
VFS_CLOSE(f);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
s = buffer;
|
|
|
|
while (*s == ' ' || *s == '\t')
|
|
|
|
s++;
|
|
|
|
if (*s != '[')
|
|
|
|
{
|
2009-11-04 21:16:50 +00:00
|
|
|
Con_Printf("Bad QTV file: %s\n", fname);
|
2009-04-01 22:03:56 +00:00
|
|
|
VFS_CLOSE(f);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
s++;
|
|
|
|
while (*s == ' ' || *s == '\t')
|
|
|
|
s++;
|
|
|
|
if (strnicmp(s, "QTV", 3))
|
|
|
|
{
|
2009-11-04 21:16:50 +00:00
|
|
|
Con_Printf("Bad QTV file: %s\n", fname);
|
2009-04-01 22:03:56 +00:00
|
|
|
VFS_CLOSE(f);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
s+=3;
|
|
|
|
while (*s == ' ' || *s == '\t')
|
|
|
|
s++;
|
|
|
|
if (*s != ']')
|
|
|
|
{
|
2009-11-04 21:16:50 +00:00
|
|
|
Con_Printf("Bad QTV file: %s\n", fname);
|
2009-04-01 22:03:56 +00:00
|
|
|
VFS_CLOSE(f);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
s++;
|
|
|
|
while (*s == ' ' || *s == '\t' || *s == '\r')
|
|
|
|
s++;
|
|
|
|
if (*s)
|
|
|
|
{
|
2009-11-04 21:16:50 +00:00
|
|
|
Con_Printf("Bad QTV file: %s\n", fname);
|
2009-04-01 22:03:56 +00:00
|
|
|
VFS_CLOSE(f);
|
2006-11-03 15:53:04 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-04-01 22:03:56 +00:00
|
|
|
while (VFS_GETS(f, buffer, sizeof(buffer)-1))
|
2006-09-17 00:59:22 +00:00
|
|
|
{
|
2009-04-01 22:03:56 +00:00
|
|
|
s = COM_ParseToken(buffer, ":=");
|
|
|
|
if (*s != '=' && *s != ':')
|
|
|
|
s = "";
|
|
|
|
else
|
|
|
|
s++;
|
|
|
|
|
|
|
|
if (!stricmp(com_token, "stream"))
|
2008-03-29 07:10:21 +00:00
|
|
|
{
|
2009-04-01 22:03:56 +00:00
|
|
|
result->connectiontype = QTVCT_STREAM;
|
|
|
|
s = COM_ParseOut(s, result->server, sizeof(result->server));
|
|
|
|
}
|
|
|
|
else if (!stricmp(com_token, "connect"))
|
|
|
|
{
|
|
|
|
result->connectiontype = QTVCT_CONNECT;
|
|
|
|
s = COM_ParseOut(s, result->server, sizeof(result->server));
|
|
|
|
}
|
|
|
|
else if (!stricmp(com_token, "join"))
|
|
|
|
{
|
|
|
|
result->connectiontype = QTVCT_JOIN;
|
|
|
|
s = COM_ParseOut(s, result->server, sizeof(result->server));
|
|
|
|
}
|
|
|
|
else if (!stricmp(com_token, "observe"))
|
|
|
|
{
|
|
|
|
result->connectiontype = QTVCT_OBSERVE;
|
|
|
|
s = COM_ParseOut(s, result->server, sizeof(result->server));
|
2008-03-29 07:10:21 +00:00
|
|
|
}
|
2009-04-01 22:03:56 +00:00
|
|
|
else if (!stricmp(com_token, "splash"))
|
|
|
|
{
|
|
|
|
s = COM_ParseOut(s, result->splashscreen, sizeof(result->server));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
VFS_CLOSE(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CL_ParseQTVDescriptor(vfsfile_t *f, const char *name)
|
|
|
|
{
|
|
|
|
char buffer[1024];
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
if (!f)
|
|
|
|
{
|
|
|
|
Con_Printf("Couldn't open QTV file: %s\n", name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
while (VFS_GETS(f, buffer, sizeof(buffer)-1))
|
|
|
|
{
|
|
|
|
if (!strncmp(buffer, "Stream=", 7) || !strncmp(buffer, "Stream:", 7))
|
2006-09-17 00:59:22 +00:00
|
|
|
{
|
2009-04-01 22:03:56 +00:00
|
|
|
for (s = buffer + strlen(buffer)-1; s >= buffer; s--)
|
2006-09-17 00:59:22 +00:00
|
|
|
{
|
2009-04-01 22:03:56 +00:00
|
|
|
if (*s == '\r' || *s == '\n' || *s == ';')
|
|
|
|
*s = 0;
|
|
|
|
else
|
|
|
|
break;
|
2006-09-17 00:59:22 +00:00
|
|
|
}
|
2009-04-01 22:03:56 +00:00
|
|
|
s = buffer+7;
|
|
|
|
while(*s && *s <= ' ')
|
|
|
|
s++;
|
|
|
|
Cbuf_AddText(va("qtvplay \"%s\"\n", s), Cmd_ExecLevel);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!strncmp(buffer, "Connect=", 8) || !strncmp(buffer, "Connect:", 8))
|
|
|
|
{
|
|
|
|
for (s = buffer + strlen(buffer)-1; s >= buffer; s--)
|
2007-01-06 09:38:08 +00:00
|
|
|
{
|
2009-04-01 22:03:56 +00:00
|
|
|
if (*s == '\r' || *s == '\n' || *s == ';')
|
|
|
|
*s = 0;
|
|
|
|
else
|
|
|
|
break;
|
2008-10-05 02:56:11 +00:00
|
|
|
}
|
2009-04-01 22:03:56 +00:00
|
|
|
s = buffer+8;
|
|
|
|
while(*s && *s <= ' ')
|
|
|
|
s++;
|
|
|
|
Cbuf_AddText(va("connect \"%s\"\n", s), Cmd_ExecLevel);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!strncmp(buffer, "Join=", 5) || !strncmp(buffer, "Join:", 5))
|
|
|
|
{
|
|
|
|
for (s = buffer + strlen(buffer)-1; s >= buffer; s--)
|
2008-10-05 02:56:11 +00:00
|
|
|
{
|
2009-04-01 22:03:56 +00:00
|
|
|
if (*s == '\r' || *s == '\n' || *s == ';')
|
|
|
|
*s = 0;
|
|
|
|
else
|
|
|
|
break;
|
2007-01-06 09:38:08 +00:00
|
|
|
}
|
2009-04-01 22:03:56 +00:00
|
|
|
s = buffer+5;
|
|
|
|
while(*s && *s <= ' ')
|
|
|
|
s++;
|
|
|
|
Cbuf_AddText(va("join \"%s\"\n", s), Cmd_ExecLevel);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!strncmp(buffer, "Observe=", 8) || !strncmp(buffer, "Observe:", 8))
|
|
|
|
{
|
|
|
|
for (s = buffer + strlen(buffer)-1; s >= buffer; s--)
|
2007-01-06 09:38:08 +00:00
|
|
|
{
|
2009-04-01 22:03:56 +00:00
|
|
|
if (*s == '\r' || *s == '\n' || *s == ';')
|
|
|
|
*s = 0;
|
|
|
|
else
|
|
|
|
break;
|
2007-01-06 09:38:08 +00:00
|
|
|
}
|
2009-04-01 22:03:56 +00:00
|
|
|
s = buffer+8;
|
|
|
|
while(*s && *s <= ' ')
|
|
|
|
s++;
|
|
|
|
Cbuf_AddText(va("observe \"%s\"\n", s), Cmd_ExecLevel);
|
|
|
|
break;
|
2006-09-17 00:59:22 +00:00
|
|
|
}
|
2009-04-01 22:03:56 +00:00
|
|
|
}
|
|
|
|
VFS_CLOSE(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CL_QTVPlay_f (void)
|
|
|
|
{
|
|
|
|
qboolean raw=0;
|
|
|
|
char *connrequest;
|
|
|
|
vfsfile_t *newf;
|
|
|
|
char *host;
|
2012-04-24 07:59:11 +00:00
|
|
|
char msg[4096];
|
|
|
|
int msglen=0;
|
2009-04-01 22:03:56 +00:00
|
|
|
|
|
|
|
if (Cmd_Argc() < 2)
|
|
|
|
{
|
|
|
|
Con_Printf("Usage: qtvplay [stream@]hostname[:port] [password]\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
connrequest = Cmd_Argv(1);
|
|
|
|
|
|
|
|
if (*connrequest == '#')
|
|
|
|
{
|
|
|
|
//#FILENAME is a local system path
|
|
|
|
CL_ParseQTVDescriptor(VFSOS_Open(connrequest+1, "rt"), connrequest+1);
|
2006-09-17 00:59:22 +00:00
|
|
|
return;
|
|
|
|
}
|
Fixes, workarounds, and breakages. Hexen2 should work much better (-hexen2 says no mission pack, -portals says h2mp). Started working on splitting bigcoords per client, far too much work still to go on that. Removed gl_ztrick entirely. Enabled csprogs download by default. Added client support for fitzquake's 666 protocol, needs testing, some cleanup for dp protocols too, no server support, couldn't selectively enable it anyway. Now attempting to cache shadow meshes for explosions and stuff. Played with lightmaps a little, should potentially run a little faster on certain (intel?) cards. Tweeked npfte a little to try to avoid deadlocks and crashes. Fixed sky worldspawn parsing. Added h2mp's model format. Fixed baseline issue in q2 client, made servers generate q2 baselines. MOVETYPE_PUSH will not rotate extra if rotation is forced. Made status command show allowed client types. Changed lighting on weapons - should now be shaded.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3572 fc73d0e0-1445-4013-8a0c-d673dee63da5
2010-08-11 03:36:31 +00:00
|
|
|
strcpy(cls.servername, "qtv:");
|
|
|
|
Q_strncpyz(cls.servername+4, connrequest, sizeof(cls.servername)-4);
|
2006-09-17 00:59:22 +00:00
|
|
|
|
2009-04-06 00:34:32 +00:00
|
|
|
SCR_SetLoadingStage(LS_CONNECTION);
|
|
|
|
|
2006-09-17 00:59:22 +00:00
|
|
|
host = connrequest;
|
|
|
|
|
2006-11-03 15:53:04 +00:00
|
|
|
connrequest = strchrrev(connrequest, '@');
|
2006-09-17 00:59:22 +00:00
|
|
|
if (connrequest)
|
|
|
|
host = connrequest+1;
|
2007-05-28 02:23:37 +00:00
|
|
|
Q_strncpyz(qtvhostname, host, sizeof(qtvhostname));
|
2013-03-31 04:21:08 +00:00
|
|
|
newf = FS_OpenTCP(qtvhostname, 27599);
|
2006-09-17 00:59:22 +00:00
|
|
|
|
|
|
|
if (!newf)
|
|
|
|
{
|
2009-04-06 00:34:32 +00:00
|
|
|
SCR_SetLoadingStage(LS_NONE);
|
2006-09-17 00:59:22 +00:00
|
|
|
Con_Printf("Couldn't connect to proxy\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-11-03 15:53:04 +00:00
|
|
|
host = Cmd_Argv(1);
|
2006-09-17 00:59:22 +00:00
|
|
|
if (connrequest)
|
|
|
|
*connrequest = '\0';
|
|
|
|
else
|
|
|
|
host = NULL;
|
|
|
|
|
2009-11-04 21:16:50 +00:00
|
|
|
if (qtvcl_forceversion1.ival)
|
2007-12-01 05:55:44 +00:00
|
|
|
{
|
2012-04-24 07:59:11 +00:00
|
|
|
Q_snprintfz(msg+msglen, sizeof(msg)-msglen,
|
|
|
|
"QTV\n"
|
|
|
|
"VERSION: 1.0\n");
|
2007-12-01 05:55:44 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-24 07:59:11 +00:00
|
|
|
Q_snprintfz(msg+msglen, sizeof(msg)-msglen,
|
|
|
|
"QTV\n"
|
|
|
|
"VERSION: 1.1\n");
|
2007-12-01 05:55:44 +00:00
|
|
|
}
|
2012-04-24 07:59:11 +00:00
|
|
|
msglen += strlen(msg+msglen);
|
2008-01-09 00:52:31 +00:00
|
|
|
|
2009-11-04 21:16:50 +00:00
|
|
|
if (qtvcl_eztvextensions.ival)
|
2008-01-09 00:52:31 +00:00
|
|
|
{
|
2012-04-24 07:59:11 +00:00
|
|
|
raw = 0;
|
|
|
|
|
|
|
|
Q_snprintfz(msg+msglen, sizeof(msg)-msglen,
|
|
|
|
"QTV_EZQUAKE_EXT: 3\n"
|
|
|
|
"USERINFO: %s\n", cls.userinfo[0]);
|
|
|
|
msglen += strlen(msg+msglen);
|
2008-01-09 00:52:31 +00:00
|
|
|
}
|
|
|
|
else if (raw)
|
2006-09-17 00:59:22 +00:00
|
|
|
{
|
2012-04-24 07:59:11 +00:00
|
|
|
Q_snprintfz(msg+msglen, sizeof(msg)-msglen,
|
|
|
|
"RAW: 1\n");
|
|
|
|
msglen += strlen(msg+msglen);
|
2006-09-17 00:59:22 +00:00
|
|
|
}
|
|
|
|
if (host)
|
|
|
|
{
|
2012-04-24 07:59:11 +00:00
|
|
|
Q_snprintfz(msg+msglen, sizeof(msg)-msglen,
|
|
|
|
"SOURCE: %s\n", host);
|
|
|
|
msglen += strlen(msg+msglen);
|
2006-09-17 00:59:22 +00:00
|
|
|
}
|
2007-05-28 02:23:37 +00:00
|
|
|
else
|
|
|
|
{
|
2012-04-24 07:59:11 +00:00
|
|
|
Q_snprintfz(msg+msglen, sizeof(msg)-msglen,
|
|
|
|
"SOURCELIST\n");
|
|
|
|
msglen += strlen(msg+msglen);
|
2007-05-28 02:23:37 +00:00
|
|
|
}
|
2006-09-17 00:59:22 +00:00
|
|
|
|
2012-04-24 07:59:11 +00:00
|
|
|
Q_snprintfz(msg+msglen, sizeof(msg)-msglen,
|
|
|
|
"\n");
|
|
|
|
msglen += strlen(msg+msglen);
|
2006-09-17 00:59:22 +00:00
|
|
|
|
|
|
|
if (raw)
|
|
|
|
{
|
2012-04-24 07:59:11 +00:00
|
|
|
VFS_WRITE(newf, msg, msglen);
|
2008-01-09 00:52:31 +00:00
|
|
|
CL_QTVPlay(newf, false);
|
2006-09-17 00:59:22 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (qtvrequest)
|
|
|
|
VFS_CLOSE(qtvrequest);
|
2012-04-24 07:59:11 +00:00
|
|
|
|
|
|
|
memcpy(qtvrequestcmdbuffer, msg, msglen);
|
|
|
|
qtvrequestcmdsize = msglen;
|
2006-09-17 00:59:22 +00:00
|
|
|
qtvrequest = newf;
|
|
|
|
qtvrequestsize = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CL_QTVList_f (void)
|
|
|
|
{
|
|
|
|
char *connrequest;
|
|
|
|
vfsfile_t *newf;
|
2013-03-31 04:21:08 +00:00
|
|
|
newf = FS_OpenTCP(qtvhostname, 27599);
|
2006-09-17 00:59:22 +00:00
|
|
|
|
|
|
|
if (!newf)
|
|
|
|
{
|
|
|
|
Con_Printf("Couldn't connect to proxy\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-11-04 21:16:50 +00:00
|
|
|
if (qtvcl_forceversion1.ival)
|
2007-12-01 05:55:44 +00:00
|
|
|
{
|
|
|
|
connrequest = "QTV\n"
|
|
|
|
"VERSION: 1.0\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
connrequest = "QTV\n"
|
|
|
|
"VERSION: 1.1\n";
|
|
|
|
}
|
2006-09-17 00:59:22 +00:00
|
|
|
VFS_WRITE(newf, connrequest, strlen(connrequest));
|
|
|
|
connrequest = "SOURCELIST\n";
|
|
|
|
VFS_WRITE(newf, connrequest, strlen(connrequest));
|
|
|
|
connrequest = "\n";
|
|
|
|
VFS_WRITE(newf, connrequest, strlen(connrequest));
|
|
|
|
|
2007-05-25 22:16:29 +00:00
|
|
|
if (qtvrequest)
|
|
|
|
VFS_CLOSE(qtvrequest);
|
|
|
|
qtvrequest = newf;
|
|
|
|
qtvrequestsize = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CL_QTVDemos_f (void)
|
|
|
|
{
|
|
|
|
char *connrequest;
|
|
|
|
vfsfile_t *newf;
|
2013-03-31 04:21:08 +00:00
|
|
|
newf = FS_OpenTCP(Cmd_Argv(1), 27599);
|
2007-05-25 22:16:29 +00:00
|
|
|
|
|
|
|
if (!newf)
|
|
|
|
{
|
|
|
|
Con_Printf("Couldn't connect to proxy\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
connrequest = "QTV\n"
|
|
|
|
"VERSION: 1\n";
|
|
|
|
VFS_WRITE(newf, connrequest, strlen(connrequest));
|
|
|
|
connrequest = "DEMOLIST\n";
|
|
|
|
VFS_WRITE(newf, connrequest, strlen(connrequest));
|
|
|
|
connrequest = "\n";
|
|
|
|
VFS_WRITE(newf, connrequest, strlen(connrequest));
|
|
|
|
|
2006-09-17 00:59:22 +00:00
|
|
|
if (qtvrequest)
|
|
|
|
VFS_CLOSE(qtvrequest);
|
|
|
|
qtvrequest = newf;
|
|
|
|
qtvrequestsize = 0;
|
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
====================
|
|
|
|
CL_FinishTimeDemo
|
|
|
|
|
|
|
|
====================
|
|
|
|
*/
|
|
|
|
void CL_FinishTimeDemo (void)
|
|
|
|
{
|
|
|
|
int frames;
|
|
|
|
float time;
|
2012-04-24 07:59:11 +00:00
|
|
|
cvar_t *vw;
|
2006-02-11 14:51:36 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
cls.timedemo = false;
|
2006-02-11 14:51:36 +00:00
|
|
|
|
2009-07-14 15:10:07 +00:00
|
|
|
// loading frames don't count
|
|
|
|
if (cls.td_startframe == -1)
|
|
|
|
{
|
|
|
|
Con_Printf ("demo didn't finish loading\n");
|
|
|
|
frames = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
frames = (host_framecount - cls.td_startframe) - 1;
|
2004-08-23 00:15:46 +00:00
|
|
|
time = Sys_DoubleTime() - cls.td_starttime;
|
|
|
|
if (!time)
|
|
|
|
time = 1;
|
|
|
|
Con_Printf ("%i frames %5.1f seconds %5.1f fps\n", frames, time, frames/time);
|
2006-02-11 14:51:36 +00:00
|
|
|
|
2009-07-14 15:10:07 +00:00
|
|
|
cls.td_startframe = 0;
|
Fixes, workarounds, and breakages. Hexen2 should work much better (-hexen2 says no mission pack, -portals says h2mp). Started working on splitting bigcoords per client, far too much work still to go on that. Removed gl_ztrick entirely. Enabled csprogs download by default. Added client support for fitzquake's 666 protocol, needs testing, some cleanup for dp protocols too, no server support, couldn't selectively enable it anyway. Now attempting to cache shadow meshes for explosions and stuff. Played with lightmaps a little, should potentially run a little faster on certain (intel?) cards. Tweeked npfte a little to try to avoid deadlocks and crashes. Fixed sky worldspawn parsing. Added h2mp's model format. Fixed baseline issue in q2 client, made servers generate q2 baselines. MOVETYPE_PUSH will not rotate extra if rotation is forced. Made status command show allowed client types. Changed lighting on weapons - should now be shaded.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3572 fc73d0e0-1445-4013-8a0c-d673dee63da5
2010-08-11 03:36:31 +00:00
|
|
|
|
|
|
|
TP_ExecTrigger ("f_timedemoend");
|
2012-04-24 07:59:11 +00:00
|
|
|
|
|
|
|
vw = Cvar_FindVar("vid_wait");
|
|
|
|
Cvar_Set(vw, vw->string);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
====================
|
|
|
|
CL_TimeDemo_f
|
|
|
|
|
|
|
|
timedemo [demoname]
|
|
|
|
====================
|
|
|
|
*/
|
|
|
|
void CL_TimeDemo_f (void)
|
|
|
|
{
|
2012-04-24 07:59:11 +00:00
|
|
|
cvar_t *vw;
|
2004-08-23 00:15:46 +00:00
|
|
|
if (Cmd_Argc() != 2)
|
|
|
|
{
|
|
|
|
Con_Printf ("timedemo <demoname> : gets demo speeds\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
CL_PlayDemo_f ();
|
2011-05-29 04:26:29 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
if (cls.state != ca_demostart)
|
|
|
|
return;
|
|
|
|
|
2012-04-24 07:59:11 +00:00
|
|
|
vw = Cvar_FindVar("vid_wait");
|
|
|
|
if (vw)
|
|
|
|
{
|
|
|
|
char *t = vw->string;
|
|
|
|
vw->string = "0";
|
|
|
|
vw->value = 0;
|
|
|
|
Cvar_ForceCallback(vw);
|
|
|
|
vw->string = t;
|
|
|
|
}
|
|
|
|
|
|
|
|
//read the initial frame so load times don't count as part of the time
|
2012-04-24 12:22:50 +00:00
|
|
|
// CL_ReadPackets();
|
2005-04-16 16:21:27 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
// cls.td_starttime will be grabbed at the second frame of the demo, so
|
|
|
|
// all the loading time doesn't get counted
|
2011-05-29 04:26:29 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
cls.timedemo = true;
|
|
|
|
cls.td_starttime = Sys_DoubleTime();
|
2009-07-14 15:10:07 +00:00
|
|
|
cls.td_startframe = -1;
|
2004-08-23 00:15:46 +00:00
|
|
|
cls.td_lastframe = -1; // get a new message this frame
|
|
|
|
}
|
|
|
|
|