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
2005-09-26 03:40:09 +00:00
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE .
2004-08-23 00:15:46 +00:00
See the 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 .
*/
// cl_parse.c -- parse a message received from the server
# include "quakedef.h"
2005-11-30 01:20:53 +00:00
# include "cl_ignore.h"
2004-08-23 00:15:46 +00:00
void CL_GetNumberedEntityInfo ( int num , float * org , float * ang ) ;
2004-11-27 08:16:25 +00:00
void CLNQ_ParseDarkPlaces5Entities ( void ) ;
2004-12-05 08:19:54 +00:00
void CL_SetStat ( int pnum , int stat , int value ) ;
2004-08-23 00:15:46 +00:00
2004-11-27 08:16:25 +00:00
int nq_dp_protocol ;
2005-09-07 14:55:25 +00:00
int msgflags ;
2004-08-23 00:15:46 +00:00
2007-06-20 00:02:54 +00:00
int cl_dp_csqc_progssize ;
int cl_dp_csqc_progscrc ;
2004-08-23 00:15:46 +00:00
char * svc_strings [ ] =
{
" svc_bad " ,
" svc_nop " ,
" svc_disconnect " ,
" svc_updatestat " ,
" svc_version " , // [long] server version
" svc_setview " , // [short] entity number
" svc_sound " , // <see code>
" svc_time " , // [float] server time
" svc_print " , // [string] null terminated string
" svc_stufftext " , // [string] stuffed into client's console buffer
// the string should be \n terminated
" svc_setangle " , // [vec3] set the view angle to this absolute value
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
" svc_serverdata " , // [long] version ...
" svc_lightstyle " , // [qbyte] [string]
" svc_updatename " , // [qbyte] [string]
" svc_updatefrags " , // [qbyte] [short]
" svc_clientdata " , // <shortbits + data>
" svc_stopsound " , // <see code>
" svc_updatecolors " , // [qbyte] [qbyte]
" svc_particle " , // [vec3] <variable>
" svc_damage " , // [qbyte] impact [qbyte] blood [vec3] from
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
" svc_spawnstatic " ,
" svc_spawnstatic2 " ,
" svc_spawnbaseline " ,
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
" svc_temp_entity " , // <variable>
" svc_setpause " ,
" svc_signonnum " ,
" svc_centerprint " ,
" svc_killedmonster " ,
" svc_foundsecret " ,
" svc_spawnstaticsound " ,
" svc_intermission " ,
" svc_finale " ,
" svc_cdtrack " ,
" svc_sellscreen " ,
" svc_smallkick " ,
" svc_bigkick " ,
" svc_updateping " ,
" svc_updateentertime " ,
" svc_updatestatlong " ,
" svc_muzzleflash " ,
" svc_updateuserinfo " ,
" svc_download " ,
" svc_playerinfo " ,
" svc_nails " ,
" svc_choke " ,
" svc_modellist " ,
" svc_soundlist " ,
" svc_packetentities " ,
" svc_deltapacketentities " ,
" svc_maxspeed " ,
" svc_entgravity " ,
" svc_setinfo " ,
" svc_serverinfo " ,
" svc_updatepl " ,
2006-03-14 01:21:18 +00:00
" MVD svc_nails2 " ,
" BAD svc_unused " ,
" FTE svc_view2 " ,
" FTE svc_lightstylecol " ,
" FTE svc_bulletentext " ,
" FTE svc_lightnings " ,
" FTE svc_modellistshort " ,
" FTE svc_ftesetclientpersist " ,
" FTE svc_setportalstate " ,
" FTE svc_particle2 " ,
" FTE svc_particle3 " ,
" FTE svc_particle4 " ,
" FTE svc_spawnbaseline2 " ,
" FTE svc_customtempent " ,
" FTE svc_choosesplitclient " ,
" FTE svc_showpic " ,
" FTE svc_hidepic " ,
" FTE svc_movepic " ,
" FTE svc_updatepic " ,
" FTE svcqw_effect " ,
" FTE svcqw_effect2 " ,
" FTE svc_csqcentities " ,
" FTE svc_precache " ,
" FTE svc_choosesplitclient " ,
2004-08-23 00:15:46 +00:00
} ;
char * svc_nqstrings [ ] =
{
" nqsvc_bad " ,
" nqsvc_nop " ,
" nqsvc_disconnect " ,
" nqsvc_updatestat " ,
" nqsvc_version " , // [long] server version
" nqsvc_setview " , // [short] entity number
" nqsvc_sound " , // <see code>
" nqsvc_time " , // [float] server time
" nqsvc_print " , // [string] null terminated string
" nqsvc_stufftext " , // [string] stuffed into client's console buffer
// the string should be \n terminated
" nqsvc_setangle " , // [vec3] set the view angle to this absolute value
" nqsvc_serverinfo " , // [long] version
// [string] signon string
// [string]..[0]model cache [string]...[0]sounds cache
// [string]..[0]item cache
" nqsvc_lightstyle " , // [qbyte] [string]
" nqsvc_updatename " , // [qbyte] [string]
" nqsvc_updatefrags " , // [qbyte] [short]
" nqsvc_clientdata " , // <shortbits + data>
" nqsvc_stopsound " , // <see code>
" nqsvc_updatecolors " , // [qbyte] [qbyte]
" nqsvc_particle " , // [vec3] <variable>
" nqsvc_damage " , // [qbyte] impact [qbyte] blood [vec3] from
" nqsvc_spawnstatic " ,
" nqOBSOLETE svc_spawnbinary " ,
" nqsvc_spawnbaseline " ,
" nqsvc_temp_entity " , // <variable>
" nqsvc_setpause " ,
" nqsvc_signonnum " ,
" nqsvc_centerprint " ,
" nqsvc_killedmonster " ,
" nqsvc_foundsecret " ,
" nqsvc_spawnstaticsound " ,
" nqsvc_intermission " ,
" nqsvc_finale " , // [string] music [string] text
" nqsvc_cdtrack " , // [qbyte] track [qbyte] looptrack
" nqsvc_sellscreen " ,
2005-09-26 03:40:09 +00:00
" nqsvc_cutscene " , //34
2004-08-23 00:15:46 +00:00
" NEW PROTOCOL " ,
" NEW PROTOCOL " ,
" NEW PROTOCOL " ,
" NEW PROTOCOL " ,
" NEW PROTOCOL " ,
2005-09-26 03:40:09 +00:00
" NEW PROTOCOL " , //40
2004-08-23 00:15:46 +00:00
" NEW PROTOCOL " ,
" NEW PROTOCOL " ,
" NEW PROTOCOL " ,
" NEW PROTOCOL " ,
" NEW PROTOCOL " ,
" NEW PROTOCOL " ,
" NEW PROTOCOL " ,
" NEW PROTOCOL " ,
2005-09-26 03:40:09 +00:00
" NEW PROTOCOL " ,
2007-06-20 00:02:54 +00:00
" dpsvc_downloaddata " , //50
2005-09-26 03:40:09 +00:00
" dpsvc_updatestatubyte " ,
" dpsvc_effect " ,
" dpsvc_effect2 " ,
" dp6svc_precache/dp5svc_sound2 " ,
" dpsvc_spawnbaseline2 " ,
" dpsvc_spawnstatic2 " ,
" dpsvc_entities " ,
" NEW PROTOCOL " ,
" dpsvc_spawnstaticsound2 "
2004-08-23 00:15:46 +00:00
} ;
2006-04-02 23:25:03 +00:00
extern cvar_t requiredownloads , cl_standardchat , msg_filter , cl_countpendingpl ;
2004-08-23 00:15:46 +00:00
int oldparsecountmod ;
int parsecountmod ;
double parsecounttime ;
2005-01-18 20:15:20 +00:00
int cl_spikeindex , cl_playerindex , cl_h_playerindex , cl_flagindex , cl_rocketindex , cl_grenadeindex , cl_gib1index , cl_gib2index , cl_gib3index ;
2004-08-23 00:15:46 +00:00
# ifdef PEXT_LIGHTUPDATES
int cl_lightningindex ;
# endif
//=============================================================================
int packet_latency [ NET_TIMINGS ] ;
int CL_CalcNet ( void )
{
int a , i ;
frame_t * frame ;
int lost ;
2006-04-02 23:25:03 +00:00
int percent ;
int sent ;
int pending ;
2004-08-23 00:15:46 +00:00
// char st[80];
2006-04-02 23:25:03 +00:00
sent = NET_TIMINGS ;
2004-08-23 00:15:46 +00:00
for ( i = cls . netchan . outgoing_sequence - UPDATE_BACKUP + 1
; i < = cls . netchan . outgoing_sequence
; i + + )
{
frame = & cl . frames [ i & UPDATE_MASK ] ;
if ( frame - > receivedtime = = - 1 )
packet_latency [ i & NET_TIMINGSMASK ] = 9999 ; // dropped
else if ( frame - > receivedtime = = - 2 )
packet_latency [ i & NET_TIMINGSMASK ] = 10000 ; // choked
2006-04-02 23:25:03 +00:00
else if ( frame - > receivedtime = = - 3 )
{
packet_latency [ i & NET_TIMINGSMASK ] = 9997 ; // c2spps
sent - - ;
}
2004-08-23 00:15:46 +00:00
else if ( frame - > invalid )
packet_latency [ i & NET_TIMINGSMASK ] = 9998 ; // invalid delta
else
packet_latency [ i & NET_TIMINGSMASK ] = ( frame - > receivedtime - frame - > senttime ) * 20 ;
}
lost = 0 ;
for ( a = 0 ; a < NET_TIMINGS ; a + + )
{
i = ( cls . netchan . outgoing_sequence - a ) & NET_TIMINGSMASK ;
if ( packet_latency [ i ] = = 9999 )
lost + + ;
}
2006-04-02 23:25:03 +00:00
2006-04-02 23:52:05 +00:00
if ( ! cl_countpendingpl . value )
2006-04-02 23:25:03 +00:00
{
pending = cls . netchan . outgoing_sequence - cls . netchan . incoming_sequence - 1 ;
lost - = pending ;
sent - = pending ;
if ( sent < 1 )
percent = 100 ;
else
percent = lost * 100 / sent ;
if ( lost & & ! percent ) //if they have any confirmed lost packets, report at least 1%
percent = 1 ;
}
else
2006-04-02 23:52:05 +00:00
{
if ( sent < 1 )
percent = 100 ; //shouldn't ever happen.
else
percent = lost * 100 / sent ;
}
2006-04-02 23:25:03 +00:00
return percent ;
2004-08-23 00:15:46 +00:00
}
//=============================================================================
2005-01-13 16:29:20 +00:00
//note: this will overwrite existing files.
//returns true if the download is going to be downloaded after the call.
2005-08-11 04:14:33 +00:00
qboolean CL_EnqueDownload ( char * filename , char * localname , qboolean verbose , qboolean ignorefailedlist )
2005-01-13 16:29:20 +00:00
{
downloadlist_t * dl ;
2005-08-11 04:14:33 +00:00
if ( ! localname )
localname = filename ;
if ( strchr ( localname , ' \\ ' ) | | strchr ( localname , ' : ' ) | | strstr ( localname , " .. " ) )
2005-01-13 16:29:20 +00:00
{
Con_Printf ( " Denying download of \" %s \" \n " , filename ) ;
return false ;
}
if ( cls . demoplayback )
return false ;
if ( ! ignorefailedlist )
{
for ( dl = cl . faileddownloads ; dl ; dl = dl - > next ) //yeah, so it failed... Ignore it.
{
if ( ! strcmp ( dl - > name , filename ) )
{
if ( verbose )
Con_Printf ( " We've failed to download \" %s \" already \n " , filename ) ;
return false ;
}
}
}
for ( dl = cl . downloadlist ; dl ; dl = dl - > next ) //It's already on our list. Ignore it.
{
if ( ! strcmp ( dl - > name , filename ) )
{
if ( verbose )
Con_Printf ( " Already waiting for \" %s \" \n " , filename ) ;
return true ;
}
}
if ( ! strcmp ( cls . downloadname , filename ) )
{
if ( verbose )
Con_Printf ( " Already downloading \" %s \" \n " , filename ) ;
return true ;
}
dl = Z_Malloc ( sizeof ( downloadlist_t ) ) ;
2005-08-11 04:14:33 +00:00
Q_strncpyz ( dl - > name , filename , sizeof ( dl - > name ) ) ;
Q_strncpyz ( dl - > localname , localname , sizeof ( dl - > localname ) ) ;
2005-01-13 16:29:20 +00:00
dl - > next = cl . downloadlist ;
cl . downloadlist = dl ;
if ( verbose )
Con_Printf ( " Enqued download of \" %s \" \n " , filename ) ;
return true ;
}
2005-01-16 02:25:35 +00:00
void CL_DisenqueDownload ( char * filename )
2005-01-13 16:29:20 +00:00
{
downloadlist_t * dl , * nxt ;
if ( cl . downloadlist ) //remove from enqued download list
{
if ( ! strcmp ( cl . downloadlist - > name , filename ) )
{
dl = cl . downloadlist ;
cl . downloadlist = cl . downloadlist - > next ;
Z_Free ( dl ) ;
}
else
{
for ( dl = cl . downloadlist - > next ; dl - > next ; dl = dl - > next )
{
if ( ! strcmp ( dl - > next - > name , filename ) )
{
nxt = dl - > next - > next ;
Z_Free ( dl - > next ) ;
dl - > next = nxt ;
break ;
}
}
}
}
2005-01-13 23:33:00 +00:00
}
2005-01-13 16:29:20 +00:00
2005-08-11 04:14:33 +00:00
void CL_SendDownloadRequest ( char * filename , char * localname )
2005-01-16 02:25:35 +00:00
{
2005-08-11 04:14:33 +00:00
strcpy ( cls . downloadname , localname ) ;
2005-01-16 02:25:35 +00:00
Con_TPrintf ( TL_DOWNLOADINGFILE , cls . downloadname ) ;
// download to a temp name, and only rename
// to the real name when done, so if interrupted
// a runt file wont be left
2006-03-11 03:12:10 +00:00
COM_StripExtension ( localname , cls . downloadtempname , sizeof ( cls . downloadtempname ) - 5 ) ;
2005-01-16 02:25:35 +00:00
strcat ( cls . downloadtempname , " .tmp " ) ;
2005-08-11 04:14:33 +00:00
CL_SendClientCommand ( true , " download %s " , filename ) ;
2005-01-16 02:25:35 +00:00
//prevent ftp/http from changing stuff
cls . downloadmethod = DL_QWPENDING ;
cls . downloadpercent = 0 ;
CL_DisenqueDownload ( filename ) ;
}
2005-01-13 23:33:00 +00:00
//Do any reloading for the file that just reloaded.
2005-01-16 02:25:35 +00:00
void CL_FinishDownload ( char * filename , char * tempname )
2005-01-13 23:33:00 +00:00
{
int i ;
extern int mod_numknown ;
extern model_t mod_known [ ] ;
2005-01-13 16:29:20 +00:00
2005-01-16 02:25:35 +00:00
COM_RefreshFSCache_f ( ) ;
cls . downloadmethod = DL_NONE ;
// rename the temp file to it's final name
if ( tempname )
{
if ( strcmp ( tempname , filename ) )
{
if ( strncmp ( tempname , " skins/ " , 6 ) )
{
2007-06-20 00:02:54 +00:00
FS_CreatePath ( filename , FS_GAME ) ;
2006-01-04 00:44:34 +00:00
FS_Rename ( tempname , filename , FS_GAME ) ;
2005-01-16 02:25:35 +00:00
}
else
{
2007-06-20 00:02:54 +00:00
FS_CreatePath ( filename + 6 , FS_SKINS ) ;
2006-01-04 00:44:34 +00:00
FS_Rename ( tempname + 6 , filename + 6 , FS_SKINS ) ;
2005-01-16 02:25:35 +00:00
}
}
}
2005-01-13 23:33:00 +00:00
if ( ! strcmp ( filename , " gfx/palette.lmp " ) )
{
Cbuf_AddText ( " vid_restart \n " , RESTRICT_LOCAL ) ;
}
else
{
for ( i = 0 ; i < mod_numknown ; i + + ) //go and load this model now.
{
if ( ! strcmp ( mod_known [ i ] . name , filename ) )
{
Mod_ForName ( mod_known [ i ] . name , false ) ; //throw away result.
break ;
}
}
2006-01-04 00:44:34 +00:00
for ( i = 0 ; i < MAX_MODELS ; i + + ) //go and load this model now.
{
if ( ! strcmp ( cl . model_name [ i ] , filename ) )
{
cl . model_precache [ i ] = Mod_ForName ( cl . model_name [ i ] , false ) ; //throw away result.
if ( i = = 1 )
cl . worldmodel = cl . model_precache [ i ] ;
break ;
}
}
2006-10-05 22:11:17 +00:00
S_ResetFailedLoad ( ) ; //okay, so this can still get a little spammy in bad places...
2006-01-04 00:44:34 +00:00
//this'll do the magic for us
2005-01-13 23:33:00 +00:00
Skin_FlushSkin ( filename ) ;
}
2005-01-13 16:29:20 +00:00
}
2005-06-04 04:20:20 +00:00
/*
void MapDownload ( char * name , qboolean gotornot )
{
if ( gotornot ) //yay
return ;
2005-01-13 16:29:20 +00:00
2005-06-04 04:20:20 +00:00
CL_EnqueDownload ( filename , false , false ) ;
}
*/
2007-06-20 00:02:54 +00:00
qboolean CL_CheckFile ( char * filename )
{
if ( strstr ( filename , " .. " ) )
{
Con_TPrintf ( TL_NORELATIVEPATHS ) ;
return true ;
}
if ( COM_FCheckExists ( filename ) )
{ // it exists, no need to download
return true ;
}
return false ;
}
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = = = = =
2006-01-04 00:44:34 +00:00
CL_CheckOrEnqueDownloadFile
2004-08-23 00:15:46 +00:00
Returns true if the file exists , otherwise it attempts
to start a download from the server .
= = = = = = = = = = = = = = =
*/
2007-06-20 00:02:54 +00:00
2006-01-04 00:44:34 +00:00
qboolean CL_CheckOrEnqueDownloadFile ( char * filename , char * localname )
{ //returns false if we don't have the file yet.
2005-08-11 04:14:33 +00:00
if ( ! localname )
localname = filename ;
2005-09-26 03:40:09 +00:00
2007-06-20 00:02:54 +00:00
if ( CL_CheckFile ( localname ) )
2004-08-23 00:15:46 +00:00
return true ;
//ZOID - can't download when recording
2005-01-13 16:29:20 +00:00
if ( cls . demorecording )
{
2004-08-23 00:15:46 +00:00
Con_TPrintf ( TL_NODOWNLOADINDEMO , filename ) ;
return true ;
}
//ZOID - can't download when playback
if ( cls . demoplayback )
return true ;
2004-11-27 08:16:25 +00:00
SCR_EndLoadingPlaque ( ) ; //release console.
2005-06-04 04:20:20 +00:00
/* if (1)
if ( strncmp ( filename , " maps/ " , 5 ) )
if ( strcmp ( filename + strlen ( filename ) - 4 , " .bsp " ) )
{
char base [ MAX_QPATH ] ;
COM_FileBase ( filename , base ) ;
HTTP_CL_Get ( va ( " http://maps.quakeworld.nu/%s/download/ " , base ) , filename , MapDownload ) ;
}
*/
2006-01-04 00:44:34 +00:00
CL_EnqueDownload ( filename , localname , false , false ) ;
return false ;
2004-08-23 00:15:46 +00:00
}
qboolean CL_CheckMD2Skins ( char * name )
{
md2_t * pheader ;
qbyte * precache_model ;
int precache_model_skin = 1 ;
2005-03-18 06:14:07 +00:00
char * str ;
2004-08-23 00:15:46 +00:00
// checking for skins in the model
precache_model = COM_LoadMallocFile ( name ) ;
if ( ! precache_model ) {
precache_model_skin = 0 ;
return false ; // couldn't load it
}
if ( LittleLong ( * ( unsigned * ) precache_model ) ! = MD2IDALIASHEADER ) {
// not an alias model
BZ_Free ( precache_model ) ;
precache_model = 0 ;
precache_model_skin = 0 ;
return false ;
}
pheader = ( md2_t * ) precache_model ;
if ( LittleLong ( pheader - > version ) ! = MD2ALIAS_VERSION ) {
BZ_Free ( precache_model ) ;
precache_model = 0 ;
precache_model_skin = 0 ;
return false ;
}
pheader = ( md2_t * ) precache_model ;
2005-03-18 06:14:07 +00:00
while ( precache_model_skin - 1 < LittleLong ( pheader - > num_skins ) )
{
str = ( char * ) precache_model +
2005-09-26 03:40:09 +00:00
LittleLong ( pheader - > ofs_skins ) +
2005-03-18 06:14:07 +00:00
( precache_model_skin - 1 ) * MD2MAX_SKINNAME ;
COM_CleanUpPath ( str ) ;
2006-01-04 00:44:34 +00:00
CL_CheckOrEnqueDownloadFile ( str , str ) ;
2004-08-23 00:15:46 +00:00
precache_model_skin + + ;
}
2005-09-26 03:40:09 +00:00
if ( precache_model ) {
2004-08-23 00:15:46 +00:00
BZ_Free ( precache_model ) ;
precache_model = NULL ;
}
precache_model_skin = 0 ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
return false ;
}
2006-06-04 16:02:03 +00:00
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = = = = = = =
Model_NextDownload
= = = = = = = = = = = = = = = = =
*/
void Sound_NextDownload ( void ) ;
void Model_NextDownload ( void )
{
// char *twf;
char * s ;
int i ;
2006-02-17 19:54:47 +00:00
// extern char gamedirfile[];
2004-08-23 00:15:46 +00:00
2006-01-04 00:44:34 +00:00
Con_TPrintf ( TLC_CHECKINGMODELS ) ;
/* if (cls.downloadnumber == 0)
2004-08-23 00:15:46 +00:00
{
Con_TPrintf ( TLC_CHECKINGMODELS ) ;
cls . downloadnumber = 1 ;
cl . worldmodel = NULL ;
}
2006-01-04 00:44:34 +00:00
*/
2004-08-23 00:15:46 +00:00
# ifdef Q2CLIENT
2005-05-26 12:55:34 +00:00
if ( cls . protocol = = CP_QUAKE2 )
2004-08-23 00:15:46 +00:00
{
2005-10-16 03:53:31 +00:00
R_SetSky ( cl . skyname , cl . skyrotate , cl . skyaxis ) ;
2004-08-23 00:15:46 +00:00
for ( i = 0 ; i < Q2MAX_IMAGES ; i + + )
{
char picname [ 256 ] ;
if ( ! * cl . image_name [ i ] )
continue ;
sprintf ( picname , " pics/%s.pcx " , cl . image_name [ i ] ) ;
2006-01-04 00:44:34 +00:00
CL_CheckOrEnqueDownloadFile ( picname , picname ) ;
2004-08-23 00:15:46 +00:00
}
if ( ! CLQ2_RegisterTEntModels ( ) )
return ;
}
# endif
2004-11-17 17:58:22 +00:00
2006-03-26 17:08:19 +00:00
for ( i = 1 ; cl . model_name [ i ] [ 0 ] ; i + + )
2004-08-23 00:15:46 +00:00
{
2006-01-04 00:44:34 +00:00
s = cl . model_name [ i ] ;
2004-08-23 00:15:46 +00:00
if ( s [ 0 ] = = ' * ' )
continue ; // inline brush model
if ( ! stricmp ( COM_FileExtension ( s ) , " dsp " ) ) //doom sprites are weird, and not really downloadable via this system
continue ;
2004-11-17 17:58:22 +00:00
2005-01-27 22:20:16 +00:00
# ifdef Q2CLIENT
2005-05-26 12:55:34 +00:00
if ( cls . protocol = = CP_QUAKE2 & & s [ 0 ] = = ' # ' ) //this is a vweap
2005-01-07 02:41:46 +00:00
continue ;
2005-01-27 22:20:16 +00:00
# endif
2005-01-07 02:41:46 +00:00
2006-01-04 00:44:34 +00:00
CL_CheckOrEnqueDownloadFile ( s , s ) ; //world is required to be loaded.
2004-08-23 00:15:46 +00:00
2005-01-13 16:29:20 +00:00
if ( strstr ( s , " .md2 " ) )
if ( CL_CheckMD2Skins ( s ) )
return ;
2004-08-23 00:15:46 +00:00
}
2005-02-28 07:16:19 +00:00
CL_AllowIndependantSendCmd ( false ) ; //stop it now, the indep stuff *could* require model tracing.
2006-01-04 00:44:34 +00:00
Hunk_Check ( ) ; // make sure nothing is hurt
cl . sendprespawn = true ;
}
int CL_LoadModels ( int stage )
{
extern model_t * loadmodel ;
int i ;
2006-01-11 22:24:08 +00:00
float giveuptime = Sys_DoubleTime ( ) + 0.1 ; //small things get padded into a single frame
2006-01-04 00:44:34 +00:00
# define atstage() ((cl.contentstage == stage++)?++cl.contentstage:false)
2006-01-11 22:24:08 +00:00
# define endstage() if (giveuptime<Sys_DoubleTime()) return -1;
2006-01-04 00:44:34 +00:00
2006-02-27 00:42:25 +00:00
pmove . numphysent = 0 ;
2007-06-20 00:02:54 +00:00
# ifdef PEXT_CSQC
if ( atstage ( ) )
{
if ( cls . protocol = = CP_NETQUAKE )
{
char * s ;
s = Info_ValueForKey ( cl . serverinfo , " *csprogs " ) ;
if ( * s | | cls . demoplayback ) //only allow csqc if the server says so, and the 'checksum' matches.
{
extern cvar_t allow_download_csprogs ;
unsigned int chksum = strtoul ( s , NULL , 0 ) ;
if ( allow_download_csprogs . value )
{
char * str = va ( " csprogsvers/%x.dat " , chksum ) ;
CL_CheckOrEnqueDownloadFile ( " csprogs.dat " , str ) ;
}
else
{
Con_Printf ( " Not downloading csprogs.dat due to allow_download_csprogs \n " ) ;
}
}
}
endstage ( ) ;
}
# endif
2006-01-13 06:27:18 +00:00
# ifdef PEXT_CSQC
2006-01-04 00:44:34 +00:00
if ( atstage ( ) )
{
if ( cls . fteprotocolextensions & PEXT_CSQC )
{
char * s ;
s = Info_ValueForKey ( cl . serverinfo , " *csprogs " ) ;
if ( * s | | cls . demoplayback ) //only allow csqc if the server says so, and the 'checksum' matches.
{
unsigned int chksum = strtoul ( s , NULL , 0 ) ;
if ( CSQC_Init ( chksum ) )
2006-01-11 22:24:08 +00:00
{
2006-01-04 00:44:34 +00:00
CL_SendClientCommand ( true , " enablecsqc " ) ;
2006-01-11 22:24:08 +00:00
}
2006-01-04 00:44:34 +00:00
else
2006-01-11 22:24:08 +00:00
{
CL_SendClientCommand ( true , " disablecsqc " ) ;
2006-01-04 00:44:34 +00:00
Sbar_Start ( ) ; //try and start this before we're actually on the server,
//this'll stop the mod from sending so much stuffed data at us, whilst we're frozen while trying to load.
//hopefully this'll make it more robust.
//csqc is expected to use it's own huds, or to run on decent servers. :p
2006-01-11 22:24:08 +00:00
}
2006-01-04 00:44:34 +00:00
}
}
2006-01-11 22:24:08 +00:00
endstage ( ) ;
2006-01-04 00:44:34 +00:00
}
2006-01-13 06:27:18 +00:00
# endif
2006-01-04 00:44:34 +00:00
2004-08-23 00:15:46 +00:00
if ( cl . playernum [ 0 ] = = - 1 )
{ //q2 cinematic - don't load the models.
cl . worldmodel = cl . model_precache [ 1 ] = Mod_ForName ( " " , false ) ;
}
2006-01-04 00:44:34 +00:00
else
2004-08-23 00:15:46 +00:00
{
for ( i = 1 ; i < MAX_MODELS ; i + + )
{
if ( ! cl . model_name [ i ] [ 0 ] )
2006-01-04 00:44:34 +00:00
continue ;
2005-02-28 07:16:19 +00:00
2006-01-04 00:44:34 +00:00
if ( atstage ( ) )
{
cl . model_precache [ i ] = Mod_ForName ( cl . model_name [ i ] , false ) ;
Hunk_Check ( ) ;
2004-08-23 00:15:46 +00:00
2006-01-04 00:44:34 +00:00
S_ExtraUpdate ( ) ;
2004-08-23 00:15:46 +00:00
2006-01-11 22:24:08 +00:00
endstage ( ) ;
2006-01-04 00:44:34 +00:00
}
2004-08-23 00:15:46 +00:00
}
2006-01-04 00:44:34 +00:00
}
2004-08-23 00:15:46 +00:00
2006-01-11 22:24:08 +00:00
for ( i = 1 ; i < MAX_CSQCMODELS ; i + + )
{
if ( ! cl . model_csqcname [ i ] [ 0 ] )
continue ;
if ( atstage ( ) )
{
cl . model_csqcprecache [ i ] = Mod_ForName ( cl . model_csqcname [ i ] , false ) ;
Hunk_Check ( ) ;
S_ExtraUpdate ( ) ;
endstage ( ) ;
}
}
2006-01-04 00:44:34 +00:00
if ( atstage ( ) )
{
2004-08-23 00:15:46 +00:00
cl . worldmodel = cl . model_precache [ 1 ] ;
2006-05-25 21:32:32 +00:00
if ( ! cl . worldmodel | | cl . worldmodel - > type = = mod_dummy )
2005-09-08 01:58:25 +00:00
Host_EndGame ( " Worldmodel wasn't sent \n " ) ;
2004-08-23 00:15:46 +00:00
2006-01-04 00:44:34 +00:00
R_CheckSky ( ) ;
2005-08-26 22:56:51 +00:00
2006-01-11 22:24:08 +00:00
endstage ( ) ;
2006-01-04 00:44:34 +00:00
}
if ( atstage ( ) )
{
Wad_NextDownload ( ) ;
2006-01-11 22:24:08 +00:00
endstage ( ) ;
2006-01-04 00:44:34 +00:00
}
2004-08-23 00:15:46 +00:00
2006-01-04 00:44:34 +00:00
if ( atstage ( ) )
2004-08-23 00:15:46 +00:00
{
loadmodel = cl . worldmodel ;
2006-05-25 21:32:32 +00:00
if ( ! loadmodel | | loadmodel - > type = = mod_dummy )
2004-08-23 00:15:46 +00:00
Host_EndGame ( " No worldmodel was loaded \n " ) ;
if ( R_PreNewMap )
R_PreNewMap ( ) ;
2006-01-11 22:24:08 +00:00
endstage ( ) ;
2006-01-04 00:44:34 +00:00
}
if ( atstage ( ) )
{
loadmodel = cl . worldmodel ;
2006-05-25 21:32:32 +00:00
if ( ! loadmodel | | loadmodel - > type = = mod_dummy )
2006-01-04 00:44:34 +00:00
Host_EndGame ( " No worldmodel was loaded \n " ) ;
2004-08-23 00:15:46 +00:00
Mod_NowLoadExternal ( ) ;
2006-01-04 00:44:34 +00:00
2006-01-11 22:24:08 +00:00
endstage ( ) ;
2004-08-23 00:15:46 +00:00
}
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
// all done
2006-01-04 00:44:34 +00:00
if ( atstage ( ) )
2004-08-23 00:15:46 +00:00
{
2006-01-04 00:44:34 +00:00
loadmodel = cl . worldmodel ;
2006-05-25 21:32:32 +00:00
if ( ! loadmodel | | loadmodel - > type = = mod_dummy )
2006-01-04 00:44:34 +00:00
Host_EndGame ( " No worldmodel was loaded \n " ) ;
R_NewMap ( ) ;
2006-01-28 19:04:13 +00:00
pmove . physents [ 0 ] . model = cl . worldmodel ;
2006-01-11 22:24:08 +00:00
endstage ( ) ;
2004-08-23 00:15:46 +00:00
}
2006-01-04 00:44:34 +00:00
return stage ;
2004-08-23 00:15:46 +00:00
}
/*
= = = = = = = = = = = = = = = = =
Sound_NextDownload
= = = = = = = = = = = = = = = = =
*/
void Sound_NextDownload ( void )
{
2007-06-20 00:02:54 +00:00
char mangled [ 512 ] ;
2004-08-23 00:15:46 +00:00
char * s ;
int i ;
2005-08-11 04:14:33 +00:00
2006-01-04 00:44:34 +00:00
Con_TPrintf ( TLC_CHECKINGSOUNDS ) ;
2004-08-23 00:15:46 +00:00
2005-08-11 04:14:33 +00:00
# ifdef CSQC_DAT
2006-01-04 00:44:34 +00:00
if ( cls . fteprotocolextensions & PEXT_CSQC )
2005-08-11 04:14:33 +00:00
{
s = Info_ValueForKey ( cl . serverinfo , " *csprogs " ) ;
if ( * s | | cls . demoplayback ) //only allow csqc if the server says so, and the 'checksum' matches.
{
2006-01-04 00:44:34 +00:00
extern cvar_t allow_download_csprogs ;
2005-08-11 04:14:33 +00:00
unsigned int chksum = strtoul ( s , NULL , 0 ) ;
2006-01-04 00:44:34 +00:00
if ( allow_download_csprogs . value )
{
char * str = va ( " csprogsvers/%x.dat " , chksum ) ;
CL_CheckOrEnqueDownloadFile ( " csprogs.dat " , str ) ;
}
2005-10-01 03:09:17 +00:00
else
2006-01-04 00:44:34 +00:00
{
Con_Printf ( " Not downloading csprogs.dat \n " ) ;
}
2005-08-11 04:14:33 +00:00
}
}
# endif
2006-01-04 00:44:34 +00:00
for ( i = 1 ; cl . sound_name [ i ] [ 0 ]
; i + + )
2004-08-23 00:15:46 +00:00
{
2006-01-04 00:44:34 +00:00
s = cl . sound_name [ i ] ;
2004-08-23 00:15:46 +00:00
if ( * s = = ' * ' )
continue ;
2007-06-20 00:02:54 +00:00
s = va ( " sound/%s " , s ) ;
if ( CL_CheckFile ( s ) )
continue ; //we have it already
//the things I do for nexuiz... *sigh*
COM_StripExtension ( s , mangled , sizeof ( mangled ) ) ;
COM_DefaultExtension ( mangled , " .ogg " , sizeof ( mangled ) ) ;
if ( CL_CheckFile ( mangled ) )
continue ;
//download the one the server said.
CL_CheckOrEnqueDownloadFile ( s , NULL ) ;
2004-08-23 00:15:46 +00:00
}
for ( i = 1 ; i < MAX_SOUNDS ; i + + )
{
if ( ! cl . sound_name [ i ] [ 0 ] )
break ;
cl . sound_precache [ i ] = S_PrecacheSound ( cl . sound_name [ i ] ) ;
S_ExtraUpdate ( ) ;
}
// done with sounds, request models now
memset ( cl . model_precache , 0 , sizeof ( cl . model_precache ) ) ;
cl_playerindex = - 1 ;
2005-01-18 20:15:20 +00:00
cl_h_playerindex = - 1 ;
2004-08-23 00:15:46 +00:00
cl_spikeindex = - 1 ;
cl_flagindex = - 1 ;
2005-01-17 17:40:21 +00:00
cl_rocketindex = - 1 ;
cl_grenadeindex = - 1 ;
2005-01-18 20:15:20 +00:00
cl_gib1index = - 1 ;
cl_gib2index = - 1 ;
cl_gib3index = - 1 ;
2004-08-23 00:15:46 +00:00
# ifdef PEXT_LIGHTUPDATES
cl_lightningindex = - 1 ;
# endif
# ifdef Q2CLIENT
2005-05-26 12:55:34 +00:00
if ( cls . protocol = = CP_QUAKE2 )
2004-08-23 00:15:46 +00:00
{
Model_NextDownload ( ) ;
}
else
# endif
{
2005-08-07 18:08:13 +00:00
if ( CL_RemoveClientCommands ( " modellist " ) )
Con_Printf ( " Multiple modellists \n " ) ;
2005-02-28 07:16:19 +00:00
// CL_SendClientCommand ("modellist %i 0", cl.servercount);
2005-03-23 22:14:08 +00:00
CL_SendClientCommand ( true , modellist_name , cl . servercount , 0 ) ;
2004-08-23 00:15:46 +00:00
}
}
/*
= = = = = = = = = = = = = = = = = = = = = =
CL_RequestNextDownload
= = = = = = = = = = = = = = = = = = = = = =
*/
void CL_RequestNextDownload ( void )
{
2006-01-04 00:44:34 +00:00
if ( cls . downloadmethod )
return ;
if ( cl . sendprespawn | | cls . state = = ca_active )
if ( cl . downloadlist )
{
if ( ! COM_FCheckExists ( cl . downloadlist - > localname ) )
CL_SendDownloadRequest ( cl . downloadlist - > name , cl . downloadlist - > localname ) ;
else
{
Con_Printf ( " Already have %s \n " , cl . downloadlist - > localname ) ;
CL_DisenqueDownload ( cl . downloadlist - > name ) ;
}
if ( requiredownloads . value | | ! cl . worldmodel )
return ;
}
if ( cl . sendprespawn )
{ // get next signon phase
if ( CL_LoadModels ( 0 ) < 0 )
return ; //not yet
cl . sendprespawn = false ;
# ifdef Q2CLIENT
if ( cls . protocol = = CP_QUAKE2 )
{
Skin_NextDownload ( ) ;
2006-01-06 23:58:32 +00:00
CL_SendClientCommand ( true , " begin %i \n " , cl . servercount ) ;
2006-01-04 00:44:34 +00:00
}
2005-01-16 02:25:35 +00:00
else
2006-01-04 00:44:34 +00:00
# endif
2005-01-16 02:25:35 +00:00
{
2007-01-06 09:36:38 +00:00
if ( ! cl . worldmodel | | cl . worldmodel - > needload )
2006-01-21 00:06:49 +00:00
{
Con_Printf ( " \n \n ------------- \n Couldn't download %s - cannot fully connect \n " , cl . worldmodel - > name ) ;
return ;
}
2006-01-04 00:44:34 +00:00
// done with modellist, request first of static signon messages
if ( CL_RemoveClientCommands ( " prespawn " ) )
Con_Printf ( " Multiple prespawns \n " ) ;
// CL_SendClientCommand("prespawn %i 0 %i", cl.servercount, cl.worldmodel->checksum2);
CL_SendClientCommand ( true , prespawn_name , cl . servercount , LittleLong ( cl . worldmodel - > checksum2 ) ) ;
2005-01-16 02:25:35 +00:00
}
2006-01-04 00:44:34 +00:00
2004-08-23 00:15:46 +00:00
}
}
2005-01-16 02:25:35 +00:00
int CL_RequestADownloadChunk ( void ) ;
void CL_SendDownloadReq ( sizebuf_t * msg )
2005-01-13 23:33:00 +00:00
{
if ( cl . downloadlist & & ! cls . downloadmethod )
{
CL_RequestNextDownload ( ) ;
return ;
}
# ifdef PEXT_CHUNKEDDOWNLOADS
if ( cls . downloadmethod = = DL_QWCHUNKS )
{
2005-01-16 02:25:35 +00:00
int i = CL_RequestADownloadChunk ( ) ;
if ( i < 0 )
{
//we can stop downloading now.
}
else
{
2005-03-23 22:14:08 +00:00
CL_SendClientCommand ( false , " nextdl %i \n " , i ) ;
2005-01-16 02:25:35 +00:00
}
2005-01-13 23:33:00 +00:00
return ;
}
# endif
}
2004-08-23 00:15:46 +00:00
# ifdef PEXT_ZLIBDL
# ifdef _WIN32
# define ZEXPORT VARGS
# include "../../zip/zlib.h"
2005-09-26 03:40:09 +00:00
//# pragma comment (lib, "zip/zlib.lib")
2004-08-23 00:15:46 +00:00
# else
# include <zlib.h>
# endif
char * ZLibDownloadDecode ( int * messagesize , char * input , int finalsize )
{
char * outbuf = Hunk_TempAlloc ( finalsize ) ;
z_stream zs ;
* messagesize = ( * ( short * ) input ) ;
input + = 2 ;
if ( ! * messagesize )
{
* messagesize = finalsize + 2 ;
return input ;
}
memset ( & zs , 0 , sizeof ( zs ) ) ;
zs . next_in = input ;
zs . avail_in = * messagesize ; //tell it that it has a lot. Possibly a bad idea.
zs . total_in = 0 ;
zs . next_out = outbuf ;
zs . avail_out = finalsize ; //this is the limiter.
zs . total_out = 0 ;
zs . data_type = Z_BINARY ;
inflateInit ( & zs ) ;
inflate ( & zs , Z_FINISH ) ; //decompress it in one go.
inflateEnd ( & zs ) ;
* messagesize = zs . total_in + 2 ;
return outbuf ;
}
# endif
2005-01-16 02:25:35 +00:00
void CL_DownloadFailed ( char * name )
{
//add this to our failed list. (so we don't try downloading it again...)
downloadlist_t * failed ;
failed = Z_Malloc ( sizeof ( downloadlist_t ) ) ;
failed - > next = cl . faileddownloads ;
cl . faileddownloads = failed ;
Q_strncpyz ( failed - > name , name , sizeof ( failed - > name ) ) ;
cls . downloadmethod = DL_NONE ;
}
2005-01-13 16:29:20 +00:00
2005-01-16 02:25:35 +00:00
float downloadstarttime ;
2005-01-13 16:29:20 +00:00
# ifdef PEXT_CHUNKEDDOWNLOADS
2005-01-16 02:25:35 +00:00
# define MAXBLOCKS 64 //must be power of 2
# define DLBLOCKSIZE 1024
int downloadsize ;
int receivedbytes ;
2005-01-13 23:33:00 +00:00
int recievedblock [ MAXBLOCKS ] ;
2005-01-16 02:25:35 +00:00
int firstblock ;
int blockcycle ;
2005-01-13 16:29:20 +00:00
void CL_ParseChunkedDownload ( void )
{
2005-01-17 17:40:21 +00:00
qbyte * svname ;
2006-01-27 08:12:14 +00:00
//qbyte osname[MAX_OSPATH]; //unreferenced
2005-01-13 16:29:20 +00:00
int totalsize ;
int chunknum ;
2005-01-16 02:25:35 +00:00
char data [ DLBLOCKSIZE ] ;
2005-01-13 16:29:20 +00:00
chunknum = MSG_ReadLong ( ) ;
if ( chunknum < 0 )
{
totalsize = MSG_ReadLong ( ) ;
2005-01-17 17:40:21 +00:00
svname = MSG_ReadString ( ) ;
2005-01-13 16:29:20 +00:00
if ( cls . demoplayback )
return ;
if ( totalsize < 0 )
{
if ( totalsize = = - 2 )
2005-01-17 17:40:21 +00:00
Con_Printf ( " Server permissions deny downloading file %s \n " , svname ) ;
2005-01-13 16:29:20 +00:00
else
2005-01-17 17:40:21 +00:00
Con_Printf ( " Couldn't find file %s on the server \n " , svname ) ;
2005-01-13 16:29:20 +00:00
2005-01-17 17:40:21 +00:00
CL_DownloadFailed ( svname ) ;
2005-01-13 16:29:20 +00:00
CL_RequestNextDownload ( ) ;
return ;
}
if ( cls . downloadmethod = = DL_QWCHUNKS )
2005-01-17 17:40:21 +00:00
Host_EndGame ( " Received second download - \" %s \" \n " , svname ) ;
2005-01-13 16:29:20 +00:00
2006-01-12 22:19:47 +00:00
if ( stricmp ( cls . downloadname , svname ) )
if ( stricmp ( svname , " csprogs.dat " ) | | strnicmp ( cls . downloadname , " csprogsvers/ " , 12 ) )
2006-01-04 00:44:34 +00:00
Host_EndGame ( " Server sent the wrong download - \" %s \" instead of \" %s \" \n " , svname , cls . downloadname ) ;
2005-12-13 02:31:57 +00:00
2005-01-13 16:29:20 +00:00
//start the new download
cls . downloadmethod = DL_QWCHUNKS ;
cls . downloadpercent = 0 ;
2005-01-16 02:25:35 +00:00
downloadsize = totalsize ;
downloadstarttime = Sys_DoubleTime ( ) ;
2005-01-13 16:29:20 +00:00
2006-01-10 18:48:03 +00:00
/*
2005-01-17 17:40:21 +00:00
strcpy ( cls . downloadname , svname ) ;
COM_StripExtension ( svname , cls . downloadtempname ) ;
2005-01-13 16:29:20 +00:00
COM_DefaultExtension ( cls . downloadtempname , " .tmp " ) ;
2006-01-10 18:48:03 +00:00
*/
2005-01-13 16:29:20 +00:00
2005-01-16 02:25:35 +00:00
if ( ! strncmp ( cls . downloadtempname , " skins/ " , 6 ) )
2006-01-02 23:46:44 +00:00
{
FS_CreatePath ( va ( " qw/%s " , cls . downloadtempname ) , FS_BASE ) ;
cls . downloadqw = FS_OpenVFS ( va ( " qw/%s " , cls . downloadtempname ) , " wb " , FS_BASE ) ;
}
2005-01-16 02:25:35 +00:00
else
2006-01-02 23:46:44 +00:00
{
FS_CreatePath ( cls . downloadtempname , FS_GAME ) ;
cls . downloadqw = FS_OpenVFS ( cls . downloadtempname , " wb " , FS_GAME ) ;
}
2005-01-16 02:25:35 +00:00
2005-12-13 02:31:57 +00:00
if ( ! cls . downloadqw )
{
CL_DownloadFailed ( svname ) ;
return ;
}
2005-01-16 02:25:35 +00:00
firstblock = 0 ;
receivedbytes = 0 ;
blockcycle = - 1 ; //so it requests 0 first. :)
memset ( recievedblock , 0 , sizeof ( recievedblock ) ) ;
2005-01-13 16:29:20 +00:00
return ;
}
2005-01-17 17:40:21 +00:00
// Con_Printf("Received dl block %i: ", chunknum);
2005-01-16 02:25:35 +00:00
MSG_ReadData ( data , DLBLOCKSIZE ) ;
2006-01-13 20:30:01 +00:00
if ( ! cls . downloadqw )
return ;
2005-01-13 16:29:20 +00:00
if ( cls . demoplayback )
2005-01-16 02:25:35 +00:00
{ //err, yeah, when playing demos we don't actually pay any attention to this.
return ;
}
if ( chunknum < firstblock )
2005-01-13 16:29:20 +00:00
{
2005-01-17 17:40:21 +00:00
// Con_Printf("too old\n", chunknum);
2005-01-13 16:29:20 +00:00
return ;
}
2005-01-16 02:25:35 +00:00
if ( chunknum - firstblock > = MAXBLOCKS )
{
2005-01-17 17:40:21 +00:00
// Con_Printf("^1too new!\n", chunknum);
2005-01-16 02:25:35 +00:00
return ;
}
2005-09-26 03:40:09 +00:00
2005-01-16 02:25:35 +00:00
if ( recievedblock [ chunknum & ( MAXBLOCKS - 1 ) ] )
{
2005-01-17 17:40:21 +00:00
// Con_Printf("duplicated\n", chunknum);
2005-01-16 02:25:35 +00:00
return ;
}
2005-01-17 17:40:21 +00:00
// Con_Printf("usable\n", chunknum);
2005-01-16 02:25:35 +00:00
receivedbytes + = DLBLOCKSIZE ;
recievedblock [ chunknum & ( MAXBLOCKS - 1 ) ] = true ;
2005-01-13 23:33:00 +00:00
2005-01-16 02:25:35 +00:00
while ( recievedblock [ firstblock & ( MAXBLOCKS - 1 ) ] )
{
recievedblock [ firstblock & ( MAXBLOCKS - 1 ) ] = false ;
firstblock + + ;
}
2006-01-02 23:00:10 +00:00
VFS_SEEK ( cls . downloadqw , chunknum * DLBLOCKSIZE ) ;
2005-01-16 02:25:35 +00:00
if ( downloadsize - chunknum * DLBLOCKSIZE < DLBLOCKSIZE ) //final block is actually meant to be smaller than we recieve.
2006-01-02 23:00:10 +00:00
VFS_WRITE ( cls . downloadqw , data , downloadsize - chunknum * DLBLOCKSIZE ) ;
2005-01-16 02:25:35 +00:00
else
2006-01-02 23:00:10 +00:00
VFS_WRITE ( cls . downloadqw , data , DLBLOCKSIZE ) ;
2005-01-16 02:25:35 +00:00
cls . downloadpercent = receivedbytes / ( float ) downloadsize * 100 ;
2005-01-13 23:33:00 +00:00
}
2006-01-04 00:44:34 +00:00
int CL_CountQueuedDownloads ( void )
{
int count = 0 ;
downloadlist_t * dl ;
for ( dl = cl . downloadlist ; dl ; dl = dl - > next )
count + + ;
return count ;
}
2005-01-16 02:25:35 +00:00
int CL_RequestADownloadChunk ( void )
2005-01-13 23:33:00 +00:00
{
2005-01-16 02:25:35 +00:00
int i ;
int b ;
if ( cls . downloadmethod ! = DL_QWCHUNKS )
{
Con_Printf ( " download not initiated \n " ) ;
return 0 ;
}
blockcycle + + ;
for ( i = 0 ; i < MAXBLOCKS ; i + + )
{
b = ( ( i + blockcycle ) & ( MAXBLOCKS - 1 ) )
+ firstblock ;
if ( ! recievedblock [ b & ( MAXBLOCKS - 1 ) ] ) //don't ask for ones we've already got.
{
if ( b > = ( downloadsize + DLBLOCKSIZE - 1 ) / DLBLOCKSIZE ) //don't ask for blocks that are over the size of the file.
continue ;
2005-01-17 17:40:21 +00:00
// Con_Printf("Requesting block %i\n", b);
2005-01-16 02:25:35 +00:00
return b ;
}
}
2005-01-17 17:40:21 +00:00
// Con_Printf("^1 EOF?\n");
2005-01-16 02:25:35 +00:00
2006-01-02 23:00:10 +00:00
VFS_CLOSE ( cls . downloadqw ) ;
2007-06-20 00:02:54 +00:00
CL_SendClientCommand ( true , " stopdownload " ) ;
2005-01-16 02:25:35 +00:00
CL_FinishDownload ( cls . downloadname , cls . downloadtempname ) ;
2006-01-04 00:44:34 +00:00
Con_Printf ( " Download took %i seconds (%i more) \n " , ( int ) ( Sys_DoubleTime ( ) - downloadstarttime ) , CL_CountQueuedDownloads ( ) ) ;
2005-01-17 17:40:21 +00:00
2005-01-16 02:25:35 +00:00
* cls . downloadname = ' \0 ' ;
cls . downloadqw = NULL ;
cls . downloadpercent = 0 ;
return - 1 ;
2005-01-13 23:33:00 +00:00
}
2005-01-16 02:25:35 +00:00
2005-01-13 16:29:20 +00:00
# endif
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = = = = = = = = = = =
CL_ParseDownload
A download message has been received from the server
= = = = = = = = = = = = = = = = = = = = =
*/
void CL_ParseDownload ( void )
{
2006-08-02 05:34:17 +00:00
extern cvar_t cl_dlemptyterminate ;
2004-08-23 00:15:46 +00:00
int size , percent ;
qbyte name [ 1024 ] ;
2005-01-13 16:29:20 +00:00
# ifdef PEXT_CHUNKEDDOWNLOADS
if ( cls . fteprotocolextensions & PEXT_CHUNKEDDOWNLOADS )
{
CL_ParseChunkedDownload ( ) ;
return ;
}
# endif
2004-08-23 00:15:46 +00:00
// read the data
size = MSG_ReadShort ( ) ;
percent = MSG_ReadByte ( ) ;
if ( cls . demoplayback )
{
if ( size > 0 )
msg_readcount + = size ;
return ; // not in demo playback
}
2004-12-05 11:37:39 +00:00
if ( ! * cls . downloadname ) //huh... that's not right...
{
2006-02-22 01:24:22 +00:00
Con_Printf ( S_WARNING " Warning: Server sending unknown file. \n " ) ;
2004-12-05 11:37:39 +00:00
strcpy ( cls . downloadname , " unknown.txt " ) ;
strcpy ( cls . downloadtempname , " unknown.tmp " ) ;
}
2005-01-13 16:29:20 +00:00
if ( size < 0 )
2004-08-23 00:15:46 +00:00
{
Con_TPrintf ( TL_FILENOTFOUND ) ;
if ( cls . downloadqw )
{
Con_TPrintf ( TL_CLS_DOWNLOAD_ISSET ) ;
2006-01-02 23:00:10 +00:00
VFS_CLOSE ( cls . downloadqw ) ;
2004-08-23 00:15:46 +00:00
cls . downloadqw = NULL ;
}
if ( cl . downloadlist & & ! strcmp ( cl . downloadlist - > name , cls . downloadname ) )
{
downloadlist_t * next ;
next = cl . downloadlist - > next ;
Z_Free ( cl . downloadlist ) ;
cl . downloadlist = next ;
}
2005-01-16 02:25:35 +00:00
CL_DownloadFailed ( cls . downloadname ) ;
2004-08-23 00:15:46 +00:00
CL_RequestNextDownload ( ) ;
return ;
}
// open the file if not opened yet
if ( ! cls . downloadqw )
{
if ( strncmp ( cls . downloadtempname , " skins/ " , 6 ) )
2006-01-04 00:44:34 +00:00
{
sprintf ( name , " %s " , cls . downloadtempname ) ;
FS_CreatePath ( name , FS_GAME ) ;
cls . downloadqw = FS_OpenVFS ( name , " wb " , FS_GAME ) ;
}
2004-08-23 00:15:46 +00:00
else
2006-01-04 00:44:34 +00:00
{
sprintf ( name , " %s " , cls . downloadtempname + 6 ) ;
FS_CreatePath ( name , FS_SKINS ) ;
cls . downloadqw = FS_OpenVFS ( name , " wb " , FS_SKINS ) ;
}
2004-08-23 00:15:46 +00:00
if ( ! cls . downloadqw )
{
msg_readcount + = size ;
Con_TPrintf ( TL_FAILEDTOOPEN , cls . downloadtempname ) ;
2005-12-13 02:31:57 +00:00
CL_DownloadFailed ( cls . downloadname ) ;
2004-08-23 00:15:46 +00:00
CL_RequestNextDownload ( ) ;
return ;
}
2005-01-16 02:25:35 +00:00
downloadstarttime = Sys_DoubleTime ( ) ;
2004-08-23 00:15:46 +00:00
SCR_EndLoadingPlaque ( ) ;
}
# ifdef PEXT_ZLIBDL
if ( percent > = 101 & & percent < = 201 ) // && cls.fteprotocolextensions & PEXT_ZLIBDL)
{
int compsize ;
percent = percent - 101 ;
2006-01-02 23:00:10 +00:00
VFS_WRITE ( cls . download , ZLibDownloadDecode ( & compsize , net_message . data + msg_readcount , size ) , size ) ;
2004-08-23 00:15:46 +00:00
msg_readcount + = compsize ;
}
else
# endif
{
2006-01-02 23:00:10 +00:00
VFS_WRITE ( cls . downloadqw , net_message . data + msg_readcount , size ) ;
2004-08-23 00:15:46 +00:00
msg_readcount + = size ;
}
2005-01-13 23:33:00 +00:00
if ( cls . downloadmethod = = DL_QWPENDING )
2004-08-23 00:15:46 +00:00
cls . downloadmethod = DL_QW ;
2006-08-02 21:48:07 +00:00
if ( percent ! = 100 & & size = = 0 & & cl_dlemptyterminate . value )
2006-08-02 05:34:17 +00:00
{
2006-08-02 21:48:07 +00:00
Con_Printf ( S_WARNING " WARNING: Client received empty svc_download, assuming EOF \n " ) ;
2006-08-02 05:34:17 +00:00
percent = 100 ;
}
2004-08-23 00:15:46 +00:00
if ( percent ! = 100 )
{
// change display routines by zoid
// request next block
cls . downloadpercent = percent ;
2005-03-23 22:14:08 +00:00
CL_SendClientCommand ( true , " nextdl " ) ;
2004-08-23 00:15:46 +00:00
}
else
{
2006-01-02 23:00:10 +00:00
VFS_CLOSE ( cls . downloadqw ) ;
2004-08-23 00:15:46 +00:00
2005-01-16 02:25:35 +00:00
CL_FinishDownload ( cls . downloadname , cls . downloadtempname ) ;
2004-08-23 00:15:46 +00:00
* cls . downloadname = ' \0 ' ;
cls . downloadqw = NULL ;
cls . downloadpercent = 0 ;
2005-01-17 17:40:21 +00:00
Con_Printf ( " Download took %i seconds \n " , ( int ) ( Sys_DoubleTime ( ) - downloadstarttime ) ) ;
2005-01-16 02:25:35 +00:00
2004-08-23 00:15:46 +00:00
// get another file if needed
CL_RequestNextDownload ( ) ;
}
}
2007-06-20 00:02:54 +00:00
void CLDP_ParseDownloadData ( void )
{
unsigned char buffer [ 1 < < 16 ] ;
int start ;
int size ;
start = MSG_ReadLong ( ) ;
size = ( unsigned short ) MSG_ReadShort ( ) ;
MSG_ReadData ( buffer , size ) ;
VFS_SEEK ( cls . downloadqw , start ) ;
VFS_WRITE ( cls . downloadqw , buffer , size ) ;
//this is only reliable because I'm lazy
MSG_WriteByte ( & cls . netchan . message , clcdp_ackdownloaddata ) ;
MSG_WriteLong ( & cls . netchan . message , start ) ;
MSG_WriteShort ( & cls . netchan . message , size ) ;
cls . downloadpercent = start / ( float ) VFS_GETLEN ( cls . downloadqw ) * 100 ;
}
void CLDP_ParseDownloadBegin ( char * s )
{
char buffer [ 8192 ] ;
unsigned int size , pos , chunk ;
char * fname ;
Cmd_TokenizeString ( s + 1 , false , false ) ;
size = ( unsigned int ) atoi ( Cmd_Argv ( 1 ) ) ;
fname = Cmd_Argv ( 2 ) ;
COM_StripExtension ( fname , cls . downloadtempname , sizeof ( cls . downloadtempname ) - 5 ) ;
strcat ( cls . downloadtempname , " .tmp " ) ;
CL_SendClientCommand ( true , " sv_startdownload " ) ;
if ( cls . downloadqw )
{
Con_Printf ( " Warning: cl_begindownload while already downloading \n " ) ;
VFS_CLOSE ( cls . downloadqw ) ;
}
FS_CreatePath ( cls . downloadtempname , FS_GAME ) ;
cls . downloadqw = FS_OpenVFS ( cls . downloadtempname , " wb " , FS_GAME ) ;
cls . downloadmethod = DL_DARKPLACES ;
//fill the file with 0 bytes
memset ( buffer , 0 , sizeof ( buffer ) ) ;
for ( pos = 0 , chunk = 1 ; chunk ; pos + = chunk )
{
chunk = size - pos ;
if ( chunk > sizeof ( buffer ) )
chunk = sizeof ( buffer ) ;
VFS_WRITE ( cls . downloadqw , buffer , chunk ) ;
}
downloadstarttime = Sys_DoubleTime ( ) ;
}
void CLDP_ParseDownloadFinished ( char * s )
{
unsigned short runningcrc ;
char buffer [ 8192 ] ;
int size , pos , chunk ;
if ( ! cls . downloadqw )
return ;
Cmd_TokenizeString ( s + 1 , false , false ) ;
VFS_CLOSE ( cls . downloadqw ) ;
cls . downloadqw = FS_OpenVFS ( cls . downloadtempname , " rb " , FS_GAME ) ;
if ( cls . downloadqw )
{
size = VFS_GETLEN ( cls . downloadqw ) ;
QCRC_Init ( & runningcrc ) ;
for ( pos = 0 , chunk = 1 ; chunk ; pos + = chunk )
{
chunk = size - pos ;
if ( chunk > sizeof ( buffer ) )
chunk = sizeof ( buffer ) ;
VFS_READ ( cls . downloadqw , buffer , chunk ) ;
QCRC_AddBlock ( & runningcrc , buffer , chunk ) ;
}
VFS_CLOSE ( cls . downloadqw ) ;
2007-08-08 02:37:59 +00:00
Cmd_TokenizeString ( s + 1 , false , false ) ;
if ( size ! = atoi ( Cmd_Argv ( 1 ) ) )
{
Con_Printf ( " Download failed: wrong file size \n " ) ;
CL_DownloadFailed ( cls . downloadname ) ;
return ;
}
if ( runningcrc ! = atoi ( Cmd_Argv ( 2 ) ) )
{
Con_Printf ( " Download failed: wrong crc \n " ) ;
CL_DownloadFailed ( cls . downloadname ) ;
return ;
}
2007-06-20 00:02:54 +00:00
}
CL_FinishDownload ( cls . downloadname , cls . downloadtempname ) ;
* cls . downloadname = ' \0 ' ;
cls . downloadqw = NULL ;
cls . downloadpercent = 0 ;
Con_Printf ( " Download took %i seconds \n " , ( int ) ( Sys_DoubleTime ( ) - downloadstarttime ) ) ;
// get another file if needed
CL_RequestNextDownload ( ) ;
}
2006-01-12 22:56:54 +00:00
static vfsfile_t * upload_file ;
2004-08-23 00:15:46 +00:00
static qbyte * upload_data ;
static int upload_pos ;
static int upload_size ;
void CL_NextUpload ( void )
{
qbyte buffer [ 1024 ] ;
int r ;
int percent ;
int size ;
r = upload_size - upload_pos ;
if ( r > 768 )
r = 768 ;
2006-01-12 22:56:54 +00:00
if ( upload_data )
{
memcpy ( buffer , upload_data + upload_pos , r ) ;
}
else if ( upload_file )
{
r = VFS_READ ( upload_file , buffer , r ) ;
if ( r = = 0 )
{
CL_StopUpload ( ) ;
return ;
}
}
else
return ;
2004-08-23 00:15:46 +00:00
MSG_WriteByte ( & cls . netchan . message , clc_upload ) ;
MSG_WriteShort ( & cls . netchan . message , r ) ;
upload_pos + = r ;
size = upload_size ;
if ( ! size )
size = 1 ;
percent = upload_pos * 100 / size ;
MSG_WriteByte ( & cls . netchan . message , percent ) ;
SZ_Write ( & cls . netchan . message , buffer , r ) ;
Con_DPrintf ( " UPLOAD: %6d: %d written \n " , upload_pos - r , r ) ;
if ( upload_pos ! = upload_size )
return ;
Con_TPrintf ( TL_UPLOADCOMPLEATE ) ;
2006-01-12 22:56:54 +00:00
CL_StopUpload ( ) ;
2004-08-23 00:15:46 +00:00
}
void CL_StartUpload ( qbyte * data , int size )
{
if ( cls . state < ca_onserver )
return ; // gotta be connected
// override
2006-01-12 22:56:54 +00:00
CL_StopUpload ( ) ;
2004-08-23 00:15:46 +00:00
Con_DPrintf ( " Upload starting of %d... \n " , size ) ;
upload_data = BZ_Malloc ( size ) ;
memcpy ( upload_data , data , size ) ;
upload_size = size ;
upload_pos = 0 ;
CL_NextUpload ( ) ;
2005-09-26 03:40:09 +00:00
}
2004-08-23 00:15:46 +00:00
qboolean CL_IsUploading ( void )
{
2006-01-12 22:56:54 +00:00
if ( upload_data | | upload_file )
2004-08-23 00:15:46 +00:00
return true ;
return false ;
}
void CL_StopUpload ( void )
{
if ( upload_data )
BZ_Free ( upload_data ) ;
2006-01-12 22:56:54 +00:00
if ( upload_file )
VFS_CLOSE ( upload_file ) ;
upload_file = NULL ;
2004-08-23 00:15:46 +00:00
upload_data = NULL ;
2006-01-12 22:56:54 +00:00
upload_pos = upload_size = 0 ;
}
qboolean CL_StartUploadFile ( char * filename )
{
if ( ! COM_CheckParm ( " -fileul " ) )
{
Con_Printf ( " You must currently use the -fileul commandline parameter in order to use this functionality \n " ) ;
return false ;
}
if ( cls . state < ca_onserver )
return false ; // gotta be connected
CL_StopUpload ( ) ;
upload_file = FS_OpenVFS ( filename , " rb " , FS_BASE ) ;
upload_size = VFS_GETLEN ( upload_file ) ;
upload_pos = 0 ;
if ( upload_file )
{
CL_NextUpload ( ) ;
return true ;
}
return false ;
2004-08-23 00:15:46 +00:00
}
/*
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
SERVER CONNECTING MESSAGES
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
*/
2004-12-08 07:55:43 +00:00
# ifdef CLIENTONLY
float nextdemotime ;
# endif
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = = = = = = = =
CL_ParseServerData
= = = = = = = = = = = = = = = = = =
*/
void CL_ParseServerData ( void )
{
int pnum ;
int clnum ;
char * str ;
int protover , svcnt ;
float maxspeed , entgrav ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
Con_DPrintf ( " Serverdata packet received. \n " ) ;
//
// wipe the client_state_t struct
2005-09-26 03:40:09 +00:00
//
2004-08-23 00:15:46 +00:00
SCR_BeginLoadingPlaque ( ) ;
// parse protocol version number
// allow 2.2 and 2.29 demos to play
# ifdef PROTOCOL_VERSION_FTE
cls . fteprotocolextensions = 0 ;
for ( ; ; )
{
protover = MSG_ReadLong ( ) ;
if ( protover = = PROTOCOL_VERSION_FTE )
{
cls . fteprotocolextensions = MSG_ReadLong ( ) ;
Con_TPrintf ( TL_FTEEXTENSIONS , cls . fteprotocolextensions ) ;
continue ;
}
if ( protover = = PROTOCOL_VERSION ) //this ends the version info
break ;
if ( cls . demoplayback & & ( protover = = 26 | | protover = = 27 | | protover = = 28 ) ) //older versions, maintain demo compatability.
break ;
Host_EndGame ( " Server returned version %i, not %i \n You probably need to upgrade. \n Check http://www.quakeworld.net/ " , protover , PROTOCOL_VERSION ) ;
}
# else
2005-09-26 03:40:09 +00:00
protover = MSG_ReadLong ( ) ;
if ( protover ! = PROTOCOL_VERSION & &
2004-08-23 00:15:46 +00:00
! ( cls . demoplayback & & ( protover = = 26 | | protover = = 27 | | protover = = 28 ) ) )
Host_EndGame ( " Server returned version %i, not %i \n You probably need to upgrade. \n Check http://www.quakeworld.net/ " , protover , PROTOCOL_VERSION ) ;
# endif
2004-11-27 08:16:25 +00:00
if ( cls . fteprotocolextensions & PEXT_FLOATCOORDS )
{
sizeofcoord = 4 ;
2005-06-14 04:52:10 +00:00
sizeofangle = 2 ;
2004-11-27 08:16:25 +00:00
}
else
{
sizeofcoord = 2 ;
sizeofangle = 1 ;
}
2005-09-08 01:58:25 +00:00
svcnt = MSG_ReadLong ( ) ;
2004-08-23 00:15:46 +00:00
// game directory
str = MSG_ReadString ( ) ;
2006-02-22 23:35:04 +00:00
if ( ! * str )
str = " qw " ;
2004-08-23 00:15:46 +00:00
# ifndef CLIENTONLY
if ( ! sv . state )
# endif
{
COM_FlushTempoaryPacks ( ) ;
COM_Gamedir ( str ) ;
2004-11-29 01:21:00 +00:00
# ifndef CLIENTONLY
2004-08-23 00:15:46 +00:00
Info_SetValueForStarKey ( svs . info , " *gamedir " , str , MAX_SERVERINFO_STRING ) ;
2004-11-29 01:21:00 +00:00
# endif
2004-08-23 00:15:46 +00:00
COM_FlushFSCache ( ) ;
}
CL_ClearState ( ) ;
2006-05-06 06:26:02 +00:00
Cvar_ForceCallback ( & r_particlesdesc ) ;
2004-08-23 00:15:46 +00:00
Stats_NewMap ( ) ;
cl . servercount = svcnt ;
2004-12-29 03:24:21 +00:00
cl . teamfortress = ! Q_strcasecmp ( str , " fortress " ) ;
2004-08-23 00:15:46 +00:00
if ( cl . gamedirchanged )
{
cl . gamedirchanged = false ;
# ifndef CLIENTONLY
if ( ! sv . state )
# endif
Wads_Flush ( ) ;
T_FreeStrings ( ) ;
}
if ( cls . demoplayback = = DPB_MVD )
{
int i ;
2004-12-08 04:14:52 +00:00
extern float nextdemotime ;
cls . netchan . last_received = nextdemotime = /*olddemotime =*/ MSG_ReadFloat ( ) ;
2004-08-23 00:15:46 +00:00
cl . playernum [ 0 ] = MAX_CLIENTS - 1 ;
cl . spectator = true ;
for ( i = 0 ; i < UPDATE_BACKUP ; i + + )
cl . frames [ i ] . playerstate [ cl . playernum [ 0 ] ] . pm_type = PM_SPECTATOR ;
cl . splitclients = 1 ;
2005-05-13 10:42:48 +00:00
CL_RegisterSplitCommands ( ) ;
2004-08-23 00:15:46 +00:00
}
else
{
// parse player slot, high bit means spectator
pnum = MSG_ReadByte ( ) ;
for ( clnum = 0 ; ; clnum + + )
{
cl . playernum [ clnum ] = pnum ;
if ( cl . playernum [ clnum ] & 128 )
{
cl . spectator = true ;
cl . playernum [ clnum ] & = ~ 128 ;
}
if ( ! ( cls . fteprotocolextensions & PEXT_SPLITSCREEN ) )
break ;
pnum = MSG_ReadByte ( ) ;
if ( pnum = = 128 )
break ;
if ( clnum = = MAX_SPLITS )
Host_EndGame ( " Server sent us too many alternate clients \n " ) ;
}
cl . splitclients = clnum + 1 ;
2005-05-13 10:42:48 +00:00
CL_RegisterSplitCommands ( ) ;
2004-08-23 00:15:46 +00:00
}
// get the full level name
str = MSG_ReadString ( ) ;
Q_strncpyz ( cl . levelname , str , sizeof ( cl . levelname ) ) ;
// get the movevars
movevars . gravity = MSG_ReadFloat ( ) ;
movevars . stopspeed = MSG_ReadFloat ( ) ;
maxspeed = MSG_ReadFloat ( ) ;
movevars . spectatormaxspeed = MSG_ReadFloat ( ) ;
movevars . accelerate = MSG_ReadFloat ( ) ;
movevars . airaccelerate = MSG_ReadFloat ( ) ;
movevars . wateraccelerate = MSG_ReadFloat ( ) ;
movevars . friction = MSG_ReadFloat ( ) ;
movevars . waterfriction = MSG_ReadFloat ( ) ;
entgrav = MSG_ReadFloat ( ) ;
for ( clnum = 0 ; clnum < cl . splitclients ; clnum + + )
{
cl . maxspeed [ clnum ] = maxspeed ;
cl . entgravity [ clnum ] = entgrav ;
}
// seperate the printfs so the server message can have a color
Con_TPrintf ( TLC_LINEBREAK_NEWLEVEL ) ;
Con_TPrintf ( TLC_PC_PS_NL , 2 , str ) ;
2005-06-04 04:20:20 +00:00
if ( CL_RemoveClientCommands ( " new " ) ) //mvdsv is really appaling some times.
2005-10-01 13:47:47 +00:00
{
// Con_Printf("Multiple 'new' commands?!?!? This server needs reinstalling!\n");
}
2005-06-04 04:20:20 +00:00
2004-08-23 00:15:46 +00:00
memset ( cl . sound_name , 0 , sizeof ( cl . sound_name ) ) ;
2005-01-24 23:47:32 +00:00
# ifdef PEXT_PK3DOWNLOADS
if ( cls . fteprotocolextensions & PEXT_PK3DOWNLOADS ) //instead of going for a soundlist, go for the pk3 list instead. The server will make us go for the soundlist after.
2004-11-17 17:58:22 +00:00
{
2006-01-02 23:00:10 +00:00
if ( CL_RemoveClientCommands ( " pk3list " ) )
Con_Printf ( " Multiple pk3lists \n " ) ;
2005-02-28 07:16:19 +00:00
CL_SendClientCommand ( " pk3list %i 0 " , cl . servercount , 0 ) ;
2004-11-17 17:58:22 +00:00
}
else
2005-01-24 23:47:32 +00:00
# endif
2004-11-17 17:58:22 +00:00
{
2006-01-02 23:00:10 +00:00
if ( CL_RemoveClientCommands ( " soundlist " ) )
Con_Printf ( " Multiple soundlists \n " ) ;
2004-11-17 17:58:22 +00:00
// ask for the sound list next
2005-02-28 07:16:19 +00:00
// CL_SendClientCommand ("soundlist %i 0", cl.servercount);
2005-03-23 22:14:08 +00:00
CL_SendClientCommand ( true , soundlist_name , cl . servercount , 0 ) ;
2004-11-17 17:58:22 +00:00
}
2004-08-23 00:15:46 +00:00
// now waiting for downloads, etc
cls . state = ca_onserver ;
2006-01-10 18:50:23 +00:00
cl . sendprespawn = false ;
2004-08-23 00:15:46 +00:00
# ifdef VM_CG
CG_Stop ( ) ;
# endif
2005-02-09 19:32:09 +00:00
# ifdef CSQC_DAT
2005-03-10 03:55:18 +00:00
CSQC_Shutdown ( ) ; //revive it when we get the serverinfo saying the checksum.
2005-02-09 19:32:09 +00:00
# endif
2004-08-23 00:15:46 +00:00
}
void CLQ2_ParseServerData ( void )
{
char * str ;
int i ;
int svcnt ;
// int cflag;
2004-11-27 08:16:25 +00:00
sizeofcoord = 2 ;
sizeofangle = 1 ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
Con_DPrintf ( " Serverdata packet received. \n " ) ;
//
// wipe the client_state_t struct
//
SCR_BeginLoadingPlaque ( ) ;
// CL_ClearState ();
cls . state = ca_onserver ;
// parse protocol version number
i = MSG_ReadLong ( ) ;
// cls.serverProtocol = i;
if ( i > PROTOCOL_VERSION_Q2 | | i < PROTOCOL_VERSION_Q2_MIN )
Host_EndGame ( " Server returned version %i, not %i " , i , PROTOCOL_VERSION_Q2 ) ;
svcnt = MSG_ReadLong ( ) ;
/*cl.attractloop =*/ MSG_ReadByte ( ) ;
// game directory
str = MSG_ReadString ( ) ;
// strncpy (cl.gamedir, str, sizeof(cl.gamedir)-1);
// set gamedir
if ( ! * str )
COM_Gamedir ( " baseq2 " ) ;
else
COM_Gamedir ( str ) ;
COM_FlushFSCache ( ) ;
// if ((*str && (!fs_gamedirvar->string || !*fs_gamedirvar->string || strcmp(fs_gamedirvar->string, str))) || (!*str && (fs_gamedirvar->string || *fs_gamedirvar->string)))
// Cvar_Set("game", str);
2006-04-11 20:09:39 +00:00
Cvar_Get ( " timescale " , " 1 " , 0 , " Q2Admin hacks " ) ; //Q2Admin will kick players who have a timescale set to something other than 1
//FTE doesn't actually have a timescale cvar, so create one to fool q2admin.
//I can't really blame q2admin for rejecting engines that don't have this cvar, as it could have been renamed via a hex-edit.
2004-08-23 00:15:46 +00:00
CL_ClearState ( ) ;
cl . minpitch = - 89 ;
cl . maxpitch = 89 ;
cl . servercount = svcnt ;
Stats_NewMap ( ) ;
// parse player entity number
cl . playernum [ 0 ] = MSG_ReadShort ( ) ;
cl . splitclients = 1 ;
2005-05-13 10:42:48 +00:00
CL_RegisterSplitCommands ( ) ;
2004-08-23 00:15:46 +00:00
cl . spectator = false ;
2006-04-11 20:09:39 +00:00
cl . numq2visibleweapons = 1 ; //give it a default.
cl . q2visibleweapons [ 0 ] = " weapon.md2 " ;
2004-08-23 00:15:46 +00:00
// get the full level name
str = MSG_ReadString ( ) ;
Q_strncpyz ( cl . levelname , str , sizeof ( cl . levelname ) ) ;
if ( cl . playernum [ 0 ] = = - 1 )
{ // playing a cinematic or showing a pic, not a level
SCR_EndLoadingPlaque ( ) ;
if ( ! Media_PlayFilm ( str ) )
Con_TPrintf ( TLC_NOQ2CINEMATICSSUPPORT , cl . servercount ) ;
2004-08-27 00:48:03 +00:00
else
2005-07-14 01:57:34 +00:00
CL_MakeActive ( " Quake2 " ) ;
2004-08-23 00:15:46 +00:00
}
else
{
// seperate the printfs so the server message can have a color
Con_TPrintf ( TLC_LINEBREAK_NEWLEVEL ) ;
Con_TPrintf ( TLC_PC_PS_NL , 2 , str ) ;
2004-08-27 00:48:03 +00:00
Media_PlayFilm ( " " ) ;
2004-08-23 00:15:46 +00:00
// need to prep refresh at next oportunity
//cl.refresh_prepped = false;
}
2006-05-06 06:26:02 +00:00
Cvar_ForceCallback ( & r_particlesdesc ) ;
2004-08-23 00:15:46 +00:00
if ( R_PreNewMap )
R_PreNewMap ( ) ;
}
# ifdef NQPROT
//FIXME: move to header
void CL_KeepaliveMessage ( void ) { }
void CLNQ_ParseServerData ( void ) //Doesn't change gamedir - use with caution.
{
int nummodels , numsounds , i ;
char * str ;
int protover ;
if ( developer . value )
Con_TPrintf ( TLC_GOTSVDATAPACKET ) ;
CL_ClearState ( ) ;
Stats_NewMap ( ) ;
2006-05-06 06:26:02 +00:00
Cvar_ForceCallback ( & r_particlesdesc ) ;
2004-08-23 00:15:46 +00:00
2007-06-20 00:02:54 +00:00
Info_SetValueForStarKey ( cl . serverinfo , " *csprogs " , va ( " %i " , cl_dp_csqc_progscrc ) , sizeof ( cl . serverinfo ) ) ;
2005-09-26 03:40:09 +00:00
protover = MSG_ReadLong ( ) ;
2004-08-23 00:15:46 +00:00
2004-11-27 08:16:25 +00:00
sizeofcoord = 2 ;
sizeofangle = 1 ;
nq_dp_protocol = 0 ;
2004-12-05 08:19:54 +00:00
cls . z_ext = 0 ;
2004-11-27 08:16:25 +00:00
2004-08-23 00:15:46 +00:00
if ( protover = = 250 )
Host_EndGame ( " Nehahra demo net protocol is not supported \n " ) ;
2004-11-27 08:16:25 +00:00
else if ( protover = = 3502 )
{
//darkplaces5
nq_dp_protocol = 5 ;
sizeofcoord = 4 ;
sizeofangle = 2 ;
2005-09-26 03:40:09 +00:00
Con_DPrintf ( " DP5 protocols \n " ) ;
2004-11-27 08:16:25 +00:00
}
2005-05-27 05:41:07 +00:00
else if ( protover = = DP6_PROTOCOL_VERSION )
2004-12-05 08:19:54 +00:00
{
//darkplaces6 (it's a small difference from dp5)
nq_dp_protocol = 6 ;
sizeofcoord = 4 ;
sizeofangle = 2 ;
cls . z_ext = Z_EXT_VIEWHEIGHT ;
2005-09-26 03:40:09 +00:00
Con_DPrintf ( " DP6 protocols \n " ) ;
2004-12-05 08:19:54 +00:00
}
2005-05-27 05:41:07 +00:00
else if ( protover = = DP7_PROTOCOL_VERSION )
2005-05-26 12:55:34 +00:00
{
//darkplaces7 (it's a small difference from dp5)
nq_dp_protocol = 7 ;
sizeofcoord = 4 ;
sizeofangle = 2 ;
cls . z_ext = Z_EXT_VIEWHEIGHT ;
2005-09-26 03:40:09 +00:00
Con_DPrintf ( " DP7 protocols \n " ) ;
2005-05-26 12:55:34 +00:00
}
2004-08-23 00:15:46 +00:00
else if ( protover ! = NQ_PROTOCOL_VERSION )
{
Host_EndGame ( " Server returned version %i, not %i \n You will need to use a different client. " , protover , NQ_PROTOCOL_VERSION ) ;
}
2005-09-26 03:40:09 +00:00
else
{
Con_DPrintf ( " Standard NQ protocols \n " ) ;
}
2005-05-17 02:36:54 +00:00
if ( MSG_ReadByte ( ) > MAX_CLIENTS )
2004-08-23 00:15:46 +00:00
{
2006-01-28 19:04:13 +00:00
Con_Printf ( " \n Warning, this server supports more than %i clients, additional clients will do bad things \n " , MAX_CLIENTS ) ;
2004-08-23 00:15:46 +00:00
}
cl . splitclients = 1 ;
2005-05-13 10:42:48 +00:00
CL_RegisterSplitCommands ( ) ;
2004-08-23 00:15:46 +00:00
/*cl.gametype =*/ MSG_ReadByte ( ) ;
str = MSG_ReadString ( ) ;
Q_strncpyz ( cl . levelname , str , sizeof ( cl . levelname ) ) ;
// seperate the printfs so the server message can have a color
Con_TPrintf ( TLC_LINEBREAK_NEWLEVEL ) ;
Con_TPrintf ( TLC_PC_PS_NL , 2 , str ) ;
SCR_BeginLoadingPlaque ( ) ;
if ( R_PreNewMap )
R_PreNewMap ( ) ;
memset ( cl . model_name , 0 , sizeof ( cl . model_name ) ) ;
for ( nummodels = 1 ; ; nummodels + + )
{
str = MSG_ReadString ( ) ;
if ( ! str [ 0 ] )
break ;
if ( nummodels = = MAX_MODELS )
{
Con_TPrintf ( TLC_TOOMANYMODELPRECACHES ) ;
return ;
}
strcpy ( cl . model_name [ nummodels ] , str ) ;
Mod_TouchModel ( str ) ;
// cl.model_precache[nummodels] = Mod_ForName (cl.model_name[nummodels], false);
}
memset ( cl . sound_name , 0 , sizeof ( cl . sound_name ) ) ;
for ( numsounds = 1 ; ; numsounds + + )
{
2005-09-26 03:40:09 +00:00
str = MSG_ReadString ( ) ;
2004-08-23 00:15:46 +00:00
if ( ! str [ 0 ] )
break ;
if ( numsounds = = MAX_SOUNDS )
{
Con_TPrintf ( TLC_TOOMANYSOUNDPRECACHES ) ;
return ;
}
strcpy ( cl . sound_name [ numsounds ] , str ) ;
S_TouchSound ( str ) ;
// cl.sound_precache[numsounds] = S_PrecacheSound (cl.sound_name[numsounds]);
}
//
// now we try to load everything else until a cache allocation fails
//
for ( i = 1 ; i < nummodels ; i + + )
{
cl . model_precache [ i ] = Mod_ForName ( cl . model_name [ i ] , i = = 1 ) ;
// if (!ignorenonprecached.value || i == 1) //need world
{
if ( cl . model_precache [ i ] = = NULL )
{
2005-09-26 03:40:09 +00:00
Host_EndGame ( " Model %s not found \n " , cl . model_name [ i ] ) ;
2004-08-23 00:15:46 +00:00
}
}
CL_KeepaliveMessage ( ) ;
}
S_BeginPrecaching ( ) ;
for ( i = 1 ; i < numsounds ; i + + )
{
2005-09-26 03:40:09 +00:00
cl . sound_precache [ i ] = S_PrecacheSound ( cl . sound_name [ i ] ) ;
2004-08-23 00:15:46 +00:00
CL_KeepaliveMessage ( ) ;
}
S_EndPrecaching ( ) ;
cl . worldmodel = cl . model_precache [ 1 ] ;
R_NewMap ( ) ;
2005-05-19 02:53:03 +00:00
if ( cls . demoplayback )
CSQC_Init ( 0 ) ;
2004-08-23 00:15:46 +00:00
SCR_EndLoadingPlaque ( ) ;
Hunk_Check ( ) ; // make sure nothing is hurt
cls . state = ca_onserver ;
}
void CLNQ_SignonReply ( void )
2005-02-28 07:16:19 +00:00
{
2004-08-23 00:15:46 +00:00
extern cvar_t topcolor ;
extern cvar_t bottomcolor ;
2005-10-01 03:09:17 +00:00
extern cvar_t rate ;
extern cvar_t model ;
extern cvar_t skin ;
2004-08-23 00:15:46 +00:00
Con_DPrintf ( " CL_SignonReply: %i \n " , cls . signon ) ;
switch ( cls . signon )
{
case 1 :
2007-06-20 00:02:54 +00:00
cl . sendprespawn = true ;
// CL_SendClientCommand(true, "prespawn");
2004-08-23 00:15:46 +00:00
break ;
2005-09-26 03:40:09 +00:00
case 2 :
2005-03-23 22:14:08 +00:00
CL_SendClientCommand ( true , " name \" %s \" \n " , name . string ) ;
2005-09-26 03:40:09 +00:00
2005-03-23 22:14:08 +00:00
CL_SendClientCommand ( true , " color %i %i \n " , ( int ) topcolor . value , ( int ) bottomcolor . value ) ;
2005-09-26 03:40:09 +00:00
2005-03-23 22:14:08 +00:00
CL_SendClientCommand ( true , " spawn %s " , " " ) ;
2005-10-01 03:09:17 +00:00
if ( nq_dp_protocol ) //dp needs a couple of extras to work properly.
{
CL_SendClientCommand ( true , " rate %s " , rate . string ) ;
CL_SendClientCommand ( true , " playermodel %s " , model . string ) ;
CL_SendClientCommand ( true , " playerskin %s " , skin . string ) ;
2007-06-20 00:02:54 +00:00
{
char * s ;
s = Info_ValueForKey ( cl . serverinfo , " *csprogs " ) ;
if ( * s )
CSQC_Init ( atoi ( s ) ) ;
else
CSQC_Shutdown ( ) ;
}
2005-10-01 03:09:17 +00:00
}
2004-08-23 00:15:46 +00:00
break ;
2005-09-26 03:40:09 +00:00
case 3 :
2005-03-23 22:14:08 +00:00
CL_SendClientCommand ( true , " begin " ) ;
2004-08-23 00:15:46 +00:00
Cache_Report ( ) ; // print remaining memory
2004-08-23 04:43:03 +00:00
# ifdef VM_CG
2004-08-23 00:15:46 +00:00
CG_Start ( ) ;
2004-08-23 04:43:03 +00:00
# endif
2004-08-23 00:15:46 +00:00
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case 4 :
2005-09-26 03:40:09 +00:00
SCR_EndLoadingPlaque ( ) ; // allow normal screen updates
2004-08-23 00:15:46 +00:00
break ;
}
}
# define SU_VIEWHEIGHT (1<<0)
# define SU_IDEALPITCH (1<<1)
# define SU_PUNCH1 (1<<2)
# define SU_PUNCH2 (1<<3)
# define SU_PUNCH3 (1<<4)
# define SU_VELOCITY1 (1<<5)
# define SU_VELOCITY2 (1<<6)
# define SU_VELOCITY3 (1<<7)
//define SU_AIMENT (1<<8) AVAILABLE BIT
# define SU_ITEMS (1<<9)
# define SU_ONGROUND (1<<10) // no data follows, the bit is it
# define SU_INWATER (1<<11) // no data follows, the bit is it
# define SU_WEAPONFRAME (1<<12)
# define SU_ARMOR (1<<13)
# define SU_WEAPON (1<<14)
2004-11-27 08:16:25 +00:00
# define DPSU_EXTEND1 (1<<15)
// first extend byte
# define DPSU_PUNCHVEC1 (1<<16)
# define DPSU_PUNCHVEC2 (1<<17)
# define DPSU_PUNCHVEC3 (1<<18)
# define DPSU_VIEWZOOM (1<<19) // byte factor (0 = 0.0 (not valid), 255 = 1.0)
# define DPSU_UNUSED20 (1<<20)
# define DPSU_UNUSED21 (1<<21)
# define DPSU_UNUSED22 (1<<22)
# define DPSU_EXTEND2 (1<<23) // another byte to follow, future expansion
// second extend byte
# define DPSU_UNUSED24 (1<<24)
# define DPSU_UNUSED25 (1<<25)
# define DPSU_UNUSED26 (1<<26)
# define DPSU_UNUSED27 (1<<27)
# define DPSU_UNUSED28 (1<<28)
# define DPSU_UNUSED29 (1<<29)
# define DPSU_UNUSED30 (1<<30)
# define DPSU_EXTEND3 (1<<31) // another byte to follow, future expansion
2004-08-23 00:15:46 +00:00
# define DEFAULT_VIEWHEIGHT 22
2005-09-26 03:40:09 +00:00
void CLNQ_ParseClientdata ( void )
2004-08-23 00:15:46 +00:00
{
2004-12-05 08:19:54 +00:00
int i ;
2004-11-27 08:16:25 +00:00
2005-09-26 03:40:09 +00:00
unsigned int bits ;
2006-02-12 20:20:01 +00:00
bits = ( unsigned short ) MSG_ReadShort ( ) ;
2004-11-27 08:16:25 +00:00
if ( bits & DPSU_EXTEND1 )
bits | = ( MSG_ReadByte ( ) < < 16 ) ;
if ( bits & DPSU_EXTEND2 )
bits | = ( MSG_ReadByte ( ) < < 24 ) ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
if ( bits & SU_VIEWHEIGHT )
2004-12-05 08:19:54 +00:00
CL_SetStat ( 0 , STAT_VIEWHEIGHT , MSG_ReadChar ( ) ) ;
2005-05-26 12:55:34 +00:00
else if ( nq_dp_protocol < 6 )
2004-12-05 08:19:54 +00:00
CL_SetStat ( 0 , STAT_VIEWHEIGHT , DEFAULT_VIEWHEIGHT ) ;
2004-08-23 00:15:46 +00:00
if ( bits & SU_IDEALPITCH )
/*cl.idealpitch =*/ MSG_ReadChar ( ) ;
/*else
cl . idealpitch = 0 ; */
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
// VectorCopy (cl.mvelocity[0], cl.mvelocity[1]);
for ( i = 0 ; i < 3 ; i + + )
{
if ( bits & ( SU_PUNCH1 < < i ) )
2004-11-27 08:16:25 +00:00
/*cl.punchangle[i] =*/ nq_dp_protocol ? MSG_ReadAngle16 ( ) : MSG_ReadChar ( ) ;
2004-08-23 00:15:46 +00:00
// else
// cl.punchangle[i] = 0;
2004-11-27 08:16:25 +00:00
if ( bits & ( DPSU_PUNCHVEC1 < < i ) )
{
/*cl.punchvector[i] =*/ MSG_ReadCoord ( ) ;
}
// else
// cl.punchvector[i] = 0;
2004-08-23 00:15:46 +00:00
if ( bits & ( SU_VELOCITY1 < < i ) )
2004-11-27 08:16:25 +00:00
{
2005-05-26 12:55:34 +00:00
if ( nq_dp_protocol > = 5 )
2004-11-27 08:16:25 +00:00
/*cl.simvel[0][i] =*/ MSG_ReadFloat ( ) ;
else
2004-08-23 00:15:46 +00:00
/*cl.mvelocity[0][i] =*/ MSG_ReadChar ( ) /**16*/ ;
2004-11-27 08:16:25 +00:00
}
2004-08-23 00:15:46 +00:00
// else
// cl.mvelocity[0][i] = 0;
}
2004-12-05 08:19:54 +00:00
if ( bits & SU_ITEMS )
CL_SetStat ( 0 , STAT_ITEMS , MSG_ReadLong ( ) ) ;
2004-08-23 00:15:46 +00:00
// cl.onground = (bits & SU_ONGROUND) != 0;
// cl.inwater = (bits & SU_INWATER) != 0;
2005-05-26 12:55:34 +00:00
if ( nq_dp_protocol > = 6 )
2004-11-27 08:16:25 +00:00
{
2004-12-05 08:19:54 +00:00
}
else if ( nq_dp_protocol = = 5 )
{
CL_SetStat ( 0 , STAT_WEAPONFRAME , ( bits & SU_WEAPONFRAME ) ? ( unsigned short ) MSG_ReadShort ( ) : 0 ) ;
CL_SetStat ( 0 , STAT_ARMOR , ( bits & SU_ARMOR ) ? MSG_ReadShort ( ) : 0 ) ;
CL_SetStat ( 0 , STAT_WEAPON , ( bits & SU_WEAPON ) ? MSG_ReadShort ( ) : 0 ) ;
2004-11-27 08:16:25 +00:00
2004-12-05 08:19:54 +00:00
CL_SetStat ( 0 , STAT_HEALTH , MSG_ReadShort ( ) ) ;
2004-11-27 08:16:25 +00:00
2004-12-05 08:19:54 +00:00
CL_SetStat ( 0 , STAT_AMMO , MSG_ReadShort ( ) ) ;
2004-11-27 08:16:25 +00:00
2004-12-05 08:19:54 +00:00
CL_SetStat ( 0 , STAT_SHELLS , MSG_ReadShort ( ) ) ;
CL_SetStat ( 0 , STAT_NAILS , MSG_ReadShort ( ) ) ;
CL_SetStat ( 0 , STAT_ROCKETS , MSG_ReadShort ( ) ) ;
CL_SetStat ( 0 , STAT_CELLS , MSG_ReadShort ( ) ) ;
2004-08-23 00:15:46 +00:00
2004-12-05 08:19:54 +00:00
CL_SetStat ( 0 , STAT_ACTIVEWEAPON , ( unsigned short ) MSG_ReadShort ( ) ) ;
2004-08-23 00:15:46 +00:00
}
2004-11-27 08:16:25 +00:00
else
2004-08-23 00:15:46 +00:00
{
2004-12-05 08:19:54 +00:00
CL_SetStat ( 0 , STAT_WEAPONFRAME , ( bits & SU_WEAPONFRAME ) ? ( unsigned char ) MSG_ReadByte ( ) : 0 ) ;
CL_SetStat ( 0 , STAT_ARMOR , ( bits & SU_ARMOR ) ? MSG_ReadByte ( ) : 0 ) ;
CL_SetStat ( 0 , STAT_WEAPON , ( bits & SU_WEAPON ) ? MSG_ReadByte ( ) : 0 ) ;
2004-08-23 00:15:46 +00:00
2004-12-05 08:19:54 +00:00
CL_SetStat ( 0 , STAT_HEALTH , MSG_ReadShort ( ) ) ;
2004-08-23 00:15:46 +00:00
2004-12-05 08:19:54 +00:00
CL_SetStat ( 0 , STAT_AMMO , MSG_ReadByte ( ) ) ;
2004-11-27 08:16:25 +00:00
2004-12-05 08:19:54 +00:00
CL_SetStat ( 0 , STAT_SHELLS , MSG_ReadByte ( ) ) ;
CL_SetStat ( 0 , STAT_NAILS , MSG_ReadByte ( ) ) ;
CL_SetStat ( 0 , STAT_ROCKETS , MSG_ReadByte ( ) ) ;
CL_SetStat ( 0 , STAT_CELLS , MSG_ReadByte ( ) ) ;
2004-08-23 00:15:46 +00:00
2004-12-08 04:14:52 +00:00
CL_SetStat ( 0 , STAT_ACTIVEWEAPON , MSG_ReadByte ( ) ) ;
2004-08-23 00:15:46 +00:00
}
2004-11-27 08:16:25 +00:00
if ( bits & DPSU_VIEWZOOM )
{
2006-02-12 20:20:01 +00:00
if ( nq_dp_protocol > = 5 )
2004-11-27 08:16:25 +00:00
i = ( unsigned short ) MSG_ReadShort ( ) ;
else
i = MSG_ReadByte ( ) ;
if ( i < 2 )
i = 2 ;
2004-12-05 08:19:54 +00:00
CL_SetStat ( 0 , STAT_VIEWZOOM , i ) ;
2004-11-27 08:16:25 +00:00
}
2005-05-26 12:55:34 +00:00
else if ( nq_dp_protocol < 6 )
2004-12-05 08:19:54 +00:00
CL_SetStat ( 0 , STAT_VIEWZOOM , 255 ) ;
2004-08-23 00:15:46 +00:00
}
# endif
/*
= = = = = = = = = = = = = = = = = =
CL_ParseSoundlist
= = = = = = = = = = = = = = = = = =
*/
void CL_ParseSoundlist ( void )
{
int numsounds ;
char * str ;
int n ;
// precache sounds
// memset (cl.sound_precache, 0, sizeof(cl.sound_precache));
numsounds = MSG_ReadByte ( ) ;
2005-02-28 07:16:19 +00:00
for ( ; ; )
{
2004-08-23 00:15:46 +00:00
str = MSG_ReadString ( ) ;
if ( ! str [ 0 ] )
break ;
numsounds + + ;
2005-08-07 18:08:13 +00:00
if ( numsounds > = MAX_SOUNDS )
2004-08-23 00:15:46 +00:00
Host_EndGame ( " Server sent too many sound_precache " ) ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
// if (strlen(str)>4)
// if (!strcmp(str+strlen(str)-4, ".mp3")) //don't let the server send us a specific mp3. convert it to wav and this way we know not to look outside the quake path for it.
// strcpy(str+strlen(str)-4, ".wav");
2005-09-26 03:40:09 +00:00
strcpy ( cl . sound_name [ numsounds ] , str ) ;
2004-08-23 00:15:46 +00:00
}
n = MSG_ReadByte ( ) ;
2005-02-28 07:16:19 +00:00
if ( n )
{
2005-08-07 18:08:13 +00:00
if ( CL_RemoveClientCommands ( " soundlist " ) )
Con_Printf ( " Multiple soundlists \n " ) ;
2005-02-28 07:16:19 +00:00
// CL_SendClientCommand("soundlist %i %i", cl.servercount, n);
2005-03-23 22:14:08 +00:00
CL_SendClientCommand ( true , soundlist_name , cl . servercount , n ) ;
2004-08-23 00:15:46 +00:00
return ;
}
Sound_NextDownload ( ) ;
}
/*
= = = = = = = = = = = = = = = = = =
CL_ParseModellist
= = = = = = = = = = = = = = = = = =
*/
void CL_ParseModellist ( qboolean lots )
{
int nummodels ;
char * str ;
int n ;
// precache models and note certain default indexes
if ( lots )
nummodels = MSG_ReadShort ( ) ;
else
nummodels = MSG_ReadByte ( ) ;
for ( ; ; )
{
str = MSG_ReadString ( ) ;
if ( ! str [ 0 ] )
break ;
nummodels + + ;
2005-08-07 18:08:13 +00:00
if ( nummodels > = MAX_MODELS )
2004-08-23 00:15:46 +00:00
Host_EndGame ( " Server sent too many model_precache " ) ;
strcpy ( cl . model_name [ nummodels ] , str ) ;
if ( ! strcmp ( cl . model_name [ nummodels ] , " progs/spike.mdl " ) )
cl_spikeindex = nummodels ;
# ifdef PEXT_LIGHTUPDATES
if ( ! strcmp ( cl . model_name [ nummodels ] , " progs/zap.mdl " ) )
cl_lightningindex = nummodels ;
# endif
if ( ! strcmp ( cl . model_name [ nummodels ] , " progs/player.mdl " ) )
cl_playerindex = nummodels ;
2005-01-18 20:15:20 +00:00
if ( ! strcmp ( cl . model_name [ nummodels ] , " progs/h_player.mdl " ) )
cl_h_playerindex = nummodels ;
2004-08-23 00:15:46 +00:00
if ( ! strcmp ( cl . model_name [ nummodels ] , " progs/flag.mdl " ) )
cl_flagindex = nummodels ;
2005-01-17 17:40:21 +00:00
if ( ! strcmp ( cl . model_name [ nummodels ] , " progs/missile.mdl " ) )
cl_rocketindex = nummodels ;
if ( ! strcmp ( cl . model_name [ nummodels ] , " progs/grenade.mdl " ) )
cl_grenadeindex = nummodels ;
2005-01-18 20:15:20 +00:00
2005-09-26 03:40:09 +00:00
2005-01-18 20:15:20 +00:00
if ( ! strcmp ( cl . model_name [ nummodels ] , " progs/gib1.mdl " ) )
cl_gib1index = nummodels ;
if ( ! strcmp ( cl . model_name [ nummodels ] , " progs/gib2.mdl " ) )
cl_gib2index = nummodels ;
if ( ! strcmp ( cl . model_name [ nummodels ] , " progs/gib3.mdl " ) )
cl_gib3index = nummodels ;
2004-08-23 00:15:46 +00:00
}
if ( nummodels )
SCR_ImageName ( cl . model_name [ 1 ] ) ;
n = MSG_ReadByte ( ) ;
2005-02-28 07:16:19 +00:00
if ( n )
{
2006-01-02 23:00:10 +00:00
if ( CL_RemoveClientCommands ( " modellist " ) )
Con_Printf ( " Multiple modellists \n " ) ;
2005-02-28 07:16:19 +00:00
// CL_SendClientCommand("modellist %i %i", cl.servercount, n);
2005-03-23 22:14:08 +00:00
CL_SendClientCommand ( true , modellist_name , cl . servercount , ( nummodels & 0xff00 ) + n ) ;
2004-08-23 00:15:46 +00:00
return ;
}
Model_NextDownload ( ) ;
}
void CL_ProcessUserInfo ( int slot , player_info_t * player ) ;
2006-05-28 21:56:04 +00:00
# ifdef Q2CLIENT
2004-08-23 00:15:46 +00:00
void CLQ2_ParseClientinfo ( int i , char * s )
{
2005-03-20 02:57:11 +00:00
char * model , * name ;
2004-08-23 00:15:46 +00:00
player_info_t * player ;
//s contains "name\model/skin"
player = & cl . players [ i ] ;
* player - > userinfo = ' \0 ' ;
model = strchr ( s , ' \\ ' ) ;
if ( model )
{
* model = ' \0 ' ;
model + + ;
name = s ;
}
else
{
name = " Unnammed " ;
model = " male " ;
}
2005-03-20 02:57:11 +00:00
#if 0
2004-08-23 00:15:46 +00:00
skin = strchr ( model , ' / ' ) ;
if ( skin )
{
* skin = ' \0 ' ;
skin + + ;
}
else
skin = " " ;
Info_SetValueForKey ( player - > userinfo , " model " , model , MAX_INFO_STRING ) ;
Info_SetValueForKey ( player - > userinfo , " skin " , skin , MAX_INFO_STRING ) ;
2005-03-20 02:57:11 +00:00
# else
Info_SetValueForKey ( player - > userinfo , " skin " , model , MAX_INFO_STRING ) ;
# endif
Info_SetValueForKey ( player - > userinfo , " name " , name , MAX_INFO_STRING ) ;
cl . players [ i ] . userid = i ;
2007-07-23 18:52:11 +00:00
cl . players [ i ] . rbottomcolor = 1 ;
cl . players [ i ] . rtopcolor = 1 ;
2004-08-23 00:15:46 +00:00
CL_ProcessUserInfo ( i , player ) ;
}
void CLQ2_ParseConfigString ( void )
{
int i ;
char * s ;
// char olds[MAX_QPATH];
i = MSG_ReadShort ( ) ;
if ( i < 0 | | i > = Q2MAX_CONFIGSTRINGS )
Host_EndGame ( " configstring > Q2MAX_CONFIGSTRINGS " ) ;
s = MSG_ReadString ( ) ;
// strncpy (olds, cl.configstrings[i], sizeof(olds));
// olds[sizeof(olds) - 1] = 0;
// strcpy (cl.configstrings[i], s);
2005-09-26 03:40:09 +00:00
// do something apropriate
2004-08-23 00:15:46 +00:00
if ( i = = Q2CS_SKY )
{
Q_strncpyz ( cl . skyname , s , sizeof ( cl . skyname ) ) ;
}
2005-10-16 03:53:31 +00:00
else if ( i = = Q2CS_SKYAXIS )
{
s = COM_Parse ( s ) ;
2006-01-09 01:49:06 +00:00
if ( s )
{
cl . skyaxis [ 0 ] = atof ( com_token ) ;
s = COM_Parse ( s ) ;
if ( s )
{
cl . skyaxis [ 1 ] = atof ( com_token ) ;
s = COM_Parse ( s ) ;
if ( s )
cl . skyaxis [ 2 ] = atof ( com_token ) ;
}
}
2005-10-16 03:53:31 +00:00
}
else if ( i = = Q2CS_SKYROTATE )
cl . skyrotate = atof ( s ) ;
2004-08-23 00:15:46 +00:00
else if ( i = = Q2CS_STATUSBAR )
{
Q_strncpyz ( cl . q2statusbar , s , sizeof ( cl . q2statusbar ) ) ;
}
else if ( i > = Q2CS_LIGHTS & & i < Q2CS_LIGHTS + Q2MAX_LIGHTSTYLES )
{
# ifdef PEXT_LIGHTSTYLECOL
cl_lightstyle [ i - Q2CS_LIGHTS ] . colour = 7 ; //white
# endif
Q_strncpyz ( cl_lightstyle [ i - Q2CS_LIGHTS ] . map , s , sizeof ( cl_lightstyle [ i - Q2CS_LIGHTS ] . map ) ) ;
cl_lightstyle [ i - Q2CS_LIGHTS ] . length = Q_strlen ( cl_lightstyle [ i - Q2CS_LIGHTS ] . map ) ;
}
else if ( i = = Q2CS_CDTRACK )
{
// if (cl.refresh_prepped)
CDAudio_Play ( atoi ( s ) , true ) ;
}
else if ( i > = Q2CS_MODELS & & i < Q2CS_MODELS + Q2MAX_MODELS )
{
// if (cl.refresh_prepped)
{
Q_strncpyz ( cl . model_name [ i - Q2CS_MODELS ] , s , MAX_QPATH ) ;
2006-04-11 20:09:39 +00:00
if ( cl . model_name [ i - Q2CS_MODELS ] [ 0 ] = = ' # ' )
{
if ( cl . numq2visibleweapons < Q2MAX_VISIBLE_WEAPONS )
{
cl . q2visibleweapons [ cl . numq2visibleweapons ] = cl . model_name [ i - Q2CS_MODELS ] + 1 ;
cl . numq2visibleweapons + + ;
}
cl . model_precache [ i - Q2CS_MODELS ] = NULL ;
}
else
cl . model_precache [ i - Q2CS_MODELS ] = Mod_ForName ( cl . model_name [ i - Q2CS_MODELS ] , false ) ;
2004-08-23 00:15:46 +00:00
}
}
else if ( i > = Q2CS_SOUNDS & & i < Q2CS_SOUNDS + Q2MAX_MODELS )
{
// if (cl.refresh_prepped)
Q_strncpyz ( cl . sound_name [ i - Q2CS_SOUNDS ] , s , MAX_QPATH ) ;
cl . sound_precache [ i - Q2CS_SOUNDS ] = S_PrecacheSound ( s ) ;
}
else if ( i > = Q2CS_IMAGES & & i < Q2CS_IMAGES + Q2MAX_MODELS )
{ //ignore
Q_strncpyz ( cl . image_name [ i - Q2CS_IMAGES ] , s , MAX_QPATH ) ;
}
else if ( i > = Q2CS_PLAYERSKINS & & i < Q2CS_PLAYERSKINS + Q2MAX_CLIENTS )
{
// if (cl.refresh_prepped && strcmp(olds, s))
CLQ2_ParseClientinfo ( i - Q2CS_PLAYERSKINS , s ) ;
}
2006-04-08 05:43:53 +00:00
else if ( i = = Q2CS_MAPCHECKSUM )
{
extern int map_checksum ;
int serverchecksum = atoi ( s ) ;
if ( cl . worldmodel & & ( cl . worldmodel - > fromgame = = fg_quake2 | | cl . worldmodel - > fromgame = = fg_quake3 ) )
{
// the Q2 client normally exits here, however for our purposes we might as well ignore it
if ( map_checksum ! = serverchecksum )
Con_Printf ( S_WARNING " WARNING: Client checksum does not match server checksum (%i != %i) " , map_checksum , serverchecksum ) ;
}
}
2004-08-23 00:15:46 +00:00
2005-09-09 23:40:55 +00:00
# ifdef VM_UI
2004-08-23 00:15:46 +00:00
UI_StringChanged ( i ) ;
2005-09-09 23:40:55 +00:00
# endif
2004-08-23 00:15:46 +00:00
}
2006-05-28 21:56:04 +00:00
# endif
2004-08-23 00:15:46 +00:00
2006-07-24 04:24:41 +00:00
qboolean CL_CheckBaselines ( int size )
{
int i ;
if ( size < 0 )
return false ;
if ( size > MAX_EDICTS )
return false ;
size = ( size + 64 ) & ~ 63 ; // round up to next 64
if ( size < cl_baselines_count )
return true ;
cl_baselines = BZ_Realloc ( cl_baselines , sizeof ( * cl_baselines ) * size ) ;
for ( i = cl_baselines_count ; i < size ; i + + )
{
memcpy ( cl_baselines + i , & nullentitystate , sizeof ( * cl_baselines ) ) ;
}
cl_baselines_count = size ;
return true ;
}
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = = = = = = = =
CL_ParseBaseline
= = = = = = = = = = = = = = = = = =
*/
void CL_ParseBaseline ( entity_state_t * es )
{
int i ;
2006-02-27 00:42:25 +00:00
memcpy ( es , & nullentitystate , sizeof ( entity_state_t ) ) ;
2005-09-26 03:40:09 +00:00
2006-02-27 00:42:25 +00:00
es - > modelindex = MSG_ReadByte ( ) ;
2004-08-23 00:15:46 +00:00
es - > frame = MSG_ReadByte ( ) ;
es - > colormap = MSG_ReadByte ( ) ;
es - > skinnum = MSG_ReadByte ( ) ;
for ( i = 0 ; i < 3 ; i + + )
{
es - > origin [ i ] = MSG_ReadCoord ( ) ;
es - > angles [ i ] = MSG_ReadAngle ( ) ;
}
}
void CL_ParseBaseline2 ( void )
{
2006-02-27 00:42:25 +00:00
entity_state_t es ;
2004-08-23 00:15:46 +00:00
2006-02-27 00:42:25 +00:00
CL_ParseDelta ( & nullentitystate , & es , MSG_ReadShort ( ) , true ) ;
2006-07-24 04:24:41 +00:00
if ( ! CL_CheckBaselines ( es . number ) )
Host_EndGame ( " CL_ParseBaseline2: check baselines failed with size %i " , es . number ) ;
memcpy ( cl_baselines + es . number , & es , sizeof ( es ) ) ;
2004-08-23 00:15:46 +00:00
}
void CLQ2_Precache_f ( void )
{
2006-01-06 23:58:32 +00:00
cl . sendprespawn = true ;
2004-08-23 00:15:46 +00:00
# ifdef VM_CG
CG_Start ( ) ;
# endif
CL_RequestNextDownload ( ) ;
}
/*
= = = = = = = = = = = = = = = = = = = = =
CL_ParseStatic
Static entities are non - interactive world objects
like torches
= = = = = = = = = = = = = = = = = = = = =
*/
void CL_ParseStatic ( int version )
{
entity_t * ent ;
int i ;
2006-02-27 00:42:25 +00:00
entity_state_t es ;
2004-08-23 00:15:46 +00:00
if ( version = = 1 )
{
CL_ParseBaseline ( & es ) ;
i = cl . num_statics ;
cl . num_statics + + ;
}
else
{
2006-02-27 00:42:25 +00:00
CL_ParseDelta ( & nullentitystate , & es , MSG_ReadShort ( ) , true ) ;
2004-08-23 00:15:46 +00:00
es . number + = MAX_EDICTS ;
for ( i = 0 ; i < cl . num_statics ; i + + )
if ( cl_static_entities [ i ] . keynum = = es . number )
{
R_RemoveEfrags ( & cl_static_entities [ i ] ) ;
2005-09-09 02:01:30 +00:00
P_DelinkTrailstate ( & cl_static_emit [ i ] ) ;
2004-08-23 00:15:46 +00:00
break ;
}
if ( i = = cl . num_statics )
cl . num_statics + + ;
}
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
if ( i > = MAX_STATIC_ENTITIES )
{
cl . num_statics - - ;
Con_Printf ( " Too many static entities " ) ;
return ;
}
ent = & cl_static_entities [ i ] ;
2006-03-06 21:11:50 +00:00
memset ( ent , 0 , sizeof ( * ent ) ) ;
2005-09-09 02:01:30 +00:00
cl_static_emit [ i ] = NULL ;
2004-08-23 00:15:46 +00:00
ent - > keynum = es . number ;
// copy it to the current state
ent - > model = cl . model_precache [ es . modelindex ] ;
ent - > oldframe = ent - > frame = es . frame ;
2005-12-22 21:46:28 +00:00
# ifdef SWQUAKE
2005-12-22 20:35:04 +00:00
ent - > palremap = D_IdentityRemap ( ) ;
2005-12-22 21:46:28 +00:00
# endif
2004-08-23 00:15:46 +00:00
ent - > skinnum = es . skinnum ;
2005-05-15 18:49:04 +00:00
ent - > drawflags = es . hexen2flags ;
2004-08-23 00:15:46 +00:00
# ifdef PEXT_SCALE
2005-07-01 19:23:00 +00:00
ent - > scale = es . scale / 16.0 ;
2004-08-23 00:15:46 +00:00
# endif
2006-02-27 00:42:25 +00:00
ent - > shaderRGBAf [ 0 ] = ( 8.0f / 255.0f ) * es . colormod [ 0 ] ;
ent - > shaderRGBAf [ 1 ] = ( 8.0f / 255.0f ) * es . colormod [ 1 ] ;
ent - > shaderRGBAf [ 2 ] = ( 8.0f / 255.0f ) * es . colormod [ 2 ] ;
ent - > shaderRGBAf [ 3 ] = es . trans / 255 ;
2005-07-01 19:23:00 +00:00
ent - > fatness = es . fatness / 2.0 ;
2004-08-23 00:15:46 +00:00
ent - > abslight = es . abslight ;
VectorCopy ( es . origin , ent - > origin ) ;
VectorCopy ( es . angles , ent - > angles ) ;
2004-11-17 17:58:22 +00:00
es . angles [ 0 ] * = - 1 ;
AngleVectors ( es . angles , ent - > axis [ 0 ] , ent - > axis [ 1 ] , ent - > axis [ 2 ] ) ;
2004-11-22 00:00:54 +00:00
VectorInverse ( ent - > axis [ 1 ] ) ;
2004-08-23 00:15:46 +00:00
if ( ! cl . worldmodel )
{
Con_TPrintf ( TLC_PARSESTATICWITHNOMAP ) ;
return ;
}
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
R_AddEfrags ( ent ) ;
}
/*
= = = = = = = = = = = = = = = = = = =
CL_ParseStaticSound
= = = = = = = = = = = = = = = = = = =
*/
void CL_ParseStaticSound ( void )
{
2005-01-13 16:29:20 +00:00
extern cvar_t cl_staticsounds ;
2004-08-23 00:15:46 +00:00
vec3_t org ;
int sound_num , vol , atten ;
int i ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
for ( i = 0 ; i < 3 ; i + + )
org [ i ] = MSG_ReadCoord ( ) ;
sound_num = MSG_ReadByte ( ) ;
vol = MSG_ReadByte ( ) ;
atten = MSG_ReadByte ( ) ;
2005-01-13 16:29:20 +00:00
if ( ! cl_staticsounds . value )
return ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
S_StaticSound ( cl . sound_precache [ sound_num ] , org , vol , atten ) ;
}
/*
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
ACTION MESSAGES
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
*/
/*
= = = = = = = = = = = = = = = = = =
CL_ParseStartSoundPacket
= = = = = = = = = = = = = = = = = =
*/
void CL_ParseStartSoundPacket ( void )
{
vec3_t pos ;
int channel , ent ;
int sound_num ;
int volume ;
2005-09-26 03:40:09 +00:00
float attenuation ;
2004-08-23 00:15:46 +00:00
int i ;
2005-09-26 03:40:09 +00:00
channel = MSG_ReadShort ( ) ;
2004-08-23 00:15:46 +00:00
if ( channel & SND_VOLUME )
volume = MSG_ReadByte ( ) ;
else
volume = DEFAULT_SOUND_PACKET_VOLUME ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
if ( channel & SND_ATTENUATION )
attenuation = MSG_ReadByte ( ) / 64.0 ;
else
attenuation = DEFAULT_SOUND_PACKET_ATTENUATION ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
sound_num = MSG_ReadByte ( ) ;
for ( i = 0 ; i < 3 ; i + + )
pos [ i ] = MSG_ReadCoord ( ) ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
ent = ( channel > > 3 ) & 1023 ;
channel & = 7 ;
if ( ent > MAX_EDICTS )
Host_EndGame ( " CL_ParseStartSoundPacket: ent = %i " , ent ) ;
2005-09-26 03:40:09 +00:00
2005-08-03 23:14:59 +00:00
# ifdef PEXT_CSQC
2005-08-11 04:14:33 +00:00
if ( ! CSQC_StartSound ( ent , channel , cl . sound_name [ sound_num ] , pos , volume / 255.0 , attenuation ) )
2005-08-03 23:14:59 +00:00
# endif
S_StartSound ( ent , channel , cl . sound_precache [ sound_num ] , pos , volume / 255.0 , attenuation ) ;
2004-08-23 00:15:46 +00:00
2005-06-04 04:20:20 +00:00
if ( ent = = cl . playernum [ 0 ] + 1 )
TP_CheckPickupSound ( cl . sound_name [ sound_num ] , pos ) ;
2004-08-23 00:15:46 +00:00
}
# ifdef Q2CLIENT
void CLQ2_ParseStartSoundPacket ( void )
{
vec3_t pos_v ;
float * pos ;
int channel , ent ;
int sound_num ;
float volume ;
2005-09-26 03:40:09 +00:00
float attenuation ;
2004-08-23 00:15:46 +00:00
int flags ;
float ofs ;
flags = MSG_ReadByte ( ) ;
sound_num = MSG_ReadByte ( ) ;
if ( flags & Q2SND_VOLUME )
volume = MSG_ReadByte ( ) / 255.0 ;
else
volume = Q2DEFAULT_SOUND_PACKET_VOLUME ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
if ( flags & Q2SND_ATTENUATION )
attenuation = MSG_ReadByte ( ) / 64.0 ;
else
2005-09-26 03:40:09 +00:00
attenuation = Q2DEFAULT_SOUND_PACKET_ATTENUATION ;
2004-08-23 00:15:46 +00:00
if ( flags & Q2SND_OFFSET )
ofs = MSG_ReadByte ( ) / 1000.0 ;
else
ofs = 0 ;
if ( flags & Q2SND_ENT )
{ // entity reletive
2005-09-26 03:40:09 +00:00
channel = MSG_ReadShort ( ) ;
2004-08-23 00:15:46 +00:00
ent = channel > > 3 ;
if ( ent > MAX_EDICTS )
Host_EndGame ( " CL_ParseStartSoundPacket: ent = %i " , ent ) ;
channel & = 7 ;
}
else
{
ent = 0 ;
channel = 0 ;
}
if ( flags & Q2SND_POS )
{ // positioned in space
MSG_ReadPos ( pos_v ) ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
pos = pos_v ;
}
else // use entity number
{
CL_GetNumberedEntityInfo ( ent , pos_v , NULL ) ;
pos = pos_v ;
// pos = NULL;
}
if ( ! cl . sound_precache [ sound_num ] )
return ;
2006-04-11 20:09:39 +00:00
if ( cl . sound_precache [ sound_num ] - > name [ 0 ] = = ' * ' & & ent > 0 & & ent < = MAX_CLIENTS )
{ //a 'sexed' sound
char * model = Info_ValueForKey ( cl . players [ ent - 1 ] . userinfo , " skin " ) ;
char * skin ;
skin = strchr ( model , ' / ' ) ;
if ( skin )
* skin = ' \0 ' ;
if ( * model )
{
S_StartSound ( ent , channel , S_PrecacheSound ( va ( " players/%s/%s " , model , cl . sound_precache [ sound_num ] - > name + 1 ) ) , pos , volume , attenuation ) ;
return ;
}
}
2004-08-23 00:15:46 +00:00
S_StartSound ( ent , channel , cl . sound_precache [ sound_num ] , pos , volume , attenuation ) ;
}
# endif
# ifdef NQPROT
# define NQSND_VOLUME (1<<0) // a qbyte
# define NQSND_ATTENUATION (1<<1) // a qbyte
void CLNQ_ParseStartSoundPacket ( void )
{
vec3_t pos ;
int channel , ent ;
int sound_num ;
int volume ;
int field_mask ;
2005-09-26 03:40:09 +00:00
float attenuation ;
2004-08-23 00:15:46 +00:00
int i ;
2005-09-26 03:40:09 +00:00
field_mask = MSG_ReadByte ( ) ;
2004-08-23 00:15:46 +00:00
if ( field_mask & NQSND_VOLUME )
volume = MSG_ReadByte ( ) ;
else
volume = DEFAULT_SOUND_PACKET_VOLUME ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
if ( field_mask & NQSND_ATTENUATION )
attenuation = MSG_ReadByte ( ) / 64.0 ;
else
attenuation = DEFAULT_SOUND_PACKET_ATTENUATION ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
channel = MSG_ReadShort ( ) ;
sound_num = MSG_ReadByte ( ) ;
ent = channel > > 3 ;
channel & = 7 ;
if ( ent > MAX_EDICTS )
Host_EndGame ( " CL_ParseStartSoundPacket: ent = %i " , ent ) ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
for ( i = 0 ; i < 3 ; i + + )
pos [ i ] = MSG_ReadCoord ( ) ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
S_StartSound ( ent , channel , cl . sound_precache [ sound_num ] , pos , volume / 255.0 , attenuation ) ;
2005-06-04 04:20:20 +00:00
if ( ent = = cl . playernum [ 0 ] + 1 )
TP_CheckPickupSound ( cl . sound_name [ sound_num ] , pos ) ;
2005-09-26 03:40:09 +00:00
}
2004-08-23 00:15:46 +00:00
# endif
/*
= = = = = = = = = = = = = = = = = =
CL_ParseClientdata
Server information pertaining to this client only , sent every frame
= = = = = = = = = = = = = = = = = =
*/
void CL_ParseClientdata ( void )
{
int i ;
float latency ;
frame_t * frame ;
// calculate simulated time of message
oldparsecountmod = parsecountmod ;
i = cls . netchan . incoming_acknowledged ;
2004-08-27 00:48:03 +00:00
if ( cls . demoplayback = = DPB_MVD )
cl . oldparsecount = i - 1 ;
2004-08-23 00:15:46 +00:00
cl . parsecount = i ;
i & = UPDATE_MASK ;
parsecountmod = i ;
frame = & cl . frames [ i ] ;
2004-08-27 00:48:03 +00:00
if ( cls . demoplayback = = DPB_MVD )
frame - > senttime = realtime - host_frametime ;
2004-08-23 00:15:46 +00:00
parsecounttime = cl . frames [ i ] . senttime ;
2005-10-01 03:09:17 +00:00
frame - > receivedtime = ( cl . gametimemark - cl . oldgametimemark ) * 20 ;
2004-08-23 00:15:46 +00:00
// calculate latency
latency = frame - > receivedtime - frame - > senttime ;
if ( latency < 0 | | latency > 1.0 )
{
// Con_Printf ("Odd latency: %5.2f\n", latency);
}
else
{
// drift the average latency towards the observed latency
if ( latency < cls . latency )
cls . latency = latency ;
else
cls . latency + = 0.001 ; // drift up, so correction are needed
2005-09-26 03:40:09 +00:00
}
2004-08-23 00:15:46 +00:00
}
/*
= = = = = = = = = = = = = = = = = = = = =
CL_NewTranslation
= = = = = = = = = = = = = = = = = = = = =
*/
void CL_NewTranslation ( int slot )
{
int top , bottom ;
2005-11-30 01:20:53 +00:00
int local ;
2004-08-23 00:15:46 +00:00
2004-12-29 03:24:21 +00:00
char * s ;
player_info_t * player ;
2005-01-23 17:47:04 +00:00
if ( slot > = MAX_CLIENTS )
2006-03-12 22:01:49 +00:00
Host_Error ( " CL_NewTranslation: slot > MAX_CLIENTS " ) ;
2004-12-29 03:24:21 +00:00
player = & cl . players [ slot ] ;
s = Skin_FindName ( player ) ;
2006-03-11 03:12:10 +00:00
COM_StripExtension ( s , s , MAX_QPATH ) ;
2004-12-29 03:24:21 +00:00
if ( player - > skin & & ! stricmp ( s , player - > skin - > name ) )
player - > skin = NULL ;
2007-07-23 18:52:11 +00:00
top = player - > rtopcolor ;
bottom = player - > rbottomcolor ;
if ( cl . splitclients < 2 & & ! ( cl . fpd & FPD_NO_FORCE_COLOR ) ) //no colour/skin forcing in splitscreen.
2004-08-23 00:15:46 +00:00
{
2007-07-23 18:52:11 +00:00
if ( cl . teamplay & & cl . spectator )
2004-09-26 00:30:42 +00:00
{
2007-07-23 18:52:11 +00:00
local = Cam_TrackNum ( 0 ) ;
if ( local < 0 )
2005-06-14 04:52:10 +00:00
local = cl . playernum [ 0 ] ;
2004-09-26 00:30:42 +00:00
}
2007-07-23 18:52:11 +00:00
else
local = cl . playernum [ 0 ] ;
if ( cl . teamplay & & ! strcmp ( player - > team , cl . players [ local ] . team ) )
{
if ( cl_teamtopcolor > = 0 )
top = cl_teamtopcolor ;
if ( cl_teambottomcolor > = 0 )
bottom = cl_teambottomcolor ;
}
else
{
if ( cl_enemytopcolor > = 0 )
top = cl_enemytopcolor ;
if ( cl_enemybottomcolor > = 0 )
bottom = cl_enemybottomcolor ;
}
}
2004-09-26 00:30:42 +00:00
2007-07-23 18:52:11 +00:00
if ( top > 13 | | top < 0 )
top = 13 ;
if ( bottom > 13 | | bottom < 0 )
bottom = 13 ;
2004-09-26 00:30:42 +00:00
2007-07-23 18:52:11 +00:00
# ifdef SWQUAKE
if ( qrenderer = = QR_SOFTWARE )
{
if ( player - > ttopcolor ! = top | | player - > tbottomcolor ! = bottom | | ! player - > skin )
{
player - > ttopcolor = top ;
player - > tbottomcolor = bottom ;
2005-12-22 20:35:04 +00:00
D_DereferenceRemap ( player - > palremap ) ;
player - > palremap = D_GetPaletteRemap ( 255 , 255 , 255 , false , true , top , bottom ) ;
2004-08-23 00:15:46 +00:00
}
2006-09-17 00:59:22 +00:00
return ;
2004-08-23 00:15:46 +00:00
}
# endif
2007-07-23 18:52:11 +00:00
//other renderers still need the team stuff set, but that's all
player - > ttopcolor = top ;
player - > tbottomcolor = bottom ;
2004-08-23 00:15:46 +00:00
}
/*
= = = = = = = = = = = = = =
CL_UpdateUserinfo
= = = = = = = = = = = = = =
*/
void CL_ProcessUserInfo ( int slot , player_info_t * player )
{
Q_strncpyz ( player - > name , Info_ValueForKey ( player - > userinfo , " name " ) , sizeof ( player - > name ) ) ;
Q_strncpyz ( player - > team , Info_ValueForKey ( player - > userinfo , " team " ) , sizeof ( player - > team ) ) ;
2007-07-23 18:52:11 +00:00
player - > rtopcolor = atoi ( Info_ValueForKey ( player - > userinfo , " topcolor " ) ) ;
player - > rbottomcolor = atoi ( Info_ValueForKey ( player - > userinfo , " bottomcolor " ) ) ;
2005-01-17 17:40:21 +00:00
if ( atoi ( Info_ValueForKey ( player - > userinfo , " *spectator " ) ) )
2004-08-23 00:15:46 +00:00
player - > spectator = true ;
else
player - > spectator = false ;
if ( slot = = cl . playernum [ 0 ] & & player - > name [ 0 ] )
cl . spectator = player - > spectator ;
2004-11-27 08:16:25 +00:00
player - > model = NULL ;
2004-08-23 00:15:46 +00:00
if ( cls . state = = ca_active )
Skin_Find ( player ) ;
Sbar_Changed ( ) ;
CL_NewTranslation ( slot ) ;
}
/*
= = = = = = = = = = = = = =
CL_UpdateUserinfo
= = = = = = = = = = = = = =
*/
void CL_UpdateUserinfo ( void )
{
int slot ;
player_info_t * player ;
slot = MSG_ReadByte ( ) ;
if ( slot > = MAX_CLIENTS )
Host_EndGame ( " CL_ParseServerMessage: svc_updateuserinfo > MAX_SCOREBOARD " ) ;
player = & cl . players [ slot ] ;
player - > userid = MSG_ReadLong ( ) ;
Q_strncpyz ( player - > userinfo , MSG_ReadString ( ) , sizeof ( player - > userinfo ) ) ;
CL_ProcessUserInfo ( slot , player ) ;
2006-02-22 23:35:04 +00:00
if ( slot = = cl . playernum [ 0 ] & & player - > name [ 0 ] )
{
char * qz ;
qz = Info_ValueForKey ( player - > userinfo , " Qizmo " ) ;
if ( * qz )
TP_ExecTrigger ( " f_qizmoconnect " ) ;
}
2004-08-23 00:15:46 +00:00
}
/*
= = = = = = = = = = = = = =
CL_SetInfo
= = = = = = = = = = = = = =
*/
2007-02-23 00:21:33 +00:00
void CL_ParseSetInfo ( void )
2004-08-23 00:15:46 +00:00
{
int slot ;
player_info_t * player ;
char key [ MAX_QWMSGLEN ] ;
char value [ MAX_QWMSGLEN ] ;
slot = MSG_ReadByte ( ) ;
if ( slot > = MAX_CLIENTS )
Host_EndGame ( " CL_ParseServerMessage: svc_setinfo > MAX_SCOREBOARD " ) ;
player = & cl . players [ slot ] ;
Q_strncpyz ( key , MSG_ReadString ( ) , sizeof ( key ) ) ;
Q_strncpyz ( value , MSG_ReadString ( ) , sizeof ( value ) ) ;
Con_DPrintf ( " SETINFO %s: %s=%s \n " , player - > name , key , value ) ;
2005-03-07 08:58:26 +00:00
Info_SetValueForStarKey ( player - > userinfo , key , value , sizeof ( player - > userinfo ) ) ;
2004-08-23 00:15:46 +00:00
CL_ProcessUserInfo ( slot , player ) ;
}
/*
= = = = = = = = = = = = = =
CL_ServerInfo
= = = = = = = = = = = = = =
*/
void CL_ServerInfo ( void )
{
// int slot;
// player_info_t *player;
char key [ MAX_QWMSGLEN ] ;
char value [ MAX_QWMSGLEN ] ;
Q_strncpyz ( key , MSG_ReadString ( ) , sizeof ( key ) ) ;
Q_strncpyz ( value , MSG_ReadString ( ) , sizeof ( value ) ) ;
Con_DPrintf ( " SERVERINFO: %s=%s \n " , key , value ) ;
Info_SetValueForKey ( cl . serverinfo , key , value , MAX_SERVERINFO_STRING ) ;
CL_CheckServerInfo ( ) ;
}
/*
= = = = = = = = = = = = = = = = = = = = =
CL_SetStat
= = = = = = = = = = = = = = = = = = = = =
*/
void CL_SetStat ( int pnum , int stat , int value )
{
int j ;
if ( stat < 0 | | stat > = MAX_CL_STATS )
return ;
// Host_EndGame ("CL_SetStat: %i is invalid", stat);
2004-12-08 04:14:52 +00:00
if ( cls . demoplayback = = DPB_MVD )
{
extern int cls_lastto ;
cl . players [ cls_lastto ] . stats [ stat ] = value ;
if ( spec_track [ pnum ] ! = cls_lastto )
return ;
}
2004-12-05 08:19:54 +00:00
if ( cl . stats [ pnum ] [ stat ] ! = value )
Sbar_Changed ( ) ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
if ( stat = = STAT_ITEMS )
{ // set flash times
for ( j = 0 ; j < 32 ; j + + )
if ( ( value & ( 1 < < j ) ) & & ! ( cl . stats [ pnum ] [ stat ] & ( 1 < < j ) ) )
cl . item_gettime [ pnum ] [ j ] = cl . time ;
}
if ( stat = = STAT_VIEWHEIGHT & & cls . z_ext & Z_EXT_VIEWHEIGHT )
cl . viewheight [ pnum ] = value ;
2005-11-30 01:20:53 +00:00
if ( stat = = STAT_TIME & & ( cls . fteprotocolextensions & PEXT_ACCURATETIMINGS ) )
2004-08-23 00:15:46 +00:00
{
2005-10-01 03:09:17 +00:00
cl . oldgametime = cl . gametime ;
cl . oldgametimemark = cl . gametimemark ;
2004-08-23 00:15:46 +00:00
cl . gametime = value * 0.001 ;
cl . gametimemark = realtime ;
}
2005-07-14 01:57:34 +00:00
if ( stat = = STAT_WEAPON )
{
if ( cl . stats [ pnum ] [ stat ] ! = value )
{
if ( value = = 0 )
TP_ExecTrigger ( " f_reloadstart " ) ;
else if ( cl . stats [ pnum ] [ stat ] = = 0 )
TP_ExecTrigger ( " f_reloadend " ) ;
}
}
2004-08-23 00:15:46 +00:00
cl . stats [ pnum ] [ stat ] = value ;
2004-09-30 22:42:34 +00:00
if ( pnum = = 0 )
TP_StatChanged ( stat , value ) ;
2004-08-23 00:15:46 +00:00
}
/*
= = = = = = = = = = = = = =
CL_MuzzleFlash
= = = = = = = = = = = = = =
*/
2005-06-04 12:40:12 +00:00
void CL_MuzzleFlash ( int destsplit )
2004-08-23 00:15:46 +00:00
{
vec3_t fv , rv , uv ;
dlight_t * dl = NULL ;
int i ;
player_state_t * pl ;
packet_entities_t * pack ;
entity_state_t * s1 ;
int pnum ;
2005-01-13 16:29:20 +00:00
extern cvar_t cl_muzzleflash ;
2004-08-23 00:15:46 +00:00
i = MSG_ReadShort ( ) ;
2005-01-13 16:29:20 +00:00
//was it us?
2005-06-04 12:40:12 +00:00
if ( ! cl_muzzleflash . value ) // remove all muzzleflashes
return ;
2004-08-23 00:15:46 +00:00
2005-06-04 12:40:12 +00:00
if ( i - 1 = = cl . playernum [ destsplit ] & & cl_muzzleflash . value = = 2 )
return ;
2004-08-23 00:15:46 +00:00
2005-09-26 03:40:09 +00:00
pack = & cl . frames [ cls . netchan . incoming_sequence & UPDATE_MASK ] . packet_entities ;
2004-08-23 00:15:46 +00:00
for ( pnum = 0 ; pnum < pack - > num_entities ; pnum + + ) //try looking for an entity with that id first
{
s1 = & pack - > entities [ pnum ] ;
if ( s1 - > number = = i )
{
dl = CL_AllocDlight ( i ) ;
VectorCopy ( s1 - > origin , dl - > origin ) ;
break ;
}
}
if ( pnum = = pack - > num_entities )
{ //that ent number doesn't exist, go for a player with that number
if ( ( unsigned ) ( i ) < = MAX_CLIENTS & & i > 0 )
{
// don't draw our own muzzle flash in gl if flashblending
2005-06-04 12:40:12 +00:00
if ( i - 1 = = cl . playernum [ destsplit ] & & r_flashblend . value & & qrenderer = = QR_OPENGL )
2004-08-23 00:15:46 +00:00
return ;
pl = & cl . frames [ parsecountmod ] . playerstate [ i - 1 ] ;
dl = CL_AllocDlight ( i ) ;
VectorCopy ( pl - > origin , dl - > origin ) ; //set it's origin
AngleVectors ( pl - > viewangles , fv , rv , uv ) ; //shift it up a little
VectorMA ( dl - > origin , 18 , fv , dl - > origin ) ;
}
else
return ;
}
dl - > radius = 200 + ( rand ( ) & 31 ) ;
dl - > minlight = 32 ;
dl - > die = cl . time + 0.1334 ;
dl - > color [ 0 ] = 0.2 ;
dl - > color [ 1 ] = 0.1 ;
dl - > color [ 2 ] = 0.05 ;
2005-06-04 04:20:20 +00:00
dl - > channelfade [ 0 ] = 1.5 ;
dl - > channelfade [ 1 ] = 0.75 ;
2004-08-23 00:15:46 +00:00
dl - > channelfade [ 2 ] = 0.375 ;
}
# ifdef Q2CLIENT
void Q2S_StartSound ( vec3_t origin , int entnum , int entchannel , sfx_t * sfx , float fvol , float attenuation , float timeofs ) ;
void CLQ2_ParseMuzzleFlash ( void )
{
vec3_t fv , rv , dummy ;
dlight_t * dl ;
int i , weapon ;
vec3_t org , ang ;
int silenced ;
float volume ;
char soundname [ 64 ] ;
i = MSG_ReadShort ( ) ;
if ( i < 1 | | i > = Q2MAX_EDICTS )
Host_Error ( " CL_ParseMuzzleFlash: bad entity " ) ;
weapon = MSG_ReadByte ( ) ;
silenced = weapon & Q2MZ_SILENCED ;
weapon & = ~ Q2MZ_SILENCED ;
CL_GetNumberedEntityInfo ( i , org , ang ) ;
dl = CL_AllocDlight ( i ) ;
VectorCopy ( org , dl - > origin ) ;
AngleVectors ( ang , fv , rv , dummy ) ;
VectorMA ( dl - > origin , 18 , fv , dl - > origin ) ;
VectorMA ( dl - > origin , 16 , rv , dl - > origin ) ;
if ( silenced )
dl - > radius = 100 + ( rand ( ) & 31 ) ;
else
dl - > radius = 200 + ( rand ( ) & 31 ) ;
dl - > minlight = 32 ;
dl - > die = cl . time + 0.05 ; //+ 0.1;
dl - > decay = 1 ;
dl - > channelfade [ 0 ] = 2 ;
dl - > channelfade [ 1 ] = 2 ;
dl - > channelfade [ 2 ] = 2 ;
if ( silenced )
volume = 0.2 ;
else
volume = 1 ;
switch ( weapon )
{
case Q2MZ_BLASTER :
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0.2 ; dl - > color [ 2 ] = 0 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/blastf1a.wav " ) , volume , ATTN_NORM , 0 ) ;
break ;
case Q2MZ_BLUEHYPERBLASTER :
dl - > color [ 0 ] = 0 ; dl - > color [ 1 ] = 0 ; dl - > color [ 2 ] = 0.2 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/hyprbf1a.wav " ) , volume , ATTN_NORM , 0 ) ;
break ;
case Q2MZ_HYPERBLASTER :
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0.2 ; dl - > color [ 2 ] = 0 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/hyprbf1a.wav " ) , volume , ATTN_NORM , 0 ) ;
break ;
case Q2MZ_MACHINEGUN :
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0.2 ; dl - > color [ 2 ] = 0 ;
2006-03-06 01:41:09 +00:00
snprintf ( soundname , sizeof ( soundname ) , " weapons/machgf%ib.wav " , ( rand ( ) % 5 ) + 1 ) ;
2004-08-23 00:15:46 +00:00
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( soundname ) , volume , ATTN_NORM , 0 ) ;
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case Q2MZ_SHOTGUN :
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0.2 ; dl - > color [ 2 ] = 0 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/shotgf1b.wav " ) , volume , ATTN_NORM , 0 ) ;
Q2S_StartSound ( NULL , i , CHAN_AUTO , S_PrecacheSound ( " weapons/shotgr1b.wav " ) , volume , ATTN_NORM , 0.1 ) ;
break ;
case Q2MZ_SSHOTGUN :
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0.2 ; dl - > color [ 2 ] = 0 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/sshotf1b.wav " ) , volume , ATTN_NORM , 0 ) ;
break ;
case Q2MZ_CHAINGUN1 :
dl - > radius = 200 + ( rand ( ) & 31 ) ;
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0.05 ; dl - > color [ 2 ] = 0 ;
2006-03-06 01:41:09 +00:00
snprintf ( soundname , sizeof ( soundname ) , " weapons/machgf%ib.wav " , ( rand ( ) % 5 ) + 1 ) ;
2004-08-23 00:15:46 +00:00
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( soundname ) , volume , ATTN_NORM , 0 ) ;
break ;
case Q2MZ_CHAINGUN2 :
dl - > radius = 225 + ( rand ( ) & 31 ) ;
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0.1 ; dl - > color [ 2 ] = 0 ;
dl - > die = cl . time + 0.1 ; // long delay
2006-03-06 01:41:09 +00:00
snprintf ( soundname , sizeof ( soundname ) , " weapons/machgf%ib.wav " , ( rand ( ) % 5 ) + 1 ) ;
2004-08-23 00:15:46 +00:00
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( soundname ) , volume , ATTN_NORM , 0 ) ;
2006-03-06 01:41:09 +00:00
snprintf ( soundname , sizeof ( soundname ) , " weapons/machgf%ib.wav " , ( rand ( ) % 5 ) + 1 ) ;
2006-05-10 07:35:19 +00:00
Q2S_StartSound ( NULL , i , CHAN_AUTO , S_PrecacheSound ( soundname ) , volume , ATTN_NORM , 0.05 ) ;
2004-08-23 00:15:46 +00:00
break ;
case Q2MZ_CHAINGUN3 :
dl - > radius = 250 + ( rand ( ) & 31 ) ;
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0.2 ; dl - > color [ 2 ] = 0 ;
dl - > die = cl . time + 0.1 ; // long delay
2006-03-06 01:41:09 +00:00
snprintf ( soundname , sizeof ( soundname ) , " weapons/machgf%ib.wav " , ( rand ( ) % 5 ) + 1 ) ;
2004-08-23 00:15:46 +00:00
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( soundname ) , volume , ATTN_NORM , 0 ) ;
2006-03-06 01:41:09 +00:00
snprintf ( soundname , sizeof ( soundname ) , " weapons/machgf%ib.wav " , ( rand ( ) % 5 ) + 1 ) ;
2006-05-10 07:35:19 +00:00
Q2S_StartSound ( NULL , i , CHAN_AUTO , S_PrecacheSound ( soundname ) , volume , ATTN_NORM , 0.033 ) ;
2006-03-06 01:41:09 +00:00
snprintf ( soundname , sizeof ( soundname ) , " weapons/machgf%ib.wav " , ( rand ( ) % 5 ) + 1 ) ;
2006-05-10 07:35:19 +00:00
Q2S_StartSound ( NULL , i , CHAN_AUTO , S_PrecacheSound ( soundname ) , volume , ATTN_NORM , 0.066 ) ;
2004-08-23 00:15:46 +00:00
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case Q2MZ_RAILGUN :
dl - > color [ 0 ] = 0.1 ; dl - > color [ 1 ] = 0.1 ; dl - > color [ 2 ] = 0.2 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/railgf1a.wav " ) , volume , ATTN_NORM , 0 ) ;
break ;
case Q2MZ_ROCKET :
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0.1 ; dl - > color [ 2 ] = 0.04 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/rocklf1a.wav " ) , volume , ATTN_NORM , 0 ) ;
Q2S_StartSound ( NULL , i , CHAN_AUTO , S_PrecacheSound ( " weapons/rocklr1b.wav " ) , volume , ATTN_NORM , 0.1 ) ;
break ;
case Q2MZ_GRENADE :
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0.1 ; dl - > color [ 2 ] = 0 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/grenlf1a.wav " ) , volume , ATTN_NORM , 0 ) ;
Q2S_StartSound ( NULL , i , CHAN_AUTO , S_PrecacheSound ( " weapons/grenlr1b.wav " ) , volume , ATTN_NORM , 0.1 ) ;
break ;
case Q2MZ_BFG :
dl - > color [ 0 ] = 0 ; dl - > color [ 1 ] = 0.2 ; dl - > color [ 2 ] = 0 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/bfg__f1y.wav " ) , volume , ATTN_NORM , 0 ) ;
break ;
case Q2MZ_LOGIN :
dl - > color [ 0 ] = 0 ; dl - > color [ 1 ] = 0.2 ; dl - > color [ 2 ] = 0 ;
dl - > die = cl . time + 1.0 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/grenlf1a.wav " ) , 1 , ATTN_NORM , 0 ) ;
// CL_LogoutEffect (pl->current.origin, weapon);
break ;
case Q2MZ_LOGOUT :
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0 ; dl - > color [ 2 ] = 0 ;
dl - > die = cl . time + 1.0 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/grenlf1a.wav " ) , 1 , ATTN_NORM , 0 ) ;
// CL_LogoutEffect (pl->current.origin, weapon);
break ;
case Q2MZ_RESPAWN :
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0.2 ; dl - > color [ 2 ] = 0 ;
dl - > die = cl . time + 1.0 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/grenlf1a.wav " ) , 1 , ATTN_NORM , 0 ) ;
// CL_LogoutEffect (pl->current.origin, weapon);
break ;
// RAFAEL
case Q2MZ_PHALANX :
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0.1 ; dl - > color [ 2 ] = 0.1 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/plasshot.wav " ) , volume , ATTN_NORM , 0 ) ;
break ;
// RAFAEL
2005-09-26 03:40:09 +00:00
case Q2MZ_IONRIPPER :
2004-08-23 00:15:46 +00:00
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0.1 ; dl - > color [ 2 ] = 0.1 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/rippfire.wav " ) , volume , ATTN_NORM , 0 ) ;
break ;
// ======================
// PGM
case Q2MZ_ETF_RIFLE :
dl - > color [ 0 ] = 0.18 ; dl - > color [ 1 ] = 0.14 ; dl - > color [ 2 ] = 0 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/nail1.wav " ) , volume , ATTN_NORM , 0 ) ;
break ;
case Q2MZ_SHOTGUN2 :
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0.2 ; dl - > color [ 2 ] = 0 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/shotg2.wav " ) , volume , ATTN_NORM , 0 ) ;
break ;
case Q2MZ_HEATBEAM :
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0.2 ; dl - > color [ 2 ] = 0 ;
dl - > die = cl . time + 100 ;
// Q2S_StartSound (NULL, i, CHAN_WEAPON, S_PrecacheSound("weapons/bfg__l1a.wav"), volume, ATTN_NORM, 0);
break ;
case Q2MZ_BLASTER2 :
dl - > color [ 0 ] = 0 ; dl - > color [ 1 ] = 0.2 ; dl - > color [ 2 ] = 0 ;
// FIXME - different sound for blaster2 ??
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/blastf1a.wav " ) , volume , ATTN_NORM , 0 ) ;
break ;
case Q2MZ_TRACKER :
// negative flashes handled the same in gl/soft until CL_AddDLights
dl - > color [ 0 ] = - 0.2 ; dl - > color [ 1 ] = - 0.2 ; dl - > color [ 2 ] = - 0.2 ;
Q2S_StartSound ( NULL , i , CHAN_WEAPON , S_PrecacheSound ( " weapons/disint2.wav " ) , volume , ATTN_NORM , 0 ) ;
2005-09-26 03:40:09 +00:00
break ;
2004-08-23 00:15:46 +00:00
case Q2MZ_NUKE1 :
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0 ; dl - > color [ 2 ] = 0 ;
dl - > die = cl . time + 100 ;
break ;
case Q2MZ_NUKE2 :
dl - > color [ 0 ] = 0.2 ; dl - > color [ 1 ] = 0.2 ; dl - > color [ 2 ] = 0 ;
dl - > die = cl . time + 100 ;
break ;
case Q2MZ_NUKE4 :
dl - > color [ 0 ] = 0 ; dl - > color [ 1 ] = 0 ; dl - > color [ 2 ] = 0.2 ;
dl - > die = cl . time + 100 ;
break ;
case Q2MZ_NUKE8 :
dl - > color [ 0 ] = 0 ; dl - > color [ 1 ] = 0.2 ; dl - > color [ 2 ] = 0.2 ;
dl - > die = cl . time + 100 ;
break ;
// PGM
// ======================
}
}
2005-09-26 03:40:09 +00:00
void CLQ2_ParseMuzzleFlash2 ( void )
2004-08-23 00:15:46 +00:00
{
int ent ;
int flash_number ;
ent = MSG_ReadShort ( ) ;
if ( ent < 1 | | ent > = Q2MAX_EDICTS )
Host_EndGame ( " CL_ParseMuzzleFlash2: bad entity " ) ;
flash_number = MSG_ReadByte ( ) ;
2005-03-18 06:14:07 +00:00
CLQ2_RunMuzzleFlash2 ( ent , flash_number ) ;
2004-08-23 00:15:46 +00:00
}
2005-09-04 05:48:26 +00:00
void CLQ2_ParseInventory ( void )
{
int i ;
2005-09-07 14:55:25 +00:00
// TODO: finish this properly
2005-09-04 05:48:26 +00:00
for ( i = 0 ; i < Q2MAX_ITEMS ; i + + )
// cl.inventory[i] = MSG_ReadShort (&net_message);
MSG_ReadShort ( ) ; // just ignore everything for now
}
2004-08-23 00:15:46 +00:00
# endif
2004-09-30 22:42:34 +00:00
//return if we want to print the message.
2005-09-07 14:55:25 +00:00
char * CL_ParseChat ( char * text , player_info_t * * player )
2005-09-26 03:40:09 +00:00
{
2005-12-13 02:31:57 +00:00
extern cvar_t cl_chatsound , cl_nofake , cl_teamchatsound , cl_enemychatsound ;
2005-09-07 14:55:25 +00:00
int flags ;
int offset = 0 ;
qboolean suppress_talksound ;
char * p ;
2004-08-23 00:15:46 +00:00
char * s ;
2005-11-30 01:20:53 +00:00
int check_flood ;
2004-08-30 07:08:13 +00:00
2005-09-07 14:55:25 +00:00
flags = TP_CategorizeMessage ( text , & offset , player ) ;
s = text + offset ;
2004-08-30 07:08:13 +00:00
2005-09-07 14:55:25 +00:00
if ( flags )
2004-08-23 00:15:46 +00:00
{
2005-09-07 14:55:25 +00:00
if ( ! cls . demoplayback )
Sys_ServerActivity ( ) ; //chat always flashes the screen..
2007-02-23 00:21:33 +00:00
/*
2005-09-07 14:55:25 +00:00
//check f_ stuff
if ( ! strncmp ( s , " f_ " , 2 ) )
2004-09-30 22:42:34 +00:00
{
2005-09-07 14:55:25 +00:00
static float versionresponsetime ;
static float modifiedresponsetime ;
static float skinsresponsetime ;
static float serverresponsetime ;
2004-08-23 00:15:46 +00:00
2005-09-07 14:55:25 +00:00
if ( ! strncmp ( s , " f_version " , 9 ) & & versionresponsetime < Sys_DoubleTime ( ) ) //respond to it.
{
ValidationPrintVersion ( text ) ;
versionresponsetime = Sys_DoubleTime ( ) + 5 ;
}
else if ( ! strncmp ( s , " f_server " , 8 ) & & serverresponsetime < Sys_DoubleTime ( ) ) //respond to it.
{
Validation_Server ( ) ;
serverresponsetime = Sys_DoubleTime ( ) + 5 ;
}
else if ( ! strncmp ( s , " f_modified " , 10 ) & & modifiedresponsetime < Sys_DoubleTime ( ) ) //respond to it.
{
Validation_FilesModified ( ) ;
modifiedresponsetime = Sys_DoubleTime ( ) + 5 ;
}
else if ( ! strncmp ( s , " f_skins " , 7 ) & & skinsresponsetime < Sys_DoubleTime ( ) ) //respond to it.
{
Validation_Skins ( ) ;
skinsresponsetime = Sys_DoubleTime ( ) + 5 ;
}
2005-09-08 08:10:06 +00:00
return s ;
2005-09-07 14:55:25 +00:00
}
2007-02-23 00:21:33 +00:00
*/
2005-09-07 14:55:25 +00:00
Validation_CheckIfResponse ( text ) ;
2004-09-30 22:42:34 +00:00
2006-01-13 06:27:18 +00:00
# ifdef PLUGINS
2006-01-01 09:01:15 +00:00
if ( ! Plug_ChatMessage ( text + offset , * player ? ( int ) ( * player - cl . players ) : - 1 , flags ) )
return NULL ;
2006-01-13 06:27:18 +00:00
# endif
2006-01-01 09:01:15 +00:00
2004-11-17 17:58:22 +00:00
if ( flags = = 2 & & ! TP_FilterMessage ( text + offset ) )
2005-09-07 14:55:25 +00:00
return NULL ;
2005-11-30 01:20:53 +00:00
if ( ( int ) msg_filter . value & flags )
return NULL ; //filter chat
2005-12-13 02:31:57 +00:00
check_flood = Ignore_Check_Flood ( s , flags , offset ) ;
if ( check_flood = = IGNORE_NO_ADD )
2005-11-30 01:20:53 +00:00
return NULL ;
2005-12-13 02:31:57 +00:00
else if ( check_flood = = NO_IGNORE_ADD )
2005-11-30 01:20:53 +00:00
Ignore_Flood_Add ( s ) ;
2005-09-07 14:55:25 +00:00
}
2006-01-13 06:27:18 +00:00
# ifdef PLUGINS
2006-01-01 09:01:15 +00:00
else
{
if ( ! Plug_ServerMessage ( text + offset , PRINT_CHAT ) )
return NULL ;
}
2006-01-13 06:27:18 +00:00
# endif
2004-09-30 22:42:34 +00:00
2005-09-07 14:55:25 +00:00
suppress_talksound = false ;
2004-09-30 22:42:34 +00:00
2005-09-07 14:55:25 +00:00
if ( flags = = 2 | | ( ! cl . teamplay & & flags ) )
suppress_talksound = TP_CheckSoundTrigger ( text + offset ) ;
2004-09-30 22:42:34 +00:00
2005-09-07 14:55:25 +00:00
if ( ! cl_chatsound . value | | // no sound at all
( cl_chatsound . value = = 2 & & flags ! = 2 ) ) // only play sound in mm2
suppress_talksound = true ;
2004-09-30 22:42:34 +00:00
2005-09-07 14:55:25 +00:00
if ( ! suppress_talksound )
2005-12-13 02:31:57 +00:00
{
if ( flags = = 2 & & cl . teamplay )
2005-12-13 02:33:03 +00:00
S_LocalSound ( cl_teamchatsound . string ) ;
2005-12-13 02:31:57 +00:00
else
2005-12-13 02:33:03 +00:00
S_LocalSound ( cl_enemychatsound . string ) ;
2005-12-13 02:31:57 +00:00
}
2004-09-30 22:42:34 +00:00
2005-09-07 14:55:25 +00:00
if ( cl_nofake . value = = 1 | | ( cl_nofake . value = = 2 & & flags ! = 2 ) ) {
for ( p = s ; * p ; p + + )
if ( * p = = 13 | | ( * p = = 10 & & p [ 1 ] ) )
2005-09-26 03:40:09 +00:00
* p = ' ' ;
2004-09-30 22:42:34 +00:00
}
2005-09-07 14:55:25 +00:00
msgflags = flags ;
2005-09-08 08:10:06 +00:00
2005-09-07 14:55:25 +00:00
return s ;
2004-08-23 00:15:46 +00:00
}
2005-04-26 16:04:12 +00:00
char printtext [ 4096 ] ;
2004-09-30 22:42:34 +00:00
void CL_ParsePrint ( char * msg , int level )
2004-08-23 00:15:46 +00:00
{
2005-03-01 15:36:23 +00:00
if ( strlen ( printtext ) + strlen ( msg ) > = sizeof ( printtext ) )
{
Con_Printf ( " %s " , printtext ) ;
Q_strncpyz ( printtext , msg , sizeof ( printtext ) ) ;
}
else
strcat ( printtext , msg ) ; //safe due to size on if.
2004-09-13 04:16:52 +00:00
while ( ( msg = strchr ( printtext , ' \n ' ) ) )
2004-08-23 00:15:46 +00:00
{
* msg = ' \0 ' ;
2004-09-30 22:42:34 +00:00
if ( level ! = PRINT_CHAT )
Stats_ParsePrintLine ( printtext ) ;
2005-09-07 14:55:25 +00:00
2005-07-02 00:32:09 +00:00
TP_SearchForMsgTriggers ( printtext , level ) ;
2004-08-23 00:15:46 +00:00
msg + + ;
memmove ( printtext , msg , strlen ( msg ) + 1 ) ;
}
}
2005-09-26 08:07:26 +00:00
// CL_PlayerColor: returns color and mask for player_info_t
int CL_PlayerColor ( player_info_t * plr , int * name_ormask )
{
char * t ;
int c ;
* name_ormask = 0 ;
if ( cl . teamfortress ) //override based on team
{
// TODO: needs some work
2007-07-23 18:52:11 +00:00
switch ( plr - > rbottomcolor )
2005-09-26 08:07:26 +00:00
{ //translate q1 skin colours to console colours
case 10 :
case 1 :
2006-01-01 09:01:15 +00:00
* name_ormask = CON_HIGHCHARSMASK ;
2005-09-26 08:07:26 +00:00
case 4 : //red
c = 1 ;
break ;
case 11 :
2006-01-01 09:01:15 +00:00
* name_ormask = CON_HIGHCHARSMASK ;
2005-09-26 08:07:26 +00:00
case 3 : // green
c = 2 ;
break ;
case 5 :
2006-01-01 09:01:15 +00:00
* name_ormask = CON_HIGHCHARSMASK ;
2005-09-26 08:07:26 +00:00
case 12 :
c = 3 ;
break ;
case 6 :
case 7 :
2006-01-01 09:01:15 +00:00
* name_ormask = CON_HIGHCHARSMASK ;
2005-09-26 08:07:26 +00:00
case 8 :
case 9 :
2006-01-02 22:05:47 +00:00
c = 6 ;
2005-09-26 08:07:26 +00:00
break ;
case 2 : // light blue
2006-01-01 09:01:15 +00:00
* name_ormask = CON_HIGHCHARSMASK ;
2005-09-26 08:07:26 +00:00
case 13 : //blue
case 14 : //blue
2006-01-02 22:05:47 +00:00
c = 5 ;
2005-09-26 08:07:26 +00:00
break ;
default :
2006-01-01 09:01:15 +00:00
* name_ormask = CON_HIGHCHARSMASK ;
2005-09-26 08:07:26 +00:00
case 0 : // white
c = 7 ;
break ;
}
}
2005-11-01 23:25:15 +00:00
else if ( cl . teamplay )
{
// team name hacks
if ( ! strcmp ( plr - > team , " red " ) )
c = 1 ;
else if ( ! strcmp ( plr - > team , " blue " ) )
2006-01-02 22:05:47 +00:00
c = 5 ;
2005-11-01 23:25:15 +00:00
else
{
char * t ;
t = plr - > team ;
c = 0 ;
for ( t = plr - > team ; * t ; t + + )
{
c > > = 1 ;
c ^ = * t ; // TODO: very weak hash, replace
}
if ( ( c / 7 ) & 1 )
2006-01-01 09:01:15 +00:00
* name_ormask = CON_HIGHCHARSMASK ;
2005-11-01 23:25:15 +00:00
c = 1 + ( c % 7 ) ;
}
}
2005-09-26 08:07:26 +00:00
else
{
// override chat color with tc infokey
// 0-6 is standard colors (red to white)
// 7-13 is using secondard charactermask
// 14 and afterwards repeats
t = Info_ValueForKey ( plr - > userinfo , " tc " ) ;
if ( * t )
c = atoi ( t ) ;
else
2005-10-08 22:35:20 +00:00
c = plr - > userid ; // Quake2 can start from 0
2005-09-26 08:07:26 +00:00
if ( ( c / 7 ) & 1 )
2006-01-01 09:01:15 +00:00
* name_ormask = CON_HIGHCHARSMASK ;
2005-09-26 08:07:26 +00:00
c = 1 + ( c % 7 ) ;
}
return c ;
}
2006-01-01 09:01:15 +00:00
// CL_PrintChat: takes chat strings and performs name coloring and cl_parsewhitetext parsing
2005-09-08 08:10:06 +00:00
// NOTE: text in rawmsg/msg is assumed destroyable and should not be used afterwards
void CL_PrintChat ( player_info_t * plr , char * rawmsg , char * msg , int plrflags )
2005-09-07 14:55:25 +00:00
{
2005-09-08 08:10:06 +00:00
char * name = NULL ;
2005-09-07 14:55:25 +00:00
int c ;
2005-09-08 08:10:06 +00:00
int name_ormask = 0 ;
2005-09-07 14:55:25 +00:00
extern cvar_t cl_parsewhitetext ;
qboolean memessage = false ;
2005-09-08 08:10:06 +00:00
if ( plrflags & TPM_FAKED )
{
name = rawmsg ; // use rawmsg pointer and msg modification to generate null-terminated string
if ( msg )
* ( msg - 2 ) = 0 ; // it's assumed that msg has 2 chars before it due to strstr
}
2005-09-07 14:55:25 +00:00
if ( msg [ 0 ] = = ' / ' & & msg [ 1 ] = = ' m ' & & msg [ 2 ] = = ' e ' & & msg [ 3 ] = = ' ' )
{
msg + = 4 ;
memessage = true ; // special /me formatting
}
if ( plr ) // use special formatting with a real chat message
2005-09-08 08:10:06 +00:00
name = plr - > name ; // use player's name
if ( cl_standardchat . value )
2005-09-07 14:55:25 +00:00
{
2006-01-01 09:01:15 +00:00
name_ormask = CON_HIGHCHARSMASK ;
2005-09-08 08:10:06 +00:00
c = 7 ;
}
else
{
if ( plrflags & TPM_SPECTATOR ) // is an observer
2005-09-07 14:55:25 +00:00
{
// TODO: we don't even check for this yet...
2005-09-08 08:10:06 +00:00
if ( plrflags & TPM_TEAM ) // is on team
2005-09-07 14:55:25 +00:00
c = 0 ; // blacken () on observers
else
{
2006-01-01 09:01:15 +00:00
name_ormask = CON_HIGHCHARSMASK ;
2005-09-07 14:55:25 +00:00
c = 7 ;
}
}
2005-09-08 08:10:06 +00:00
else if ( plr )
2005-09-26 08:07:26 +00:00
c = CL_PlayerColor ( plr , & name_ormask ) ;
2005-09-08 08:10:06 +00:00
else
{
// defaults for fake clients
2006-01-01 09:01:15 +00:00
name_ormask = CON_HIGHCHARSMASK ;
2005-09-08 08:10:06 +00:00
c = 7 ;
2005-09-07 14:55:25 +00:00
}
2005-09-08 08:10:06 +00:00
}
2005-09-07 14:55:25 +00:00
2005-09-08 08:10:06 +00:00
c = ' 0 ' + c ;
2005-09-07 14:55:25 +00:00
2005-09-08 08:10:06 +00:00
if ( name )
{
2005-09-07 14:55:25 +00:00
if ( memessage )
{
2006-01-01 09:01:15 +00:00
con_ormask = CON_HIGHCHARSMASK ;
2005-09-08 08:10:06 +00:00
if ( ! cl_standardchat . value & & ( plrflags & TPM_SPECTATOR ) )
2005-09-07 14:55:25 +00:00
Con_Printf ( " ^0*^7 " ) ;
else
Con_Printf ( " * " ) ;
}
2005-09-08 08:10:06 +00:00
if ( plrflags & TPM_TEAM ) // for team chat don't highlight the name, just the brackets
2005-09-07 14:55:25 +00:00
{
// color is reset every printf so we're safe here
con_ormask = name_ormask ;
Con_Printf ( " ^%c( " , c ) ;
2006-01-01 09:01:15 +00:00
con_ormask = CON_HIGHCHARSMASK ;
2005-09-08 08:10:06 +00:00
Con_Printf ( " %s " , name ) ;
2005-09-07 14:55:25 +00:00
con_ormask = name_ormask ;
Con_Printf ( " ^%c) " , c ) ;
}
else
{
con_ormask = name_ormask ;
2005-09-08 08:10:06 +00:00
Con_Printf ( " ^%c%s " , c , name ) ;
2005-09-07 14:55:25 +00:00
}
if ( ! memessage )
{
// only print seperator with an actual player name
2006-01-01 09:01:15 +00:00
con_ormask = CON_HIGHCHARSMASK ;
2005-09-08 08:10:06 +00:00
if ( ! cl_standardchat . value & & ( plrflags & TPM_SPECTATOR ) )
2005-09-07 14:55:25 +00:00
Con_Printf ( " ^0:^7 " ) ;
else
Con_Printf ( " : " ) ;
}
else
Con_Printf ( " " ) ;
}
// print message
2006-01-01 09:01:15 +00:00
con_ormask = CON_HIGHCHARSMASK ;
2005-10-23 01:08:11 +00:00
if ( cl_parsewhitetext . value & & ( cl_parsewhitetext . value = = 1 | | ( plrflags & TPM_TEAM ) ) )
2005-09-07 14:55:25 +00:00
{
2005-09-26 08:07:26 +00:00
char * t , * u ;
2005-09-07 14:55:25 +00:00
2006-02-17 19:54:47 +00:00
while ( ( t = strchr ( msg , ' { ' ) ) )
2005-09-07 14:55:25 +00:00
{
u = strchr ( msg , ' } ' ) ;
if ( u )
{
* t = 0 ;
* u = 0 ;
Con_Printf ( " %s " , msg ) ;
con_ormask = 0 ;
Con_Printf ( " %s " , t + 1 ) ;
2006-01-01 09:01:15 +00:00
con_ormask = CON_HIGHCHARSMASK ;
2005-09-07 14:55:25 +00:00
msg = u + 1 ;
}
else
break ;
}
Con_Printf ( " %s " , msg ) ;
con_ormask = 0 ;
}
else
{
Con_Printf ( " %s " , msg ) ;
}
con_ormask = 0 ;
}
2005-09-26 08:07:26 +00:00
// CL_PrintStandardMessage: takes non-chat net messages and performs name coloring
// NOTE: msg is considered destroyable
2005-10-16 03:47:32 +00:00
char acceptedchars [ ] = { ' . ' , ' ? ' , ' ! ' , ' \' ' , ' , ' , ' : ' , ' ' , ' \0 ' } ;
2005-09-26 08:07:26 +00:00
void CL_PrintStandardMessage ( char * msg )
{
int i ;
player_info_t * p ;
extern cvar_t cl_standardmsg ;
2005-10-16 03:47:32 +00:00
char * begin = msg ;
2005-09-26 08:07:26 +00:00
// search for player names in message
for ( i = 0 , p = cl . players ; i < MAX_CLIENTS ; p + + , i + + )
{
char * v ;
char * name ;
int len ;
int ormask ;
char c ;
2005-11-01 23:25:15 +00:00
name = p - > name ;
if ( ! ( * name ) )
2005-09-26 08:07:26 +00:00
continue ;
len = strlen ( name ) ;
v = strstr ( msg , name ) ;
2005-10-16 03:47:32 +00:00
while ( v )
2005-09-26 08:07:26 +00:00
{
2005-10-16 03:47:32 +00:00
// name parsing rules
if ( v ! = begin & & * ( v - 1 ) ! = ' ' ) // must be space before name
{
2005-10-16 19:35:21 +00:00
v = strstr ( v + len , name ) ;
2005-10-16 03:47:32 +00:00
continue ;
}
2005-11-26 03:02:55 +00:00
2005-10-16 03:47:32 +00:00
{
int i ;
char aftername = * ( v + len ) ;
2005-11-26 03:02:55 +00:00
2005-10-16 03:47:32 +00:00
// search for accepted chars in char after name in msg
for ( i = 0 ; i < sizeof ( acceptedchars ) ; i + + )
{
if ( acceptedchars [ i ] = = aftername )
break ;
}
if ( sizeof ( acceptedchars ) = = i )
{
2005-10-16 19:35:21 +00:00
v = strstr ( v + len , name ) ;
2005-10-16 03:47:32 +00:00
continue ; // no accepted char found
}
}
2005-09-26 08:07:26 +00:00
* v = 0 ; // cut off message
con_ormask = 0 ;
// print msg chunk
Con_Printf ( " %s " , msg ) ;
msg = v + len ; // update search point
// get name color
if ( p - > spectator | | cl_standardmsg . value )
{
ormask = 0 ;
c = ' 7 ' ;
}
else
c = ' 0 ' + CL_PlayerColor ( p , & ormask ) ;
// print name
con_ormask = ormask ;
Con_Printf ( " ^%c%s^7 " , c , name ) ;
2005-10-16 03:47:32 +00:00
break ;
2005-09-26 08:07:26 +00:00
}
}
// print final chunk
con_ormask = 0 ;
Con_Printf ( " %s " , msg ) ;
}
2004-08-23 00:15:46 +00:00
char stufftext [ 4096 ] ;
void CL_ParseStuffCmd ( char * msg , int destsplit ) //this protects stuffcmds from network segregation.
{
strncat ( stufftext , msg , sizeof ( stufftext ) - 1 ) ;
2004-09-13 04:16:52 +00:00
while ( ( msg = strchr ( stufftext , ' \n ' ) ) )
2004-08-23 00:15:46 +00:00
{
* msg = ' \0 ' ;
Con_DPrintf ( " stufftext: %s \n " , stufftext ) ;
if ( ! strncmp ( stufftext , " fullserverinfo " , 15 ) )
2005-02-12 18:56:04 +00:00
Cmd_ExecuteString ( stufftext , RESTRICT_SERVER + destsplit ) ; //do this NOW so that it's done before any models or anything are loaded
2004-08-23 00:15:46 +00:00
else
{
2006-11-03 15:53:04 +00:00
if ( ! strncmp ( stufftext , " //querycmd " , 11 ) )
{
COM_Parse ( stufftext + 11 ) ;
if ( Cmd_Exists ( com_token ) )
{
Cbuf_AddText ( " cmd cmdsupported " , RESTRICT_SERVER + destsplit ) ;
Cbuf_AddText ( com_token , RESTRICT_SERVER + destsplit ) ;
Cbuf_AddText ( " \n " , RESTRICT_SERVER + destsplit ) ;
}
}
2007-01-06 09:36:38 +00:00
else if ( ! strncmp ( stufftext , " //exectrigger " , 14 ) )
{
COM_Parse ( stufftext + 14 ) ;
if ( Cmd_AliasExist ( com_token , RESTRICT_SERVER ) )
Cmd_ExecuteString ( com_token , RESTRICT_SERVER ) ; //do this NOW so that it's done before any models or anything are loaded
}
else if ( ! strncmp ( stufftext , " //set " , 6 ) )
{
Cmd_ExecuteString ( stufftext + 2 , RESTRICT_SERVER + destsplit ) ; //do this NOW so that it's done before any models or anything are loaded
}
2006-11-03 15:53:04 +00:00
else
2005-02-12 18:56:04 +00:00
# ifdef CSQC_DAT
2006-11-03 15:53:04 +00:00
if ( ! CSQC_StuffCmd ( stufftext ) )
2005-02-12 18:56:04 +00:00
# endif
{
Cbuf_AddText ( stufftext , RESTRICT_SERVER + destsplit ) ;
Cbuf_AddText ( " \n " , RESTRICT_SERVER + destsplit ) ;
}
2004-08-23 00:15:46 +00:00
}
msg + + ;
memmove ( stufftext , msg , strlen ( msg ) + 1 ) ;
}
}
2005-05-26 12:55:34 +00:00
void CL_ParsePrecache ( void )
{
int i = ( unsigned short ) MSG_ReadShort ( ) ;
char * s = MSG_ReadString ( ) ;
if ( i < 32768 )
{
if ( i > = 1 & & i < MAX_MODELS )
{
model_t * model ;
2006-01-04 00:44:34 +00:00
CL_CheckOrEnqueDownloadFile ( s , s ) ;
2005-05-26 12:55:34 +00:00
model = Mod_ForName ( s , i = = 1 ) ;
if ( ! model )
Con_Printf ( " svc_precache: Mod_ForName( \" %s \" ) failed \n " , s ) ;
cl . model_precache [ i ] = model ;
strcpy ( cl . model_name [ i ] , s ) ;
}
else
Con_Printf ( " svc_precache: model index %i outside range %i...%i \n " , i , 1 , MAX_MODELS ) ;
}
else
{
i - = 32768 ;
if ( i > = 1 & & i < MAX_SOUNDS )
{
sfx_t * sfx ;
2006-08-07 01:44:27 +00:00
CL_CheckOrEnqueDownloadFile ( va ( " sound/%s " , s ) , NULL ) ;
2005-05-26 12:55:34 +00:00
sfx = S_PrecacheSound ( s ) ;
if ( ! sfx )
Con_Printf ( " svc_precache: S_PrecacheSound( \" %s \" ) failed \n " , s ) ;
cl . sound_precache [ i ] = sfx ;
strcpy ( cl . sound_name [ i ] , s ) ;
}
else
Con_Printf ( " svc_precache: sound index %i outside range %i...%i \n " , i , 1 , MAX_SOUNDS ) ;
}
}
2006-01-11 22:24:08 +00:00
void CL_DumpPacket ( void )
{
int i ;
char * packet = net_message . data ;
int pos ;
pos = 0 ;
while ( pos < net_message . cursize )
{
Con_Printf ( " %5i " , pos ) ;
for ( i = 0 ; i < 16 ; i + + )
{
if ( pos > = net_message . cursize )
Con_Printf ( " X " ) ;
else
Con_Printf ( " %2x " , ( unsigned char ) packet [ pos ] ) ;
pos + + ;
}
pos - = 16 ;
for ( i = 0 ; i < 16 ; i + + )
{
if ( pos > = net_message . cursize )
Con_Printf ( " X " ) ;
else if ( packet [ pos ] = = 0 )
Con_Printf ( " . " ) ;
else
Con_Printf ( " %c " , ( unsigned char ) packet [ pos ] ) ;
pos + + ;
}
Con_Printf ( " \n " ) ;
}
}
2005-05-26 12:55:34 +00:00
2004-08-23 00:15:46 +00:00
# define SHOWNET(x) if(cl_shownet.value==2)Con_Printf ("%3i:%s\n", msg_readcount-1, x);
2004-11-27 08:16:25 +00:00
# define SHOWNET2(x, y) if(cl_shownet.value==2)Con_Printf ("%3i:%3i:%s\n", msg_readcount-1, y, x);
2004-08-23 00:15:46 +00:00
/*
= = = = = = = = = = = = = = = = = = = = =
CL_ParseServerMessage
= = = = = = = = = = = = = = = = = = = = =
*/
int received_framecount ;
void CL_ParseServerMessage ( void )
{
int cmd ;
char * s ;
int i , j ;
int destsplit ;
received_framecount = host_framecount ;
cl . last_servermessage = realtime ;
CL_ClearProjectiles ( ) ;
cl . fixangle = false ;
//
// if recording demos, copy the message out
2005-03-12 23:40:42 +00:00
//
2004-08-23 00:15:46 +00:00
if ( cl_shownet . value = = 1 )
Con_TPrintf ( TL_INT_SPACE , net_message . cursize ) ;
else if ( cl_shownet . value = = 2 )
Con_TPrintf ( TLC_LINEBREAK_MINUS ) ;
CL_ParseClientdata ( ) ;
//
// parse the message
//
while ( 1 )
{
if ( msg_badread )
{
2006-02-12 20:20:01 +00:00
CL_DumpPacket ( ) ;
2004-08-23 00:15:46 +00:00
Host_EndGame ( " CL_ParseServerMessage: Bad server message " ) ;
break ;
}
cmd = MSG_ReadByte ( ) ;
if ( cmd = = svc_choosesplitclient )
{
SHOWNET ( svc_strings [ cmd ] ) ;
destsplit = MSG_ReadByte ( ) ;
cmd = MSG_ReadByte ( ) ;
}
else
destsplit = 0 ;
if ( cmd = = - 1 )
{
msg_readcount + + ; // so the EOM showner has the right value
SHOWNET ( " END OF MESSAGE " ) ;
break ;
}
SHOWNET ( svc_strings [ cmd ] ) ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
// other commands
switch ( cmd )
{
default :
2006-01-11 22:24:08 +00:00
CL_DumpPacket ( ) ;
2006-02-06 01:06:17 +00:00
Host_EndGame ( " CL_ParseServerMessage: Illegible server message (%i) " , cmd ) ;
2004-08-23 00:15:46 +00:00
return ;
case svc_time :
2005-05-26 12:55:34 +00:00
cl . oldgametime = cl . gametime ;
2004-08-23 00:15:46 +00:00
cl . gametime = MSG_ReadFloat ( ) ;
cl . gametimemark = realtime ;
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case svc_nop :
// Con_Printf ("svc_nop\n");
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case svc_disconnect :
if ( cls . state = = ca_connected )
{
Host_EndGame ( " Server disconnected \n "
" Server version may not be compatible " ) ;
}
else
Host_EndGame ( " Server disconnected " ) ;
break ;
case svc_print :
i = MSG_ReadByte ( ) ;
s = MSG_ReadString ( ) ;
2005-11-30 02:26:12 +00:00
2004-08-23 00:15:46 +00:00
if ( i = = PRINT_CHAT )
{
2005-09-07 14:55:25 +00:00
char * msg ;
player_info_t * plr = NULL ;
2005-04-26 16:04:12 +00:00
if ( TP_SuppressMessage ( s ) )
break ; //if this was unseen-sent from us, ignore it.
2006-02-17 19:54:47 +00:00
if ( ( msg = CL_ParseChat ( s , & plr ) ) )
2004-08-23 00:15:46 +00:00
{
2004-09-30 22:42:34 +00:00
CL_ParsePrint ( s , i ) ;
2005-09-08 08:10:06 +00:00
CL_PrintChat ( plr , s , msg , msgflags ) ;
2004-08-23 00:15:46 +00:00
}
}
else
{
2006-01-13 06:27:18 +00:00
# ifdef PLUGINS
2006-01-01 09:01:15 +00:00
if ( Plug_ServerMessage ( s , i ) )
2006-01-13 06:27:18 +00:00
# endif
2006-01-01 09:01:15 +00:00
{
CL_ParsePrint ( s , i ) ;
CL_PrintStandardMessage ( s ) ;
}
2004-08-23 00:15:46 +00:00
}
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case svc_centerprint :
2006-01-01 09:01:15 +00:00
s = MSG_ReadString ( ) ;
2006-01-13 06:27:18 +00:00
# ifdef PLUGINS
2006-01-01 09:01:15 +00:00
if ( Plug_CenterPrintMessage ( s , destsplit ) )
2006-01-13 06:27:18 +00:00
# endif
2006-01-01 09:01:15 +00:00
SCR_CenterPrint ( destsplit , s ) ;
2004-08-23 00:15:46 +00:00
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case svc_stufftext :
s = MSG_ReadString ( ) ;
2005-09-26 03:40:09 +00:00
CL_ParseStuffCmd ( s , destsplit ) ;
2004-08-23 00:15:46 +00:00
break ;
case svc_damage :
V_ParseDamage ( destsplit ) ;
break ;
case svc_serverdata :
Cbuf_Execute ( ) ; // make sure any stuffed commands are done
CL_ParseServerData ( ) ;
vid . recalc_refdef = true ; // leave full screen intermission
break ;
# ifdef PEXT_SETVIEW
case svc_setview :
if ( ! ( cls . fteprotocolextensions & PEXT_SETVIEW ) )
Host_EndGame ( " PEXT_SETVIEW is meant to be disabled \n " ) ;
2005-09-26 03:40:09 +00:00
cl . viewentity [ destsplit ] = MSG_ReadShort ( ) ;
2004-08-23 00:15:46 +00:00
break ;
# endif
case svc_setangle :
if ( cls . demoplayback = = DPB_MVD )
{
i = MSG_ReadByte ( ) ;
if ( i ! = spec_track [ 0 ] | | ! autocam [ 0 ] )
{ //this wasn't for us.
for ( i = 0 ; i < 3 ; i + + )
MSG_ReadAngle ( ) ;
break ;
}
cl . fixangle = true ;
for ( i = 0 ; i < 3 ; i + + )
cl . simangles [ destsplit ] [ i ] = cl . viewangles [ destsplit ] [ i ] = MSG_ReadAngle ( ) ;
break ;
}
cl . fixangle = true ;
for ( i = 0 ; i < 3 ; i + + )
cl . viewangles [ destsplit ] [ i ] = MSG_ReadAngle ( ) ;
// cl.viewangles[PITCH] = cl.viewangles[ROLL] = 0;
break ;
case svc_lightstyle :
i = MSG_ReadByte ( ) ;
if ( i > = MAX_LIGHTSTYLES )
Host_EndGame ( " svc_lightstyle > MAX_LIGHTSTYLES " ) ;
# ifdef PEXT_LIGHTSTYLECOL
cl_lightstyle [ i ] . colour = 7 ; //white
# endif
Q_strncpyz ( cl_lightstyle [ i ] . map , MSG_ReadString ( ) , sizeof ( cl_lightstyle [ i ] . map ) ) ;
cl_lightstyle [ i ] . length = Q_strlen ( cl_lightstyle [ i ] . map ) ;
break ;
# ifdef PEXT_LIGHTSTYLECOL
case svc_lightstylecol :
if ( ! ( cls . fteprotocolextensions & PEXT_LIGHTSTYLECOL ) )
Host_EndGame ( " PEXT_LIGHTSTYLECOL is meant to be disabled \n " ) ;
i = MSG_ReadByte ( ) ;
if ( i > = MAX_LIGHTSTYLES )
2005-09-18 02:12:30 +00:00
Host_EndGame ( " svc_lightstyle > MAX_LIGHTSTYLES " ) ;
2004-08-23 00:15:46 +00:00
cl_lightstyle [ i ] . colour = MSG_ReadByte ( ) ;
Q_strncpyz ( cl_lightstyle [ i ] . map , MSG_ReadString ( ) , sizeof ( cl_lightstyle [ i ] . map ) ) ;
cl_lightstyle [ i ] . length = Q_strlen ( cl_lightstyle [ i ] . map ) ;
break ;
# endif
case svc_sound :
CL_ParseStartSoundPacket ( ) ;
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case svc_stopsound :
i = MSG_ReadShort ( ) ;
S_StopSound ( i > > 3 , i & 7 ) ;
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case svc_updatefrags :
Sbar_Changed ( ) ;
i = MSG_ReadByte ( ) ;
if ( i > = MAX_CLIENTS )
Host_EndGame ( " CL_ParseServerMessage: svc_updatefrags > MAX_SCOREBOARD " ) ;
cl . players [ i ] . frags = MSG_ReadShort ( ) ;
2005-09-26 03:40:09 +00:00
break ;
2004-08-23 00:15:46 +00:00
case svc_updateping :
i = MSG_ReadByte ( ) ;
if ( i > = MAX_CLIENTS )
Host_EndGame ( " CL_ParseServerMessage: svc_updateping > MAX_SCOREBOARD " ) ;
cl . players [ i ] . ping = MSG_ReadShort ( ) ;
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case svc_updatepl :
i = MSG_ReadByte ( ) ;
if ( i > = MAX_CLIENTS )
Host_EndGame ( " CL_ParseServerMessage: svc_updatepl > MAX_SCOREBOARD " ) ;
cl . players [ i ] . pl = MSG_ReadByte ( ) ;
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case svc_updateentertime :
// time is sent over as seconds ago
i = MSG_ReadByte ( ) ;
if ( i > = MAX_CLIENTS )
Host_EndGame ( " CL_ParseServerMessage: svc_updateentertime > MAX_SCOREBOARD " ) ;
2005-11-26 03:02:55 +00:00
cl . players [ i ] . entertime = cl . servertime - MSG_ReadFloat ( ) ;
2004-08-23 00:15:46 +00:00
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case svc_spawnbaseline :
i = MSG_ReadShort ( ) ;
2006-07-24 04:24:41 +00:00
if ( ! CL_CheckBaselines ( i ) )
Host_EndGame ( " CL_ParseServerMessage: svc_spawnbaseline failed with size %i " , i ) ;
CL_ParseBaseline ( cl_baselines + i ) ;
2004-08-23 00:15:46 +00:00
break ;
case svc_spawnbaseline2 :
CL_ParseBaseline2 ( ) ;
break ;
case svc_spawnstatic :
CL_ParseStatic ( 1 ) ;
break ;
case svc_spawnstatic2 :
CL_ParseStatic ( 2 ) ;
break ;
case svc_temp_entity :
# ifdef NQPROT
CL_ParseTEnt ( false ) ;
# else
CL_ParseTEnt ( ) ;
# endif
break ;
case svc_customtempent :
CL_ParseCustomTEnt ( ) ;
break ;
case svc_particle :
2005-03-10 03:55:18 +00:00
CLNQ_ParseParticleEffect ( ) ;
2004-08-23 00:15:46 +00:00
break ;
case svc_particle2 :
2005-03-10 03:55:18 +00:00
CL_ParseParticleEffect2 ( ) ;
2004-08-23 00:15:46 +00:00
break ;
case svc_particle3 :
2005-03-10 03:55:18 +00:00
CL_ParseParticleEffect3 ( ) ;
2004-08-23 00:15:46 +00:00
break ;
case svc_particle4 :
2005-03-10 03:55:18 +00:00
CL_ParseParticleEffect4 ( ) ;
2004-08-23 00:15:46 +00:00
break ;
case svc_killedmonster :
cl . stats [ 0 ] [ STAT_MONSTERS ] + + ;
break ;
case svc_foundsecret :
cl . stats [ 0 ] [ STAT_SECRETS ] + + ;
break ;
case svc_updatestat :
i = MSG_ReadByte ( ) ;
j = MSG_ReadByte ( ) ;
CL_SetStat ( destsplit , i , j ) ;
break ;
case svc_updatestatlong :
i = MSG_ReadByte ( ) ;
j = MSG_ReadLong ( ) ; //make qbyte if nq compatability?
CL_SetStat ( destsplit , i , j ) ;
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case svc_spawnstaticsound :
CL_ParseStaticSound ( ) ;
break ;
case svc_cdtrack :
cl . cdtrack = MSG_ReadByte ( ) ;
CDAudio_Play ( ( qbyte ) cl . cdtrack , true ) ;
break ;
case svc_intermission :
2005-07-14 01:57:34 +00:00
if ( ! cl . intermission )
TP_ExecTrigger ( " f_mapend " ) ;
2004-08-23 00:15:46 +00:00
cl . intermission = 1 ;
2005-11-26 03:02:55 +00:00
cl . completed_time = cl . servertime ;
2004-08-23 00:15:46 +00:00
vid . recalc_refdef = true ; // go to full screen
for ( i = 0 ; i < 3 ; i + + )
2005-09-26 03:40:09 +00:00
cl . simorg [ 0 ] [ i ] = MSG_ReadCoord ( ) ;
2004-08-23 00:15:46 +00:00
for ( i = 0 ; i < 3 ; i + + )
cl . simangles [ 0 ] [ i ] = MSG_ReadAngle ( ) ;
2006-05-29 04:50:24 +00:00
VectorClear ( cl . simvel [ 0 ] ) ;
2004-08-23 00:15:46 +00:00
VectorCopy ( cl . simvel [ 0 ] , cl . simvel [ 1 ] ) ;
VectorCopy ( cl . simangles [ 0 ] , cl . simangles [ 1 ] ) ;
VectorCopy ( cl . simorg [ 0 ] , cl . simorg [ 1 ] ) ;
break ;
case svc_finale :
cl . intermission = 2 ;
2005-11-26 03:02:55 +00:00
cl . completed_time = cl . servertime ;
2004-08-23 00:15:46 +00:00
vid . recalc_refdef = true ; // go to full screen
2005-09-26 03:40:09 +00:00
SCR_CenterPrint ( destsplit , MSG_ReadString ( ) ) ;
2004-08-23 00:15:46 +00:00
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case svc_sellscreen :
Cmd_ExecuteString ( " help " , RESTRICT_RCON ) ;
break ;
case svc_smallkick :
cl . punchangle [ destsplit ] = - 2 ;
break ;
case svc_bigkick :
cl . punchangle [ destsplit ] = - 4 ;
break ;
case svc_muzzleflash :
2005-06-04 12:40:12 +00:00
CL_MuzzleFlash ( destsplit ) ;
2004-08-23 00:15:46 +00:00
break ;
case svc_updateuserinfo :
CL_UpdateUserinfo ( ) ;
break ;
case svc_setinfo :
2007-02-23 00:21:33 +00:00
CL_ParseSetInfo ( ) ;
2004-08-23 00:15:46 +00:00
break ;
case svc_serverinfo :
CL_ServerInfo ( ) ;
break ;
case svc_download :
CL_ParseDownload ( ) ;
break ;
case svc_playerinfo :
CL_ParsePlayerinfo ( ) ;
break ;
case svc_nails :
2004-12-08 04:14:52 +00:00
CL_ParseProjectiles ( cl_spikeindex , false ) ;
break ;
case svc_nails2 :
CL_ParseProjectiles ( cl_spikeindex , true ) ;
2004-08-23 00:15:46 +00:00
break ;
case svc_chokecount : // some preceding packets were choked
i = MSG_ReadByte ( ) ;
for ( j = 0 ; j < i ; j + + )
cl . frames [ ( cls . netchan . incoming_acknowledged - 1 - j ) & UPDATE_MASK ] . receivedtime = - 2 ;
break ;
case svc_modellist :
CL_ParseModellist ( false ) ;
break ;
case svc_modellistshort :
CL_ParseModellist ( true ) ;
break ;
case svc_soundlist :
CL_ParseSoundlist ( ) ;
break ;
case svc_packetentities :
CL_ParsePacketEntities ( false ) ;
2007-06-20 00:02:54 +00:00
cl . ackedinputsequence = cl . validsequence ;
2004-08-23 00:15:46 +00:00
break ;
case svc_deltapacketentities :
CL_ParsePacketEntities ( true ) ;
2007-06-20 00:02:54 +00:00
cl . ackedinputsequence = cl . validsequence ;
2004-08-23 00:15:46 +00:00
break ;
case svc_maxspeed :
cl . maxspeed [ destsplit ] = MSG_ReadFloat ( ) ;
break ;
case svc_entgravity :
cl . entgravity [ destsplit ] = MSG_ReadFloat ( ) ;
break ;
case svc_setpause :
cl . paused = MSG_ReadByte ( ) ;
if ( cl . paused )
CDAudio_Pause ( ) ;
else
CDAudio_Resume ( ) ;
break ;
# ifdef PEXT_BULLETENS
case svc_bulletentext :
if ( ! ( cls . fteprotocolextensions & PEXT_BULLETENS ) )
Host_EndGame ( " PEXT_BULLETENS is meant to be disabled \n " ) ;
Bul_ParseMessage ( ) ;
break ;
# endif
# ifdef PEXT_LIGHTUPDATES
case svc_lightnings :
if ( ! ( cls . fteprotocolextensions & PEXT_LIGHTUPDATES ) )
Host_EndGame ( " PEXT_LIGHTUPDATES is meant to be disabled \n " ) ;
CL_ParseProjectiles ( cl_lightningindex ) ;
break ;
# endif
case svc_ftesetclientpersist :
CL_ParseClientPersist ( ) ;
break ;
# ifdef Q2BSPS
case svc_setportalstate :
i = MSG_ReadByte ( ) ;
j = MSG_ReadByte ( ) ;
i * = j & 127 ;
j & = ~ 128 ;
CMQ2_SetAreaPortalState ( i , j ! = 0 ) ;
break ;
# endif
2004-09-01 00:01:08 +00:00
case svc_showpic :
SCR_ShowPic_Create ( ) ;
break ;
case svc_hidepic :
SCR_ShowPic_Hide ( ) ;
break ;
case svc_movepic :
SCR_ShowPic_Move ( ) ;
break ;
case svc_updatepic :
SCR_ShowPic_Update ( ) ;
break ;
2004-10-10 06:32:29 +00:00
2004-11-22 00:00:54 +00:00
case svcqw_effect :
CL_ParseEffect ( false ) ;
break ;
case svcqw_effect2 :
CL_ParseEffect ( true ) ;
break ;
2005-02-28 07:16:19 +00:00
# ifdef PEXT_CSQC
case svc_csqcentities :
CSQC_ParseEntities ( ) ;
break ;
# endif
2005-05-26 12:55:34 +00:00
case svc_precache :
CL_ParsePrecache ( ) ;
break ;
2004-08-23 00:15:46 +00:00
}
}
}
# ifdef Q2CLIENT
void CLQ2_ParseServerMessage ( void )
{
int cmd ;
char * s ;
int i ;
// int j;
received_framecount = host_framecount ;
cl . last_servermessage = realtime ;
CL_ClearProjectiles ( ) ;
//
// if recording demos, copy the message out
//
if ( cl_shownet . value = = 1 )
Con_TPrintf ( TL_INT_SPACE , net_message . cursize ) ;
else if ( cl_shownet . value = = 2 )
Con_TPrintf ( TLC_LINEBREAK_MINUS ) ;
CL_ParseClientdata ( ) ;
//
// parse the message
//
while ( 1 )
{
if ( msg_badread )
{
2005-03-18 06:14:07 +00:00
SV_UnspawnServer ( ) ;
Host_EndGame ( " CLQ2_ParseServerMessage: Bad server message " ) ;
2004-08-23 00:15:46 +00:00
break ;
}
cmd = MSG_ReadByte ( ) ;
if ( cmd = = - 1 )
{
msg_readcount + + ; // so the EOM showner has the right value
SHOWNET ( " END OF MESSAGE " ) ;
break ;
}
SHOWNET ( va ( " %i " , cmd ) ) ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
// other commands
switch ( cmd )
{
default :
Host_EndGame ( " CL_ParseServerMessage: Illegible server message " ) ;
return ;
//known to game
case svcq2_muzzleflash :
2005-09-26 03:40:09 +00:00
CLQ2_ParseMuzzleFlash ( ) ;
2004-08-23 00:15:46 +00:00
break ;
case svcq2_muzzleflash2 :
CLQ2_ParseMuzzleFlash2 ( ) ;
return ;
case svcq2_temp_entity :
CLQ2_ParseTEnt ( ) ;
break ;
case svcq2_layout :
s = MSG_ReadString ( ) ;
Q_strncpyz ( cl . q2layout , s , sizeof ( cl . q2layout ) ) ;
2005-09-09 23:40:55 +00:00
# ifdef VM_UI
2004-08-23 00:15:46 +00:00
UI_Q2LayoutChanged ( ) ;
2005-09-09 23:40:55 +00:00
# endif
2004-08-23 00:15:46 +00:00
break ;
case svcq2_inventory :
2005-09-04 05:48:26 +00:00
CLQ2_ParseInventory ( ) ;
break ;
2004-08-23 00:15:46 +00:00
// the rest are private to the client and server
case svcq2_nop : //6
Host_EndGame ( " CL_ParseServerMessage: svcq2_nop not implemented " ) ;
return ;
case svcq2_disconnect :
if ( cls . state = = ca_connected )
Host_EndGame ( " Server disconnected \n "
" Server version may not be compatible " ) ;
else
Host_EndGame ( " Server disconnected " ) ;
return ;
case svcq2_reconnect : //8
Con_TPrintf ( TLC_RECONNECTING ) ;
2005-03-23 22:14:08 +00:00
CL_SendClientCommand ( true , " new " ) ;
2004-08-23 00:15:46 +00:00
break ;
case svcq2_sound : //9 // <see code>
CLQ2_ParseStartSoundPacket ( ) ;
break ;
case svcq2_print : //10 // [qbyte] id [string] null terminated string
i = MSG_ReadByte ( ) ;
s = MSG_ReadString ( ) ;
2005-11-30 02:26:12 +00:00
2004-08-23 00:15:46 +00:00
if ( i = = PRINT_CHAT )
{
2005-09-07 14:55:25 +00:00
char * msg ;
player_info_t * plr = NULL ;
2006-02-17 19:54:47 +00:00
if ( ( msg = CL_ParseChat ( s , & plr ) ) )
2004-09-30 22:42:34 +00:00
{
CL_ParsePrint ( s , i ) ;
2005-09-08 08:10:06 +00:00
CL_PrintChat ( plr , s , msg , msgflags ) ;
2004-09-30 22:42:34 +00:00
}
2004-08-23 00:15:46 +00:00
}
else
{
2006-01-13 06:27:18 +00:00
# ifdef PLUGINS
2006-01-01 09:01:15 +00:00
if ( Plug_ServerMessage ( s , i ) )
2006-01-13 06:27:18 +00:00
# endif
2006-01-01 09:01:15 +00:00
{
CL_ParsePrint ( s , i ) ;
CL_PrintStandardMessage ( s ) ;
}
2004-08-23 00:15:46 +00:00
}
con_ormask = 0 ;
break ;
case svcq2_stufftext : //11 // [string] stuffed into client's console buffer, should be \n terminated
s = MSG_ReadString ( ) ;
Con_DPrintf ( " stufftext: %s \n " , s ) ;
if ( ! strncmp ( s , " precache " , 8 ) ) //big major hack. Q2 uses a command that q1 has as a cvar.
{ //call the q2 precache function.
CLQ2_Precache_f ( ) ;
}
else
Cbuf_AddText ( s , RESTRICT_SERVER ) ; //don't let the local user cheat
break ;
case svcq2_serverdata : //12 // [long] protocol ...
Cbuf_Execute ( ) ; // make sure any stuffed commands are done
CLQ2_ParseServerData ( ) ;
break ;
case svcq2_configstring : //13 // [short] [string]
CLQ2_ParseConfigString ( ) ;
break ;
2005-09-26 03:40:09 +00:00
case svcq2_spawnbaseline : //14
2004-08-23 00:15:46 +00:00
CLQ2_ParseBaseline ( ) ;
break ;
case svcq2_centerprint : //15 // [string] to put in center of the screen
2006-01-01 09:01:15 +00:00
s = MSG_ReadString ( ) ;
2006-01-13 06:27:18 +00:00
# ifdef PLUGINS
2006-01-01 09:01:15 +00:00
if ( Plug_CenterPrintMessage ( s , 0 ) )
2006-01-13 06:27:18 +00:00
# endif
2006-01-01 09:01:15 +00:00
SCR_CenterPrint ( 0 , s ) ;
2004-08-23 00:15:46 +00:00
break ;
case svcq2_download : //16 // [short] size [size bytes]
CL_ParseDownload ( ) ;
break ;
case svcq2_playerinfo : //17 // variable
Host_EndGame ( " CL_ParseServerMessage: svcq2_playerinfo not implemented " ) ;
return ;
case svcq2_packetentities : //18 // [...]
Host_EndGame ( " CL_ParseServerMessage: svcq2_packetentities not implemented " ) ;
return ;
case svcq2_deltapacketentities : //19 // [...]
Host_EndGame ( " CL_ParseServerMessage: svcq2_deltapacketentities not implemented " ) ;
return ;
case svcq2_frame : //20 (the bastard to implement.)
CLQ2_ParseFrame ( ) ;
break ;
}
}
CL_SetSolidEntities ( ) ;
}
# endif
# ifdef NQPROT
2005-10-16 03:53:31 +00:00
//Proquake specific stuff
# define pqc_nop 1
# define pqc_new_team 2
# define pqc_erase_team 3
# define pqc_team_frags 4
# define pqc_match_time 5
# define pqc_match_reset 6
# define pqc_ping_times 7
int MSG_ReadBytePQ ( char * * s )
{
int ret = ( * s ) [ 0 ] * 16 + ( * s ) [ 1 ] - 272 ;
* s + = 2 ;
return ret ;
}
int MSG_ReadShortPQ ( char * * s )
{
return MSG_ReadBytePQ ( s ) * 256 + MSG_ReadBytePQ ( s ) ;
}
void CLNQ_ParseProQuakeMessage ( char * s )
{
2005-11-30 01:20:53 +00:00
int cmd ;
int ping ;
// int team, shirt, frags, i, j;
2005-10-16 03:53:31 +00:00
s + + ;
cmd = * s + + ;
2005-11-26 03:02:55 +00:00
2005-10-16 03:53:31 +00:00
switch ( cmd )
{
default :
Con_DPrintf ( " Unrecognised ProQuake Message %i \n " , cmd ) ;
break ;
/* case pqc_new_team:
Sbar_Changed ( ) ;
team = MSG_ReadByte ( ) - 16 ;
if ( team < 0 | | team > 13 )
Host_Error ( " CL_ParseProQuakeMessage: pqc_new_team invalid team " ) ;
shirt = MSG_ReadByte ( ) - 16 ;
cl . teamgame = true ;
// cl.teamscores[team].frags = 0; // JPG 3.20 - removed this
cl . teamscores [ team ] . colors = 16 * shirt + team ;
//Con_Printf("pqc_new_team %d %d\n", team, shirt);
break ;
case pqc_erase_team :
Sbar_Changed ( ) ;
team = MSG_ReadByte ( ) - 16 ;
if ( team < 0 | | team > 13 )
Host_Error ( " CL_ParseProQuakeMessage: pqc_erase_team invalid team " ) ;
cl . teamscores [ team ] . colors = 0 ;
cl . teamscores [ team ] . frags = 0 ; // JPG 3.20 - added this
//Con_Printf("pqc_erase_team %d\n", team);
break ;
case pqc_team_frags :
Sbar_Changed ( ) ;
team = MSG_ReadByte ( ) - 16 ;
if ( team < 0 | | team > 13 )
Host_Error ( " CL_ParseProQuakeMessage: pqc_team_frags invalid team " ) ;
frags = MSG_ReadShortPQ ( ) ; ;
if ( frags & 32768 )
frags = frags - 65536 ;
cl . teamscores [ team ] . frags = frags ;
//Con_Printf("pqc_team_frags %d %d\n", team, frags);
2005-11-26 03:02:55 +00:00
break ;
2005-10-16 03:53:31 +00:00
case pqc_match_time :
Sbar_Changed ( ) ;
cl . minutes = MSG_ReadBytePQ ( ) ;
cl . seconds = MSG_ReadBytePQ ( ) ;
cl . last_match_time = cl . time ;
//Con_Printf("pqc_match_time %d %d\n", cl.minutes, cl.seconds);
break ;
case pqc_match_reset :
Sbar_Changed ( ) ;
for ( i = 0 ; i < 14 ; i + + )
{
cl . teamscores [ i ] . colors = 0 ;
cl . teamscores [ i ] . frags = 0 ; // JPG 3.20 - added this
}
//Con_Printf("pqc_match_reset\n");
break ;
*/
case pqc_ping_times :
while ( ( ping = MSG_ReadShortPQ ( & s ) ) )
{
if ( ( ping / 4096 ) > = MAX_CLIENTS )
Host_Error ( " CL_ParseProQuakeMessage: pqc_ping_times > MAX_CLIENTS " ) ;
cl . players [ ping / 4096 ] . ping = ping & 4095 ;
}
break ;
}
}
2004-08-23 00:15:46 +00:00
void CLNQ_ParseServerMessage ( void )
{
int cmd ;
char * s ;
int i , j ;
// received_framecount = host_framecount;
// cl.last_servermessage = realtime;
CL_ClearProjectiles ( ) ;
cl . fixangle = false ;
2005-05-26 12:55:34 +00:00
cl . allowsendpacket = true ;
2004-08-23 00:15:46 +00:00
//
// if recording demos, copy the message out
//
if ( cl_shownet . value = = 1 )
Con_TPrintf ( TL_INT_SPACE , net_message . cursize ) ;
else if ( cl_shownet . value = = 2 )
Con_TPrintf ( TLC_LINEBREAK_MINUS ) ;
CL_ParseClientdata ( ) ;
//
// parse the message
//
while ( 1 )
{
if ( msg_badread )
{
2006-02-12 20:20:01 +00:00
CL_DumpPacket ( ) ;
2004-08-23 00:15:46 +00:00
Host_EndGame ( " CL_ParseServerMessage: Bad server message " ) ;
break ;
}
cmd = MSG_ReadByte ( ) ;
if ( cmd = = - 1 )
{
msg_readcount + + ; // so the EOM showner has the right value
SHOWNET ( " END OF MESSAGE " ) ;
break ;
}
if ( cmd & 128 )
{
SHOWNET ( " fast update " ) ;
CLNQ_ParseEntity ( cmd & 127 ) ;
continue ;
}
2004-11-27 08:16:25 +00:00
SHOWNET2 ( svc_nqstrings [ cmd > ( sizeof ( svc_nqstrings ) / sizeof ( char * ) ) ? 0 : cmd ] , cmd ) ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
// other commands
switch ( cmd )
{
default :
2006-02-12 20:20:01 +00:00
CL_DumpPacket ( ) ;
2004-11-20 01:21:17 +00:00
Host_EndGame ( " CLNQ_ParseServerMessage: Illegible server message (%i) " , cmd ) ;
2004-08-23 00:15:46 +00:00
return ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case svc_nop :
// Con_Printf ("svc_nop\n");
2005-09-26 03:40:09 +00:00
break ;
2004-08-23 00:15:46 +00:00
case svc_print :
s = MSG_ReadString ( ) ;
2005-11-30 02:26:12 +00:00
2004-09-30 22:42:34 +00:00
if ( * s = = 1 | | * s = = 2 )
{
2005-09-07 14:55:25 +00:00
char * msg ;
player_info_t * plr = NULL ;
2006-02-17 19:54:47 +00:00
if ( ( msg = CL_ParseChat ( s + 1 , & plr ) ) )
2004-09-30 22:42:34 +00:00
{
2005-09-07 14:55:25 +00:00
CL_ParsePrint ( s + 1 , PRINT_CHAT ) ;
2005-09-08 08:10:06 +00:00
CL_PrintChat ( plr , s + 1 , msg , msgflags ) ;
2004-09-30 22:42:34 +00:00
}
}
else
{
2006-01-13 06:27:18 +00:00
# ifdef PLUGINS
2006-01-01 09:01:15 +00:00
if ( Plug_ServerMessage ( s , PRINT_HIGH ) )
2006-01-13 06:27:18 +00:00
# endif
2006-01-01 09:01:15 +00:00
{
CL_ParsePrint ( s , PRINT_HIGH ) ;
CL_PrintStandardMessage ( s ) ;
}
2004-09-30 22:42:34 +00:00
}
2004-08-23 00:15:46 +00:00
con_ormask = 0 ;
break ;
case svc_disconnect :
2005-05-26 12:55:34 +00:00
CL_Disconnect ( ) ;
2004-08-23 00:15:46 +00:00
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case svc_centerprint :
2006-01-01 09:01:15 +00:00
s = MSG_ReadString ( ) ;
2006-01-13 06:27:18 +00:00
# ifdef PLUGINS
2006-01-01 09:01:15 +00:00
if ( Plug_CenterPrintMessage ( s , 0 ) )
2006-01-13 06:27:18 +00:00
# endif
2006-01-01 09:01:15 +00:00
SCR_CenterPrint ( 0 , s ) ;
2004-08-23 00:15:46 +00:00
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case svc_stufftext :
s = MSG_ReadString ( ) ;
2005-10-16 03:53:31 +00:00
if ( * s = = 1 )
{
Con_DPrintf ( " Proquake: %s \n " , s ) ;
CLNQ_ParseProQuakeMessage ( s ) ;
}
else
{
Con_DPrintf ( " stufftext: %s \n " , s ) ;
2007-06-20 00:02:54 +00:00
if ( ! strncmp ( s , " cl_serverextension_download " , 14 ) )
{
}
else if ( ! strncmp ( s , " \n cl_downloadbegin " , 17 ) )
CLDP_ParseDownloadBegin ( s ) ;
else if ( ! strncmp ( s , " \n cl_downloadfinished " , 17 ) )
CLDP_ParseDownloadFinished ( s ) ;
else if ( ! strncmp ( s , " csqc_progname " , 14 ) )
{
// Info_SetValueForStarKey(cl.serverinfo, "*cspname", s+14, sizeof(cl.serverinfo));
}
else if ( ! strncmp ( s , " csqc_progsize " , 14 ) )
cl_dp_csqc_progssize = atoi ( s + 14 ) ;
else if ( ! strncmp ( s , " csqc_progcrc " , 13 ) )
cl_dp_csqc_progscrc = atoi ( s + 13 ) ;
else
{
Cbuf_AddText ( s , RESTRICT_SERVER ) ; //no cheating here...
}
2005-10-16 03:53:31 +00:00
}
2004-08-23 00:15:46 +00:00
break ;
case svc_serverdata :
Cbuf_Execute ( ) ; // make sure any stuffed commands are done
CLNQ_ParseServerData ( ) ;
2005-09-26 03:40:09 +00:00
vid . recalc_refdef = true ; // leave full screen intermission
2004-08-23 00:15:46 +00:00
break ;
2005-05-26 12:55:34 +00:00
case svcdp_precache :
CL_ParsePrecache ( ) ;
2004-12-05 08:19:54 +00:00
break ;
2004-08-23 00:15:46 +00:00
case svc_cdtrack :
cl . cdtrack = MSG_ReadByte ( ) ;
MSG_ReadByte ( ) ;
2005-09-26 03:40:09 +00:00
CDAudio_Play ( ( qbyte ) cl . cdtrack , true ) ;
break ;
2004-08-23 00:15:46 +00:00
case svc_setview :
if ( ! cl . viewentity [ 0 ] )
2006-01-28 19:04:13 +00:00
{
2004-08-23 00:15:46 +00:00
cl . playernum [ 0 ] = ( cl . viewentity [ 0 ] = MSG_ReadShort ( ) ) - 1 ;
2006-01-28 19:04:13 +00:00
if ( cl . playernum [ 0 ] > = MAX_CLIENTS )
{
cl . playernum [ 0 ] = 32 ; //pretend it's an mvd (we have that spare slot)
2006-02-22 01:24:22 +00:00
Con_Printf ( S_WARNING " WARNING: Server put us in slot %i. We are not on the scoreboard. \n " ) ;
2006-01-28 19:04:13 +00:00
}
}
2004-08-23 00:15:46 +00:00
else
cl . viewentity [ 0 ] = MSG_ReadShort ( ) ;
break ;
case svc_signonnum :
i = MSG_ReadByte ( ) ;
if ( i < = cls . signon )
Host_EndGame ( " Received signon %i when at %i " , i , cls . signon ) ;
cls . signon = i ;
CLNQ_SignonReply ( ) ;
break ;
case svc_setpause :
cl . paused = MSG_ReadByte ( ) ;
if ( cl . paused )
CDAudio_Pause ( ) ;
else
CDAudio_Resume ( ) ;
break ;
case svc_spawnstaticsound :
CL_ParseStaticSound ( ) ;
break ;
case svc_spawnstatic :
CL_ParseStatic ( 1 ) ;
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case svc_spawnbaseline :
i = MSG_ReadShort ( ) ;
2006-07-24 04:24:41 +00:00
if ( ! CL_CheckBaselines ( i ) )
Host_EndGame ( " CLNQ_ParseServerMessage: svc_spawnbaseline failed with size %i " , i ) ;
CL_ParseBaseline ( cl_baselines + i ) ;
2004-08-23 00:15:46 +00:00
break ;
case svc_time :
2005-10-01 03:09:17 +00:00
cls . netchan . outgoing_sequence + + ;
cls . netchan . incoming_sequence = cls . netchan . outgoing_sequence - 1 ;
cl . validsequence = cls . netchan . incoming_sequence - 1 ;
2004-08-23 00:15:46 +00:00
received_framecount = host_framecount ;
cl . last_servermessage = realtime ;
2005-10-01 03:09:17 +00:00
2005-05-26 12:55:34 +00:00
cl . oldgametime = cl . gametime ;
2005-06-04 04:20:20 +00:00
cl . oldgametimemark = cl . gametimemark ;
2004-08-23 00:15:46 +00:00
cl . gametime = MSG_ReadFloat ( ) ;
cl . gametimemark = realtime ;
2005-10-01 03:09:17 +00:00
2004-12-05 08:19:54 +00:00
if ( nq_dp_protocol < 5 )
2004-11-27 08:16:25 +00:00
{
// cl.frames[(cls.netchan.incoming_sequence-1)&UPDATE_MASK].packet_entities = cl.frames[cls.netchan.incoming_sequence&UPDATE_MASK].packet_entities;
cl . frames [ cls . netchan . incoming_sequence & UPDATE_MASK ] . packet_entities . num_entities = 0 ;
2005-11-26 03:02:55 +00:00
cl . frames [ cls . netchan . incoming_sequence & UPDATE_MASK ] . packet_entities . servertime = cl . gametime ;
2004-11-27 08:16:25 +00:00
}
2004-08-23 00:15:46 +00:00
break ;
case svc_updatename :
Sbar_Changed ( ) ;
i = MSG_ReadByte ( ) ;
2005-05-17 02:36:54 +00:00
if ( i > = MAX_CLIENTS )
2006-01-28 19:04:13 +00:00
MSG_ReadString ( ) ;
else
strcpy ( cl . players [ i ] . name , MSG_ReadString ( ) ) ;
2004-08-23 00:15:46 +00:00
break ;
case svc_updatefrags :
Sbar_Changed ( ) ;
i = MSG_ReadByte ( ) ;
2005-05-17 02:36:54 +00:00
if ( i > = MAX_CLIENTS )
2006-01-28 19:04:13 +00:00
MSG_ReadShort ( ) ;
else
cl . players [ i ] . frags = MSG_ReadShort ( ) ;
2004-08-23 00:15:46 +00:00
break ;
case svc_updatecolors :
{
int a ;
Sbar_Changed ( ) ;
i = MSG_ReadByte ( ) ;
a = MSG_ReadByte ( ) ;
2006-01-28 19:04:13 +00:00
if ( i > = MAX_CLIENTS )
break ;
2004-08-23 00:15:46 +00:00
//FIXME:!!!!
2007-07-23 18:52:11 +00:00
cl . players [ i ] . rtopcolor = a & 0x0f ;
cl . players [ i ] . rbottomcolor = ( a & 0xf0 ) > > 4 ;
2004-08-23 00:15:46 +00:00
if ( cls . state = = ca_active )
Skin_Find ( & cl . players [ i ] ) ;
Sbar_Changed ( ) ;
CL_NewTranslation ( i ) ;
}
break ;
case svc_lightstyle :
i = MSG_ReadByte ( ) ;
if ( i > = MAX_LIGHTSTYLES )
2005-10-01 03:09:17 +00:00
{
Con_Printf ( " svc_lightstyle: %i >= MAX_LIGHTSTYLES \n " , i ) ;
MSG_ReadString ( ) ;
break ;
}
2004-08-23 00:15:46 +00:00
# ifdef PEXT_LIGHTSTYLECOL
cl_lightstyle [ i ] . colour = 7 ; //white
# endif
Q_strncpyz ( cl_lightstyle [ i ] . map , MSG_ReadString ( ) , sizeof ( cl_lightstyle [ i ] . map ) ) ;
cl_lightstyle [ i ] . length = Q_strlen ( cl_lightstyle [ i ] . map ) ;
break ;
case svc_updatestat :
2005-09-26 03:40:09 +00:00
i = MSG_ReadByte ( ) ;
2004-08-23 00:15:46 +00:00
j = MSG_ReadLong ( ) ;
CL_SetStat ( 0 , i , j ) ;
break ;
2005-09-26 03:40:09 +00:00
case svcdp_updatestatbyte :
i = MSG_ReadByte ( ) ;
2004-12-05 08:19:54 +00:00
j = MSG_ReadByte ( ) ;
CL_SetStat ( 0 , i , j ) ;
break ;
2004-08-23 00:15:46 +00:00
case svc_setangle :
for ( i = 0 ; i < 3 ; i + + )
cl . viewangles [ 0 ] [ i ] = MSG_ReadAngle ( ) ;
// cl.viewangles[PITCH] = cl.viewangles[ROLL] = 0;
break ;
case svc_clientdata :
2005-09-26 03:40:09 +00:00
CLNQ_ParseClientdata ( ) ;
2004-08-23 00:15:46 +00:00
break ;
case svc_sound :
CLNQ_ParseStartSoundPacket ( ) ;
break ;
case svc_temp_entity :
CL_ParseTEnt ( true ) ;
break ;
2005-09-26 03:40:09 +00:00
2004-08-23 00:15:46 +00:00
case svc_particle :
2005-03-10 03:55:18 +00:00
CLNQ_ParseParticleEffect ( ) ;
2004-08-23 00:15:46 +00:00
break ;
case svc_killedmonster :
cl . stats [ 0 ] [ STAT_MONSTERS ] + + ;
break ;
case svc_foundsecret :
cl . stats [ 0 ] [ STAT_SECRETS ] + + ;
break ;
case svc_intermission :
2005-07-14 01:57:34 +00:00
if ( ! cl . intermission )
TP_ExecTrigger ( " f_mapend " ) ;
2004-08-23 00:15:46 +00:00
cl . intermission = 1 ;
2005-11-26 03:02:55 +00:00
cl . completed_time = cl . servertime ;
2004-08-23 00:15:46 +00:00
vid . recalc_refdef = true ; // go to full screen
break ;
case svc_finale :
cl . intermission = 2 ;
2005-11-26 03:02:55 +00:00
cl . completed_time = cl . servertime ;
2004-08-23 00:15:46 +00:00
vid . recalc_refdef = true ; // go to full screen
2005-09-26 03:40:09 +00:00
SCR_CenterPrint ( 0 , MSG_ReadString ( ) ) ;
2004-08-23 00:15:46 +00:00
break ;
case svc_cutscene :
cl . intermission = 3 ;
2005-11-26 03:02:55 +00:00
cl . completed_time = cl . servertime ;
2004-08-23 00:15:46 +00:00
vid . recalc_refdef = true ; // go to full screen
SCR_CenterPrint ( 0 , MSG_ReadString ( ) ) ;
break ;
case svc_sellscreen : //pantsie
Cmd_ExecuteString ( " help 0 " , RESTRICT_RCON ) ;
break ;
case svc_damage :
V_ParseDamage ( 0 ) ;
break ;
2004-11-20 01:21:17 +00:00
case svcnq_effect :
CL_ParseEffect ( false ) ;
break ;
case svcnq_effect2 :
CL_ParseEffect ( true ) ;
break ;
2004-11-27 08:16:25 +00:00
2007-06-20 00:02:54 +00:00
case svcdp_entities :
2004-12-05 08:19:54 +00:00
if ( cls . signon = = 4 - 1 )
{ // first update is the final signon stage
cls . signon = 4 ;
CLNQ_SignonReply ( ) ;
2005-09-26 03:40:09 +00:00
}
2004-11-27 08:16:25 +00:00
//well, it's really any protocol, but we're only going to support version 5.
CLNQ_ParseDarkPlaces5Entities ( ) ;
break ;
2007-06-20 00:02:54 +00:00
case svcdp_csqcentities :
CSQC_ParseEntities ( ) ;
break ;
case svcdp_downloaddata :
CLDP_ParseDownloadData ( ) ;
break ;
2004-08-23 00:15:46 +00:00
}
2007-06-20 00:02:54 +00:00
2004-08-23 00:15:46 +00:00
}
}
# endif