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 ;
2016-01-18 05:22:07 +00:00
float recdemostart ; //keyed to Sys_DoubleTime
2011-10-27 15:46:36 +00:00
int demoframe ;
2004-08-23 00:15:46 +00:00
int cls_lastto ;
2018-11-19 06:37:25 +00:00
static int cls_lasttype ;
2004-08-23 00:15:46 +00:00
2015-02-02 08:01:53 +00:00
void CL_PlayDemo ( char * demoname , qboolean usesystempath ) ;
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
void CL_PlayDemoFile ( vfsfile_t * f , char * demoname , qboolean issyspath ) ;
2005-12-21 03:07:33 +00:00
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 ;
2015-07-07 02:44:27 +00:00
extern cvar_t record_flush ;
2007-12-15 18:45:40 +00:00
2014-10-22 19:41:20 +00:00
static unsigned char demobuffer [ 1024 * 66 ] ; //input buffer
static int demooffset ; //start offset of demo buffer
static int demobuffersize ; //number of valid bytes within the buffer
static int demopreparsedbytes ; //number of bytes within the valid buffer that has already been pre-parsed.
2007-12-15 18:45:40 +00:00
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 ( ) ;
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
if ( cls . demoinfile )
VFS_CLOSE ( cls . demoinfile ) ;
2010-03-14 14:35:56 +00:00
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 ( ) ;
2015-06-03 15:21:24 +00:00
2015-06-16 23:53:58 +00:00
TP_ExecTrigger ( " f_demoend " , true ) ;
2004-08-23 00:15:46 +00:00
}
/*
= = = = = = = = = = = = = = = = = = = =
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
2016-01-18 05:22:07 +00:00
if ( cls . demorecording ! = DPB_QUAKEWORLD )
2013-07-26 17:19:06 +00:00
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
2016-01-18 05:22:07 +00:00
fl = LittleFloat ( Sys_DoubleTime ( ) - recdemostart ) ;
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 + + )
2015-06-05 09:04:05 +00:00
cmd . angles [ i ] = LittleShort ( ( pcmd - > angles [ i ] * 360.0 ) / 65535 ) ;
2004-12-06 01:59:05 +00:00
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
}
2015-07-07 02:44:27 +00:00
if ( record_flush . ival )
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 )
{
2016-01-18 05:22:07 +00:00
default :
2004-08-23 00:15:46 +00:00
return ;
2016-01-18 05:22:07 +00:00
case DPB_QUAKEWORLD : //QW
fl = LittleFloat ( Sys_DoubleTime ( ) - recdemostart ) ;
2013-07-26 17:19:06 +00:00
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 ;
2016-01-18 05:22:07 +00:00
# ifdef Q2CLIENT
case DPB_QUAKE2 :
len = LittleLong ( net_message . cursize - payloadoffset ) ;
VFS_WRITE ( cls . demooutfile , & len , sizeof ( len ) ) ;
VFS_WRITE ( cls . demooutfile , net_message . data + payloadoffset , net_message . cursize - payloadoffset ) ;
break ;
# endif
# ifdef NQPROT
case DPB_NETQUAKE : //NQ
2013-07-26 17:19:06 +00:00
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 ;
2016-01-18 05:22:07 +00:00
# endif
2013-06-23 02:17:02 +00:00
}
2015-07-07 02:44:27 +00:00
if ( record_flush . ival )
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
2014-10-22 19:41:20 +00:00
//if there's not enough space in the buffer, flush it now and allow grabbing a new chunk
//try to ensure it happens periodically enough for the preparsing stuff to happen early.
if ( demooffset + * readpos + len > demobuffersize | | demooffset > sizeof ( demobuffer ) / 2 )
{
memmove ( demobuffer , demobuffer + demooffset , demobuffersize ) ;
demooffset = 0 ;
}
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
2014-10-22 19:41:20 +00:00
trybytes = sizeof ( demobuffer ) - demooffset - demobuffersize ;
2016-01-18 05:22:07 +00:00
if ( trybytes > 4096 )
2014-10-22 19:41:20 +00:00
i = VFS_READ ( cls . demoinfile , demobuffer + demooffset + demobuffersize , trybytes ) ;
else
i = 0 ;
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
2014-10-22 19:41:20 +00:00
demopreparsedbytes + = demo_preparsedemo ( demobuffer + demooffset + 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
{
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
if ( i < 0 | | ( i = = 0 & & len & & cls . demoinfile - > seekstyle < SS_SLOW ) )
2016-07-12 00:40:13 +00:00
{ //0 means no data available yet, don't error on that (unless we can seek, in which case its not a stream and we won't get any more data later on).
2012-04-24 12:22:50 +00:00
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
}
2014-10-22 19:41:20 +00:00
memcpy ( data , demobuffer + demooffset + * readpos , len ) ;
2007-07-23 12:00:17 +00:00
* 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 )
{
2014-10-22 19:41:20 +00:00
if ( demooffset + bytes > demobuffersize )
2007-07-23 12:00:17 +00:00
Sys_Error ( " demo_flushbytes: flushed too much! \n " ) ;
2014-10-22 19:41:20 +00:00
demooffset + = bytes ;
2007-07-23 12:00:17 +00:00
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 )
{
2014-10-22 19:41:20 +00:00
demooffset = 0 ;
2007-07-23 12:00:17 +00:00
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 ( ) ;
2014-10-22 19:41:20 +00:00
demooffset = 0 ;
2007-07-23 12:00:17 +00:00
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 ;
2015-06-05 03:45:01 +00:00
if ( cl . parsecount & & Media_PausedDemo ( true ) )
2005-12-21 03:07:33 +00:00
{ //console visible whilst democapturing
cls . netchan . last_received = realtime ;
return ;
}
2005-12-21 07:10:48 +00:00
2018-05-06 16:09:07 +00:00
if ( cl . demopausedtilltime > = realtime )
return ;
cl . demopausedtilltime = 0 ;
cl . demonudge = 0 ;
------------------------------------------------------------------------
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 )
2014-08-25 07:35:41 +00:00
{
Con_Printf ( " not playing a demo, cannot jump. \n " ) ;
2006-01-13 06:27:18 +00:00
return ;
2014-08-25 07:35:41 +00:00
}
2006-01-13 06:27:18 +00:00
2015-07-30 16:26:15 +00:00
if ( Cmd_Argc ( ) < 2 )
{
Con_Printf ( " current time %.1f. \n " , demtime ) ;
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
{
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
vfsfile_t * df = cls . demoinfile ;
2012-11-27 03:23:19 +00:00
Con_Printf ( " Rewinding demo \n " ) ;
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
if ( df - > seekstyle ! = SS_UNSEEKABLE )
{
VFS_SEEK ( df , 0 ) ;
cls . demoinfile = NULL ;
2017-07-12 08:15:27 +00:00
CL_PlayDemoFile ( df , cls . lastdemoname , cls . lastdemowassystempath ) ;
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
}
else
2017-07-12 08:15:27 +00:00
CL_PlayDemo ( cls . lastdemoname , cls . lastdemowassystempath ) ;
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
}
2018-05-06 16:09:07 +00:00
void CL_DemoNudge_f ( void )
{
extern cvar_t cl_demospeed ;
int move = atoi ( Cmd_Argv ( 1 ) ) ;
int newnudge ;
if ( ! cls . demoplayback )
{
Con_Printf ( " not playing a demo, cannot nudge. \n " ) ;
return ;
}
if ( ! move )
move = 1 ;
newnudge = cl . demonudge + move ;
if ( newnudge < = - ( int ) countof ( cl . inframes ) )
newnudge = 1 - ( int ) countof ( cl . inframes ) ;
if ( newnudge < 0 )
{ //if we're nudging to a past frame, make sure that its actually valid.
for ( ; - ( int ) countof ( cl . inframes ) < newnudge & & newnudge < 0 ; )
{
int i = cls . netchan . incoming_sequence + newnudge ;
if ( i < 0 )
break ;
if ( cl . inframes [ i & UPDATE_MASK ] . frameid = = i & & ! cl . inframes [ i & UPDATE_MASK ] . invalid )
{
cl . demonudge = newnudge ;
break ;
}
if ( move < 0 )
newnudge - - ;
else
newnudge + + ;
}
if ( ! newnudge )
cl . demonudge = newnudge ;
}
else
cl . demonudge = newnudge ;
cl . demopausedtilltime = realtime + 3 ;
}
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.
2015-06-12 14:44:50 +00:00
//make sure everything is loaded, to avoid stalls
2016-07-12 00:40:13 +00:00
2019-09-04 07:59:40 +00:00
Menu_PopAll ( ) ;
2015-06-12 14:44:50 +00:00
COM_WorkerFullSync ( ) ;
2009-07-18 19:46:32 +00:00
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 ) ;
2009-07-18 19:46:32 +00:00
scr_con_current = 0 ;
}
2007-05-25 22:16:29 +00:00
# ifdef Q2CLIENT
2015-12-12 19:25:15 +00:00
//q2 uses a fixed 10fps packet rate, even demos enforce it.
if ( cls . demoplayback = = DPB_QUAKE2 )
{
if ( cls . timedemo )
{
if ( demoframe = = host_framecount )
return 0 ;
demoframe = host_framecount ;
}
# if 1
else if ( demtime < cl . gametime & & cl . gametime )
{
if ( demtime < = cl . gametime - 1 )
demtime = cl . gametime ;
return 0 ;
}
# else
else if ( cls . netchan . last_received = = realtime | | cls . netchan . last_received > realtime - 0.1 )
return 0 ;
# endif
}
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
{
2018-05-06 16:09:07 +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 ;
2018-05-06 16:09:07 +00:00
} */
2011-10-27 15:46:36 +00:00
cls . netchan . last_received = realtime ;
2014-08-25 07:35:41 +00:00
if ( cls . demoseeking )
{
if ( cl . gametime > cls . demoseektime )
{
cls . demoseeking = false ;
return 0 ;
}
}
2018-05-06 16:09:07 +00:00
else if ( cl . demonudge > 0 )
cl . demonudge - - ;
2014-08-25 07:35:41 +00:00
else 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
}
2015-12-12 19:25:15 +00:00
else if ( cls . signon < 4 )
2014-10-05 20:04:11 +00:00
demtime = 0 ;
2007-07-23 12:00:17 +00:00
if ( readdemobytes ( & demopos , & msglength , 4 ) ! = 4 )
{
return 0 ;
}
2015-12-12 19:25:15 +00:00
msglength = LittleLong ( msglength ) ;
if ( msglength = = - 1 )
{
int tmppos = demopos ;
//q2 writes a length of -1 to mark eof. if this peek fails then it really is eof and we shouldn't fail from weird message length checks.
if ( readdemobytes ( & tmppos , & msglength , 4 ) ! = 4 )
{
endofdemo = true ;
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
2016-09-08 19:04:35 +00:00
if ( msglength > net_message . maxsize )
2004-08-23 00:15:46 +00:00
{
2017-10-12 12:02:25 +00:00
Con_Printf ( " Demo message > MAX_MSGLEN \n " ) ;
2004-08-23 00:15:46 +00:00
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 ) ;
2016-07-12 00:40:13 +00:00
NET_UpdateRates ( cls . sockets , true , msglength ) ; //keep any rate calcs sane
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
}
2020-04-24 04:23:13 +00:00
else if ( cls . demoplayback = = DPB_QUAKEWORLD )
2004-08-23 00:15:46 +00:00
{
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 ) ;
}
2020-04-24 04:23:13 +00:00
else
return 0 ;
2004-08-23 00:15:46 +00:00
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 ;
2015-03-03 00:14:43 +00:00
return 0 ; // next packet starts after the previous one. draw something before parsing it.
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
}
2018-05-06 16:09:07 +00:00
else if ( cl . demonudge > 0 )
{
cl . demonudge - - ;
demtime = demotime ; // warp
}
2016-09-08 19:04:35 +00:00
else if ( ! ( cl . paused & ~ 4 ) & & 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
2015-06-05 09:04:05 +00:00
i = cl . movesequence & 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 ;
2013-10-19 10:33:06 +00:00
cl . outframes [ i ] . server_message_num = cl . validsequence ;
cl . outframes [ i ] . cmd_sequence = cl . movesequence ;
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
}
2016-07-12 00:40:13 +00:00
NET_UpdateRates ( cls . sockets , true , msglength ) ; //keep any rate calcs sane
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 ;
2015-06-12 14:44:50 +00:00
cl . defaultnetsplit = 0 ;
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 ;
2015-06-22 11:49:15 +00:00
if ( cl . playerview [ seat ] . cam_state = = CAM_FREECAM )
2013-06-23 02:17:02 +00:00
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 ;
}
2015-06-12 14:44:50 +00:00
cl . defaultnetsplit = seat ;
2004-08-23 00:15:46 +00:00
break ;
case dem_single :
2013-06-23 02:17:02 +00:00
{
2015-06-12 14:44:50 +00:00
int maxseat = cl . splitclients ;
//only accept single messages that are directed to the first player view.
//this is too problematic otherwise (apparently mvdsv doesn't use dem_multiple for team says any more).
if ( 1 )
maxseat = 1 ;
for ( seat = 0 ; seat < maxseat ; seat + + )
{
tracknum = cl . playerview [ seat ] . cam_spec_track ;
2015-06-22 11:49:15 +00:00
if ( cl . playerview [ seat ] . cam_state = = CAM_FREECAM )
2015-06-12 14:44:50 +00:00
tracknum = - 1 ;
if ( tracknum = = - 1 | | ( cls_lastto ! = tracknum ) )
continue ;
break ;
}
if ( seat = = maxseat )
{
olddemotime = demotime ;
goto readnext ;
}
cl . defaultnetsplit = seat ;
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 ;
2015-04-21 04:12:00 +00:00
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 ;
}
2015-04-21 04:12:00 +00:00
cls . demostarttime = demtime ;
2013-03-12 22:44:00 +00:00
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
2016-07-12 00:40:13 +00:00
NET_UpdateRates ( cls . sockets , false , demopos ) ; //keep any rate calcs sane
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 ;
2015-07-09 18:02:49 +00:00
net_from . type = NA_INVALID ;
2004-08-23 00:15:46 +00:00
return 1 ;
}
/*
= = = = = = = = = = = = = = = = = = = =
CL_Stop_f
stop recording a demo
= = = = = = = = = = = = = = = = = = = =
*/
void CL_Stop_f ( void )
{
if ( ! cls . demorecording )
{
2018-09-01 04:18:08 +00:00
# if !defined(CLIENTONLY) && defined(MVD_RECORDING)
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
2016-01-18 05:22:07 +00:00
# ifdef Q2CLIENT
if ( cls . demorecording = = DPB_QUAKE2 )
{ //q2 demos signify eof with a -1 size
int len = ~ 0 ;
VFS_WRITE ( cls . demooutfile , & len , sizeof ( len ) ) ;
}
else
# endif
{
SZ_Clear ( & net_message ) ;
msg_readcount = 0 ;
MSG_WriteLong ( & net_message , - 1 ) ; // -1 sequence means out of band
MSG_WriteByte ( & net_message , svc_disconnect ) ;
MSG_WriteString ( & net_message , " EndOfDemo " ) ;
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 " ) ;
2015-08-20 03:17:47 +00:00
2017-02-19 00:15:42 +00:00
FS_FlushFSHashFull ( ) ; //FIXME: single name
2004-08-23 00:15:46 +00:00
}
2016-01-18 05:22:07 +00:00
void CL_WriteRecordQ2DemoMessage ( sizebuf_t * msg )
{ //q2 is really simple, and doesn't have timings in its demo format.
int len = LittleLong ( msg - > cursize ) ;
VFS_WRITE ( cls . demooutfile , & len , 4 ) ;
VFS_WRITE ( cls . demooutfile , msg - > data , msg - > cursize ) ;
2004-08-23 00:15:46 +00:00
2016-01-18 05:22:07 +00:00
}
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = = = = = = = = = =
CL_WriteDemoMessage
2016-09-08 19:04:35 +00:00
Dumps the specified net message as part of initial mid - map demo writing .
2004-08-23 00:15:46 +00:00
= = = = = = = = = = = = = = = = = = = =
*/
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 ;
2016-09-08 19:19:05 +00:00
# ifdef NQPROT
2016-09-08 19:04:35 +00:00
if ( cls . demorecording = = DPB_NETQUAKE )
{
len = LittleLong ( msg - > cursize ) ;
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 ) ) ;
}
}
else
2016-09-08 19:19:05 +00:00
# endif
2016-09-08 19:04:35 +00:00
{
fl = LittleFloat ( Sys_DoubleTime ( ) - recdemostart ) ;
VFS_WRITE ( cls . demooutfile , & fl , sizeof ( fl ) ) ;
2004-08-23 00:15:46 +00:00
2016-09-08 19:04:35 +00:00
c = dem_read ;
VFS_WRITE ( cls . demooutfile , & c , sizeof ( c ) ) ;
2004-08-23 00:15:46 +00:00
2016-09-08 19:04:35 +00:00
len = LittleLong ( msg - > cursize + 8 ) ;
VFS_WRITE ( cls . demooutfile , & len , 4 ) ;
2004-08-23 00:15:46 +00:00
2016-09-08 19:04:35 +00:00
i = LittleLong ( seq ) ;
VFS_WRITE ( cls . demooutfile , & i , 4 ) ;
VFS_WRITE ( cls . demooutfile , & i , 4 ) ;
}
2010-03-14 14:35:56 +00:00
VFS_WRITE ( cls . demooutfile , msg - > data , msg - > cursize ) ;
2004-08-23 00:15:46 +00:00
2016-09-08 19:04:35 +00:00
SZ_Clear ( msg ) ;
2015-07-07 02:44:27 +00:00
if ( record_flush . ival )
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
2016-01-18 05:22:07 +00:00
if ( cls . demorecording ! = DPB_QUAKEWORLD )
2004-08-23 00:15:46 +00:00
return ;
2016-01-18 05:22:07 +00:00
fl = LittleFloat ( Sys_DoubleTime ( ) - recdemostart ) ;
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
2015-07-07 02:44:27 +00:00
if ( record_flush . ival )
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
2018-09-01 04:18:08 +00:00
# ifdef MVD_RECORDING
2016-07-12 00:40:13 +00:00
mvddest_t * SV_MVD_InitRecordFile ( char * name ) ;
2013-07-26 17:19:06 +00:00
qboolean SV_MVD_Record ( mvddest_t * dest ) ;
2018-09-01 04:18:08 +00:00
# endif
2013-07-26 17:19:06 +00:00
void CL_RecordMap_f ( void )
{
char demoname [ MAX_QPATH ] ;
char mapname [ MAX_QPATH ] ;
2014-10-05 20:04:11 +00:00
char demoext [ 8 ] ;
2016-01-18 05:22:07 +00:00
if ( Cmd_Argc ( ) < 3 )
{
Con_Printf ( " %s: demoname mapname \n " , Cmd_Argv ( 0 ) ) ;
return ;
}
2013-07-26 17:19:06 +00:00
Q_strncpyz ( demoname , Cmd_Argv ( 1 ) , sizeof ( demoname ) ) ;
Q_strncpyz ( mapname , Cmd_Argv ( 2 ) , sizeof ( mapname ) ) ;
CL_Disconnect_f ( ) ;
2020-04-19 01:23:32 +00:00
SV_SpawnServer ( mapname , NULL , false , false , 0 ) ;
2004-08-23 00:15:46 +00:00
2018-09-01 04:18:08 +00:00
# ifdef MVD_RECORDING
2013-07-26 17:19:06 +00:00
COM_DefaultExtension ( demoname , " .mvd " , sizeof ( demoname ) ) ;
2018-09-01 04:18:08 +00:00
# else
COM_DefaultExtension ( demoname , " .dem " , sizeof ( demoname ) ) ;
# endif
2014-10-05 20:04:11 +00:00
COM_FileExtension ( demoname , demoext , sizeof ( demoext ) ) ;
2013-07-26 17:19:06 +00:00
2018-09-01 04:18:08 +00:00
# if defined(AVAIL_GZDEC) && !defined(CLIENTONLY)
{
extern cvar_t sv_demoAutoCompress ;
if ( sv_demoAutoCompress . ival )
Q_strncatz ( demoname , " .gz " , sizeof ( demoname ) ) ;
}
# endif
# ifdef MVD_RECORDING
2013-07-26 17:19:06 +00:00
if ( ! strcmp ( demoext , " mvd " ) )
{
2016-07-12 00:40:13 +00:00
if ( ! SV_MVD_Record ( SV_MVD_InitRecordFile ( demoname ) ) )
2013-07-26 17:19:06 +00:00
CL_Disconnect_f ( ) ;
// char buf[512];
// Cbuf_AddText(va("mvdrecord %s\n", COM_QuotedString(demoname, buf, sizeof(buf))), RESTRICT_LOCAL);
}
else
2018-09-01 04:18:08 +00:00
# endif
2013-07-26 17:19:06 +00:00
{
cls . demooutfile = FS_OpenVFS ( demoname , " wb " , FS_GAME ) ;
if ( ! cls . demooutfile )
{
CL_Disconnect_f ( ) ;
return ;
}
2018-09-01 04:18:08 +00:00
# ifdef AVAIL_GZDEC
if ( ! Q_strcasecmp ( " .gz " , COM_GetFileExtension ( demoname , NULL ) ) )
cls . demooutfile = FS_GZ_WriteFilter ( cls . demooutfile , true , true ) ;
# endif
2016-02-10 23:23:43 +00:00
# ifdef NQPROT
2013-07-26 17:19:06 +00:00
if ( ! strcmp ( demoext , " dem " ) )
{
2016-01-18 05:22:07 +00:00
cls . demorecording = DPB_NETQUAKE ;
2013-07-26 17:19:06 +00:00
VFS_PUTS ( cls . demooutfile , " -1 \n " ) ;
}
else
2016-02-10 23:23:43 +00:00
# endif
2016-01-18 05:22:07 +00:00
cls . demorecording = DPB_QUAKEWORLD ;
2013-07-26 17:19:06 +00:00
CL_WriteSetDemoMessage ( ) ;
}
}
# endif
2004-08-23 00:15:46 +00:00
2016-09-08 19:04:35 +00:00
//qw-specific serverdata
2018-07-05 16:21:44 +00:00
static void CLQW_RecordServerData ( sizebuf_t * buf , int * seq )
2016-09-08 19:04:35 +00:00
{
extern char gamedirfile [ ] ;
unsigned int i ;
2018-07-05 16:21:44 +00:00
infosync_t sync ;
char serverinfostring [ 1024 ] ;
2016-09-08 19:04:35 +00:00
// send the serverdata
MSG_WriteByte ( buf , svc_serverdata ) ;
2018-09-01 04:18:08 +00:00
if ( cls . fteprotocolextensions & ~ PEXT1_HIDEPROTOCOLS ) //maintain demo compatability
2016-09-08 19:04:35 +00:00
{
2019-05-10 09:31:21 +00:00
MSG_WriteLong ( buf , PROTOCOL_VERSION_FTE1 ) ;
2018-09-01 04:18:08 +00:00
MSG_WriteLong ( buf , cls . fteprotocolextensions & ~ PEXT1_HIDEPROTOCOLS ) ;
2016-09-08 19:04:35 +00:00
}
if ( cls . fteprotocolextensions2 ) //maintain demo compatability
{
MSG_WriteLong ( buf , PROTOCOL_VERSION_FTE2 ) ;
MSG_WriteLong ( buf , cls . fteprotocolextensions2 ) ;
}
2019-03-23 07:06:37 +00:00
if ( cls . ezprotocolextensions1 )
{
MSG_WriteLong ( buf , PROTOCOL_VERSION_EZQUAKE1 ) ;
MSG_WriteLong ( buf , cls . ezprotocolextensions1 ) ;
}
2016-09-08 19:04:35 +00:00
MSG_WriteLong ( buf , PROTOCOL_VERSION_QW ) ;
MSG_WriteLong ( buf , cl . servercount ) ;
MSG_WriteString ( buf , gamedirfile ) ;
if ( cls . fteprotocolextensions2 & PEXT2_MAXPLAYERS )
{
MSG_WriteByte ( buf , cl . allocated_client_slots ) ;
2017-05-28 15:42:32 +00:00
MSG_WriteByte ( buf , cl . splitclients ) ;
2016-09-08 19:04:35 +00:00
for ( i = 0 ; i < cl . splitclients ; i + + )
MSG_WriteByte ( buf , cl . playerview [ i ] . playernum ) ;
}
else
{
for ( i = 0 ; i < cl . splitclients ; i + + )
{
2017-05-28 15:42:32 +00:00
if ( cl . playerview [ i ] . spectator )
2016-09-08 19:04:35 +00:00
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 ) ;
}
// 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
2018-07-05 16:21:44 +00:00
memset ( & sync , 0 , sizeof ( sync ) ) ;
InfoBuf_ToString ( & cl . serverinfo , serverinfostring , sizeof ( serverinfostring ) , NULL , NULL , NULL , & sync , NULL ) ;
2016-09-08 19:04:35 +00:00
MSG_WriteByte ( buf , svc_stufftext ) ;
2018-07-05 16:21:44 +00:00
MSG_WriteString ( buf , va ( " fullserverinfo \" %s \" \n " , serverinfostring ) ) ;
while ( sync . numkeys )
{
char * keyname = sync . keys [ 0 ] . name ;
char enckey [ 2048 ] , encdata [ 2048 ] ;
if ( InfoBuf_EncodeString ( keyname , strlen ( keyname ) , enckey , sizeof ( enckey ) ) )
{
size_t k ;
if ( InfoBuf_FindKey ( & cl . serverinfo , keyname , & k ) )
{
size_t offset , chunk ;
qboolean final ;
for ( offset = 0 ; offset < cl . serverinfo . keys [ k ] . size ; offset + = chunk )
{
chunk = cl . serverinfo . keys [ k ] . size - offset ;
if ( chunk > 1024 )
chunk = 1024 ;
if ( ! InfoBuf_EncodeString ( cl . serverinfo . keys [ k ] . value , chunk , encdata , sizeof ( encdata ) ) )
break ; //shouldn't happen.
if ( buf - > cursize > 512 )
CL_WriteRecordDemoMessage ( buf , ( * seq ) + + ) ;
final = ( offset + chunk = = cl . serverinfo . keys [ k ] . size ) & & ! cl . serverinfo . keys [ k ] . partial ;
if ( ! offset & & final )
{ //vanilla compat. we must just have a lot of data.
MSG_WriteByte ( buf , svc_serverinfo ) ;
MSG_WriteString ( buf , enckey ) ;
MSG_WriteString ( buf , encdata ) ;
}
else
{ //awkward stuff.
MSG_WriteByte ( buf , svc_setinfo ) ;
MSG_WriteByte ( buf , 255 ) ; //special meaning to say that this is a partial update
MSG_WriteByte ( buf , 255 ) ; //the serverinfo
MSG_WriteLong ( buf , ( final ? 0x80000000 : 0 ) | offset ) ;
MSG_WriteString ( buf , enckey ) ;
MSG_WriteString ( buf , encdata ) ;
}
offset + = chunk ;
}
}
}
InfoSync_Remove ( & sync , 0 ) ;
}
InfoSync_Clear ( & sync ) ;
2016-09-08 19:04:35 +00:00
}
2016-09-08 19:19:05 +00:00
# ifdef NQPROT
2018-07-05 16:21:44 +00:00
void CLNQ_WriteServerData ( sizebuf_t * buf ) //for demo recording
2016-09-08 19:04:35 +00:00
{
unsigned int protmain ;
unsigned int protfl = 0 ;
unsigned int i ;
const char * val ;
2018-09-01 04:18:08 +00:00
//This is for compat with DP.
2018-07-05 16:21:44 +00:00
val = InfoBuf_ValueForKey ( & cl . serverinfo , " *csprogs " ) ;
2016-09-08 19:04:35 +00:00
if ( * val )
{
MSG_WriteByte ( buf , svc_stufftext ) ;
MSG_WriteString ( buf , va ( " csqc_progcrc \" %s \" \n " , val ) ) ;
}
2018-07-05 16:21:44 +00:00
val = InfoBuf_ValueForKey ( & cl . serverinfo , " *csprogssize " ) ;
2016-09-08 19:04:35 +00:00
if ( * val )
{
MSG_WriteByte ( buf , svc_stufftext ) ;
MSG_WriteString ( buf , va ( " csqc_progsize \" %s \" \n " , val ) ) ;
}
2018-07-05 16:21:44 +00:00
val = InfoBuf_ValueForKey ( & cl . serverinfo , " *csprogsname " ) ;
2016-09-08 19:04:35 +00:00
if ( * val )
{
MSG_WriteByte ( buf , svc_stufftext ) ;
MSG_WriteString ( buf , va ( " csqc_progname \" %s \" \n " , val ) ) ;
}
MSG_WriteByte ( buf , svc_serverdata ) ;
2018-09-01 04:18:08 +00:00
if ( cls . fteprotocolextensions & ~ PEXT1_HIDEPROTOCOLS )
2016-09-08 19:04:35 +00:00
{
2019-05-10 09:31:21 +00:00
MSG_WriteLong ( buf , PROTOCOL_VERSION_FTE1 ) ;
2018-09-01 04:18:08 +00:00
MSG_WriteLong ( buf , cls . fteprotocolextensions & ~ PEXT1_HIDEPROTOCOLS ) ;
2016-09-08 19:04:35 +00:00
}
if ( cls . fteprotocolextensions2 )
{
MSG_WriteLong ( buf , PROTOCOL_VERSION_FTE2 ) ;
MSG_WriteLong ( buf , cls . fteprotocolextensions2 ) ;
}
if ( cls . netchan . message . prim . anglesize = = 2 )
protfl | = RMQFL_SHORTANGLE ;
if ( cls . netchan . message . prim . anglesize = = 4 )
protfl | = RMQFL_FLOATANGLE ;
2019-10-14 02:36:57 +00:00
switch ( cls . netchan . message . prim . coordtype )
{
case COORDTYPE_FLOAT_32 : protfl | = RMQFL_FLOATCOORD ; break ;
case COORDTYPE_FIXED_28_4 : protfl | = RMQFL_INT32COORD ; break ;
case COORDTYPE_FIXED_16_8 : protfl | = RMQFL_24BITCOORD ; break ;
default : //err?
case COORDTYPE_FIXED_13_3 : break ;
}
2016-09-08 19:04:35 +00:00
switch ( cls . protocol_nq )
{
default :
case CPNQ_ID : protmain = PROTOCOL_VERSION_NQ ; break ;
2017-07-12 08:15:27 +00:00
case CPNQ_NEHAHRA : protmain = PROTOCOL_VERSION_NEHD ; break ;
2016-09-08 19:04:35 +00:00
case CPNQ_BJP1 : protmain = PROTOCOL_VERSION_BJP1 ; break ;
case CPNQ_BJP2 : protmain = PROTOCOL_VERSION_BJP2 ; break ;
case CPNQ_BJP3 : protmain = PROTOCOL_VERSION_BJP3 ; break ;
case CPNQ_FITZ666 : protmain = protfl ? PROTOCOL_VERSION_RMQ : PROTOCOL_VERSION_FITZ ; break ; //this might break .scale, fte doesn't care, other engines might.
case CPNQ_DP5 : protmain = PROTOCOL_VERSION_DP5 ; break ;
case CPNQ_DP6 : protmain = PROTOCOL_VERSION_DP6 ; break ;
case CPNQ_DP7 : protmain = PROTOCOL_VERSION_DP7 ; break ;
}
MSG_WriteLong ( buf , protmain ) ;
if ( protmain = = PROTOCOL_VERSION_RMQ )
MSG_WriteLong ( buf , protfl ) ;
2018-09-01 04:18:08 +00:00
if ( cls . fteprotocolextensions2 & PEXT2_PREDINFO )
MSG_WriteString ( buf , FS_GetGamedir ( true ) ) ;
2016-09-08 19:04:35 +00:00
MSG_WriteByte ( buf , cl . allocated_client_slots ) ;
MSG_WriteByte ( buf , cl . deathmatch ? GAME_DEATHMATCH : GAME_COOP ) ;
MSG_WriteString ( buf , cl . levelname ) ;
for ( i = 1 ; * cl . model_name [ i ] & & i < MAX_PRECACHE_MODELS ; i + + )
MSG_WriteString ( buf , cl . model_name [ i ] ) ;
MSG_WriteByte ( buf , 0 ) ;
for ( i = 1 ; * cl . sound_name [ i ] & & i < MAX_PRECACHE_SOUNDS ; i + + )
MSG_WriteString ( buf , cl . sound_name [ i ] ) ;
MSG_WriteByte ( buf , 0 ) ;
}
2016-09-08 19:19:05 +00:00
# endif
2016-09-08 19:04:35 +00:00
2017-07-12 08:15:27 +00:00
void CL_Record_Baseline ( sizebuf_t * buf , entity_state_t * state , unsigned int fitzbits )
2016-09-08 19:04:35 +00:00
{
unsigned int j ;
2017-07-12 08:15:27 +00:00
if ( fitzbits & FITZ_B_LARGEMODEL )
2016-09-08 19:04:35 +00:00
MSG_WriteShort ( buf , state - > modelindex ) ;
else
MSG_WriteByte ( buf , state - > modelindex ) ;
2017-07-12 08:15:27 +00:00
if ( fitzbits & FITZ_B_LARGEFRAME )
2016-09-08 19:04:35 +00:00
MSG_WriteShort ( buf , state - > frame ) ;
else
MSG_WriteByte ( buf , state - > frame ) ;
MSG_WriteByte ( buf , state - > colormap ) ;
MSG_WriteByte ( buf , state - > skinnum ) ;
for ( j = 0 ; j < 3 ; j + + )
{
MSG_WriteCoord ( buf , state - > origin [ j ] ) ;
MSG_WriteAngle ( buf , state - > angles [ j ] ) ;
}
2017-07-12 08:15:27 +00:00
if ( fitzbits & FITZ_B_ALPHA )
2016-09-08 19:04:35 +00:00
MSG_WriteByte ( buf , state - > trans ) ;
2017-07-12 08:15:27 +00:00
if ( fitzbits & RMQFITZ_B_SCALE )
2016-09-08 19:04:35 +00:00
MSG_WriteByte ( buf , state - > scale ) ;
}
//nq+qw generic stuff.
static int CL_Record_ParticlesStaticsBaselines ( sizebuf_t * buf , int seq )
{
unsigned int i ;
entity_state_t * es ;
//particleeffectnum stuff
for ( i = 1 ; i < MAX_SSPARTICLESPRE ; i + + )
{
if ( ! cl . particle_ssname [ i ] )
break ;
MSG_WriteByte ( buf , svcfte_precache ) ;
MSG_WriteShort ( buf , PC_PARTICLE | i ) ;
MSG_WriteString ( buf , cl . particle_ssname [ i ] ) ;
if ( buf - > cursize > buf - > maxsize / 2 )
CL_WriteRecordDemoMessage ( buf , seq + + ) ;
}
//custom tents (needed for hexen2, if nothing else)
for ( i = 0 ; ; i + + )
{
if ( ! CL_WriteCustomTEnt ( buf , i ) )
break ;
if ( buf - > cursize > buf - > maxsize / 2 )
CL_WriteRecordDemoMessage ( buf , seq + + ) ;
}
// spawnstatic
for ( i = 0 ; i < cl . num_statics ; i + + )
{
es = & cl_static_entities [ i ] . state ;
# ifndef CLIENTONLY //FIXME
if ( cls . fteprotocolextensions2 & PEXT2_REPLACEMENTDELTAS )
{
MSG_WriteByte ( buf , svcfte_spawnstatic2 ) ;
2021-08-04 21:16:57 +00:00
SVFTE_EmitBaseline ( es , false , buf , cls . fteprotocolextensions2 , cls . ezprotocolextensions1 ) ;
2016-09-08 19:04:35 +00:00
}
//else if (cls.fteprotocolextensions & PEXT_SPAWNSTATIC2) //qw deltas
else
# endif
{
unsigned int bits = 0 ;
# ifdef NQPROT
if ( es - > modelindex > 255 )
bits | = FITZ_B_LARGEMODEL ;
if ( es - > frame > 255 )
bits | = FITZ_B_LARGEFRAME ;
if ( es - > trans ! = 255 )
bits | = FITZ_B_ALPHA ;
if ( es - > scale ! = 16 )
bits | = RMQFITZ_B_SCALE ;
if ( cls . protocol = = CP_NETQUAKE & & CPNQ_IS_BJP )
{
MSG_WriteByte ( buf , svc_spawnstatic ) ;
bits = FITZ_B_LARGEMODEL ; //bjp always uses shorts for models.
}
else if ( cls . protocol = = CP_NETQUAKE & & cls . protocol_nq = = CPNQ_FITZ666 & & bits )
{
MSG_WriteByte ( buf , svcfitz_spawnstatic2 ) ;
MSG_WriteByte ( buf , bits ) ;
}
// else if (baselinetype2 >= CPNQ_DP5 && baselinetype2 <= CPNQ_DP7 && (bits & (FITZ_B_LARGEMODEL|FITZ_B_LARGEFRAME)))
// {
// MSG_WriteByte (buf, svcdp_spawnstatic2);
// bits = FITZ_B_LARGEMODEL|FITZ_B_LARGEFRAME; //dp's baseline2 always has these (regular baseline is unmodified)
// }
else
# endif
{
//classic protocol
MSG_WriteByte ( buf , svc_spawnstatic ) ;
bits = 0 ;
}
CL_Record_Baseline ( buf , es , bits ) ;
}
if ( buf - > cursize > buf - > maxsize / 2 )
CL_WriteRecordDemoMessage ( buf , seq + + ) ;
}
// FIXME: static sounds
// static sounds are skipped in demos, life is hard
// baselines
for ( i = 0 ; i < cl_baselines_count ; i + + )
{
es = cl_baselines + i ;
if ( memcmp ( es , & nullentitystate , sizeof ( nullentitystate ) ) )
{
# ifndef CLIENTONLY //FIXME
if ( cls . fteprotocolextensions2 & PEXT2_REPLACEMENTDELTAS )
{
MSG_WriteByte ( buf , svcfte_spawnbaseline2 ) ;
2021-08-04 21:16:57 +00:00
SVFTE_EmitBaseline ( es , true , buf , cls . fteprotocolextensions2 , cls . ezprotocolextensions1 ) ;
2016-09-08 19:04:35 +00:00
}
//else if (cls.fteprotocolextensions & PEXT_SPAWNSTATIC2) //qw deltas
else
# endif
{
2017-07-12 08:15:27 +00:00
unsigned int fitzbits = 0 ; //must take some consistent form for this to work
2016-09-08 19:04:35 +00:00
# ifdef NQPROT
if ( es - > modelindex > 255 )
2017-07-12 08:15:27 +00:00
fitzbits | = FITZ_B_LARGEMODEL ;
2016-09-08 19:04:35 +00:00
if ( es - > frame > 255 )
2017-07-12 08:15:27 +00:00
fitzbits | = FITZ_B_LARGEFRAME ;
2016-09-08 19:04:35 +00:00
if ( es - > trans ! = 255 )
2017-07-12 08:15:27 +00:00
fitzbits | = FITZ_B_ALPHA ;
2016-09-08 19:04:35 +00:00
if ( es - > scale ! = 16 )
2017-07-12 08:15:27 +00:00
fitzbits | = RMQFITZ_B_SCALE ;
2016-09-08 19:04:35 +00:00
if ( cls . protocol = = CP_NETQUAKE & & CPNQ_IS_BJP )
{
MSG_WriteByte ( buf , svc_spawnbaseline ) ;
2017-07-12 08:15:27 +00:00
fitzbits = FITZ_B_LARGEMODEL ; //bjp always uses shorts for models.
2016-09-08 19:04:35 +00:00
}
2017-07-12 08:15:27 +00:00
else if ( cls . protocol = = CP_NETQUAKE & & cls . protocol_nq = = CPNQ_FITZ666 & & fitzbits )
2016-09-08 19:04:35 +00:00
{
MSG_WriteByte ( buf , svcfitz_spawnbaseline2 ) ;
2017-07-12 08:15:27 +00:00
MSG_WriteByte ( buf , fitzbits ) ;
2016-09-08 19:04:35 +00:00
}
2017-07-12 08:15:27 +00:00
else if ( cls . protocol = = CP_NETQUAKE & & CPNQ_IS_DP & & ( fitzbits & ( FITZ_B_LARGEMODEL | FITZ_B_LARGEFRAME ) ) )
2016-09-08 19:04:35 +00:00
{
MSG_WriteByte ( buf , svcdp_spawnbaseline2 ) ;
2017-07-12 08:15:27 +00:00
fitzbits = FITZ_B_LARGEMODEL | FITZ_B_LARGEFRAME ; //dp's baseline2 always has these (regular baseline is unmodified)
2016-09-08 19:04:35 +00:00
}
else
# endif
{
MSG_WriteByte ( buf , svc_spawnbaseline ) ;
2017-07-12 08:15:27 +00:00
fitzbits = 0 ;
2016-09-08 19:04:35 +00:00
}
MSG_WriteEntity ( buf , i ) ;
2017-07-12 08:15:27 +00:00
CL_Record_Baseline ( buf , es , fitzbits ) ;
2016-09-08 19:04:35 +00:00
}
if ( buf - > cursize > buf - > maxsize / 2 )
CL_WriteRecordDemoMessage ( buf , seq + + ) ;
}
}
return seq ;
}
static int CL_Record_Lightstyles ( sizebuf_t * buf , int seq )
{
unsigned int i ;
// send all current light styles
2019-09-10 15:40:04 +00:00
for ( i = 0 ; i < cl_max_lightstyles ; i + + )
2016-09-08 19:04:35 +00:00
{
if ( i > = MAX_STANDARDLIGHTSTYLES )
if ( ! * cl_lightstyle [ i ] . map )
continue ;
# ifdef PEXT_LIGHTSTYLECOL
if ( ( cls . fteprotocolextensions & PEXT_LIGHTSTYLECOL ) & & ( cl_lightstyle [ i ] . colours [ 0 ] ! = 1 | | cl_lightstyle [ i ] . colours [ 1 ] ! = 1 | | cl_lightstyle [ i ] . colours [ 2 ] ! = 1 ) & & * cl_lightstyle [ i ] . map )
{
MSG_WriteByte ( buf , svcfte_lightstylecol ) ;
MSG_WriteByte ( buf , ( unsigned char ) i ) ;
MSG_WriteByte ( buf , 0x87 ) ;
MSG_WriteShort ( buf , cl_lightstyle [ i ] . colours [ 0 ] * 1024 ) ;
MSG_WriteShort ( buf , cl_lightstyle [ i ] . colours [ 1 ] * 1024 ) ;
MSG_WriteShort ( buf , cl_lightstyle [ i ] . colours [ 2 ] * 1024 ) ;
MSG_WriteString ( buf , cl_lightstyle [ i ] . map ) ;
}
else
# endif
{
MSG_WriteByte ( buf , svc_lightstyle ) ;
MSG_WriteByte ( buf , ( unsigned char ) i ) ;
MSG_WriteString ( buf , cl_lightstyle [ i ] . map ) ;
}
if ( buf - > cursize > buf - > maxsize / 2 )
CL_WriteRecordDemoMessage ( buf , seq + + ) ;
}
return seq ;
}
2018-09-01 04:18:08 +00:00
// send current status of all other players
static int CL_RecordInitialPlayers ( sizebuf_t * buf , int seq , qboolean isnq )
{
char info [ MAX_LOCALINFO_STRING ] ;
player_info_t * player ;
int i ;
for ( i = 0 ; i < cl . allocated_client_slots ; i + + )
{
player = cl . players + i ;
if ( buf - > cursize > buf - > maxsize / 2 )
CL_WriteRecordDemoMessage ( buf , seq + + ) ;
if ( player - > frags ! = 0 )
{
MSG_WriteByte ( buf , svc_updatefrags ) ;
MSG_WriteByte ( buf , i ) ;
MSG_WriteShort ( buf , player - > frags ) ;
}
if ( isnq )
{
if ( ! * player - > name )
continue ;
MSG_WriteByte ( buf , svc_updatename ) ;
MSG_WriteByte ( buf , i ) ;
MSG_WriteString ( buf , player - > name ) ;
MSG_WriteByte ( buf , svc_updatecolors ) ;
MSG_WriteByte ( buf , i ) ;
MSG_WriteByte ( buf , player - > rtopcolor * 16 + player - > rbottomcolor ) ;
}
else
{
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 . numkeys )
{
MSG_WriteByte ( buf , svc_updateentertime ) ;
MSG_WriteByte ( buf , i ) ;
MSG_WriteFloat ( buf , realtime - player - > realentertime ) ; //seconds since
}
if ( player - > userinfo . numkeys )
{
InfoBuf_ToString ( & player - > userinfo , info , min ( buf - > maxsize - buf - > cursize - 6 , sizeof ( info ) ) , basicuserinfos , NULL , NULL , NULL , NULL ) ;
MSG_WriteByte ( buf , svc_updateuserinfo ) ;
MSG_WriteByte ( buf , i ) ;
MSG_WriteLong ( buf , player - > userid ) ;
MSG_WriteString ( buf , info ) ;
//spam svc_setinfo for all the infos that didn't fit.
}
}
}
return seq ;
}
static int CL_RecordInitialStats ( sizebuf_t * buf , int seq , qboolean isnq )
{
2018-11-19 06:37:25 +00:00
size_t seat , i ;
2018-09-01 04:18:08 +00:00
for ( seat = 0 ; seat < cl . splitclients ; seat + + )
{
//higher stats should be 0 and thus not be sent, if not valid.
for ( i = 0 ; i < MAX_CL_STATS ; i + + )
{
if ( cl . playerview [ seat ] . stats [ i ] | | cl . playerview [ seat ] . statsf [ i ] )
{
double fs = cl . playerview [ seat ] . statsf [ i ] ;
double is = cl . playerview [ seat ] . stats [ i ] ;
if ( seat )
{
MSG_WriteByte ( buf , svcfte_choosesplitclient ) ;
MSG_WriteByte ( buf , seat ) ;
}
if ( ( int ) fs = = is )
{
MSG_WriteByte ( buf , isnq ? svcnq_updatestatlong : svcqw_updatestatlong ) ;
MSG_WriteByte ( buf , i ) ;
MSG_WriteLong ( buf , is ) ;
}
else
{
MSG_WriteByte ( buf , svcfte_updatestatfloat ) ;
MSG_WriteByte ( buf , i ) ;
MSG_WriteLong ( buf , fs ) ;
}
}
if ( cl . playerview [ seat ] . statsstr [ i ] )
{
if ( seat )
{
MSG_WriteByte ( buf , svcfte_choosesplitclient ) ;
MSG_WriteByte ( buf , seat ) ;
}
MSG_WriteByte ( buf , svcfte_updatestatstring ) ;
MSG_WriteByte ( buf , i ) ;
MSG_WriteString ( buf , cl . playerview [ seat ] . statsstr [ i ] ) ;
}
if ( buf - > cursize > buf - > maxsize / 2 )
CL_WriteRecordDemoMessage ( buf , seq + + ) ;
}
}
return seq ;
}
2016-01-18 05:22:07 +00:00
const char * Get_Q2ConfigString ( int i ) ;
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 ;
2018-11-19 06:37:25 +00:00
qbyte buf_data [ MAX_OVERALLMSGLEN ] ;
2018-09-01 04:18:08 +00:00
int n , i ;
2004-09-30 22:24:38 +00:00
char * s , * p , * fname ;
2004-08-23 00:15:46 +00:00
extern char gamedirfile [ ] ;
int seq = 1 ;
2016-01-18 05:22:07 +00:00
const char * defaultext ;
2004-08-23 00:15:46 +00:00
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 ( ) ;
2016-01-18 05:22:07 +00:00
# else
2004-08-23 00:15:46 +00:00
Con_Printf ( " record <demoname> \n " ) ;
2016-01-18 05:22:07 +00:00
# endif
2004-08-23 00:15:46 +00:00
return ;
}
if ( cls . state ! = ca_active )
{
Con_Printf ( " You must be connected to record. \n " ) ;
return ;
}
2018-06-06 09:09:14 +00:00
# ifdef Q2CLIENT
2016-01-18 05:22:07 +00:00
if ( cls . protocol = = CP_QUAKE2 )
defaultext = " .dm2 " ;
2017-08-29 02:29:06 +00:00
else
# endif
if ( cls . protocol = = CP_NETQUAKE & & ! CPNQ_IS_DP )
2016-09-08 19:04:35 +00:00
defaultext = " .dem " ;
2016-01-18 05:22:07 +00:00
else if ( cls . protocol = = CP_QUAKEWORLD )
defaultext = " .qwd " ;
else
{
Con_Printf ( " Unable to record mid-map - try a different network protocol \n " ) ;
return ;
}
2004-08-23 00:15:46 +00:00
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 ) ;
2018-01-25 20:43:00 +00:00
// See if the users supplied their own filename...
2016-09-08 19:04:35 +00:00
s = strrchr ( fname , ' . ' ) ;
2018-01-25 20:43:00 +00:00
// They did.
if ( s ! = NULL ) {
if ( ! Q_strcasecmp ( s , defaultext ) )
2018-09-01 04:18:08 +00:00
* s = 0 ; //hack away that extension that they added, so that we don't get dupes.
2018-01-25 20:43:00 +00:00
}
2004-09-30 22:24:38 +00:00
}
else
{ //automagically generate a name
2020-04-19 01:23:32 +00:00
fname = TP_GenerateDemoName ( ) ;
2004-09-30 22:24:38 +00:00
}
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
2018-09-01 04:18:08 +00:00
p = fname ;
# ifdef MVD_RECORDING
if ( * sv_demoDir . string & & ! strncmp ( p , sv_demoDir . string , strlen ( sv_demoDir . string ) ) & & p [ strlen ( sv_demoDir . string ) ] = = ' / ' )
p + = strlen ( sv_demoDir . string ) + 1 ; //allow a demos/ prefix (primarily because of autodemos)
# endif
for ( ; * p ; p + + )
2004-09-30 22:24:38 +00:00
{
char c ;
* p & = 0x7F ; // strip high bit
c = * p ;
if ( c < = ' ' | | c = = ' ? ' | | c = = ' * ' | | ( c ! = 2 & & ( c = = ' \\ ' | | c = = ' / ' ) ) | | c = = ' : '
| | c = = ' < ' | | c = = ' > ' | | c = = ' " ' | | c = = ' . ' )
* p = ' _ ' ;
}
2018-09-01 04:18:08 +00:00
Q_strncpyz ( name , fname , sizeof ( name ) - 4 - strlen ( defaultext ) ) ;
# if defined(AVAIL_GZDEC) && !defined(CLIENTONLY) && defined(MVD_RECORDING)
{
extern cvar_t sv_demoAutoCompress ;
if ( sv_demoAutoCompress . ival = = 1 | | ! * sv_demoAutoCompress . string )
defaultext = va ( " %s.gz " , defaultext ) ;
}
# endif
2004-09-30 22:24:38 +00:00
//make a unique name (unless the user specified it).
2018-09-01 04:18:08 +00:00
Q_strncatz ( name , defaultext , sizeof ( name ) ) ;
2004-09-30 22:24:38 +00:00
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 )
{
2016-09-08 19:04:35 +00:00
//remove the extension again
2018-09-01 04:18:08 +00:00
Q_strncpyz ( name , fname , sizeof ( name ) - 4 - strlen ( defaultext ) ) ;
2004-09-30 22:24:38 +00:00
p = name + strlen ( name ) ;
2016-09-08 19:04:35 +00:00
strcat ( p , " _XX " ) ;
strcat ( p , defaultext ) ;
2004-09-30 22:24:38 +00:00
p + + ;
i = 0 ;
do
{
2006-01-13 06:27:18 +00:00
VFS_CLOSE ( f ) ;
2018-09-01 04:18:08 +00:00
p [ 0 ] = ( ( i / 10 ) % 10 ) + ' 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
//
2018-09-01 04:18:08 +00:00
cls . demooutfile = FS_OpenVFS ( name , " wb " , FS_GAMEONLY ) ;
2010-03-14 14:35:56 +00:00
if ( ! cls . demooutfile )
2004-08-23 00:15:46 +00:00
{
Con_Printf ( " ERROR: couldn't open. \n " ) ;
return ;
}
2018-09-01 04:18:08 +00:00
# ifdef AVAIL_GZDEC
if ( ! Q_strcasecmp ( " .gz " , COM_GetFileExtension ( name , NULL ) ) )
cls . demooutfile = FS_GZ_WriteFilter ( cls . demooutfile , true , true ) ;
# endif
2016-01-18 05:22:07 +00:00
cls . demohadkeyframe = false ;
2004-08-23 00:15:46 +00:00
Con_Printf ( " recording to %s. \n " , name ) ;
2016-01-18 05:22:07 +00:00
recdemostart = Sys_DoubleTime ( ) ;
2004-08-23 00:15:46 +00:00
/*-------------------------------------------------*/
2016-01-18 05:22:07 +00:00
memset ( & buf , 0 , sizeof ( buf ) ) ;
buf . data = buf_data ;
buf . maxsize = sizeof ( buf_data ) ;
buf . prim = cls . netchan . netprim ;
2013-07-26 17:19:06 +00:00
switch ( cls . protocol )
{
case CP_QUAKEWORLD :
2016-09-08 19:04:35 +00:00
if ( ! cls . fteprotocolextensions & & ! cls . fteprotocolextensions2 )
buf . maxsize = MAX_QWMSGLEN ; //poo compatibility... :P
2013-07-26 17:19:06 +00:00
2016-09-08 19:04:35 +00:00
cls . demorecording = DPB_QUAKEWORLD ;
2013-07-26 17:19:06 +00:00
2018-07-05 16:21:44 +00:00
CLQW_RecordServerData ( & buf , & seq ) ;
2013-07-26 17:19:06 +00:00
2016-01-18 05:22:07 +00:00
// send music
Media_WriteCurrentTrack ( & buf ) ;
//paknames
{
char buffer [ 1024 ] ;
FS_GetPackNames ( buffer , sizeof ( buffer ) , 2 , true ) ; /*retain extensions, or we'd have to assume pk3*/
2016-02-10 23:23:43 +00:00
if ( * buffer )
{
MSG_WriteByte ( & buf , svc_stufftext ) ;
SZ_Write ( & buf , " //paknames " , 11 ) ;
SZ_Write ( & buf , buffer , strlen ( buffer ) ) ;
MSG_WriteString ( & buf , " \n " ) ;
}
2016-01-18 05:22:07 +00:00
}
//Paks
{
char buffer [ 1024 ] ;
FS_GetPackHashes ( buffer , sizeof ( buffer ) , false ) ;
2016-02-10 23:23:43 +00:00
if ( * buffer )
{
MSG_WriteByte ( & buf , svc_stufftext ) ;
SZ_Write ( & buf , " //paks " , 7 ) ;
SZ_Write ( & buf , buffer , strlen ( buffer ) ) ;
MSG_WriteString ( & buf , " \n " ) ;
}
2016-01-18 05:22:07 +00:00
}
//FIXME: //at
//FIXME: //wps
//FIXME: //it
MSG_WriteByte ( & buf , svc_setpause ) ;
2016-09-08 19:04:35 +00:00
MSG_WriteByte ( & buf , ! ! cl . paused ) ;
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 + + ) ;
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 ) ;
2016-01-18 05:22:07 +00:00
if ( buf . cursize > buf . maxsize / 2 & & ( n & 0xff ) )
2013-07-26 17:19:06 +00:00
{
MSG_WriteByte ( & buf , 0 ) ;
MSG_WriteByte ( & buf , n ) ;
CL_WriteRecordDemoMessage ( & buf , seq + + ) ;
2016-09-08 19:04:35 +00:00
2016-01-18 05:22:07 +00:00
if ( n + 1 > 0xff )
{
MSG_WriteByte ( & buf , svcfte_soundlistshort ) ;
MSG_WriteShort ( & buf , n + 1 ) ;
}
else
{
MSG_WriteByte ( & buf , svc_soundlist ) ;
MSG_WriteByte ( & buf , n + 1 ) ;
}
2013-07-26 17:19:06 +00:00
}
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 + + ) ;
}
2016-01-18 05:22:07 +00:00
//FIXME: vweps
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 ) ;
2016-01-18 05:22:07 +00:00
if ( buf . cursize > buf . maxsize / 2 & & ( n & 0xff ) )
2013-07-26 17:19:06 +00:00
{
MSG_WriteByte ( & buf , 0 ) ;
MSG_WriteByte ( & buf , n ) ;
CL_WriteRecordDemoMessage ( & buf , seq + + ) ;
2016-09-08 19:04:35 +00:00
2016-01-18 05:22:07 +00:00
if ( n + 1 > 0xff )
{
MSG_WriteByte ( & buf , svcfte_modellistshort ) ;
MSG_WriteShort ( & buf , n + 1 ) ;
}
else
{
MSG_WriteByte ( & buf , svc_modellist ) ;
MSG_WriteByte ( & buf , n + 1 ) ;
}
2013-07-26 17:19:06 +00:00
}
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 + + ) ;
2016-07-12 00:40:13 +00:00
}
2016-01-18 05:22:07 +00:00
2016-09-08 19:04:35 +00:00
seq = CL_Record_ParticlesStaticsBaselines ( & buf , seq ) ;
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 )
CL_WriteRecordDemoMessage ( & buf , seq + + ) ;
2018-09-01 04:18:08 +00:00
seq = CL_RecordInitialPlayers ( & buf , seq , false ) ;
2016-09-08 19:04:35 +00:00
seq = CL_Record_Lightstyles ( & buf , seq ) ;
2018-09-01 04:18:08 +00:00
seq = CL_RecordInitialStats ( & buf , seq , false ) ;
2016-01-18 05:22:07 +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 ) ;
2016-01-18 05:22:07 +00:00
MSG_WriteString ( & buf , " 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
2016-01-18 05:22:07 +00:00
//FIXME: make sure the deltas are reset
2013-07-26 17:19:06 +00:00
// done
break ;
2017-08-29 02:29:06 +00:00
# if defined(Q2CLIENT) && defined(Q2SERVER)
2016-01-18 05:22:07 +00:00
case CP_QUAKE2 :
cls . demorecording = DPB_QUAKE2 ;
MSG_WriteByte ( & buf , svcq2_serverdata ) ;
if ( cls . fteprotocolextensions ) //maintain demo compatability
{
2019-05-10 09:31:21 +00:00
MSG_WriteLong ( & buf , PROTOCOL_VERSION_FTE1 ) ;
2016-01-18 05:22:07 +00:00
MSG_WriteLong ( & buf , cls . fteprotocolextensions ) ;
}
if ( cls . fteprotocolextensions2 ) //maintain demo compatability
{
MSG_WriteLong ( & buf , PROTOCOL_VERSION_FTE2 ) ;
MSG_WriteLong ( & buf , cls . fteprotocolextensions2 ) ;
}
MSG_WriteLong ( & buf , cls . protocol_q2 ) ;
MSG_WriteLong ( & buf , 0x80000000 + cl . servercount ) ;
MSG_WriteByte ( & buf , 1 ) ;
MSG_WriteString ( & buf , gamedirfile ) ;
MSG_WriteShort ( & buf , cl . playerview [ 0 ] . playernum ) ;
MSG_WriteString ( & buf , cl . levelname ) ;
for ( i = 0 ; i < Q2MAX_CONFIGSTRINGS ; i + + )
{
const char * cs = Get_Q2ConfigString ( i ) ;
if ( buf . cursize + 4 + strlen ( cs ) > buf . maxsize )
{
CL_WriteRecordQ2DemoMessage ( & buf ) ;
SZ_Clear ( & buf ) ;
}
MSG_WriteByte ( & buf , svcq2_configstring ) ;
MSG_WriteShort ( & buf , i ) ;
MSG_WriteString ( & buf , cs ) ;
}
CLQ2_WriteDemoBaselines ( & buf ) ;
MSG_WriteByte ( & buf , svcq2_stufftext ) ;
MSG_WriteString ( & buf , " precache \n " ) ;
CL_WriteRecordQ2DemoMessage ( & buf ) ;
break ;
# endif
2016-09-08 19:04:35 +00:00
# ifdef NQPROT
case CP_NETQUAKE :
//csqc stuff
cls . demorecording = DPB_NETQUAKE ;
VFS_WRITE ( cls . demooutfile , " -1 \n " , 3 ) ; //stupid lame header thing.
CLNQ_WriteServerData ( & buf ) ;
MSG_WriteByte ( & buf , svc_setpause ) ;
MSG_WriteByte ( & buf , ! ! cl . paused ) ;
MSG_WriteByte ( & buf , svc_setview ) ;
MSG_WriteEntity ( & buf , cl . playerview [ 0 ] . viewentity ) ;
2018-03-25 09:36:14 +00:00
MSG_WriteByte ( & buf , svcnq_signonnum ) ;
2016-09-08 19:04:35 +00:00
MSG_WriteByte ( & buf , 1 ) ;
CL_WriteRecordDemoMessage ( & buf , seq + + ) ;
seq = CL_Record_ParticlesStaticsBaselines ( & buf , seq ) ;
//fixme: brushes...
2018-03-25 09:36:14 +00:00
MSG_WriteByte ( & buf , svcnq_signonnum ) ;
2016-09-08 19:04:35 +00:00
MSG_WriteByte ( & buf , 2 ) ;
CL_WriteRecordDemoMessage ( & buf , seq + + ) ;
2018-09-01 04:18:08 +00:00
seq = CL_RecordInitialPlayers ( & buf , seq , true ) ;
2016-09-08 19:04:35 +00:00
seq = CL_Record_Lightstyles ( & buf , seq ) ;
2018-09-01 04:18:08 +00:00
seq = CL_RecordInitialStats ( & buf , seq , true ) ;
2018-03-25 09:36:14 +00:00
MSG_WriteByte ( & buf , svcnq_signonnum ) ;
2016-09-08 19:04:35 +00:00
MSG_WriteByte ( & buf , 3 ) ;
CL_WriteRecordDemoMessage ( & buf , seq + + ) ;
break ;
# endif
2013-07-26 17:19:06 +00:00
default :
2016-09-08 19:04:35 +00:00
//this should have been caught earlier
2013-07-26 17:19:06 +00:00
Con_Printf ( " Unable to begin demo recording with this network protocol \n " ) ;
CL_Stop_f ( ) ;
break ;
}
2018-09-01 04:18:08 +00:00
if ( cls . fteprotocolextensions2 & PEXT2_REPLACEMENTDELTAS )
if ( cl . numackframes < sizeof ( cl . ackframes ) / sizeof ( cl . ackframes [ 0 ] ) )
cl . ackframes [ cl . numackframes + + ] = - 1 ;
2004-08-23 00:15:46 +00:00
}
2017-07-04 05:07:51 +00:00
static int QDECL CompleteDemoList ( const char * name , qofs_t flags , time_t mtime , void * parm , searchpathfuncs_t * spath )
{
struct xcommandargcompletioncb_s * ctx = parm ;
2018-04-15 02:48:23 +00:00
ctx - > cb ( name , NULL , NULL , ctx ) ;
2017-07-04 05:07:51 +00:00
return true ;
}
2017-08-14 16:38:44 +00:00
void CL_DemoList_c ( int argn , const char * partial , struct xcommandargcompletioncb_s * ctx )
2017-07-04 05:07:51 +00:00
{
if ( argn = = 1 )
{
COM_EnumerateFiles ( va ( " %s*.qwd " , partial ) , CompleteDemoList , ctx ) ;
2018-09-01 04:18:08 +00:00
COM_EnumerateFiles ( va ( " %s*.qwd.gz " , partial ) , CompleteDemoList , ctx ) ;
# ifdef NQPROT
2017-07-04 05:07:51 +00:00
COM_EnumerateFiles ( va ( " %s*.dem " , partial ) , CompleteDemoList , ctx ) ;
2018-09-01 04:18:08 +00:00
COM_EnumerateFiles ( va ( " %s*.dem.gz " , partial ) , CompleteDemoList , ctx ) ;
# endif
2017-07-04 05:07:51 +00:00
COM_EnumerateFiles ( va ( " %s*.mvd " , partial ) , CompleteDemoList , ctx ) ;
COM_EnumerateFiles ( va ( " %s*.mvd.gz " , partial ) , CompleteDemoList , ctx ) ;
2017-07-12 08:15:27 +00:00
//fixme: show files in both .zip and .dz
// COM_EnumerateFiles(va("%s*.dz", partial), CompleteDemoList, ctx);
2017-07-04 05:07:51 +00:00
}
}
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
2018-12-06 04:55:35 +00:00
CL_Disconnect ( NULL ) ;
2016-09-08 19:04:35 +00:00
2004-08-23 00:15:46 +00:00
//
// open the demo file
//
2016-01-18 05:22:07 +00:00
switch ( cls . protocol )
{
default :
case CP_QUAKEWORLD :
cls . demorecording = DPB_QUAKEWORLD ;
COM_RequireExtension ( name , " .qwd " , sizeof ( name ) ) ;
break ;
# ifdef NQPROT
case CP_NETQUAKE :
cls . demorecording = DPB_NETQUAKE ;
COM_RequireExtension ( name , " .dem " , sizeof ( name ) ) ;
break ;
# endif
# ifdef Q2CLIENT
case CP_QUAKE2 :
cls . demorecording = DPB_QUAKE2 ;
COM_RequireExtension ( name , " .dm2 " , sizeof ( name ) ) ;
break ;
# endif
}
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 " ) ;
2016-01-18 05:22:07 +00:00
cls . demorecording = DPB_NONE ;
2004-08-23 00:15:46 +00:00
return ;
}
2018-09-01 04:18:08 +00:00
# ifdef AVAIL_GZDEC
if ( ! Q_strcasecmp ( " .gz " , COM_GetFileExtension ( name , NULL ) ) )
cls . demooutfile = FS_GZ_WriteFilter ( cls . demooutfile , true , true ) ;
# endif
2004-08-23 00:15:46 +00:00
Con_Printf ( " recording to %s. \n " , name ) ;
2016-09-08 19:19:05 +00:00
# ifdef NQPROT
2016-09-08 19:04:35 +00:00
if ( cls . demorecording = = DPB_NETQUAKE ) //nq demos have some silly header.
VFS_WRITE ( cls . demooutfile , " -1 \n " , 3 ) ;
2016-09-08 19:19:05 +00:00
# endif
2016-09-08 19:04:35 +00:00
2004-08-23 00:15:46 +00:00
CL_BeginServerReconnect ( ) ;
}
/*
= = = = = = = = = = = = = = = = = = = =
CL_PlayDemo_f
play [ demoname ]
= = = = = = = = = = = = = = = = = = = =
*/
2014-12-11 16:26:26 +00:00
void CL_PlayDownloadedDemo ( struct dl_download * dl ) ;
2004-08-23 00:15:46 +00:00
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 ;
}
2014-08-15 02:20:41 +00:00
if ( cls . state = = ca_demostart )
cls . state = ca_disconnected ;
2005-12-06 03:09:46 +00:00
# ifdef WEBCLIENT
2014-12-11 16:26:26 +00:00
# if 1
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
if ( ! strncmp ( Cmd_Argv ( 1 ) , " ftp:// " , 6 ) | | ! strncmp ( Cmd_Argv ( 1 ) , " http:// " , 7 ) | | ! strncmp ( Cmd_Argv ( 1 ) , " https:// " , 7 ) )
2005-12-06 03:09:46 +00:00
{
if ( Cmd_ExecLevel = = RESTRICT_LOCAL )
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
Host_RunFile ( Cmd_Argv ( 1 ) , strlen ( Cmd_Argv ( 1 ) ) , NULL ) ;
// HTTP_CL_Get(Cmd_Argv(1), COM_SkipPath(Cmd_Argv(1)), CL_PlayDownloadedDemo);
2005-12-06 03:09:46 +00:00
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 ) ;
2015-02-02 08:01:53 +00:00
if ( * demoname = = ' # ' )
{
if ( Cmd_FromGamecode ( ) )
return ;
CL_PlayDemo ( demoname + 1 , true ) ;
}
else
CL_PlayDemo ( demoname , false ) ;
2005-12-21 03:07:33 +00:00
}
2013-11-28 00:45:22 +00:00
//dl is provided so that we can receive files via chunked/gziped http downloads and on systems that don't provide sockets etc. its tracked so we can cancel the download if the client aborts playback early.
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
void CL_PlayDemoStream ( vfsfile_t * file , char * filename , qboolean issyspath , int demotype , float bufferdelay )
2013-11-28 00:45:22 +00:00
{
int protocol = CP_UNKNOWN ;
if ( demotype = = DPB_NONE )
{
//peek etc?
}
switch ( demotype )
{
case DPB_EZTV :
case DPB_MVD :
case DPB_QUAKEWORLD :
protocol = CP_QUAKEWORLD ;
break ;
# ifdef Q2CLIENT
case DPB_QUAKE2 :
protocol = CP_QUAKE2 ;
break ;
# endif
# ifdef NQPROT
case DPB_NETQUAKE :
protocol = CP_NETQUAKE ;
break ;
# endif
default :
break ;
}
if ( protocol = = CP_UNKNOWN )
{
Con_Printf ( " ERROR: demo format not supported: \" %s \" . \n " , filename ) ;
return ;
}
//
// disconnect from server
//
CL_Disconnect_f ( ) ;
demo_flushcache ( ) ;
2015-06-05 03:45:01 +00:00
NET_InitClient ( true ) ;
2013-11-28 00:45:22 +00:00
//
// open the demo file
//
cls . demoinfile = file ;
if ( ! cls . demoinfile )
{
Con_Printf ( " ERROR: couldn't open \" %s \" . \n " , filename ) ;
cls . demonum = - 1 ; // stop demo loop
return ;
}
if ( filename )
{
2017-07-12 08:15:27 +00:00
Q_strncpyz ( cls . lastdemoname , filename , sizeof ( cls . lastdemoname ) ) ;
cls . lastdemowassystempath = issyspath ;
2013-11-28 00:45:22 +00:00
Con_Printf ( " Playing demo from %s. \n " , filename ) ;
}
cls . findtrack = ( demotype = = DPB_MVD | | demotype = = DPB_EZTV ) ;
cls . demoplayback = demotype ;
cls . protocol = protocol ;
cls . state = ca_demostart ;
net_message . packing = SZ_RAWBYTES ;
Netchan_Setup ( NS_CLIENT , & cls . netchan , & net_from , 0 ) ;
demtime = - bufferdelay ;
2015-04-21 04:12:00 +00:00
cls . demostarttime = 0 ;
2013-11-28 00:45:22 +00:00
cl . gametime = - bufferdelay ;
2015-01-12 12:28:13 +00:00
cl . gametimemark = realtime ; //demtime;
2013-11-28 00:45:22 +00:00
if ( demtime < - 0.5 )
Con_Printf ( " Buffering for %g seconds \n " , bufferdelay ) ;
cls . netchan . last_received = demtime ;
2015-06-16 23:53:58 +00:00
TP_ExecTrigger ( " f_demostart " , true ) ;
2013-11-28 00:45:22 +00:00
}
2015-02-02 08:01:53 +00:00
vfsfile_t * CL_OpenFileInZipOrSys ( char * name , qboolean usesystempath )
2014-03-30 08:55:06 +00:00
{
2015-02-02 08:01:53 +00:00
if ( usesystempath )
return VFSOS_Open ( name , " rb " ) ;
2014-03-30 08:55:06 +00:00
else
return CL_OpenFileInPackage ( NULL , name ) ;
}
2014-12-11 16:26:26 +00:00
//tries to determine the demo type
2015-02-02 08:01:53 +00:00
void CL_PlayDemoFile ( vfsfile_t * f , char * demoname , qboolean issyspath )
2005-12-21 03:07:33 +00:00
{
2016-02-15 06:01:17 +00:00
# if defined(Q2CLIENT) || defined(NQPROT)
//figure out where we started
qofs_t start = VFS_TELL ( f ) ;
# endif
2004-08-23 00:15:46 +00:00
2013-11-28 00:45:22 +00:00
if ( ! VFS_GETLEN ( f ) )
2006-03-14 01:25:46 +00:00
{
2013-11-28 00:45:22 +00:00
VFS_CLOSE ( f ) ;
2006-03-14 01:25:46 +00:00
Con_Printf ( " demo \" %s \" is empty. \n " , demoname ) ;
return ;
}
2013-11-28 01:08:12 +00:00
# ifdef Q2CLIENT
2016-11-20 20:52:41 +00:00
//just assume if it has a known extension
if ( ! Q_strcasecmp ( demoname + strlen ( demoname ) - 3 , " dm2 " ) | |
! Q_strcasecmp ( demoname + strlen ( demoname ) - 6 , " dm2.gz " ) )
2004-08-23 00:15:46 +00:00
{
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
CL_PlayDemoStream ( f , demoname , issyspath , DPB_QUAKE2 , 0 ) ;
2016-11-20 20:52:41 +00:00
return ;
2004-08-23 00:15:46 +00:00
}
2013-11-28 01:08:12 +00:00
# endif
2016-11-20 20:52:41 +00:00
if ( ! Q_strcasecmp ( demoname + strlen ( demoname ) - 3 , " mvd " ) | |
! Q_strcasecmp ( demoname + strlen ( demoname ) - 6 , " mvd.gz " ) )
{
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
CL_PlayDemoStream ( f , demoname , issyspath , DPB_MVD , 0 ) ;
2016-11-20 20:52:41 +00:00
return ;
}
if ( ! Q_strcasecmp ( demoname + strlen ( demoname ) - 3 , " qwd " ) | |
! Q_strcasecmp ( demoname + strlen ( demoname ) - 6 , " qwd.gz " ) )
{
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
CL_PlayDemoStream ( f , demoname , issyspath , DPB_QUAKEWORLD , 0 ) ;
2016-11-20 20:52:41 +00:00
return ;
}
2013-11-28 00:45:22 +00:00
2013-11-28 01:08:12 +00:00
# ifdef NQPROT
2013-11-28 00:45:22 +00:00
{
2013-11-28 01:38:33 +00:00
int ft = 0 , neg = false ;
char chr ;
//not quake2, check if its NQ
//work out if the first line is a int for the track number.
while ( ( VFS_READ ( f , & chr , 1 ) = = 1 ) & & ( chr ! = ' \n ' ) )
{
2014-08-16 19:03:04 +00:00
if ( chr = = ' ' )
;
else if ( chr = = ' - ' )
2013-11-28 01:38:33 +00:00
neg = true ;
else if ( chr < ' 0 ' | | chr > ' 9 ' )
break ;
else
ft = ft * 10 + ( ( int ) chr - ' 0 ' ) ;
}
if ( neg )
ft * = - 1 ;
if ( chr = = ' \n ' )
{
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
CL_PlayDemoStream ( f , demoname , issyspath , DPB_NETQUAKE , 0 ) ;
2013-11-28 01:38:33 +00:00
return ;
}
VFS_SEEK ( f , start ) ;
2013-11-28 00:45:22 +00:00
}
2013-11-28 01:08:12 +00:00
# endif
2006-02-22 23:37:25 +00:00
2016-11-20 20:52:41 +00:00
# ifdef Q2CLIENT
{
int len ;
char type ;
int protocol ;
//check if its a quake2 demo.
while ( VFS_READ ( f , & len , sizeof ( len ) ) = = sizeof ( len ) )
{
len = LittleLong ( len ) ;
if ( len > MAX_OVERALLMSGLEN )
break ;
len - - ;
VFS_READ ( f , & type , sizeof ( type ) ) ;
2016-11-20 21:05:10 +00:00
while ( len > = 2 & & ( type = = svcq2_stufftext | | type = = svcq2_print ) )
2016-11-20 20:52:41 +00:00
{
while ( len > 0 )
{
len - - ;
VFS_READ ( f , & type , sizeof ( type ) ) ;
if ( ! type )
break ;
}
if ( len = = 0 )
continue ;
len - - ;
VFS_READ ( f , & type , sizeof ( type ) ) ;
}
if ( len > 4 & & type = = svcq2_serverdata )
{
VFS_READ ( f , & protocol , sizeof ( protocol ) ) ;
protocol = LittleLong ( protocol ) ;
if ( protocol > = PROTOCOL_VERSION_Q2_DEMO_MIN & & protocol < = PROTOCOL_VERSION_Q2_DEMO_MAX )
{
VFS_SEEK ( f , start ) ;
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
CL_PlayDemoStream ( f , demoname , issyspath , DPB_QUAKE2 , 0 ) ;
2016-11-20 20:52:41 +00:00
return ;
}
break ;
}
if ( len )
VFS_SEEK ( f , VFS_TELL ( f ) + len ) ;
}
VFS_SEEK ( f , start ) ;
}
# endif
//it doesn't have a assumable extension, isn't q2, nor NQ. then it must be a QuakeWorld demo
2013-11-28 00:45:22 +00:00
//could also be .qwz or .dmz or whatever that nq extension is. we don't support either.
2006-09-17 00:59:22 +00:00
2013-11-28 00:45:22 +00:00
//mvd and qwd have no identifying markers, other than the extension.
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
CL_PlayDemoStream ( f , demoname , issyspath , DPB_QUAKEWORLD , 0 ) ;
2014-12-11 16:26:26 +00:00
}
# ifdef WEBCLIENT
void CL_PlayDownloadedDemo ( struct dl_download * dl )
{
if ( dl - > status ! = DL_FINISHED | | ! dl - > file )
Con_Printf ( " Failed to download %s \n " , dl - > url ) ;
2008-01-09 00:52:31 +00:00
else
2014-12-11 16:26:26 +00:00
{
2015-02-02 08:01:53 +00:00
CL_PlayDemoFile ( dl - > file , dl - > url , false ) ;
2014-12-11 16:26:26 +00:00
dl - > file = NULL ;
}
}
# endif
2015-02-02 08:01:53 +00:00
void CL_PlayDemo ( char * demoname , qboolean usesystempath )
2014-12-11 16:26:26 +00:00
{
char name [ 256 ] ;
vfsfile_t * f ;
dpp7: Treat 'dropped' c2s packets as choked when using dpp7 protocols. This is because the protocol provides no way to disambiguate, and I don't like false reports of packetloss (only reliables loss can be detected, and that's not frequent enough to be meaningful). Pings can still be determined with dpp7, for those few packets which are acked.
package manager: reworked to enable/disable plugins when downloaded, which can also be present-but-disabled.
package manager: display a confirmation prompt before applying changes. do not allow other changes to be made while applying. prompt may be skipped with 'pkg apply' in dedicated servers.
sv: downloads are no longer forced to lower case.
sv: added sv_demoAutoCompress cvar. set to 1 to directly record to *.mvd.gz
cl: properly support directly playing .mvd.gz files
menus: reworked to separate mouse and keyboard focus. mouse focus becomes keyboard focus only on mouse clicks. tooltips follow mouse cursors.
menus: cleaned up menu heirachy a little. now simpler.
server browser: changed 'hide *' filters to 'show *' instead. I felt it was more logical.
deluxmapping: changed to disabled, load, generate, like r_loadlit is.
render targets api now supports negative formats to mean nearest filtering, where filtering is part of texture state.
drawrotpic fixed, now batches and interacts with drawpic correctly.
drawline fixed, no interacts with draw* correctly, but still does not batch.
fixed saving games.
provide proper userinfo to nq clients, where supported.
qcc: catch string table overflows safely, giving errors instead of crashes. switch to 32bit statements if some over-sized function requires it.
qtv: some bigcoords support tweaks
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5073 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-03-21 05:27:07 +00:00
int i ;
char * exts [ ] =
{
" .qwd " ,
" .dem " ,
" .mvd " ,
" .dm2 " ,
} ;
2014-12-11 16:26:26 +00:00
//
// open the demo file
//
dpp7: Treat 'dropped' c2s packets as choked when using dpp7 protocols. This is because the protocol provides no way to disambiguate, and I don't like false reports of packetloss (only reliables loss can be detected, and that's not frequent enough to be meaningful). Pings can still be determined with dpp7, for those few packets which are acked.
package manager: reworked to enable/disable plugins when downloaded, which can also be present-but-disabled.
package manager: display a confirmation prompt before applying changes. do not allow other changes to be made while applying. prompt may be skipped with 'pkg apply' in dedicated servers.
sv: downloads are no longer forced to lower case.
sv: added sv_demoAutoCompress cvar. set to 1 to directly record to *.mvd.gz
cl: properly support directly playing .mvd.gz files
menus: reworked to separate mouse and keyboard focus. mouse focus becomes keyboard focus only on mouse clicks. tooltips follow mouse cursors.
menus: cleaned up menu heirachy a little. now simpler.
server browser: changed 'hide *' filters to 'show *' instead. I felt it was more logical.
deluxmapping: changed to disabled, load, generate, like r_loadlit is.
render targets api now supports negative formats to mean nearest filtering, where filtering is part of texture state.
drawrotpic fixed, now batches and interacts with drawpic correctly.
drawline fixed, no interacts with draw* correctly, but still does not batch.
fixed saving games.
provide proper userinfo to nq clients, where supported.
qcc: catch string table overflows safely, giving errors instead of crashes. switch to 32bit statements if some over-sized function requires it.
qtv: some bigcoords support tweaks
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5073 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-03-21 05:27:07 +00:00
f = NULL ;
for ( i = 0 ; i < countof ( exts ) ; i + + )
2014-12-11 16:26:26 +00:00
{
Q_strncpyz ( name , demoname , sizeof ( name ) ) ;
dpp7: Treat 'dropped' c2s packets as choked when using dpp7 protocols. This is because the protocol provides no way to disambiguate, and I don't like false reports of packetloss (only reliables loss can be detected, and that's not frequent enough to be meaningful). Pings can still be determined with dpp7, for those few packets which are acked.
package manager: reworked to enable/disable plugins when downloaded, which can also be present-but-disabled.
package manager: display a confirmation prompt before applying changes. do not allow other changes to be made while applying. prompt may be skipped with 'pkg apply' in dedicated servers.
sv: downloads are no longer forced to lower case.
sv: added sv_demoAutoCompress cvar. set to 1 to directly record to *.mvd.gz
cl: properly support directly playing .mvd.gz files
menus: reworked to separate mouse and keyboard focus. mouse focus becomes keyboard focus only on mouse clicks. tooltips follow mouse cursors.
menus: cleaned up menu heirachy a little. now simpler.
server browser: changed 'hide *' filters to 'show *' instead. I felt it was more logical.
deluxmapping: changed to disabled, load, generate, like r_loadlit is.
render targets api now supports negative formats to mean nearest filtering, where filtering is part of texture state.
drawrotpic fixed, now batches and interacts with drawpic correctly.
drawline fixed, no interacts with draw* correctly, but still does not batch.
fixed saving games.
provide proper userinfo to nq clients, where supported.
qcc: catch string table overflows safely, giving errors instead of crashes. switch to 32bit statements if some over-sized function requires it.
qtv: some bigcoords support tweaks
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5073 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-03-21 05:27:07 +00:00
COM_DefaultExtension ( name , exts [ i ] , sizeof ( name ) ) ;
f = CL_OpenFileInZipOrSys ( name , usesystempath ) ;
if ( f )
break ;
# ifdef AVAIL_GZDEC
2015-12-12 19:25:15 +00:00
Q_strncpyz ( name , demoname , sizeof ( name ) ) ;
dpp7: Treat 'dropped' c2s packets as choked when using dpp7 protocols. This is because the protocol provides no way to disambiguate, and I don't like false reports of packetloss (only reliables loss can be detected, and that's not frequent enough to be meaningful). Pings can still be determined with dpp7, for those few packets which are acked.
package manager: reworked to enable/disable plugins when downloaded, which can also be present-but-disabled.
package manager: display a confirmation prompt before applying changes. do not allow other changes to be made while applying. prompt may be skipped with 'pkg apply' in dedicated servers.
sv: downloads are no longer forced to lower case.
sv: added sv_demoAutoCompress cvar. set to 1 to directly record to *.mvd.gz
cl: properly support directly playing .mvd.gz files
menus: reworked to separate mouse and keyboard focus. mouse focus becomes keyboard focus only on mouse clicks. tooltips follow mouse cursors.
menus: cleaned up menu heirachy a little. now simpler.
server browser: changed 'hide *' filters to 'show *' instead. I felt it was more logical.
deluxmapping: changed to disabled, load, generate, like r_loadlit is.
render targets api now supports negative formats to mean nearest filtering, where filtering is part of texture state.
drawrotpic fixed, now batches and interacts with drawpic correctly.
drawline fixed, no interacts with draw* correctly, but still does not batch.
fixed saving games.
provide proper userinfo to nq clients, where supported.
qcc: catch string table overflows safely, giving errors instead of crashes. switch to 32bit statements if some over-sized function requires it.
qtv: some bigcoords support tweaks
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5073 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-03-21 05:27:07 +00:00
COM_DefaultExtension ( name , va ( " %s.gz " , exts [ i ] ) , sizeof ( name ) ) ;
f = CL_OpenFileInZipOrSys ( name , usesystempath ) ;
if ( f )
break ;
# endif
2015-12-12 19:25:15 +00:00
}
if ( ! f )
{
2014-12-11 16:26:26 +00:00
Con_Printf ( " ERROR: couldn't open \" %s \" . \n " , demoname ) ;
cls . demonum = - 1 ; // stop demo loop
2015-06-03 15:21:24 +00:00
2015-06-16 23:53:58 +00:00
TP_ExecTrigger ( " f_demoend " , true ) ;
2014-12-11 16:26:26 +00:00
return ;
}
2017-07-12 08:15:27 +00:00
Q_strncpyz ( cls . lastdemoname , demoname , sizeof ( cls . lastdemoname ) ) ;
2014-12-11 16:26:26 +00:00
dpp7: Treat 'dropped' c2s packets as choked when using dpp7 protocols. This is because the protocol provides no way to disambiguate, and I don't like false reports of packetloss (only reliables loss can be detected, and that's not frequent enough to be meaningful). Pings can still be determined with dpp7, for those few packets which are acked.
package manager: reworked to enable/disable plugins when downloaded, which can also be present-but-disabled.
package manager: display a confirmation prompt before applying changes. do not allow other changes to be made while applying. prompt may be skipped with 'pkg apply' in dedicated servers.
sv: downloads are no longer forced to lower case.
sv: added sv_demoAutoCompress cvar. set to 1 to directly record to *.mvd.gz
cl: properly support directly playing .mvd.gz files
menus: reworked to separate mouse and keyboard focus. mouse focus becomes keyboard focus only on mouse clicks. tooltips follow mouse cursors.
menus: cleaned up menu heirachy a little. now simpler.
server browser: changed 'hide *' filters to 'show *' instead. I felt it was more logical.
deluxmapping: changed to disabled, load, generate, like r_loadlit is.
render targets api now supports negative formats to mean nearest filtering, where filtering is part of texture state.
drawrotpic fixed, now batches and interacts with drawpic correctly.
drawline fixed, no interacts with draw* correctly, but still does not batch.
fixed saving games.
provide proper userinfo to nq clients, where supported.
qcc: catch string table overflows safely, giving errors instead of crashes. switch to 32bit statements if some over-sized function requires it.
qtv: some bigcoords support tweaks
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5073 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-03-21 05:27:07 +00:00
# ifdef AVAIL_GZDEC
2018-09-01 04:18:08 +00:00
if ( ! strcmp ( COM_GetFileExtension ( name , NULL ) , " .gz " ) )
dpp7: Treat 'dropped' c2s packets as choked when using dpp7 protocols. This is because the protocol provides no way to disambiguate, and I don't like false reports of packetloss (only reliables loss can be detected, and that's not frequent enough to be meaningful). Pings can still be determined with dpp7, for those few packets which are acked.
package manager: reworked to enable/disable plugins when downloaded, which can also be present-but-disabled.
package manager: display a confirmation prompt before applying changes. do not allow other changes to be made while applying. prompt may be skipped with 'pkg apply' in dedicated servers.
sv: downloads are no longer forced to lower case.
sv: added sv_demoAutoCompress cvar. set to 1 to directly record to *.mvd.gz
cl: properly support directly playing .mvd.gz files
menus: reworked to separate mouse and keyboard focus. mouse focus becomes keyboard focus only on mouse clicks. tooltips follow mouse cursors.
menus: cleaned up menu heirachy a little. now simpler.
server browser: changed 'hide *' filters to 'show *' instead. I felt it was more logical.
deluxmapping: changed to disabled, load, generate, like r_loadlit is.
render targets api now supports negative formats to mean nearest filtering, where filtering is part of texture state.
drawrotpic fixed, now batches and interacts with drawpic correctly.
drawline fixed, no interacts with draw* correctly, but still does not batch.
fixed saving games.
provide proper userinfo to nq clients, where supported.
qcc: catch string table overflows safely, giving errors instead of crashes. switch to 32bit statements if some over-sized function requires it.
qtv: some bigcoords support tweaks
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5073 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-03-21 05:27:07 +00:00
f = FS_DecompressGZip ( f , NULL ) ;
# endif
2015-02-02 08:01:53 +00:00
CL_PlayDemoFile ( f , name , usesystempath ) ;
2006-09-17 00:59:22 +00:00
}
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
}
2018-11-19 06:37:25 +00:00
static char qtvhostname [ 1024 ] ;
static char qtvrequestbuffer [ 4096 ] ;
static size_t qtvrequestsize ;
static char qtvrequestcmdbuffer [ 4096 ] ;
static int qtvrequestcmdsize ;
static vfsfile_t * qtvrequest ;
2006-09-17 00:59:22 +00:00
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 ;
2014-09-08 23:47:19 +00:00
# ifndef NOBUILTINMENUS
2019-09-04 07:59:40 +00:00
emenu_t * sourcesmenu = NULL ;
2014-09-02 02:44:43 +00:00
# endif
2007-05-28 02:23:37 +00:00
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 ] ;
2020-02-11 18:06:10 +00:00
char auth [ 64 ] ;
char challenge [ 128 ] ;
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-11-28 00:45:22 +00:00
//flag it as an error if the response is larger than we can handle.
//this error gets ignored if the header is okay (any actual errors will get reported again by the demo code anyway), and only counts if the end of the reply header was not found.
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 )
{
2015-11-18 07:37:39 +00:00
if ( ! qtvrequestsize )
Con_Printf ( " Connection to QTV server closed without any reply. \n " ) ;
else
Con_Printf ( " invalid QTV handshake \n " ) ;
2012-04-24 07:59:11 +00:00
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 ;
2020-02-11 18:06:10 +00:00
* auth = * challenge = 0 ;
2006-09-17 00:59:22 +00:00
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 " ) )
2014-12-11 16:26:26 +00:00
{ //permanent printable error
2008-01-09 00:52:31 +00:00
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 " ) )
2014-12-11 16:26:26 +00:00
{ //temporary printable error
2008-01-09 00:52:31 +00:00
Con_Printf ( " QTV Error: \n %s \n " , colon ) ;
}
else if ( ! strcmp ( s , " ADEMO " ) )
{ //printable error
Con_Printf ( " Demo%s is available \n " , colon ) ;
}
2020-02-11 18:06:10 +00:00
else if ( ! strcmp ( s , " AUTH " ) )
{
while ( * colon & & * ( unsigned char * ) colon < = ' ' )
colon + + ;
Q_strncpyz ( auth , colon , sizeof ( auth ) ) ;
}
else if ( ! strcmp ( s , " CHALLENGE " ) )
Q_strncpyz ( challenge , colon , sizeof ( challenge ) ) ;
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 ) ;
2014-09-08 23:47:19 +00:00
# ifndef NOBUILTINMENUS
2008-01-09 00:52:31 +00:00
//now put it on a menu
if ( ! sourcesmenu )
{
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 )
2014-03-30 08:55:06 +00:00
MC_AddConsoleCommand ( sourcesmenu , 42 , 170 , ( sourcenum + + ) * 8 + 32 , va ( " %s (p%i, v%i) " , srchost , numplayers , numviewers ) , va ( " qtvplay %i@%s \n " , streamid , qtvhostname ) ) ;
2008-01-09 00:52:31 +00:00
//else
// FIXME: add error message here
2016-10-22 07:06:51 +00:00
# else
( void ) init_numviewers ;
( void ) numviewers ;
( void ) init_numplayers ;
( void ) numplayers ;
( void ) streamid ;
( void ) sourcenum ;
2014-09-02 02:44:43 +00:00
# endif
2008-01-09 00:52:31 +00:00
}
//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
{
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
CL_PlayDemoStream ( qtvrequest , NULL , false , iseztv ? DPB_EZTV : DPB_MVD , BUFFERTIME ) ;
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 ;
}
2020-02-11 18:06:10 +00:00
if ( ! strcmp ( auth , " NONE " ) )
;
// else if (!strcmp(auth, "PLAIN"))
// else if (!strcmp(auth, "MD4"))
// else if (!strcmp(auth, "SHA1"))
else if ( * auth )
Con_Printf ( " Server requires unsupported auth method: %s \n " , auth ) ;
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 ;
}
2017-06-21 01:24:25 +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 ) ;
2017-06-21 01:24:25 +00:00
} */
2009-04-01 22:03:56 +00:00
void CL_ParseQTVDescriptor ( vfsfile_t * f , const char * name )
2017-06-21 01:24:25 +00:00
{ //.qtv files are some sneaky way to deal with download links using file extension associations instead of special protocols.
//they basically contain some directive:hostname line that tells us what to do and where from.
//they should have mime type text/x-quaketvident with extension .qtv
2009-04-01 22:03:56 +00:00
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 ) ;
}
2020-02-11 18:06:10 +00:00
# include "netinc.h"
2009-04-01 22:03:56 +00:00
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 ;
2020-02-11 18:06:10 +00:00
char * password ;
2009-04-01 22:03:56 +00:00
if ( Cmd_Argc ( ) < 2 )
{
2020-02-11 18:06:10 +00:00
Con_Printf ( " Usage: qtvplay [stream@][tls://]hostname[:port] [password] \n " ) ;
2009-04-01 22:03:56 +00:00
return ;
}
connrequest = Cmd_Argv ( 1 ) ;
2017-06-21 01:24:25 +00:00
/*if (*connrequest == '#')
2009-04-01 22:03:56 +00:00
{
//#FILENAME is a local system path
CL_ParseQTVDescriptor ( VFSOS_Open ( connrequest + 1 , " rt " ) , connrequest + 1 ) ;
2006-09-17 00:59:22 +00:00
return ;
2017-06-21 01:24:25 +00:00
} */
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 ;
2020-04-29 10:43:22 +00:00
Q_strncpyz ( qtvhostname , host , sizeof ( qtvhostname ) ) ;
newf = FS_OpenTCP ( qtvhostname , 27599 , false ) ;
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 ;
2020-02-11 18:06:10 +00:00
password = Cmd_Argv ( 2 ) ;
2017-06-21 01:24:25 +00:00
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
2020-02-11 18:06:10 +00:00
if ( password )
{
#if 0
//just send it directly, we can't handle the tripple handshake for the challenge info
Q_snprintfz ( msg + msglen , sizeof ( msg ) - msglen ,
" AUTH: PLAIN \n "
" PASSWORD: %s \n "
, password ) ;
# else
//report supported auth methods to the server. it'll pick one and send us a challenge.
Q_snprintfz ( msg + msglen , sizeof ( msg ) - msglen ,
// "AUTH: SHA1\n"
// "AUTH: MD4\n"
// "AUTH: CCITT\n"
" AUTH: PLAIN \n " ) ;
# endif
msglen + = strlen ( msg + msglen ) ;
}
else
{
//include supported auth methods, so server can pick one (and give suitable challenge in its response)
Q_snprintfz ( msg + msglen , sizeof ( msg ) - msglen ,
" AUTH: NONE \n "
" " ) ;
msglen + = strlen ( msg + msglen ) ;
}
2017-06-21 01:24:25 +00:00
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
}
2017-06-21 01:24:25 +00:00
else if ( host )
2006-09-17 00:59:22 +00:00
{
2017-06-21 01:24:25 +00:00
if ( qtvcl_eztvextensions . ival )
{
Q_snprintfz ( msg + msglen , sizeof ( msg ) - msglen ,
" QTV_EZQUAKE_EXT: 3 \n "
2018-07-05 16:21:44 +00:00
" USERINFO: " ) ;
msglen + = strlen ( msg + msglen ) ;
InfoBuf_ToString ( & cls . userinfo [ 0 ] , msg + msglen , sizeof ( msg ) - msglen - 1 , basicuserinfos , NULL , NULL , NULL , NULL ) ;
msglen + = strlen ( msg + msglen ) ;
Q_strncatz ( msg + msglen , " \n " , sizeof ( msg ) - msglen ) ;
2017-06-21 01:24:25 +00:00
msglen + = strlen ( msg + msglen ) ;
}
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 ) ;
playdemo accepts https urls now. will start playing before the file has finished downloading, to avoid unnecessary delays.
reworked network addresses to separate address family and connection type. this should make banning people more reliable, as well as simplifying a whole load of logic (no need to check for ipv4 AND ipv6).
tcpconnect will keep trying to connect even if the connection wasn't instant, instead of giving up instantly.
rewrote tcp connections quite a bit. sv_port_tcp now handles qtv+qizmo+http+ws+rtcbroker+tls equivalents.
qtv_streamport is now a legacy cvar and now acts equivalently to sv_port_tcp (but still separate).
rewrote screenshot and video capture code to use strides. this solves image-is-upside down issues with vulkan.
ignore alt key in browser port. oh no! no more red text! oh no! no more alt-being-wrongly-down-and-being-unable-to-type-anything-without-forcing-alt-released!
reworked audio decoder interface. now has clearly defined success/unavailable/end-of-file results. this should solve a whole load of issues with audio streaming.
fixed various openal audio streaming issues too. openal also got some workarounds for emscripten's poor emulation.
fixed ogg decoder to retain sync properly if seeked.
updated menu_media a bit. now reads vorbis comments/id3v1 tags to get proper track names. also saves the playlist so you don't have to manually repopulate the list so it might actually be usable now (after how many years?)
r_stains now defaults to 0, and is no longer enabled by presets. use decals if you want that sort of thing.
added fs_noreexec cvar, so configs will not be reexeced on gamedir change. this also means defaults won't be reapplied, etc.
added 'nvvk' renderer on windows, using nvidia's vulkan-inside-opengl gl extension. mostly just to see how much slower it is.
fixed up the ftp server quite a lot. more complete, more compliant, and should do ipv6 properly to-boot. file transfers also threaded.
fixed potential crash inside runclientphys.
experimental sv_antilag=3 setting. totally untested. the aim is to avoid missing due to lagged knockbacks. may be expensive for the server.
browser port's websockets support fixed. experimental support for webrtc ('works for me', requires a broker server).
updated avplug(renamed to ffmpeg so people know what it is) to use ffmpeg 3.2.4 properly, with its new encoder api. should be much more robust... also added experimental audio decoder for game music etc (currently doesn't resample, so playback rates are screwed, disabled by cvar).
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5097 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-05-10 02:08:58 +00:00
CL_PlayDemoStream ( qtvrequest , qtvhostname , false , DPB_MVD , BUFFERTIME ) ;
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 ;
2020-04-29 10:43:22 +00:00
newf = FS_OpenTCP ( qtvhostname , 27599 , false ) ;
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 ;
2020-04-29 10:43:22 +00:00
newf = FS_OpenTCP ( Cmd_Argv ( 1 ) , 27599 , false ) ;
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
2015-06-16 23:53:58 +00:00
TP_ExecTrigger ( " f_timedemoend " , true ) ;
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
}