mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-22 01:45:19 +01:00
engine: client: explicitly pass protocol to svc_time parser
This commit is contained in:
parent
2b85da3bc9
commit
0d4296e0e1
@ -181,14 +181,14 @@ CL_ParseServerTime
|
|||||||
|
|
||||||
==================
|
==================
|
||||||
*/
|
*/
|
||||||
void CL_ParseServerTime( sizebuf_t *msg )
|
void CL_ParseServerTime( sizebuf_t *msg, connprotocol_t proto )
|
||||||
{
|
{
|
||||||
double dt;
|
double dt;
|
||||||
|
|
||||||
cl.mtime[1] = cl.mtime[0];
|
cl.mtime[1] = cl.mtime[0];
|
||||||
cl.mtime[0] = MSG_ReadFloat( msg );
|
cl.mtime[0] = MSG_ReadFloat( msg );
|
||||||
|
|
||||||
if( cls.legacymode == PROTO_QUAKE )
|
if( proto == PROTO_QUAKE )
|
||||||
return; // don't mess the time
|
return; // don't mess the time
|
||||||
|
|
||||||
if( cl.maxclients == 1 )
|
if( cl.maxclients == 1 )
|
||||||
@ -2544,7 +2544,7 @@ void CL_ParseServerMessage( sizebuf_t *msg )
|
|||||||
cl.frames[cl.parsecountmod].graphdata.sound += MSG_GetNumBytesRead( msg ) - bufStart;
|
cl.frames[cl.parsecountmod].graphdata.sound += MSG_GetNumBytesRead( msg ) - bufStart;
|
||||||
break;
|
break;
|
||||||
case svc_time:
|
case svc_time:
|
||||||
CL_ParseServerTime( msg );
|
CL_ParseServerTime( msg, PROTO_CURRENT );
|
||||||
break;
|
break;
|
||||||
case svc_print:
|
case svc_print:
|
||||||
Con_Printf( "%s", MSG_ReadString( msg ));
|
Con_Printf( "%s", MSG_ReadString( msg ));
|
||||||
|
@ -419,7 +419,7 @@ void CL_ParseLegacyServerMessage( sizebuf_t *msg )
|
|||||||
|
|
||||||
break;
|
break;
|
||||||
case svc_time:
|
case svc_time:
|
||||||
CL_ParseServerTime( msg );
|
CL_ParseServerTime( msg, PROTO_LEGACY );
|
||||||
break;
|
break;
|
||||||
case svc_print:
|
case svc_print:
|
||||||
Con_Printf( "%s", MSG_ReadString( msg ));
|
Con_Printf( "%s", MSG_ReadString( msg ));
|
||||||
|
@ -570,7 +570,7 @@ void CL_ParseGoldSrcServerMessage( sizebuf_t *msg )
|
|||||||
cl.frames[cl.parsecountmod].graphdata.sound += MSG_GetNumBytesRead( msg ) - bufStart;
|
cl.frames[cl.parsecountmod].graphdata.sound += MSG_GetNumBytesRead( msg ) - bufStart;
|
||||||
break;
|
break;
|
||||||
case svc_time:
|
case svc_time:
|
||||||
CL_ParseServerTime( msg );
|
CL_ParseServerTime( msg, PROTO_GOLDSRC );
|
||||||
break;
|
break;
|
||||||
case svc_print:
|
case svc_print:
|
||||||
Con_Printf( "%s", MSG_ReadString( msg ));
|
Con_Printf( "%s", MSG_ReadString( msg ));
|
||||||
|
@ -950,7 +950,7 @@ void CL_ParseQuakeMessage( sizebuf_t *msg )
|
|||||||
break;
|
break;
|
||||||
case svc_time:
|
case svc_time:
|
||||||
Cbuf_AddText( "\n" ); // new frame was started
|
Cbuf_AddText( "\n" ); // new frame was started
|
||||||
CL_ParseServerTime( msg );
|
CL_ParseServerTime( msg, PROTO_QUAKE );
|
||||||
break;
|
break;
|
||||||
case svc_print:
|
case svc_print:
|
||||||
str = MSG_ReadString( msg );
|
str = MSG_ReadString( msg );
|
||||||
|
@ -896,7 +896,7 @@ qboolean CL_DispatchUserMessage( const char *pszName, int iSize, void *pbuf );
|
|||||||
qboolean CL_RequestMissingResources( void );
|
qboolean CL_RequestMissingResources( void );
|
||||||
void CL_RegisterResources( sizebuf_t *msg, connprotocol_t proto );
|
void CL_RegisterResources( sizebuf_t *msg, connprotocol_t proto );
|
||||||
void CL_ParseViewEntity( sizebuf_t *msg );
|
void CL_ParseViewEntity( sizebuf_t *msg );
|
||||||
void CL_ParseServerTime( sizebuf_t *msg );
|
void CL_ParseServerTime( sizebuf_t *msg, connprotocol_t proto );
|
||||||
void CL_ParseUserMessage( sizebuf_t *msg, int svc_num, connprotocol_t proto );
|
void CL_ParseUserMessage( sizebuf_t *msg, int svc_num, connprotocol_t proto );
|
||||||
void CL_ParseFinaleCutscene( sizebuf_t *msg, int level );
|
void CL_ParseFinaleCutscene( sizebuf_t *msg, int level );
|
||||||
void CL_ParseTextMessage( sizebuf_t *msg );
|
void CL_ParseTextMessage( sizebuf_t *msg );
|
||||||
|
Loading…
Reference in New Issue
Block a user