2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
cl_parse.c
|
|
|
|
|
2001-05-19 23:31:20 +00:00
|
|
|
parse a message received from the server
|
2001-02-19 21:15:25 +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
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2003-01-15 15:31:36 +00:00
|
|
|
|
2001-05-09 05:41:34 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-07-31 05:19:03 +00:00
|
|
|
#include "QF/cbuf.h"
|
2001-04-10 21:45:42 +00:00
|
|
|
#include "QF/cdaudio.h"
|
2001-04-09 21:15:09 +00:00
|
|
|
#include "QF/cmd.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/console.h"
|
2001-05-31 03:41:35 +00:00
|
|
|
#include "QF/cvar.h"
|
2010-08-24 00:53:54 +00:00
|
|
|
#include "QF/dstring.h"
|
2003-08-13 06:23:20 +00:00
|
|
|
#include "QF/idparse.h"
|
|
|
|
#include "QF/input.h"
|
2001-04-09 21:15:09 +00:00
|
|
|
#include "QF/msg.h"
|
2021-03-21 07:13:03 +00:00
|
|
|
#include "QF/plist.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/sys.h"
|
2001-04-15 21:11:41 +00:00
|
|
|
#include "QF/screen.h"
|
2001-11-27 22:44:12 +00:00
|
|
|
#include "QF/skin.h"
|
2022-06-03 06:43:53 +00:00
|
|
|
#include "QF/sound.h"
|
2010-08-24 00:53:54 +00:00
|
|
|
#include "QF/va.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2022-03-04 16:48:10 +00:00
|
|
|
#include "QF/scene/scene.h"
|
|
|
|
|
2012-02-14 08:28:09 +00:00
|
|
|
#include "QF/plugin/vid_render.h"
|
2021-07-24 05:19:52 +00:00
|
|
|
#include "QF/scene/entity.h"
|
2012-02-14 08:28:09 +00:00
|
|
|
|
2022-03-29 04:46:11 +00:00
|
|
|
#include "client/particles.h"
|
2022-12-01 04:11:16 +00:00
|
|
|
#include "client/sbar.h"
|
2021-03-10 09:00:16 +00:00
|
|
|
#include "client/temp_entities.h"
|
2022-03-04 16:48:10 +00:00
|
|
|
#include "client/world.h"
|
2021-03-10 09:00:16 +00:00
|
|
|
|
2010-08-24 00:53:54 +00:00
|
|
|
#include "compat.h"
|
2020-06-21 14:15:17 +00:00
|
|
|
|
|
|
|
#include "nq/include/client.h"
|
|
|
|
#include "nq/include/host.h"
|
|
|
|
#include "nq/include/server.h"
|
|
|
|
#include "nq/include/game.h"
|
2001-05-09 05:41:34 +00:00
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
const char *svc_strings[] = {
|
2001-02-19 21:15:25 +00:00
|
|
|
"svc_bad",
|
|
|
|
"svc_nop",
|
|
|
|
"svc_disconnect",
|
|
|
|
"svc_updatestat",
|
2001-05-19 23:31:20 +00:00
|
|
|
"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 view angle to this absolute value
|
|
|
|
|
|
|
|
"svc_serverinfo", // [long] version
|
|
|
|
// [string] signon string
|
|
|
|
// [string]..[0]model cache
|
|
|
|
// [string]...[0]sounds cache
|
|
|
|
// [string]..[0]item cache
|
|
|
|
"svc_lightstyle", // [byte] [string]
|
|
|
|
"svc_updatename", // [byte] [string]
|
|
|
|
"svc_updatefrags", // [byte] [short]
|
|
|
|
"svc_clientdata", // <shortbits + data>
|
|
|
|
"svc_stopsound", // <see code>
|
|
|
|
"svc_updatecolors", // [byte] [byte]
|
|
|
|
"svc_particle", // [vec3] <variable>
|
|
|
|
"svc_damage", // [byte] impact [byte] blood [vec3] from
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
"svc_spawnstatic",
|
|
|
|
"OBSOLETE svc_spawnbinary",
|
|
|
|
"svc_spawnbaseline",
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-05-19 23:31:20 +00:00
|
|
|
"svc_temp_entity", // <variable>
|
2001-02-19 21:15:25 +00:00
|
|
|
"svc_setpause",
|
|
|
|
"svc_signonnum",
|
|
|
|
"svc_centerprint",
|
|
|
|
"svc_killedmonster",
|
|
|
|
"svc_foundsecret",
|
|
|
|
"svc_spawnstaticsound",
|
|
|
|
"svc_intermission",
|
2011-08-27 01:25:41 +00:00
|
|
|
"svc_finale", // [string] text
|
2001-05-19 23:31:20 +00:00
|
|
|
"svc_cdtrack", // [byte] track [byte] looptrack
|
2001-02-19 21:15:25 +00:00
|
|
|
"svc_sellscreen",
|
2010-08-24 00:53:54 +00:00
|
|
|
"svc_cutscene",
|
|
|
|
// end of iD svc
|
|
|
|
// FIXME switchable extensions?
|
|
|
|
// protocol 666
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"svc_skybox",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"svc_bf",
|
|
|
|
"svc_fog",
|
|
|
|
"svc_spawnbaseline2",
|
|
|
|
"svc_spawnstatic2",
|
|
|
|
"svc_spawnstaticsound2",
|
2001-02-19 21:15:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2001-05-14 03:08:24 +00:00
|
|
|
CL_EntityNum
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-14 03:08:24 +00:00
|
|
|
This error checks and tracks the total number of entities
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2012-06-26 06:12:17 +00:00
|
|
|
static entity_state_t *
|
2001-02-26 06:48:02 +00:00
|
|
|
CL_EntityNum (int num)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2010-08-24 00:53:54 +00:00
|
|
|
if (num < 0 || num >= MAX_EDICTS)
|
|
|
|
Host_Error ("CL_EntityNum: %i is an invalid number", num);
|
2012-06-26 06:12:17 +00:00
|
|
|
if (num >= cl.num_entities)
|
|
|
|
cl.num_entities = num + 1;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2012-07-01 02:36:47 +00:00
|
|
|
return &nq_entstates.baseline[num];
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2001-02-26 06:48:02 +00:00
|
|
|
CL_ParseStartSoundPacket (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
float attenuation;
|
2001-12-11 22:37:30 +00:00
|
|
|
int channel, ent, field_mask, sound_num, volume;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
field_mask = MSG_ReadByte (net_message);
|
|
|
|
|
|
|
|
if (field_mask & SND_VOLUME)
|
2001-02-23 23:16:13 +00:00
|
|
|
volume = MSG_ReadByte (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
|
|
|
volume = DEFAULT_SOUND_PACKET_VOLUME;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
if (field_mask & SND_ATTENUATION)
|
2001-02-23 23:16:13 +00:00
|
|
|
attenuation = MSG_ReadByte (net_message) / 64.0;
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
|
|
|
attenuation = DEFAULT_SOUND_PACKET_ATTENUATION;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2010-08-24 00:53:54 +00:00
|
|
|
if (field_mask & SND_LARGEENTITY) {
|
2011-08-28 09:29:46 +00:00
|
|
|
ent = MSG_ReadShort (net_message);
|
2010-08-24 00:53:54 +00:00
|
|
|
channel = MSG_ReadByte (net_message);
|
|
|
|
} else {
|
2011-08-28 09:29:46 +00:00
|
|
|
channel = MSG_ReadShort (net_message);
|
2010-08-24 00:53:54 +00:00
|
|
|
ent = channel >> 3;
|
|
|
|
channel &= 7;
|
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-24 00:53:54 +00:00
|
|
|
if (field_mask & SND_LARGESOUND)
|
2011-08-28 09:29:46 +00:00
|
|
|
sound_num = MSG_ReadShort (net_message);
|
2010-08-24 00:53:54 +00:00
|
|
|
else
|
|
|
|
sound_num = MSG_ReadByte (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-24 00:53:54 +00:00
|
|
|
if (sound_num >= MAX_SOUNDS)
|
|
|
|
Host_Error ("CL_ParseStartSoundPacket: %i > MAX_SOUNDS", sound_num);
|
2001-02-19 21:15:25 +00:00
|
|
|
if (ent > MAX_EDICTS)
|
|
|
|
Host_Error ("CL_ParseStartSoundPacket: ent = %i", ent);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2022-03-30 14:38:01 +00:00
|
|
|
vec4f_t pos = { 0, 0, 0, 1};
|
|
|
|
MSG_ReadCoordV (net_message, (vec_t*)&pos);//FIXME
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
S_StartSound (ent, channel, cl.sound_precache[sound_num], pos,
|
|
|
|
volume / 255.0, attenuation);
|
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
/*
|
2001-05-14 03:08:24 +00:00
|
|
|
CL_KeepaliveMessage
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-14 03:08:24 +00:00
|
|
|
When the client is taking a long time to load stuff, send keepalive
|
|
|
|
messages so the server doesn't disconnect.
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2001-02-26 06:48:02 +00:00
|
|
|
CL_KeepaliveMessage (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-08-29 02:12:57 +00:00
|
|
|
byte olddata[8192];
|
2001-02-26 06:48:02 +00:00
|
|
|
float time;
|
2001-02-19 21:15:25 +00:00
|
|
|
static float lastmsg;
|
2001-02-26 06:48:02 +00:00
|
|
|
int ret;
|
|
|
|
sizebuf_t old;
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
if (sv.active)
|
2001-02-26 06:48:02 +00:00
|
|
|
return; // no need if server is local
|
2001-02-19 21:15:25 +00:00
|
|
|
if (cls.demoplayback)
|
|
|
|
return;
|
|
|
|
|
2001-05-19 23:31:20 +00:00
|
|
|
// read messages from server, should just be nops
|
2001-02-23 23:16:13 +00:00
|
|
|
old = *net_message->message;
|
2001-08-29 02:12:57 +00:00
|
|
|
memcpy (olddata, net_message->message->data,
|
|
|
|
net_message->message->cursize);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
do {
|
2001-02-19 21:15:25 +00:00
|
|
|
ret = CL_GetMessage ();
|
2001-02-26 06:48:02 +00:00
|
|
|
switch (ret) {
|
2003-08-27 22:20:03 +00:00
|
|
|
default:
|
2001-02-26 06:48:02 +00:00
|
|
|
Host_Error ("CL_KeepaliveMessage: CL_GetMessage failed");
|
2003-08-27 22:20:03 +00:00
|
|
|
case 0:
|
2001-02-26 06:48:02 +00:00
|
|
|
break; // nothing waiting
|
2003-08-27 22:20:03 +00:00
|
|
|
case 1:
|
2001-02-19 21:15:25 +00:00
|
|
|
Host_Error ("CL_KeepaliveMessage: received a message");
|
|
|
|
break;
|
2003-08-27 22:20:03 +00:00
|
|
|
case 2:
|
2001-02-26 06:48:02 +00:00
|
|
|
if (MSG_ReadByte (net_message) != svc_nop)
|
2001-02-19 21:15:25 +00:00
|
|
|
Host_Error ("CL_KeepaliveMessage: datagram wasn't a nop");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (ret);
|
|
|
|
|
2001-02-23 23:16:13 +00:00
|
|
|
*net_message->message = old;
|
2001-08-29 02:12:57 +00:00
|
|
|
memcpy (net_message->message->data, olddata,
|
|
|
|
net_message->message->cursize);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-19 23:31:20 +00:00
|
|
|
// check time
|
2001-02-19 21:15:25 +00:00
|
|
|
time = Sys_DoubleTime ();
|
|
|
|
if (time - lastmsg < 5)
|
|
|
|
return;
|
|
|
|
lastmsg = time;
|
|
|
|
|
2001-05-19 23:31:20 +00:00
|
|
|
// write out a nop
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("--> client to server keepalive\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
MSG_WriteByte (&cls.message, clc_nop);
|
|
|
|
NET_SendMessage (cls.netcon, &cls.message);
|
|
|
|
SZ_Clear (&cls.message);
|
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2002-11-08 02:43:04 +00:00
|
|
|
CL_NewMap (const char *mapname)
|
|
|
|
{
|
2022-05-05 05:41:46 +00:00
|
|
|
CL_World_NewMap (mapname, 0);
|
|
|
|
cl.chasestate.worldmodel = cl_world.scene->worldmodel;
|
|
|
|
|
2002-08-06 05:45:03 +00:00
|
|
|
Con_NewMap ();
|
2004-03-02 03:55:18 +00:00
|
|
|
Sbar_CenterPrint (0);
|
2022-05-05 05:41:46 +00:00
|
|
|
|
|
|
|
Hunk_Check (0); // make sure nothing is hurt
|
2002-08-06 05:45:03 +00:00
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2001-02-26 06:48:02 +00:00
|
|
|
CL_ParseServerInfo (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
char model_precache[MAX_MODELS][MAX_QPATH];
|
|
|
|
char sound_precache[MAX_SOUNDS][MAX_QPATH];
|
2001-10-18 04:44:58 +00:00
|
|
|
const char *str;
|
2012-01-09 07:22:39 +00:00
|
|
|
int i;
|
2022-03-04 16:48:10 +00:00
|
|
|
int nummodels;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2021-03-29 10:58:00 +00:00
|
|
|
Sys_MaskPrintf (SYS_dev, "Serverinfo packet received.\n");
|
2001-05-14 03:08:24 +00:00
|
|
|
|
2004-05-04 21:59:17 +00:00
|
|
|
S_BlockSound ();
|
2007-03-17 03:10:45 +00:00
|
|
|
S_StopAllSounds ();
|
2004-01-21 20:09:12 +00:00
|
|
|
|
2001-05-19 23:31:20 +00:00
|
|
|
// wipe the client_state_t struct
|
2001-02-19 21:15:25 +00:00
|
|
|
CL_ClearState ();
|
|
|
|
|
2001-05-14 03:08:24 +00:00
|
|
|
// parse protocol version number
|
2001-02-23 23:16:13 +00:00
|
|
|
i = MSG_ReadLong (net_message);
|
2010-08-24 00:53:54 +00:00
|
|
|
if (i != PROTOCOL_NETQUAKE && i!= PROTOCOL_FITZQUAKE) {
|
2010-11-26 22:25:47 +00:00
|
|
|
Host_Error ("Server returned version %i, not %i or %i\n", i,
|
2010-08-24 00:53:54 +00:00
|
|
|
PROTOCOL_NETQUAKE, PROTOCOL_FITZQUAKE);
|
2004-05-04 21:59:17 +00:00
|
|
|
goto done;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2010-08-24 00:53:54 +00:00
|
|
|
cl.protocol = i;
|
|
|
|
if (cl.protocol == PROTOCOL_FITZQUAKE)
|
|
|
|
write_angles = MSG_WriteAngle16V;
|
|
|
|
else
|
|
|
|
write_angles = MSG_WriteAngleV;
|
2001-05-19 23:31:20 +00:00
|
|
|
// parse maxclients
|
2001-02-23 23:16:13 +00:00
|
|
|
cl.maxclients = MSG_ReadByte (net_message);
|
2001-02-26 06:48:02 +00:00
|
|
|
if (cl.maxclients < 1 || cl.maxclients > MAX_SCOREBOARD) {
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("Bad maxclients (%u) from server\n", cl.maxclients);
|
2004-05-04 21:59:17 +00:00
|
|
|
goto done;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2021-07-28 06:01:45 +00:00
|
|
|
cl.players = Hunk_AllocName (0, cl.maxclients * sizeof (*cl.players),
|
2013-02-02 07:54:05 +00:00
|
|
|
"players");
|
2022-02-25 06:48:57 +00:00
|
|
|
cl.viewstate.voffs_enabled = cl.maxclients == 1;
|
|
|
|
cl.viewstate.bob_enabled = 1;
|
2012-05-26 03:53:03 +00:00
|
|
|
for (i = 0; i < cl.maxclients; i++) {
|
2013-02-02 07:54:05 +00:00
|
|
|
cl.players[i].userinfo = Info_ParseString ("name\\", 0, 0);
|
|
|
|
cl.players[i].name = Info_Key (cl.players[i].userinfo, "name");
|
|
|
|
cl.players[i].topcolor = 0;
|
|
|
|
cl.players[i].bottomcolor = 0;
|
2012-05-26 03:53:03 +00:00
|
|
|
}
|
2022-11-09 03:50:05 +00:00
|
|
|
Sbar_SetPlayers (cl.players, cl.maxclients);
|
2022-11-11 10:33:40 +00:00
|
|
|
Sbar_SetTeamplay (teamplay);//FIXME updates?
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-19 23:31:20 +00:00
|
|
|
// parse gametype
|
2022-11-11 16:47:17 +00:00
|
|
|
Sbar_SetGameType (MSG_ReadByte (net_message));
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-19 23:31:20 +00:00
|
|
|
// parse signon message
|
2001-02-23 23:16:13 +00:00
|
|
|
str = MSG_ReadString (net_message);
|
2001-02-26 06:48:02 +00:00
|
|
|
strncpy (cl.levelname, str, sizeof (cl.levelname) - 1);
|
2022-11-09 03:50:05 +00:00
|
|
|
Sbar_SetLevelName (cl.levelname, 0);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-06-17 16:18:34 +00:00
|
|
|
// separate the printfs so the server message can have a color
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("\n\n\35\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36"
|
2001-08-29 02:12:57 +00:00
|
|
|
"\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\37\n"
|
|
|
|
"\n");
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("%c%s\n", 2, str);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-29 02:12:57 +00:00
|
|
|
// first we go through and touch all of the precache data that still
|
|
|
|
// happens to be in the cache, so precaching something else doesn't
|
|
|
|
// needlessly purge it
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-19 23:31:20 +00:00
|
|
|
// precache models
|
2022-03-04 16:48:10 +00:00
|
|
|
cl_world.models.size = 0;
|
|
|
|
DARRAY_APPEND (&cl_world.models, 0); // ind 0 is null model
|
|
|
|
for (nummodels = 1;; nummodels++) {
|
2001-02-23 23:16:13 +00:00
|
|
|
str = MSG_ReadString (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
if (!str[0])
|
|
|
|
break;
|
2022-03-04 16:48:10 +00:00
|
|
|
if (nummodels >= MAX_MODELS) {
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("Server sent too many model precaches\n");
|
2004-05-04 21:59:17 +00:00
|
|
|
goto done;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2022-03-04 16:48:10 +00:00
|
|
|
strcpy (model_precache[nummodels], str);
|
2001-02-19 21:15:25 +00:00
|
|
|
Mod_TouchModel (str);
|
|
|
|
}
|
|
|
|
|
2001-05-19 23:31:20 +00:00
|
|
|
// precache sounds
|
2001-02-26 06:48:02 +00:00
|
|
|
memset (cl.sound_precache, 0, sizeof (cl.sound_precache));
|
2012-01-09 07:22:39 +00:00
|
|
|
for (cl.numsounds = 1;; cl.numsounds++) {
|
2001-02-23 23:16:13 +00:00
|
|
|
str = MSG_ReadString (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
if (!str[0])
|
|
|
|
break;
|
2012-01-09 07:22:39 +00:00
|
|
|
if (cl.numsounds >= MAX_SOUNDS) {
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("Server sent too many sound precaches\n");
|
2004-05-04 21:59:17 +00:00
|
|
|
goto done;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2012-01-09 07:22:39 +00:00
|
|
|
strcpy (sound_precache[cl.numsounds], str);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2022-03-04 16:48:10 +00:00
|
|
|
CL_MapCfg (model_precache[1]);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2022-05-05 05:41:46 +00:00
|
|
|
// now we try to load everything else until a cache allocation fails
|
2022-03-04 16:48:10 +00:00
|
|
|
for (i = 1; i < nummodels; i++) {
|
|
|
|
DARRAY_APPEND (&cl_world.models,
|
|
|
|
Mod_ForName (model_precache[i], false));
|
|
|
|
if (cl_world.models.a[i] == NULL) {
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("Model %s not found\n", model_precache[i]);
|
2004-05-04 21:59:17 +00:00
|
|
|
goto done;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
CL_KeepaliveMessage ();
|
|
|
|
}
|
|
|
|
|
2012-01-09 07:22:39 +00:00
|
|
|
for (i = 1; i < cl.numsounds; i++) {
|
2001-02-19 21:15:25 +00:00
|
|
|
cl.sound_precache[i] = S_PrecacheSound (sound_precache[i]);
|
|
|
|
CL_KeepaliveMessage ();
|
|
|
|
}
|
|
|
|
|
2001-05-19 23:31:20 +00:00
|
|
|
// local state
|
2022-11-04 03:51:43 +00:00
|
|
|
Sbar_CenterPrint (0);
|
2002-08-06 05:45:03 +00:00
|
|
|
CL_NewMap (model_precache[1]);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2012-05-21 23:23:22 +00:00
|
|
|
noclip_anglehack = false; // noclip is turned off at start
|
2022-03-29 04:46:11 +00:00
|
|
|
CL_ParticlesGravity (800); // Set up gravity for renderer effects
|
2004-05-04 21:59:17 +00:00
|
|
|
done:
|
|
|
|
S_UnblockSound ();
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2001-05-14 03:08:24 +00:00
|
|
|
int bitcounts[16];
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
/*
|
2001-05-14 03:08:24 +00:00
|
|
|
CL_ParseUpdate
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-14 03:08:24 +00:00
|
|
|
Parse an entity update message from the server
|
|
|
|
If an entities model or origin changes from frame to frame, it must be
|
|
|
|
relinked. Other attributes can change without relinking.
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2001-02-26 06:48:02 +00:00
|
|
|
CL_ParseUpdate (int bits)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2012-06-26 06:12:17 +00:00
|
|
|
entity_state_t *baseline;
|
|
|
|
entity_state_t *state;
|
|
|
|
int modnum, num, i;
|
2001-02-26 06:48:02 +00:00
|
|
|
qboolean forcelink;
|
|
|
|
|
2012-05-23 12:38:25 +00:00
|
|
|
if (cls.signon == so_begin) {
|
2001-05-19 21:09:48 +00:00
|
|
|
// first update is the final signon stage
|
2012-05-23 12:38:25 +00:00
|
|
|
cls.signon = so_active;
|
2001-02-19 21:15:25 +00:00
|
|
|
CL_SignonReply ();
|
|
|
|
}
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
if (bits & U_MOREBITS) {
|
2001-02-23 23:16:13 +00:00
|
|
|
i = MSG_ReadByte (net_message);
|
2001-02-26 06:48:02 +00:00
|
|
|
bits |= (i << 8);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2010-08-24 00:53:54 +00:00
|
|
|
|
|
|
|
if (cl.protocol == PROTOCOL_FITZQUAKE) {
|
|
|
|
if (bits & U_EXTEND1)
|
|
|
|
bits |= MSG_ReadByte(net_message) << 16;
|
|
|
|
if (bits & U_EXTEND2)
|
|
|
|
bits |= MSG_ReadByte(net_message) << 24;
|
|
|
|
}
|
2012-05-21 23:23:22 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
if (bits & U_LONGENTITY)
|
2001-02-23 23:16:13 +00:00
|
|
|
num = MSG_ReadShort (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2001-02-23 23:16:13 +00:00
|
|
|
num = MSG_ReadByte (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2012-06-26 06:12:17 +00:00
|
|
|
baseline = CL_EntityNum (num);
|
2021-03-11 07:19:49 +00:00
|
|
|
state = &nq_entstates.frame[0 + cl.frameIndex][num];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
for (i = 0; i < 16; i++)
|
|
|
|
if (bits & (1 << i))
|
|
|
|
bitcounts[i]++;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2012-06-26 06:12:17 +00:00
|
|
|
if (cl_msgtime[num] != cl.mtime[1])
|
2001-02-26 06:48:02 +00:00
|
|
|
forcelink = true; // no previous frame to lerp from
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
|
|
|
forcelink = false;
|
|
|
|
|
2012-06-26 06:12:17 +00:00
|
|
|
cl_msgtime[num] = cl.mtime[0];
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
if (bits & U_MODEL) {
|
2001-02-23 23:16:13 +00:00
|
|
|
modnum = MSG_ReadByte (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
if (modnum >= MAX_MODELS)
|
|
|
|
Host_Error ("CL_ParseModel: bad modnum");
|
2001-02-26 06:48:02 +00:00
|
|
|
} else
|
2012-06-26 06:12:17 +00:00
|
|
|
modnum = baseline->modelindex;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
if (bits & U_FRAME)
|
2012-06-26 06:12:17 +00:00
|
|
|
state->frame = MSG_ReadByte (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2012-06-26 06:12:17 +00:00
|
|
|
state->frame = baseline->frame;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
if (bits & U_COLORMAP)
|
2012-06-26 06:12:17 +00:00
|
|
|
state->colormap = MSG_ReadByte (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2012-06-26 06:12:17 +00:00
|
|
|
state->colormap = baseline->colormap;
|
|
|
|
if (state->colormap > cl.maxclients)
|
|
|
|
Sys_Error ("colormap > cl.maxclients");
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
if (bits & U_SKIN)
|
2012-06-26 06:12:17 +00:00
|
|
|
state->skinnum = MSG_ReadByte (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2012-06-26 06:12:17 +00:00
|
|
|
state->skinnum = baseline->skinnum;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
if (bits & U_EFFECTS)
|
2001-11-27 21:42:49 +00:00
|
|
|
state->effects = MSG_ReadByte (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2012-06-26 06:12:17 +00:00
|
|
|
state->effects = baseline->effects;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
if (bits & U_ORIGIN1)
|
2012-06-26 06:12:17 +00:00
|
|
|
state->origin[0] = MSG_ReadCoord (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2012-06-26 06:12:17 +00:00
|
|
|
state->origin[0] = baseline->origin[0];
|
2001-02-19 21:15:25 +00:00
|
|
|
if (bits & U_ANGLE1)
|
2012-06-26 06:12:17 +00:00
|
|
|
state->angles[0] = MSG_ReadAngle (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2012-06-26 06:12:17 +00:00
|
|
|
state->angles[0] = baseline->angles[0];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
if (bits & U_ORIGIN2)
|
2012-06-26 06:12:17 +00:00
|
|
|
state->origin[1] = MSG_ReadCoord (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2012-06-26 06:12:17 +00:00
|
|
|
state->origin[1] = baseline->origin[1];
|
2001-02-19 21:15:25 +00:00
|
|
|
if (bits & U_ANGLE2)
|
2012-06-26 06:12:17 +00:00
|
|
|
state->angles[1] = MSG_ReadAngle (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2012-06-26 06:12:17 +00:00
|
|
|
state->angles[1] = baseline->angles[1];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
if (bits & U_ORIGIN3)
|
2012-06-26 06:12:17 +00:00
|
|
|
state->origin[2] = MSG_ReadCoord (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2012-06-26 06:12:17 +00:00
|
|
|
state->origin[2] = baseline->origin[2];
|
2001-02-19 21:15:25 +00:00
|
|
|
if (bits & U_ANGLE3)
|
2012-06-26 06:12:17 +00:00
|
|
|
state->angles[2] = MSG_ReadAngle (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2012-06-26 06:12:17 +00:00
|
|
|
state->angles[2] = baseline->angles[2];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2012-06-26 11:45:47 +00:00
|
|
|
// if (bits & U_STEP) //FIXME lerping (see fitzquake)
|
|
|
|
// forcelink = true;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-24 00:53:54 +00:00
|
|
|
if (cl.protocol == PROTOCOL_FITZQUAKE) {
|
|
|
|
if (bits & U_ALPHA)
|
|
|
|
state->alpha = MSG_ReadByte(net_message);
|
|
|
|
else
|
2012-06-26 06:12:17 +00:00
|
|
|
state->alpha = baseline->alpha;
|
2010-08-24 00:53:54 +00:00
|
|
|
if (bits & U_FRAME2)
|
2012-06-26 06:12:17 +00:00
|
|
|
state->frame |= MSG_ReadByte(net_message) << 8;
|
2010-08-24 00:53:54 +00:00
|
|
|
if (bits & U_MODEL2)
|
|
|
|
modnum |= MSG_ReadByte(net_message) << 8;
|
|
|
|
if (bits & U_LERPFINISH) {
|
2011-12-13 07:57:45 +00:00
|
|
|
MSG_ReadByte (net_message); //FIXME ignored for now. see fitzquake
|
2010-08-24 00:53:54 +00:00
|
|
|
}
|
2012-07-13 10:26:27 +00:00
|
|
|
state->scale = 16;
|
|
|
|
state->glow_size = 0;
|
|
|
|
state->glow_color = 254;
|
|
|
|
state->colormod = 255;
|
2010-08-24 00:53:54 +00:00
|
|
|
} else {
|
2012-07-13 10:26:27 +00:00
|
|
|
baseline->alpha = 255;
|
|
|
|
state->scale = 16;
|
|
|
|
state->glow_size = 0;
|
|
|
|
state->glow_color = 254;
|
|
|
|
state->colormod = 255;
|
2010-08-24 00:53:54 +00:00
|
|
|
}
|
2002-07-25 14:43:36 +00:00
|
|
|
|
2012-06-26 06:12:17 +00:00
|
|
|
state->modelindex = modnum;
|
2002-07-25 14:43:36 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
if (forcelink) { // didn't have an update last message
|
2012-06-26 06:12:17 +00:00
|
|
|
//VectorCopy (state->msg_origins[0], state->msg_origins[1]);
|
|
|
|
//VectorCopy (state->msg_origins[0], ent->origin);
|
|
|
|
//VectorCopy (state->msg_angles[0], state->msg_angles[1]);
|
2021-03-10 09:00:16 +00:00
|
|
|
//CL_TransformEntity (ent, state->msg_angles[0]);
|
2012-06-26 06:12:17 +00:00
|
|
|
//state->forcelink = true;
|
2022-03-04 16:48:10 +00:00
|
|
|
SET_ADD (&cl_forcelink, num);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-05-14 03:08:24 +00:00
|
|
|
CL_ParseClientdata
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-01-13 06:42:26 +00:00
|
|
|
Server information pertaining to only this client
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2010-08-24 00:53:54 +00:00
|
|
|
CL_ParseClientdata (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
int i, j;
|
2010-08-24 00:53:54 +00:00
|
|
|
int bits;
|
|
|
|
|
2011-08-28 09:29:46 +00:00
|
|
|
bits = MSG_ReadShort (net_message);
|
2010-08-24 00:53:54 +00:00
|
|
|
if (bits & SU_EXTEND1)
|
|
|
|
bits |= MSG_ReadByte (net_message) << 16;
|
|
|
|
if (bits & SU_EXTEND2)
|
|
|
|
bits |= MSG_ReadByte (net_message) << 24;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
if (bits & SU_VIEWHEIGHT)
|
2022-02-25 06:48:57 +00:00
|
|
|
cl.viewstate.height = ((signed char) MSG_ReadByte (net_message));
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2022-02-25 06:48:57 +00:00
|
|
|
cl.viewstate.height = DEFAULT_VIEWHEIGHT;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
if (bits & SU_IDEALPITCH)
|
2022-02-25 06:48:57 +00:00
|
|
|
cl.viewstate.idealpitch = ((signed char) MSG_ReadByte (net_message));
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2022-02-25 06:48:57 +00:00
|
|
|
cl.viewstate.idealpitch = 0;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2021-03-11 07:19:49 +00:00
|
|
|
cl.frameVelocity[1] = cl.frameVelocity[0];
|
2021-03-19 11:18:45 +00:00
|
|
|
vec3_t punchangle = { };
|
2001-02-26 06:48:02 +00:00
|
|
|
for (i = 0; i < 3; i++) {
|
2021-03-19 11:18:45 +00:00
|
|
|
if (bits & (SU_PUNCH1 << i)) {
|
|
|
|
punchangle[i] = ((signed char) MSG_ReadByte (net_message));
|
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
if (bits & (SU_VELOCITY1 << i))
|
2021-03-11 07:19:49 +00:00
|
|
|
cl.frameVelocity[0][i] = ((signed char) MSG_ReadByte (net_message))
|
2002-09-12 22:09:55 +00:00
|
|
|
* 16;
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2021-03-11 07:19:49 +00:00
|
|
|
cl.frameVelocity[0][i] = 0;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2022-03-30 15:07:20 +00:00
|
|
|
AngleQuat (punchangle, (vec_t*)&cl.viewstate.punchangle);//FIXME
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2010-08-24 00:53:54 +00:00
|
|
|
//FIXME
|
|
|
|
//if (!VectorCompare (v_punchangles[0], cl.punchangle[0])) {
|
|
|
|
// VectorCopy (v_punchangles[0], v_punchangles[1]);
|
|
|
|
// VectorCopy (cl.punchangle, v_punchangles[0]);
|
|
|
|
//}
|
|
|
|
|
2001-05-19 23:31:20 +00:00
|
|
|
// [always sent] if (bits & SU_ITEMS)
|
2001-02-26 06:48:02 +00:00
|
|
|
i = MSG_ReadLong (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-15 17:22:53 +00:00
|
|
|
if (cl.stats[STAT_ITEMS] != i) { // set flash times
|
2001-02-26 06:48:02 +00:00
|
|
|
for (j = 0; j < 32; j++)
|
2001-05-15 17:22:53 +00:00
|
|
|
if ((i & (1 << j)) && !(cl.stats[STAT_ITEMS] & (1 << j)))
|
2001-02-19 21:15:25 +00:00
|
|
|
cl.item_gettime[j] = cl.time;
|
2001-05-15 17:22:53 +00:00
|
|
|
cl.stats[STAT_ITEMS] = i;
|
2022-02-25 06:48:57 +00:00
|
|
|
#define IT_POWER (IT_QUAD | IT_SUIT | IT_INVULNERABILITY | IT_INVISIBILITY)
|
|
|
|
cl.viewstate.powerup_index = (cl.stats[STAT_ITEMS] & IT_POWER) >> 19;
|
2022-11-09 10:41:59 +00:00
|
|
|
Sbar_UpdateStats (STAT_ITEMS);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2021-03-19 15:58:37 +00:00
|
|
|
cl.viewstate.onground = (bits & SU_ONGROUND) ? 0 : -1;
|
2001-02-19 21:15:25 +00:00
|
|
|
cl.inwater = (bits & SU_INWATER) != 0;
|
|
|
|
|
|
|
|
if (bits & SU_WEAPONFRAME)
|
2001-02-23 23:16:13 +00:00
|
|
|
cl.stats[STAT_WEAPONFRAME] = MSG_ReadByte (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
|
|
|
cl.stats[STAT_WEAPONFRAME] = 0;
|
2022-02-25 06:48:57 +00:00
|
|
|
cl.viewstate.weaponframe = cl.stats[STAT_WEAPONFRAME];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
if (bits & SU_ARMOR)
|
2001-02-23 23:16:13 +00:00
|
|
|
i = MSG_ReadByte (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
|
|
|
i = 0;
|
2001-02-26 06:48:02 +00:00
|
|
|
if (cl.stats[STAT_ARMOR] != i) {
|
2001-02-19 21:15:25 +00:00
|
|
|
cl.stats[STAT_ARMOR] = i;
|
2022-11-09 16:35:33 +00:00
|
|
|
Sbar_UpdateStats (STAT_ARMOR);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (bits & SU_WEAPON)
|
2001-02-23 23:16:13 +00:00
|
|
|
i = MSG_ReadByte (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
|
|
|
i = 0;
|
2001-02-26 06:48:02 +00:00
|
|
|
if (cl.stats[STAT_WEAPON] != i) {
|
2001-02-19 21:15:25 +00:00
|
|
|
cl.stats[STAT_WEAPON] = i;
|
2022-03-04 16:48:10 +00:00
|
|
|
cl.viewstate.weapon_model = cl_world.models.a[cl.stats[STAT_WEAPON]];
|
2022-11-09 10:41:59 +00:00
|
|
|
Sbar_UpdateStats (STAT_WEAPON);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2011-09-11 08:49:24 +00:00
|
|
|
i = (short) MSG_ReadShort (net_message);
|
2001-02-26 06:48:02 +00:00
|
|
|
if (cl.stats[STAT_HEALTH] != i) {
|
2001-02-19 21:15:25 +00:00
|
|
|
cl.stats[STAT_HEALTH] = i;
|
2022-11-09 10:41:59 +00:00
|
|
|
Sbar_UpdateStats (STAT_HEALTH);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2001-02-23 23:16:13 +00:00
|
|
|
i = MSG_ReadByte (net_message);
|
2001-02-26 06:48:02 +00:00
|
|
|
if (cl.stats[STAT_AMMO] != i) {
|
2001-02-19 21:15:25 +00:00
|
|
|
cl.stats[STAT_AMMO] = i;
|
2022-11-09 10:41:59 +00:00
|
|
|
Sbar_UpdateStats (STAT_AMMO);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
for (i = 0; i < 4; i++) {
|
2001-02-23 23:16:13 +00:00
|
|
|
j = MSG_ReadByte (net_message);
|
2001-02-26 06:48:02 +00:00
|
|
|
if (cl.stats[STAT_SHELLS + i] != j) {
|
|
|
|
cl.stats[STAT_SHELLS + i] = j;
|
2022-11-09 10:41:59 +00:00
|
|
|
Sbar_UpdateStats (STAT_SHELLS + i);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-02-23 23:16:13 +00:00
|
|
|
i = MSG_ReadByte (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
if (standard_quake) {
|
|
|
|
if (cl.stats[STAT_ACTIVEWEAPON] != i) {
|
2001-02-19 21:15:25 +00:00
|
|
|
cl.stats[STAT_ACTIVEWEAPON] = i;
|
2022-11-09 10:41:59 +00:00
|
|
|
Sbar_UpdateStats (STAT_ACTIVEWEAPON);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
} else {
|
2011-12-11 23:57:17 +00:00
|
|
|
// hipnotic/rogue weapon "bit field" (stupid idea)
|
2001-02-26 06:48:02 +00:00
|
|
|
if (cl.stats[STAT_ACTIVEWEAPON] != (1 << i)) {
|
|
|
|
cl.stats[STAT_ACTIVEWEAPON] = (1 << i);
|
2022-11-09 10:41:59 +00:00
|
|
|
Sbar_UpdateStats (STAT_ACTIVEWEAPON);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
2010-08-24 00:53:54 +00:00
|
|
|
|
2022-05-19 04:23:34 +00:00
|
|
|
if (bits & SU_WEAPON2) {
|
2010-08-24 00:53:54 +00:00
|
|
|
cl.stats[STAT_WEAPON] |= MSG_ReadByte (net_message) << 8;
|
2022-05-19 04:23:34 +00:00
|
|
|
cl.viewstate.weapon_model = cl_world.models.a[cl.stats[STAT_WEAPON]];
|
|
|
|
}
|
2010-08-24 00:53:54 +00:00
|
|
|
if (bits & SU_ARMOR2)
|
|
|
|
cl.stats[STAT_ARMOR] |= MSG_ReadByte (net_message) << 8;
|
|
|
|
if (bits & SU_AMMO2)
|
|
|
|
cl.stats[STAT_AMMO] |= MSG_ReadByte (net_message) << 8;
|
|
|
|
if (bits & SU_SHELLS2)
|
|
|
|
cl.stats[STAT_SHELLS] |= MSG_ReadByte (net_message) << 8;
|
|
|
|
if (bits & SU_NAILS2)
|
|
|
|
cl.stats[STAT_NAILS] |= MSG_ReadByte (net_message) << 8;
|
|
|
|
if (bits & SU_ROCKETS2)
|
|
|
|
cl.stats[STAT_ROCKETS] |= MSG_ReadByte (net_message) << 8;
|
|
|
|
if (bits & SU_CELLS2)
|
|
|
|
cl.stats[STAT_CELLS] |= MSG_ReadByte (net_message) << 8;
|
|
|
|
if (bits & SU_WEAPONFRAME2)
|
|
|
|
cl.stats[STAT_WEAPONFRAME] |= MSG_ReadByte (net_message) << 8;
|
[scene] Make entity_t just an entity id for ECS
This puts the hierarchy (transform) reference, animation, visibility,
renderer, active, and old_origin data in separate components. There are
a few bugs (crashes on grenade explosions in gl/glsl/vulkan, immediately
in sw, reasons known, missing brush models in vulkan).
While quake doesn't really need an ECS, the direction I want to take QF
does, and it does seem to have improved memory bandwidth a little
(uncertain). However, there's a lot more work to go (especially fixing
the above bugs), but this seems to be a good start.
2022-10-23 01:32:09 +00:00
|
|
|
|
|
|
|
renderer_t *renderer = Ent_GetComponent (cl.viewstate.weapon_entity.id, scene_renderer, cl_world.scene->reg);
|
2010-08-24 00:53:54 +00:00
|
|
|
if (bits & SU_WEAPONALPHA) {
|
|
|
|
byte alpha = MSG_ReadByte (net_message);
|
2022-03-04 16:48:10 +00:00
|
|
|
float a = ENTALPHA_DECODE (alpha);
|
[scene] Make entity_t just an entity id for ECS
This puts the hierarchy (transform) reference, animation, visibility,
renderer, active, and old_origin data in separate components. There are
a few bugs (crashes on grenade explosions in gl/glsl/vulkan, immediately
in sw, reasons known, missing brush models in vulkan).
While quake doesn't really need an ECS, the direction I want to take QF
does, and it does seem to have improved memory bandwidth a little
(uncertain). However, there's a lot more work to go (especially fixing
the above bugs), but this seems to be a good start.
2022-10-23 01:32:09 +00:00
|
|
|
renderer->colormod[3] = a;
|
2010-08-24 00:53:54 +00:00
|
|
|
} else {
|
[scene] Make entity_t just an entity id for ECS
This puts the hierarchy (transform) reference, animation, visibility,
renderer, active, and old_origin data in separate components. There are
a few bugs (crashes on grenade explosions in gl/glsl/vulkan, immediately
in sw, reasons known, missing brush models in vulkan).
While quake doesn't really need an ECS, the direction I want to take QF
does, and it does seem to have improved memory bandwidth a little
(uncertain). However, there's a lot more work to go (especially fixing
the above bugs), but this seems to be a good start.
2022-10-23 01:32:09 +00:00
|
|
|
renderer->colormod[3] = 1;
|
2010-08-24 00:53:54 +00:00
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2010-08-24 00:53:54 +00:00
|
|
|
CL_ParseStaticSound (int version)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2022-06-03 07:54:57 +00:00
|
|
|
int sound_num;
|
|
|
|
float vol, atten;
|
2022-03-30 14:38:01 +00:00
|
|
|
vec4f_t org = { 0, 0, 0, 1 };
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2022-03-30 14:38:01 +00:00
|
|
|
MSG_ReadCoordV (net_message, (vec_t*)&org);//FIXME
|
2010-08-24 00:53:54 +00:00
|
|
|
if (version == 2)
|
|
|
|
sound_num = MSG_ReadShort (net_message);
|
|
|
|
else
|
|
|
|
sound_num = MSG_ReadByte (net_message);
|
2022-06-03 07:54:57 +00:00
|
|
|
vol = MSG_ReadByte (net_message) / 255.0;
|
|
|
|
atten = MSG_ReadByte (net_message) / 64.0;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
S_StaticSound (cl.sound_precache[sound_num], org, vol, atten);
|
|
|
|
}
|
|
|
|
|
2011-08-28 12:05:35 +00:00
|
|
|
static void
|
|
|
|
CL_SetStat (int stat, int value)
|
|
|
|
{
|
|
|
|
if (stat < 0 || stat >= MAX_CL_STATS)
|
|
|
|
Host_Error ("CL_SetStat: %i is invalid", stat);
|
|
|
|
cl.stats[stat] = value;
|
2022-11-09 16:35:33 +00:00
|
|
|
Sbar_UpdateStats (stat);
|
2011-08-28 12:05:35 +00:00
|
|
|
}
|
|
|
|
|
2003-03-21 21:26:26 +00:00
|
|
|
#define SHOWNET(x) \
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
if (cl_shownet == 2) \
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("%3i:%s\n", net_message->readcount - 1, x);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
|
|
|
CL_ParseServerMessage (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2011-08-28 12:05:35 +00:00
|
|
|
int cmd = 0, i, j;
|
2010-08-24 00:53:54 +00:00
|
|
|
const char *str;
|
2012-05-26 02:15:05 +00:00
|
|
|
static dstring_t *stuffbuf;
|
2012-05-26 01:39:42 +00:00
|
|
|
signon_t so;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2022-12-01 04:11:16 +00:00
|
|
|
cl.viewstate.last_servermessage = cl.time;
|
2021-03-10 09:00:16 +00:00
|
|
|
TEntContext_t tentCtx = {
|
2022-03-04 16:48:10 +00:00
|
|
|
cl.viewstate.player_origin,
|
|
|
|
cl.viewentity
|
2021-03-10 09:00:16 +00:00
|
|
|
};
|
2013-02-02 08:35:09 +00:00
|
|
|
|
2001-05-19 23:31:20 +00:00
|
|
|
// if recording demos, copy the message out
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
if (cl_shownet == 1)
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("%i ", net_message->message->cursize);
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
else if (cl_shownet == 2)
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("------------------\n");
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2021-03-19 15:58:37 +00:00
|
|
|
cl.viewstate.onground = -1; // unless the server says otherwise
|
2001-05-14 03:08:24 +00:00
|
|
|
|
2001-05-19 23:31:20 +00:00
|
|
|
// parse the message
|
2001-02-23 23:16:13 +00:00
|
|
|
MSG_BeginReading (net_message);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
while (1) {
|
2001-02-23 23:16:13 +00:00
|
|
|
if (net_message->badread)
|
2011-08-28 12:05:35 +00:00
|
|
|
Host_Error ("CL_ParseServerMessage: Bad server message: %s\n",
|
|
|
|
svc_strings[cmd]);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-23 23:16:13 +00:00
|
|
|
cmd = MSG_ReadByte (net_message);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
if (cmd == -1) {
|
2011-08-28 12:05:35 +00:00
|
|
|
net_message->readcount++; // so the EOM SHOWNET has the right
|
|
|
|
// value
|
2001-02-26 06:48:02 +00:00
|
|
|
SHOWNET ("END OF MESSAGE");
|
2011-08-28 12:05:35 +00:00
|
|
|
break; // end of message
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
// if the high bit of the command byte is set, it is a fast update
|
2010-08-24 00:53:54 +00:00
|
|
|
if (cmd & U_SIGNAL) {
|
2001-02-26 06:48:02 +00:00
|
|
|
SHOWNET ("fast update");
|
2010-08-24 00:53:54 +00:00
|
|
|
CL_ParseUpdate (cmd & ~U_SIGNAL);
|
2001-02-19 21:15:25 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2021-01-31 07:01:20 +00:00
|
|
|
SHOWNET (va (0, "%s(%d)", svc_strings[cmd], cmd));
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
// other commands
|
|
|
|
switch (cmd) {
|
|
|
|
default:
|
2001-08-29 02:12:57 +00:00
|
|
|
Host_Error ("CL_ParseServerMessage: Illegible server "
|
2012-05-26 01:39:42 +00:00
|
|
|
"message: %d\n", cmd);
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
case svc_nop:
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2012-05-26 01:39:42 +00:00
|
|
|
case svc_disconnect:
|
2012-05-26 02:13:57 +00:00
|
|
|
if (cls.state == ca_connected)
|
|
|
|
Host_EndGame ("Server disconnected\n"
|
|
|
|
"Server version may not be compatible");
|
|
|
|
else
|
|
|
|
Host_EndGame ("Server disconnected\n");
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2012-05-26 01:39:42 +00:00
|
|
|
case svc_updatestat:
|
|
|
|
i = MSG_ReadByte (net_message);
|
|
|
|
j = MSG_ReadLong (net_message);
|
|
|
|
CL_SetStat (i, j);
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
case svc_version:
|
2001-05-09 06:57:35 +00:00
|
|
|
i = MSG_ReadLong (net_message);
|
2010-08-24 00:53:54 +00:00
|
|
|
if (i != PROTOCOL_NETQUAKE && i!= PROTOCOL_FITZQUAKE)
|
2001-08-29 02:12:57 +00:00
|
|
|
Host_Error ("CL_ParseServerMessage: Server is protocol %i "
|
2010-08-24 00:53:54 +00:00
|
|
|
"instead of %i or %i\n", i, PROTOCOL_NETQUAKE,
|
|
|
|
PROTOCOL_FITZQUAKE);
|
|
|
|
cl.protocol = i;
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2012-05-26 01:39:42 +00:00
|
|
|
case svc_setview:
|
|
|
|
cl.viewentity = MSG_ReadShort (net_message);
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2012-05-26 01:39:42 +00:00
|
|
|
case svc_sound:
|
|
|
|
CL_ParseStartSoundPacket ();
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2012-05-26 01:39:42 +00:00
|
|
|
case svc_time:
|
|
|
|
cl.mtime[1] = cl.mtime[0];
|
|
|
|
cl.mtime[0] = MSG_ReadFloat (net_message);
|
2021-03-11 07:19:49 +00:00
|
|
|
cl.frameIndex = !cl.frameIndex;
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2012-05-26 01:39:42 +00:00
|
|
|
case svc_print:
|
|
|
|
Sys_Printf ("%s", MSG_ReadString (net_message));
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2012-05-26 01:39:42 +00:00
|
|
|
case svc_stufftext:
|
2012-05-26 02:15:05 +00:00
|
|
|
str = MSG_ReadString (net_message);
|
|
|
|
if (str[strlen (str) - 1] == '\n') {
|
|
|
|
if (stuffbuf && stuffbuf->str[0]) {
|
2021-03-29 10:58:00 +00:00
|
|
|
Sys_MaskPrintf (SYS_dev, "stufftext: %s%s\n",
|
2012-05-26 02:15:05 +00:00
|
|
|
stuffbuf->str, str);
|
|
|
|
Cbuf_AddText (host_cbuf, stuffbuf->str);
|
|
|
|
dstring_clearstr (stuffbuf);
|
|
|
|
} else {
|
2021-03-29 10:58:00 +00:00
|
|
|
Sys_MaskPrintf (SYS_dev, "stufftext: %s\n", str);
|
2012-05-26 02:15:05 +00:00
|
|
|
}
|
|
|
|
Cbuf_AddText (host_cbuf, str);
|
|
|
|
} else {
|
2021-03-29 10:58:00 +00:00
|
|
|
Sys_MaskPrintf (SYS_dev, "partial stufftext: %s\n", str);
|
2012-05-26 02:15:05 +00:00
|
|
|
if (!stuffbuf)
|
|
|
|
stuffbuf = dstring_newstr ();
|
|
|
|
dstring_appendstr (stuffbuf, str);
|
|
|
|
}
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
case svc_setangle:
|
2011-08-28 12:05:35 +00:00
|
|
|
{
|
2022-03-01 02:43:23 +00:00
|
|
|
vec_t *dest = cl.viewstate.player_angles;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2011-08-28 12:05:35 +00:00
|
|
|
MSG_ReadAngleV (net_message, dest);
|
|
|
|
break;
|
|
|
|
}
|
2012-05-26 01:39:42 +00:00
|
|
|
case svc_serverinfo:
|
2012-05-26 02:31:23 +00:00
|
|
|
// make sure any stuffed commands are done
|
|
|
|
if (stuffbuf && stuffbuf->str[0]) {
|
|
|
|
Cbuf_AddText (host_cbuf, stuffbuf->str);
|
|
|
|
dstring_clearstr (stuffbuf);
|
|
|
|
}
|
|
|
|
Cbuf_Execute_Stack (host_cbuf);
|
2012-05-26 01:39:42 +00:00
|
|
|
CL_ParseServerInfo ();
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
case svc_lightstyle:
|
2001-05-09 06:57:35 +00:00
|
|
|
i = MSG_ReadByte (net_message);
|
|
|
|
if (i >= MAX_LIGHTSTYLES)
|
2011-08-28 12:05:35 +00:00
|
|
|
Host_Error ("svc_lightstyle > MAX_LIGHTSTYLES");
|
2012-02-14 08:28:09 +00:00
|
|
|
strcpy (cl.lightstyle[i].map, MSG_ReadString (net_message));
|
|
|
|
cl.lightstyle[i].length = strlen (cl.lightstyle[i].map);
|
2012-05-26 02:06:21 +00:00
|
|
|
if (cl.lightstyle[i].length) {
|
|
|
|
int total = 0;
|
|
|
|
|
|
|
|
cl.lightstyle[i].peak = 'a';
|
|
|
|
for (j = 0; j < cl.lightstyle[i].length; j++) {
|
|
|
|
total += cl.lightstyle[i].map[j] - 'a';
|
|
|
|
cl.lightstyle[i].peak = max (cl.lightstyle[i].peak,
|
|
|
|
cl.lightstyle[i].map[j]);
|
|
|
|
}
|
|
|
|
total /= cl.lightstyle[i].length;
|
|
|
|
cl.lightstyle[i].average = total + 'a';
|
|
|
|
} else {
|
|
|
|
cl.lightstyle[i].average = 'm';
|
|
|
|
cl.lightstyle[i].peak = 'm';
|
|
|
|
}
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2012-05-26 01:39:42 +00:00
|
|
|
case svc_updatename:
|
|
|
|
i = MSG_ReadByte (net_message);
|
|
|
|
if (i >= cl.maxclients)
|
|
|
|
Host_Error ("CL_ParseServerMessage: svc_updatename > "
|
|
|
|
"MAX_SCOREBOARD");
|
2013-02-02 07:54:05 +00:00
|
|
|
Info_SetValueForKey (cl.players[i].userinfo, "name",
|
2012-05-26 03:53:03 +00:00
|
|
|
MSG_ReadString (net_message), 0);
|
2022-11-09 10:41:59 +00:00
|
|
|
Sbar_UpdateInfo (i);
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2011-08-28 12:05:35 +00:00
|
|
|
case svc_updatefrags:
|
2001-05-09 06:57:35 +00:00
|
|
|
i = MSG_ReadByte (net_message);
|
|
|
|
if (i >= cl.maxclients)
|
2011-08-28 12:05:35 +00:00
|
|
|
Host_Error ("CL_ParseServerMessage: svc_updatefrags > "
|
2001-08-29 02:12:57 +00:00
|
|
|
"MAX_SCOREBOARD");
|
2013-02-02 07:54:05 +00:00
|
|
|
cl.players[i].frags = (short) MSG_ReadShort (net_message);
|
2022-11-09 10:41:59 +00:00
|
|
|
Sbar_UpdateFrags (i);
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2012-05-26 01:39:42 +00:00
|
|
|
case svc_clientdata:
|
|
|
|
CL_ParseClientdata ();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case svc_stopsound:
|
|
|
|
i = MSG_ReadShort (net_message);
|
|
|
|
S_StopSound (i >> 3, i & 7);
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
case svc_updatecolors:
|
2001-05-09 06:57:35 +00:00
|
|
|
i = MSG_ReadByte (net_message);
|
2001-11-27 22:44:12 +00:00
|
|
|
if (i >= cl.maxclients) {
|
2001-08-29 02:12:57 +00:00
|
|
|
Host_Error ("CL_ParseServerMessage: svc_updatecolors > "
|
|
|
|
"MAX_SCOREBOARD");
|
2001-11-27 22:44:12 +00:00
|
|
|
} else {
|
[scene] Make entity_t just an entity id for ECS
This puts the hierarchy (transform) reference, animation, visibility,
renderer, active, and old_origin data in separate components. There are
a few bugs (crashes on grenade explosions in gl/glsl/vulkan, immediately
in sw, reasons known, missing brush models in vulkan).
While quake doesn't really need an ECS, the direction I want to take QF
does, and it does seem to have improved memory bandwidth a little
(uncertain). However, there's a lot more work to go (especially fixing
the above bugs), but this seems to be a good start.
2022-10-23 01:32:09 +00:00
|
|
|
entity_t ent = CL_GetEntity (i + 1);
|
|
|
|
renderer_t *renderer = Ent_GetComponent (ent.id, scene_renderer, cl_world.scene->reg);
|
2012-01-24 02:59:49 +00:00
|
|
|
byte col = MSG_ReadByte (net_message);
|
2012-05-26 03:04:23 +00:00
|
|
|
byte top = col >> 4;
|
|
|
|
byte bot = col & 0xf;
|
2013-02-02 07:54:05 +00:00
|
|
|
if (top != cl.players[i].topcolor
|
|
|
|
|| bot != cl.players[i].bottomcolor)
|
2012-05-26 03:04:23 +00:00
|
|
|
mod_funcs->Skin_SetTranslation (i + 1, top, bot);
|
2013-02-02 07:54:05 +00:00
|
|
|
cl.players[i].topcolor = top;
|
|
|
|
cl.players[i].bottomcolor = bot;
|
[scene] Make entity_t just an entity id for ECS
This puts the hierarchy (transform) reference, animation, visibility,
renderer, active, and old_origin data in separate components. There are
a few bugs (crashes on grenade explosions in gl/glsl/vulkan, immediately
in sw, reasons known, missing brush models in vulkan).
While quake doesn't really need an ECS, the direction I want to take QF
does, and it does seem to have improved memory bandwidth a little
(uncertain). However, there's a lot more work to go (especially fixing
the above bugs), but this seems to be a good start.
2022-10-23 01:32:09 +00:00
|
|
|
renderer->skin
|
|
|
|
= mod_funcs->Skin_SetColormap (renderer->skin, i + 1);
|
2022-11-09 10:41:59 +00:00
|
|
|
Sbar_UpdateInfo (i);
|
2001-11-27 22:44:12 +00:00
|
|
|
}
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
case svc_particle:
|
2021-03-10 09:00:16 +00:00
|
|
|
CL_ParseParticleEffect (net_message);
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2012-05-26 01:39:42 +00:00
|
|
|
case svc_damage:
|
2022-02-28 03:12:51 +00:00
|
|
|
V_ParseDamage (net_message, &cl.viewstate);
|
2022-02-25 06:48:57 +00:00
|
|
|
// put sbar face into pain frame
|
2022-11-09 03:50:05 +00:00
|
|
|
Sbar_Damage (cl.time);
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2012-05-26 01:39:42 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
case svc_spawnstatic:
|
2022-03-04 16:48:10 +00:00
|
|
|
CL_ParseStatic (net_message, 1);
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2012-05-26 01:39:42 +00:00
|
|
|
|
|
|
|
// svc_spawnbinary
|
|
|
|
|
|
|
|
case svc_spawnbaseline:
|
|
|
|
i = MSG_ReadShort (net_message);
|
|
|
|
// must use CL_EntityNum () to force cl.num_entities up
|
2022-03-04 16:48:10 +00:00
|
|
|
CL_ParseBaseline (net_message, CL_EntityNum (i), 1);
|
2011-08-28 12:05:35 +00:00
|
|
|
break;
|
2012-05-26 01:39:42 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
case svc_temp_entity:
|
2021-03-10 09:00:16 +00:00
|
|
|
CL_ParseTEnt_nq (net_message, cl.time, &tentCtx);
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
case svc_setpause:
|
2012-02-14 08:28:09 +00:00
|
|
|
r_data->paused = cl.paused = MSG_ReadByte (net_message);
|
2011-08-28 12:05:35 +00:00
|
|
|
if (cl.paused)
|
2001-02-19 21:15:25 +00:00
|
|
|
CDAudio_Pause ();
|
2011-08-28 12:05:35 +00:00
|
|
|
else
|
2001-02-19 21:15:25 +00:00
|
|
|
CDAudio_Resume ();
|
2011-08-28 12:05:35 +00:00
|
|
|
break;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
case svc_signonnum:
|
2012-05-23 12:38:25 +00:00
|
|
|
so = MSG_ReadByte (net_message);
|
|
|
|
if (so <= cls.signon || so >= so_active)
|
|
|
|
Host_Error ("Received signon %i when at %i", so,
|
2001-08-29 02:12:57 +00:00
|
|
|
cls.signon);
|
2012-05-23 12:38:25 +00:00
|
|
|
cls.signon = so;
|
2001-05-09 06:57:35 +00:00
|
|
|
CL_SignonReply ();
|
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2012-05-26 01:39:42 +00:00
|
|
|
case svc_centerprint:
|
|
|
|
str = MSG_ReadString (net_message);
|
|
|
|
Sbar_CenterPrint (str);
|
|
|
|
break;
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
case svc_killedmonster:
|
2001-05-09 06:57:35 +00:00
|
|
|
cl.stats[STAT_MONSTERS]++;
|
2022-11-09 16:35:33 +00:00
|
|
|
Sbar_UpdateStats (STAT_MONSTERS);
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
case svc_foundsecret:
|
2001-05-09 06:57:35 +00:00
|
|
|
cl.stats[STAT_SECRETS]++;
|
2022-11-09 16:35:33 +00:00
|
|
|
Sbar_UpdateStats (STAT_SECRETS);
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2012-05-26 01:39:42 +00:00
|
|
|
case svc_spawnstaticsound:
|
|
|
|
CL_ParseStaticSound (1);
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
case svc_intermission:
|
2022-11-09 03:50:05 +00:00
|
|
|
Sbar_Intermission (cl.intermission = 1, cl.time);
|
2022-03-18 15:56:30 +00:00
|
|
|
SCR_SetFullscreen (1);
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
case svc_finale:
|
2010-08-24 00:53:54 +00:00
|
|
|
str = MSG_ReadString (net_message);
|
|
|
|
Sbar_CenterPrint (str);
|
2022-11-11 16:47:17 +00:00
|
|
|
Sbar_Intermission (cl.intermission = 2, cl.time);
|
|
|
|
SCR_SetFullscreen (1);
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2012-05-26 01:39:42 +00:00
|
|
|
case svc_cdtrack:
|
|
|
|
cl.cdtrack = MSG_ReadByte (net_message);
|
2012-06-26 00:06:19 +00:00
|
|
|
MSG_ReadByte (net_message); // looptrack (not used)
|
2012-05-26 01:39:42 +00:00
|
|
|
if ((cls.demoplayback || cls.demorecording)
|
|
|
|
&& (cls.forcetrack != -1))
|
|
|
|
CDAudio_Play ((byte) cls.forcetrack, true);
|
|
|
|
else
|
|
|
|
CDAudio_Play ((byte) cl.cdtrack, true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case svc_sellscreen:
|
|
|
|
Cmd_ExecuteString ("help", src_command);
|
|
|
|
break;
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
case svc_cutscene:
|
2010-08-24 00:53:54 +00:00
|
|
|
str = MSG_ReadString (net_message);
|
|
|
|
Sbar_CenterPrint (str);
|
2022-11-11 16:47:17 +00:00
|
|
|
Sbar_Intermission (cl.intermission = 3, cl.time);
|
|
|
|
SCR_SetFullscreen (1);
|
2001-05-09 06:57:35 +00:00
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2012-05-26 01:39:42 +00:00
|
|
|
// svc_smallkick (same value as svc_cutscene)
|
|
|
|
// svc_bigkick
|
|
|
|
// svc_updateping
|
|
|
|
// svc_updateentertime
|
|
|
|
// svc_updatestatlong
|
|
|
|
// svc_muzzleflash
|
|
|
|
// svc_updateuserinfo
|
|
|
|
// svc_download
|
|
|
|
// svc_playerinfo
|
|
|
|
// svc_nails
|
|
|
|
// svc_chokecount
|
|
|
|
// svc_modellist
|
|
|
|
// svc_soundlist
|
|
|
|
// svc_packetentities
|
|
|
|
// svc_deltapacketentities
|
|
|
|
// svc_maxspeed
|
|
|
|
// svc_entgravity
|
|
|
|
// svc_setinfo
|
|
|
|
// svc_serverinfo
|
|
|
|
// svc_updatepl
|
|
|
|
|
|
|
|
// PROTOCOL_FITZQUAKE (these overlap with the above listed qw svcs)
|
2010-08-24 00:53:54 +00:00
|
|
|
case svc_skybox:
|
2012-02-14 08:28:09 +00:00
|
|
|
r_funcs->R_LoadSkys (MSG_ReadString(net_message));
|
2010-08-24 00:53:54 +00:00
|
|
|
break;
|
|
|
|
case svc_bf:
|
|
|
|
Cmd_ExecuteString ("bf", src_command);
|
|
|
|
break;
|
|
|
|
case svc_fog:
|
2010-12-10 08:15:47 +00:00
|
|
|
{
|
2010-08-24 00:53:54 +00:00
|
|
|
float density, red, green, blue, time;
|
|
|
|
density = MSG_ReadByte (net_message) / 255.0;
|
|
|
|
red = MSG_ReadByte (net_message) / 255.0;
|
|
|
|
green = MSG_ReadByte (net_message) / 255.0;
|
|
|
|
blue = MSG_ReadByte (net_message) / 255.0;
|
2011-09-11 08:49:24 +00:00
|
|
|
time = (short) MSG_ReadShort (net_message) / 100.0;
|
2010-08-24 00:53:54 +00:00
|
|
|
time = max (0.0, time);
|
2022-03-07 17:10:47 +00:00
|
|
|
Fog_Update (density, red, green, blue, time);
|
2010-08-24 00:53:54 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case svc_spawnbaseline2:
|
|
|
|
i = MSG_ReadShort (net_message);
|
|
|
|
// must use CL_EntityNum() to force cl.num_entities up
|
2022-03-04 16:48:10 +00:00
|
|
|
CL_ParseBaseline (net_message, CL_EntityNum(i), 2);
|
2010-08-24 00:53:54 +00:00
|
|
|
break;
|
|
|
|
case svc_spawnstatic2:
|
2022-03-04 16:48:10 +00:00
|
|
|
CL_ParseStatic (net_message, 2);
|
2010-08-24 00:53:54 +00:00
|
|
|
break;
|
|
|
|
case svc_spawnstaticsound2:
|
|
|
|
CL_ParseStaticSound (2);
|
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|