spingle/source/sv_main.c

1484 lines
39 KiB
C
Raw Normal View History

2019-11-24 20:45:15 -08:00
/*
Copyright (C) 1996-2001 Id Software, Inc.
Copyright (C) 2002-2009 John Fitzgibbons and others
Copyright (C) 2010-2014 QuakeSpasm developers
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 the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
// sv_main.c -- server main program
2019-12-02 07:07:37 -08:00
#include "q_defs.h"
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
server_t sv;
server_static_t svs;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
static char localmodels[MAX_MODELS][8]; // inline model names for precache
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
int32_t sv_protocol = PROTOCOL_FITZQUAKE; //johnfitz
2019-11-24 20:45:15 -08:00
//============================================================================
/*
===============
SV_Protocol_f
===============
*/
2019-11-25 17:40:18 -08:00
void SV_Protocol_f(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 16:49:58 -08:00
int32_t i;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
switch(Cmd_Argc())
2019-11-24 20:45:15 -08:00
{
case 1:
2019-11-25 17:40:18 -08:00
Con_Printf("\"sv_protocol\" is \"%" PRIi32 "\"\n", sv_protocol);
2019-11-24 20:45:15 -08:00
break;
case 2:
i = atoi(Cmd_Argv(1));
2019-11-25 17:40:18 -08:00
if(i != PROTOCOL_NETQUAKE && i != PROTOCOL_FITZQUAKE && i != PROTOCOL_RMQ)
Con_Printf("sv_protocol must be %" PRIi32 " or %" PRIi32 " or %" PRIi32 "\n", PROTOCOL_NETQUAKE, PROTOCOL_FITZQUAKE, PROTOCOL_RMQ);
2019-11-24 20:45:15 -08:00
else
{
sv_protocol = i;
2019-11-25 17:40:18 -08:00
if(sv.active)
Con_Printf("changes will not take effect until the next level load.\n");
2019-11-24 20:45:15 -08:00
}
break;
default:
2019-11-25 17:40:18 -08:00
Con_SafePrintf("usage: sv_protocol <protocol>\n");
2019-11-24 20:45:15 -08:00
break;
}
}
/*
===============
SV_Init
===============
*/
2019-11-25 17:40:18 -08:00
void SV_Init(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t i;
const char *p;
extern cvar_t sv_maxvelocity;
extern cvar_t sv_gravity;
extern cvar_t sv_nostep;
extern cvar_t sv_freezenonclients;
extern cvar_t sv_friction;
extern cvar_t sv_edgefriction;
extern cvar_t sv_stopspeed;
extern cvar_t sv_maxspeed;
extern cvar_t sv_accelerate;
extern cvar_t sv_idealpitchscale;
extern cvar_t sv_aim;
extern cvar_t sv_altnoclip; //johnfitz
2019-11-24 20:45:15 -08:00
sv.edicts = NULL; // ericw -- sv.edicts switched to use malloc()
2019-11-25 17:40:18 -08:00
Cvar_RegisterVariable(&sv_maxvelocity);
Cvar_RegisterVariable(&sv_gravity);
Cvar_RegisterVariable(&sv_friction);
Cvar_SetCallback(&sv_gravity, Host_Callback_Notify);
Cvar_SetCallback(&sv_friction, Host_Callback_Notify);
Cvar_RegisterVariable(&sv_edgefriction);
Cvar_RegisterVariable(&sv_stopspeed);
Cvar_RegisterVariable(&sv_maxspeed);
Cvar_SetCallback(&sv_maxspeed, Host_Callback_Notify);
Cvar_RegisterVariable(&sv_accelerate);
Cvar_RegisterVariable(&sv_idealpitchscale);
Cvar_RegisterVariable(&sv_aim);
Cvar_RegisterVariable(&sv_nostep);
Cvar_RegisterVariable(&sv_freezenonclients);
Cvar_RegisterVariable(&sv_altnoclip); //johnfitz
Cmd_AddCommand("sv_protocol", &SV_Protocol_f); //johnfitz
for(i = 0 ; i < MAX_MODELS ; i++)
sprintf(localmodels[i], "*%" PRIi32, i);
2019-11-25 17:40:18 -08:00
i = COM_CheckParm("-protocol");
if(i && i < com_argc - 1)
sv_protocol = atoi(com_argv[i + 1]);
switch(sv_protocol)
2019-11-24 20:45:15 -08:00
{
case PROTOCOL_NETQUAKE:
p = "NetQuake";
break;
case PROTOCOL_FITZQUAKE:
p = "FitzQuake";
break;
case PROTOCOL_RMQ:
p = "RMQ";
break;
default:
2019-11-25 17:40:18 -08:00
Sys_Error("Bad protocol version request %" PRIi32 ". Accepted values: %" PRIi32 ", %" PRIi32 ", %" PRIi32 ".",
sv_protocol, PROTOCOL_NETQUAKE, PROTOCOL_FITZQUAKE, PROTOCOL_RMQ);
2019-11-24 20:45:15 -08:00
return; /* silence compiler */
}
2019-11-25 17:40:18 -08:00
Sys_Printf("Server using protocol %" PRIi32 " (%s)\n", sv_protocol, p);
2019-11-24 20:45:15 -08:00
}
/*
=============================================================================
EVENT MESSAGES
=============================================================================
*/
/*
==================
SV_StartParticle
Make sure the event gets sent to all clients
==================
*/
2019-11-25 17:40:18 -08:00
void SV_StartParticle(vec3_t org, vec3_t dir, int32_t color, int32_t count)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t i, v;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(sv.datagram.cursize > MAX_DATAGRAM - 16)
2019-11-24 20:45:15 -08:00
return;
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&sv.datagram, svc_particle);
MSG_WriteCoord(&sv.datagram, org[0], sv.protocolflags);
MSG_WriteCoord(&sv.datagram, org[1], sv.protocolflags);
MSG_WriteCoord(&sv.datagram, org[2], sv.protocolflags);
for(i = 0 ; i < 3 ; i++)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
v = dir[i] * 16;
if(v > 127)
2019-11-24 20:45:15 -08:00
v = 127;
2019-11-25 17:40:18 -08:00
else if(v < -128)
2019-11-24 20:45:15 -08:00
v = -128;
2019-11-25 17:40:18 -08:00
MSG_WriteChar(&sv.datagram, v);
2019-11-24 20:45:15 -08:00
}
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&sv.datagram, count);
MSG_WriteByte(&sv.datagram, color);
2019-11-24 20:45:15 -08:00
}
/*
==================
SV_StartSound
Each entity can have eight independant sound sources, like voice,
weapon, feet, etc.
Channel 0 is an auto-allocate channel, the others override anything
allready running on that entity/channel pair.
An attenuation of 0 will play full volume everywhere in the level.
Larger attenuations will drop off. (max 4 attenuation)
==================
*/
2019-11-25 17:40:18 -08:00
void SV_StartSound(edict_t *entity, int32_t channel, const char *sample, int32_t volume, float attenuation)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t sound_num, ent;
int32_t i, field_mask;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(volume < 0 || volume > 255)
Host_Error("SV_StartSound: volume = %" PRIi32, volume);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(attenuation < 0 || attenuation > 4)
Host_Error("SV_StartSound: attenuation = %f", attenuation);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(channel < 0 || channel > 7)
Host_Error("SV_StartSound: channel = %" PRIi32, channel);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(sv.datagram.cursize > MAX_DATAGRAM - 16)
2019-11-24 20:45:15 -08:00
return;
// find precache number for sound
2019-11-25 17:40:18 -08:00
for(sound_num = 1; sound_num < MAX_SOUNDS && sv.sound_precache[sound_num]; sound_num++)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
if(!strcmp(sample, sv.sound_precache[sound_num]))
2019-11-24 20:45:15 -08:00
break;
}
2019-11-25 17:40:18 -08:00
if(sound_num == MAX_SOUNDS || !sv.sound_precache[sound_num])
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
Con_Printf("SV_StartSound: %s not precacheed\n", sample);
2019-11-24 20:45:15 -08:00
return;
}
ent = NumForEdict(entity);
2019-11-24 20:45:15 -08:00
field_mask = 0;
2019-11-25 17:40:18 -08:00
if(volume != DEFAULT_SOUND_PACKET_VOLUME)
2019-11-24 20:45:15 -08:00
field_mask |= SND_VOLUME;
2019-11-25 17:40:18 -08:00
if(attenuation != DEFAULT_SOUND_PACKET_ATTENUATION)
2019-11-24 20:45:15 -08:00
field_mask |= SND_ATTENUATION;
//johnfitz -- PROTOCOL_FITZQUAKE
2019-11-25 17:40:18 -08:00
if(ent >= 8192)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
if(sv.protocol == PROTOCOL_NETQUAKE)
2019-11-24 20:45:15 -08:00
return; //don't send any info protocol can't support
else
field_mask |= SND_LARGEENTITY;
}
2019-11-25 17:40:18 -08:00
if(sound_num >= 256 || channel >= 8)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
if(sv.protocol == PROTOCOL_NETQUAKE)
2019-11-24 20:45:15 -08:00
return; //don't send any info protocol can't support
else
field_mask |= SND_LARGESOUND;
}
//johnfitz
// directed messages go only to the entity the are targeted on
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&sv.datagram, svc_sound);
MSG_WriteByte(&sv.datagram, field_mask);
if(field_mask & SND_VOLUME)
MSG_WriteByte(&sv.datagram, volume);
if(field_mask & SND_ATTENUATION)
MSG_WriteByte(&sv.datagram, attenuation * 64);
2019-11-24 20:45:15 -08:00
//johnfitz -- PROTOCOL_FITZQUAKE
2019-11-25 17:40:18 -08:00
if(field_mask & SND_LARGEENTITY)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
MSG_WriteShort(&sv.datagram, ent);
MSG_WriteByte(&sv.datagram, channel);
2019-11-24 20:45:15 -08:00
}
else
2019-11-25 17:40:18 -08:00
MSG_WriteShort(&sv.datagram, (ent << 3) | channel);
if(field_mask & SND_LARGESOUND)
MSG_WriteShort(&sv.datagram, sound_num);
2019-11-24 20:45:15 -08:00
else
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&sv.datagram, sound_num);
2019-11-24 20:45:15 -08:00
//johnfitz
2019-11-25 17:40:18 -08:00
for(i = 0; i < 3; i++)
MSG_WriteCoord(&sv.datagram, ED_Vector(entity, ED_origin)[i] + 0.5 * (ED_Vector(entity, ED_mins)[i] + ED_Vector(entity, ED_maxs)[i]), sv.protocolflags);
2019-11-24 20:45:15 -08:00
}
/*
==============================================================================
CLIENT SPAWNING
==============================================================================
*/
/*
================
SV_SendServerinfo
Sends the first message from the server to a connected client.
This will be sent on the initial connection and upon each server load.
================
*/
2019-11-25 17:40:18 -08:00
void SV_SendServerinfo(client_t *client)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
const char **s;
char message[2048];
int32_t i; //johnfitz
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&client->message, svc_print);
2019-12-02 07:01:47 -08:00
sprintf(message, "\x02\nFITZQUAKE 0.85 SERVER (%" PRIi32 " CRC)\n", pr_crc);
2019-11-25 17:40:18 -08:00
MSG_WriteString(&client->message, message);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&client->message, svc_serverinfo);
MSG_WriteLong(&client->message, sv.protocol); //johnfitz -- sv.protocol instead of PROTOCOL_VERSION
2019-11-24 22:55:47 -08:00
2019-11-25 17:40:18 -08:00
if(sv.protocol == PROTOCOL_RMQ)
2019-11-24 20:45:15 -08:00
{
// mh - now send protocol flags so that the client knows the protocol features to expect
2019-11-25 17:40:18 -08:00
MSG_WriteLong(&client->message, sv.protocolflags);
2019-11-24 20:45:15 -08:00
}
2019-11-24 22:55:47 -08:00
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&client->message, svs.maxclients);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(!coop.value && deathmatch.value)
MSG_WriteByte(&client->message, GAME_DEATHMATCH);
2019-11-24 20:45:15 -08:00
else
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&client->message, GAME_COOP);
2019-11-24 20:45:15 -08:00
MSG_WriteString(&client->message, ED_String(sv.edicts, ED_message));
2019-11-24 20:45:15 -08:00
//johnfitz -- only send the first 256 model and sound precaches if protocol is 15
2019-11-25 17:40:18 -08:00
for(i = 0, s = sv.model_precache + 1 ; *s; s++, i++)
if(sv.protocol != PROTOCOL_NETQUAKE || i < 256)
MSG_WriteString(&client->message, *s);
MSG_WriteByte(&client->message, 0);
for(i = 0, s = sv.sound_precache + 1 ; *s ; s++, i++)
if(sv.protocol != PROTOCOL_NETQUAKE || i < 256)
MSG_WriteString(&client->message, *s);
MSG_WriteByte(&client->message, 0);
2019-11-24 20:45:15 -08:00
//johnfitz
// send music
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&client->message, svc_cdtrack);
MSG_WriteByte(&client->message, ED_Float(sv.edicts, ED_sounds));
MSG_WriteByte(&client->message, ED_Float(sv.edicts, ED_sounds));
2019-11-24 20:45:15 -08:00
// set view
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&client->message, svc_setview);
MSG_WriteShort(&client->message, NumForEdict(client->edict));
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&client->message, svc_signonnum);
MSG_WriteByte(&client->message, 1);
2019-11-24 20:45:15 -08:00
client->sendsignon = true;
2019-11-25 17:40:18 -08:00
client->spawned = false; // need prespawn, spawn, etc
2019-11-24 20:45:15 -08:00
}
/*
================
SV_ConnectClient
Initializes a client_t for a new net connection. This will only be called
once for a player each game, not once for each level change.
================
*/
2019-11-25 17:40:18 -08:00
void SV_ConnectClient(int32_t clientnum)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
edict_t *ent;
client_t *client;
int32_t edictnum;
2019-11-24 20:45:15 -08:00
struct qsocket_s *netconnection;
2019-11-25 17:40:18 -08:00
int32_t i;
float spawn_parms[NUM_SPAWN_PARMS];
2019-11-24 20:45:15 -08:00
client = svs.clients + clientnum;
2019-11-25 17:40:18 -08:00
Con_DPrintf("Client %s connected\n", NET_QSocketGetAddressString(client->netconnection));
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
edictnum = clientnum + 1;
2019-11-24 20:45:15 -08:00
ent = EdictNum(edictnum);
2019-11-24 20:45:15 -08:00
// set up the client_t
netconnection = client->netconnection;
2019-11-25 17:40:18 -08:00
if(sv.loadgame)
memcpy(spawn_parms, client->spawn_parms, sizeof(spawn_parms));
memset(client, 0, sizeof(*client));
2019-11-24 20:45:15 -08:00
client->netconnection = netconnection;
2019-11-25 17:40:18 -08:00
strcpy(client->name, "unconnected");
2019-11-24 20:45:15 -08:00
client->active = true;
client->spawned = false;
client->edict = ent;
client->message.data = client->msgbuf;
client->message.maxsize = sizeof(client->msgbuf);
2019-11-25 17:40:18 -08:00
client->message.allowoverflow = true; // we can catch it
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(sv.loadgame)
memcpy(client->spawn_parms, spawn_parms, sizeof(spawn_parms));
2019-11-24 20:45:15 -08:00
else
{
2019-11-25 17:40:18 -08:00
// call the progs to get default spawn parms for the new client
PR_ExecuteProgram(G_Func(GBL_SetNewParms));
2019-11-25 17:40:18 -08:00
for(i = 0 ; i < NUM_SPAWN_PARMS ; i++)
client->spawn_parms[i] = (&G_Float(GBL_parm1))[i];
2019-11-24 20:45:15 -08:00
}
2019-11-25 17:40:18 -08:00
SV_SendServerinfo(client);
2019-11-24 20:45:15 -08:00
}
/*
===================
SV_CheckForNewClients
===================
*/
2019-11-25 17:40:18 -08:00
void SV_CheckForNewClients(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
struct qsocket_s *ret;
int32_t i;
2019-11-24 20:45:15 -08:00
//
// check for new connections
//
2019-11-25 17:40:18 -08:00
while(1)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
ret = NET_CheckNewConnections();
if(!ret)
2019-11-24 20:45:15 -08:00
break;
2019-11-25 17:40:18 -08:00
//
// init a new client structure
//
for(i = 0 ; i < svs.maxclients ; i++)
if(!svs.clients[i].active)
2019-11-24 20:45:15 -08:00
break;
2019-11-25 17:40:18 -08:00
if(i == svs.maxclients)
Sys_Error("Host_CheckForNewClients: no free clients");
2019-11-24 20:45:15 -08:00
svs.clients[i].netconnection = ret;
2019-11-25 17:40:18 -08:00
SV_ConnectClient(i);
2019-11-24 20:45:15 -08:00
net_activeconnections++;
}
}
/*
===============================================================================
FRAME UPDATES
===============================================================================
*/
/*
==================
SV_ClearDatagram
==================
*/
2019-11-25 17:40:18 -08:00
void SV_ClearDatagram(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
SZ_Clear(&sv.datagram);
2019-11-24 20:45:15 -08:00
}
/*
=============================================================================
The PVS must include a small area around the client to allow head bobbing
or other small motion on the client side. Otherwise, a bob might cause an
entity that should be visible to not show up, especially when the bob
crosses a waterline.
=============================================================================
*/
2019-11-25 17:40:18 -08:00
static int32_t fatbytes;
static byte *fatpvs;
static int32_t fatpvs_capacity;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
void SV_AddToFatPVS(vec3_t org, mnode_t *node, qmodel_t *worldmodel) //johnfitz -- added worldmodel as a parameter
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t i;
byte *pvs;
mplane_t *plane;
float d;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
while(1)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
// if this is a leaf, accumulate the pvs bits
if(node->contents < 0)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
if(node->contents != CONTENTS_SOLID)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
pvs = Mod_LeafPVS((mleaf_t *)node, worldmodel); //johnfitz -- worldmodel as a parameter
for(i = 0 ; i < fatbytes ; i++)
2019-11-24 20:45:15 -08:00
fatpvs[i] |= pvs[i];
}
return;
}
plane = node->plane;
2019-11-25 17:40:18 -08:00
d = DotProduct(org, plane->normal) - plane->dist;
if(d > 8)
2019-11-24 20:45:15 -08:00
node = node->children[0];
2019-11-25 17:40:18 -08:00
else if(d < -8)
2019-11-24 20:45:15 -08:00
node = node->children[1];
else
2019-11-25 17:40:18 -08:00
{
// go down both
SV_AddToFatPVS(org, node->children[0], worldmodel); //johnfitz -- worldmodel as a parameter
2019-11-24 20:45:15 -08:00
node = node->children[1];
}
}
}
/*
=============
SV_FatPVS
Calculates a PVS that is the inclusive or of all leafs within 8 pixels of the
given point.
=============
*/
2019-11-25 17:40:18 -08:00
byte *SV_FatPVS(vec3_t org, qmodel_t *worldmodel) //johnfitz -- added worldmodel as a parameter
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
fatbytes = (worldmodel->numleafs + 7) >> 3; // ericw -- was +31, assumed to be a bug/typo
if(fatpvs == NULL || fatbytes > fatpvs_capacity)
2019-11-24 20:45:15 -08:00
{
fatpvs_capacity = fatbytes;
2019-11-25 17:40:18 -08:00
fatpvs = (byte *) realloc(fatpvs, fatpvs_capacity);
if(!fatpvs)
Sys_Error("SV_FatPVS: realloc() failed on %" PRIi32 " bytes", fatpvs_capacity);
2019-11-24 20:45:15 -08:00
}
2019-11-24 22:55:47 -08:00
2019-12-07 09:27:26 -08:00
memset(fatpvs, 0, fatbytes);
2019-11-25 17:40:18 -08:00
SV_AddToFatPVS(org, worldmodel->nodes, worldmodel); //johnfitz -- worldmodel as a parameter
2019-11-24 20:45:15 -08:00
return fatpvs;
}
/*
=============
SV_VisibleToClient -- johnfitz
PVS test encapsulated in a nice function
=============
*/
2019-11-25 17:40:18 -08:00
bool SV_VisibleToClient(edict_t *client, edict_t *test, qmodel_t *worldmodel)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
byte *pvs;
vec3_t org;
int32_t i;
2019-11-24 20:45:15 -08:00
VectorAdd(ED_Vector(client, ED_origin), ED_Vector(client, ED_view_ofs), org);
2019-11-25 17:40:18 -08:00
pvs = SV_FatPVS(org, worldmodel);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
for(i = 0 ; i < test->num_leafs ; i++)
if(pvs[test->leafnums[i] >> 3] & (1 << (test->leafnums[i] & 7)))
2019-11-24 20:45:15 -08:00
return true;
return false;
}
//=============================================================================
/*
=============
SV_WriteEntitiesToClient
=============
*/
2019-11-25 17:40:18 -08:00
void SV_WriteEntitiesToClient(edict_t *clent, sizebuf_t *msg)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t e, i;
int32_t bits;
byte *pvs;
vec3_t org;
float miss;
edict_t *ent;
2019-11-24 20:45:15 -08:00
// find the client's PVS
VectorAdd(ED_Vector(clent, ED_origin), ED_Vector(clent, ED_view_ofs), org);
2019-11-25 17:40:18 -08:00
pvs = SV_FatPVS(org, sv.worldmodel);
2019-11-24 20:45:15 -08:00
// send over all entities (excpet the client) that touch the pvs
ent = NextEdict(sv.edicts);
for(e = 1 ; e < sv.num_edicts ; e++, ent = NextEdict(ent))
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
if(ent != clent) // clent is ALLWAYS sent
2019-11-24 20:45:15 -08:00
{
// ignore ents without visible models
if(!ED_Float(ent, ED_modelindex) || !ED_String(ent, ED_model)[0])
2019-11-24 20:45:15 -08:00
continue;
//johnfitz -- don't send model>255 entities if protocol is 15
if(sv.protocol == PROTOCOL_NETQUAKE && (int32_t)ED_Float(ent, ED_modelindex) & 0xFF00)
2019-11-24 20:45:15 -08:00
continue;
// ignore if not touching a PV leaf
2019-11-25 17:40:18 -08:00
for(i = 0 ; i < ent->num_leafs ; i++)
if(pvs[ent->leafnums[i] >> 3] & (1 << (ent->leafnums[i] & 7)))
2019-11-24 20:45:15 -08:00
break;
2019-11-24 22:55:47 -08:00
2019-11-24 20:45:15 -08:00
// ericw -- added ent->num_leafs < MAX_ENT_LEAFS condition.
//
// if ent->num_leafs == MAX_ENT_LEAFS, the ent is visible from too many leafs
// for us to say whether it's in the PVS, so don't try to vis cull it.
// this commonly happens with rotators, because they often have huge bboxes
// spanning the entire map, or really tall lifts, etc.
2019-11-25 17:40:18 -08:00
if(i == ent->num_leafs && ent->num_leafs < MAX_ENT_LEAFS)
continue; // not visible
2019-11-24 20:45:15 -08:00
}
//johnfitz -- max size for protocol 15 is 18 bytes, not 16 as originally
//assumed here. And, for protocol 85 the max size is actually 24 bytes.
2019-11-25 17:40:18 -08:00
if(msg->cursize + 24 > msg->maxsize)
2019-11-24 20:45:15 -08:00
{
//johnfitz -- less spammy overflow message
2019-11-25 17:40:18 -08:00
if(!dev_overflows.packetsize || dev_overflows.packetsize + CONSOLE_RESPAM_TIME < realtime)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
Con_Printf("Packet overflow!\n");
2019-11-24 20:45:15 -08:00
dev_overflows.packetsize = realtime;
}
goto stats;
//johnfitz
}
// send an update
bits = 0;
2019-11-25 17:40:18 -08:00
for(i = 0 ; i < 3 ; i++)
2019-11-24 20:45:15 -08:00
{
miss = ED_Vector(ent, ED_origin)[i] - ent->baseline.origin[i];
2019-11-25 17:40:18 -08:00
if(miss < -0.1 || miss > 0.1)
bits |= U_ORIGIN1 << i;
2019-11-24 20:45:15 -08:00
}
if(ED_Vector(ent, ED_angles)[0] != ent->baseline.angles[0])
2019-11-24 20:45:15 -08:00
bits |= U_ANGLE1;
if(ED_Vector(ent, ED_angles)[1] != ent->baseline.angles[1])
2019-11-24 20:45:15 -08:00
bits |= U_ANGLE2;
if(ED_Vector(ent, ED_angles)[2] != ent->baseline.angles[2])
2019-11-24 20:45:15 -08:00
bits |= U_ANGLE3;
if(ED_Float(ent, ED_movetype) == MOVETYPE_STEP)
2019-11-25 17:40:18 -08:00
bits |= U_STEP; // don't mess up the step animation
2019-11-24 20:45:15 -08:00
if(ent->baseline.colormap != ED_Float(ent, ED_colormap))
2019-11-24 20:45:15 -08:00
bits |= U_COLORMAP;
if(ent->baseline.skin != ED_Float(ent, ED_skin))
2019-11-24 20:45:15 -08:00
bits |= U_SKIN;
if(ent->baseline.frame != ED_Float(ent, ED_frame))
2019-11-24 20:45:15 -08:00
bits |= U_FRAME;
if(ent->baseline.effects != ED_Float(ent, ED_effects))
2019-11-24 20:45:15 -08:00
bits |= U_EFFECTS;
if(ent->baseline.modelindex != ED_Float(ent, ED_modelindex))
2019-11-24 20:45:15 -08:00
bits |= U_MODEL;
//johnfitz -- alpha
2019-11-25 17:40:18 -08:00
if(pr_alpha_supported)
2019-11-24 20:45:15 -08:00
{
// TODO: find a cleaner place to put this code
2019-11-25 17:40:18 -08:00
eval_t *val;
2019-11-24 20:45:15 -08:00
val = GetEdictFieldValue(ent, "alpha");
2019-11-25 17:40:18 -08:00
if(val)
2019-12-07 09:27:26 -08:00
ent->alpha = ENTALPHA_ENCODE(val->flt);
2019-11-24 20:45:15 -08:00
}
//don't send invisible entities unless they have effects
if(ent->alpha == ENTALPHA_ZERO && !ED_Float(ent, ED_effects))
2019-11-24 20:45:15 -08:00
continue;
//johnfitz
//johnfitz -- PROTOCOL_FITZQUAKE
2019-11-25 17:40:18 -08:00
if(sv.protocol != PROTOCOL_NETQUAKE)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
if(ent->baseline.alpha != ent->alpha) bits |= U_ALPHA;
if(bits & U_FRAME && (int32_t)ED_Float(ent, ED_frame) & 0xFF00) bits |= U_FRAME2;
if(bits & U_MODEL && (int32_t)ED_Float(ent, ED_modelindex) & 0xFF00) bits |= U_MODEL2;
2019-11-25 17:40:18 -08:00
if(ent->sendinterval) bits |= U_LERPFINISH;
if(bits >= 65536) bits |= U_EXTEND1;
if(bits >= 16777216) bits |= U_EXTEND2;
2019-11-24 20:45:15 -08:00
}
//johnfitz
2019-11-25 17:40:18 -08:00
if(e >= 256)
2019-11-24 20:45:15 -08:00
bits |= U_LONGENTITY;
2019-11-25 17:40:18 -08:00
if(bits >= 256)
2019-11-24 20:45:15 -08:00
bits |= U_MOREBITS;
2019-11-25 17:40:18 -08:00
//
// write the message
//
MSG_WriteByte(msg, bits | U_SIGNAL);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(bits & U_MOREBITS)
MSG_WriteByte(msg, bits >> 8);
2019-11-24 20:45:15 -08:00
//johnfitz -- PROTOCOL_FITZQUAKE
2019-11-25 17:40:18 -08:00
if(bits & U_EXTEND1)
MSG_WriteByte(msg, bits >> 16);
if(bits & U_EXTEND2)
MSG_WriteByte(msg, bits >> 24);
2019-11-24 20:45:15 -08:00
//johnfitz
2019-11-25 17:40:18 -08:00
if(bits & U_LONGENTITY)
MSG_WriteShort(msg, e);
2019-11-24 20:45:15 -08:00
else
2019-11-25 17:40:18 -08:00
MSG_WriteByte(msg, e);
if(bits & U_MODEL)
MSG_WriteByte(msg, ED_Float(ent, ED_modelindex));
2019-11-25 17:40:18 -08:00
if(bits & U_FRAME)
MSG_WriteByte(msg, ED_Float(ent, ED_frame));
2019-11-25 17:40:18 -08:00
if(bits & U_COLORMAP)
MSG_WriteByte(msg, ED_Float(ent, ED_colormap));
2019-11-25 17:40:18 -08:00
if(bits & U_SKIN)
MSG_WriteByte(msg, ED_Float(ent, ED_skin));
2019-11-25 17:40:18 -08:00
if(bits & U_EFFECTS)
MSG_WriteByte(msg, ED_Float(ent, ED_effects));
2019-11-25 17:40:18 -08:00
if(bits & U_ORIGIN1)
MSG_WriteCoord(msg, ED_Vector(ent, ED_origin)[0], sv.protocolflags);
2019-11-25 17:40:18 -08:00
if(bits & U_ANGLE1)
MSG_WriteAngle(msg, ED_Vector(ent, ED_angles)[0], sv.protocolflags);
2019-11-25 17:40:18 -08:00
if(bits & U_ORIGIN2)
MSG_WriteCoord(msg, ED_Vector(ent, ED_origin)[1], sv.protocolflags);
2019-11-25 17:40:18 -08:00
if(bits & U_ANGLE2)
MSG_WriteAngle(msg, ED_Vector(ent, ED_angles)[1], sv.protocolflags);
2019-11-25 17:40:18 -08:00
if(bits & U_ORIGIN3)
MSG_WriteCoord(msg, ED_Vector(ent, ED_origin)[2], sv.protocolflags);
2019-11-25 17:40:18 -08:00
if(bits & U_ANGLE3)
MSG_WriteAngle(msg, ED_Vector(ent, ED_angles)[2], sv.protocolflags);
2019-11-24 20:45:15 -08:00
//johnfitz -- PROTOCOL_FITZQUAKE
2019-11-25 17:40:18 -08:00
if(bits & U_ALPHA)
2019-11-24 20:45:15 -08:00
MSG_WriteByte(msg, ent->alpha);
2019-11-25 17:40:18 -08:00
if(bits & U_FRAME2)
MSG_WriteByte(msg, (int32_t)ED_Float(ent, ED_frame) >> 8);
2019-11-25 17:40:18 -08:00
if(bits & U_MODEL2)
MSG_WriteByte(msg, (int32_t)ED_Float(ent, ED_modelindex) >> 8);
2019-11-25 17:40:18 -08:00
if(bits & U_LERPFINISH)
MSG_WriteByte(msg, (byte)(Q_rint((ED_Float(ent, ED_nextthink) - sv.time) * 255)));
2019-11-24 20:45:15 -08:00
//johnfitz
}
//johnfitz -- devstats
stats:
2019-11-25 17:40:18 -08:00
if(msg->cursize > 1024 && dev_peakstats.packetsize <= 1024)
Con_DWarning("%" PRIi32 " byte packet exceeds standard limit of 1024 (max = %" PRIi32 ").\n", msg->cursize, msg->maxsize);
2019-11-24 20:45:15 -08:00
dev_stats.packetsize = msg->cursize;
dev_peakstats.packetsize = q_max(msg->cursize, dev_peakstats.packetsize);
//johnfitz
}
/*
=============
SV_CleanupEnts
=============
*/
2019-11-25 17:40:18 -08:00
void SV_CleanupEnts(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t e;
edict_t *ent;
2019-11-24 20:45:15 -08:00
ent = NextEdict(sv.edicts);
for(e = 1 ; e < sv.num_edicts ; e++, ent = NextEdict(ent))
2019-11-24 20:45:15 -08:00
{
ED_Float(ent, ED_effects) = (int32_t)ED_Float(ent, ED_effects) & ~EF_MUZZLEFLASH;
2019-11-24 20:45:15 -08:00
}
}
/*
==================
SV_WriteClientdataToMessage
==================
*/
2019-11-25 17:40:18 -08:00
void SV_WriteClientdataToMessage(edict_t *ent, sizebuf_t *msg)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t bits;
int32_t i;
edict_t *other;
int32_t items;
eval_t *val;
2019-11-24 20:45:15 -08:00
//
// send a damage message
//
if(ED_Float(ent, ED_dmg_take) || ED_Float(ent, ED_dmg_save))
2019-11-24 20:45:15 -08:00
{
other = ProgEdict(ED_PEdict(ent, ED_dmg_inflictor));
2019-11-25 17:40:18 -08:00
MSG_WriteByte(msg, svc_damage);
MSG_WriteByte(msg, ED_Float(ent, ED_dmg_save));
MSG_WriteByte(msg, ED_Float(ent, ED_dmg_take));
2019-11-25 17:40:18 -08:00
for(i = 0 ; i < 3 ; i++)
MSG_WriteCoord(msg, ED_Vector(other, ED_origin)[i] + 0.5 * (ED_Vector(other, ED_mins)[i] + ED_Vector(other, ED_maxs)[i]), sv.protocolflags);
2019-11-24 20:45:15 -08:00
ED_Float(ent, ED_dmg_take) = 0;
ED_Float(ent, ED_dmg_save) = 0;
2019-11-24 20:45:15 -08:00
}
//
// send the current viewpos offset from the view entity
//
2019-11-25 17:40:18 -08:00
SV_SetIdealPitch(); // how much to look up / down ideally
2019-11-24 20:45:15 -08:00
// a fixangle might get lost in a dropped packet. Oh well.
if(ED_Float(ent, ED_fixangle))
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
MSG_WriteByte(msg, svc_setangle);
for(i = 0 ; i < 3 ; i++)
MSG_WriteAngle(msg, ED_Vector(ent, ED_angles)[i], sv.protocolflags);
ED_Float(ent, ED_fixangle) = 0;
2019-11-24 20:45:15 -08:00
}
bits = 0;
if(ED_Vector(ent, ED_view_ofs)[2] != DEFAULT_VIEWHEIGHT)
2019-11-24 20:45:15 -08:00
bits |= SU_VIEWHEIGHT;
if(ED_Float(ent, ED_idealpitch))
2019-11-24 20:45:15 -08:00
bits |= SU_IDEALPITCH;
// stuff the sigil bits into the high bits of items for sbar, or else
// mix in items2
val = GetEdictFieldValue(ent, "items2");
2019-11-25 17:40:18 -08:00
if(val)
items = (int32_t)ED_Float(ent, ED_items) | ((int32_t)val->flt << 23);
2019-11-24 20:45:15 -08:00
else
items = (int32_t)ED_Float(ent, ED_items) | ((int32_t)G_Float(GBL_serverflags) << 28);
2019-11-24 20:45:15 -08:00
bits |= SU_ITEMS;
if((int32_t)ED_Float(ent, ED_flags) & FL_ONGROUND)
2019-11-24 20:45:15 -08:00
bits |= SU_ONGROUND;
if(ED_Float(ent, ED_waterlevel) >= 2)
2019-11-24 20:45:15 -08:00
bits |= SU_INWATER;
2019-11-25 17:40:18 -08:00
for(i = 0 ; i < 3 ; i++)
2019-11-24 20:45:15 -08:00
{
if(ED_Vector(ent, ED_punchangle)[i])
2019-11-25 17:40:18 -08:00
bits |= (SU_PUNCH1 << i);
if(ED_Vector(ent, ED_velocity)[i])
2019-11-25 17:40:18 -08:00
bits |= (SU_VELOCITY1 << i);
2019-11-24 20:45:15 -08:00
}
if(ED_Float(ent, ED_weaponframe))
2019-11-24 20:45:15 -08:00
bits |= SU_WEAPONFRAME;
if(ED_Float(ent, ED_armorvalue))
2019-11-24 20:45:15 -08:00
bits |= SU_ARMOR;
// if (ED_Float(ent, ED_weapon))
2019-11-25 17:40:18 -08:00
bits |= SU_WEAPON;
2019-11-24 20:45:15 -08:00
//johnfitz -- PROTOCOL_FITZQUAKE
2019-11-25 17:40:18 -08:00
if(sv.protocol != PROTOCOL_NETQUAKE)
2019-11-24 20:45:15 -08:00
{
if(bits & SU_WEAPON && SV_ModelIndex(ED_String(ent, ED_weaponmodel)) & 0xFF00) bits |= SU_WEAPON2;
if((int32_t)ED_Float(ent, ED_armorvalue) & 0xFF00) bits |= SU_ARMOR2;
if((int32_t)ED_Float(ent, ED_currentammo) & 0xFF00) bits |= SU_AMMO2;
if((int32_t)ED_Float(ent, ED_ammo_shells) & 0xFF00) bits |= SU_SHELLS2;
if((int32_t)ED_Float(ent, ED_ammo_nails) & 0xFF00) bits |= SU_NAILS2;
if((int32_t)ED_Float(ent, ED_ammo_rockets) & 0xFF00) bits |= SU_ROCKETS2;
if((int32_t)ED_Float(ent, ED_ammo_cells) & 0xFF00) bits |= SU_CELLS2;
if(bits & SU_WEAPONFRAME && (int32_t)ED_Float(ent, ED_weaponframe) & 0xFF00) bits |= SU_WEAPONFRAME2;
2019-11-25 17:40:18 -08:00
if(bits & SU_WEAPON && ent->alpha != ENTALPHA_DEFAULT) bits |= SU_WEAPONALPHA; //for now, weaponalpha = client entity alpha
if(bits >= 65536) bits |= SU_EXTEND1;
if(bits >= 16777216) bits |= SU_EXTEND2;
2019-11-24 20:45:15 -08:00
}
//johnfitz
// send the data
2019-11-25 17:40:18 -08:00
MSG_WriteByte(msg, svc_clientdata);
MSG_WriteShort(msg, bits);
2019-11-24 20:45:15 -08:00
//johnfitz -- PROTOCOL_FITZQUAKE
2019-11-25 17:40:18 -08:00
if(bits & SU_EXTEND1) MSG_WriteByte(msg, bits >> 16);
if(bits & SU_EXTEND2) MSG_WriteByte(msg, bits >> 24);
2019-11-24 20:45:15 -08:00
//johnfitz
2019-11-25 17:40:18 -08:00
if(bits & SU_VIEWHEIGHT)
MSG_WriteChar(msg, ED_Vector(ent, ED_view_ofs)[2]);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(bits & SU_IDEALPITCH)
MSG_WriteChar(msg, ED_Float(ent, ED_idealpitch));
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
for(i = 0 ; i < 3 ; i++)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
if(bits & (SU_PUNCH1 << i))
MSG_WriteChar(msg, ED_Vector(ent, ED_punchangle)[i]);
2019-11-25 17:40:18 -08:00
if(bits & (SU_VELOCITY1 << i))
MSG_WriteChar(msg, ED_Vector(ent, ED_velocity)[i] / 16);
2019-11-24 20:45:15 -08:00
}
2019-11-25 17:40:18 -08:00
// [always sent] if (bits & SU_ITEMS)
MSG_WriteLong(msg, items);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(bits & SU_WEAPONFRAME)
MSG_WriteByte(msg, ED_Float(ent, ED_weaponframe));
2019-11-25 17:40:18 -08:00
if(bits & SU_ARMOR)
MSG_WriteByte(msg, ED_Float(ent, ED_armorvalue));
2019-11-25 17:40:18 -08:00
if(bits & SU_WEAPON)
MSG_WriteByte(msg, SV_ModelIndex(ED_String(ent, ED_weaponmodel)));
2019-11-24 20:45:15 -08:00
MSG_WriteShort(msg, ED_Float(ent, ED_health));
MSG_WriteByte(msg, ED_Float(ent, ED_currentammo));
MSG_WriteByte(msg, ED_Float(ent, ED_ammo_shells));
MSG_WriteByte(msg, ED_Float(ent, ED_ammo_nails));
MSG_WriteByte(msg, ED_Float(ent, ED_ammo_rockets));
MSG_WriteByte(msg, ED_Float(ent, ED_ammo_cells));
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(standard_quake)
2019-11-24 20:45:15 -08:00
{
MSG_WriteByte(msg, ED_Float(ent, ED_weapon));
2019-11-24 20:45:15 -08:00
}
else
{
2019-11-25 17:40:18 -08:00
for(i = 0; i < 32; i++)
2019-11-24 20:45:15 -08:00
{
if(((int32_t)ED_Float(ent, ED_weapon)) & (1 << i))
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
MSG_WriteByte(msg, i);
2019-11-24 20:45:15 -08:00
break;
}
}
}
//johnfitz -- PROTOCOL_FITZQUAKE
2019-11-25 17:40:18 -08:00
if(bits & SU_WEAPON2)
MSG_WriteByte(msg, SV_ModelIndex(ED_String(ent, ED_weaponmodel)) >> 8);
2019-11-25 17:40:18 -08:00
if(bits & SU_ARMOR2)
MSG_WriteByte(msg, (int32_t)ED_Float(ent, ED_armorvalue) >> 8);
2019-11-25 17:40:18 -08:00
if(bits & SU_AMMO2)
MSG_WriteByte(msg, (int32_t)ED_Float(ent, ED_currentammo) >> 8);
2019-11-25 17:40:18 -08:00
if(bits & SU_SHELLS2)
MSG_WriteByte(msg, (int32_t)ED_Float(ent, ED_ammo_shells) >> 8);
2019-11-25 17:40:18 -08:00
if(bits & SU_NAILS2)
MSG_WriteByte(msg, (int32_t)ED_Float(ent, ED_ammo_nails) >> 8);
2019-11-25 17:40:18 -08:00
if(bits & SU_ROCKETS2)
MSG_WriteByte(msg, (int32_t)ED_Float(ent, ED_ammo_rockets) >> 8);
2019-11-25 17:40:18 -08:00
if(bits & SU_CELLS2)
MSG_WriteByte(msg, (int32_t)ED_Float(ent, ED_ammo_cells) >> 8);
2019-11-25 17:40:18 -08:00
if(bits & SU_WEAPONFRAME2)
MSG_WriteByte(msg, (int32_t)ED_Float(ent, ED_weaponframe) >> 8);
2019-11-25 17:40:18 -08:00
if(bits & SU_WEAPONALPHA)
MSG_WriteByte(msg, ent->alpha); //for now, weaponalpha = client entity alpha
2019-11-24 20:45:15 -08:00
//johnfitz
}
/*
=======================
SV_SendClientDatagram
=======================
*/
2019-11-25 17:40:18 -08:00
bool SV_SendClientDatagram(client_t *client)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
byte buf[MAX_DATAGRAM];
sizebuf_t msg;
2019-11-24 20:45:15 -08:00
msg.data = buf;
msg.maxsize = sizeof(buf);
msg.cursize = 0;
//johnfitz -- if client is nonlocal, use smaller max size so packets aren't fragmented
2019-12-07 09:27:26 -08:00
if(strcmp(NET_QSocketGetAddressString(client->netconnection), "LOCAL") != 0)
2019-11-24 20:45:15 -08:00
msg.maxsize = DATAGRAM_MTU;
//johnfitz
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&msg, svc_time);
MSG_WriteFloat(&msg, sv.time);
2019-11-24 20:45:15 -08:00
// add the client specific data to the datagram
2019-11-25 17:40:18 -08:00
SV_WriteClientdataToMessage(client->edict, &msg);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
SV_WriteEntitiesToClient(client->edict, &msg);
2019-11-24 20:45:15 -08:00
// copy the server datagram if there is space
2019-11-25 17:40:18 -08:00
if(msg.cursize + sv.datagram.cursize < msg.maxsize)
SZ_Write(&msg, sv.datagram.data, sv.datagram.cursize);
2019-11-24 20:45:15 -08:00
// send the datagram
2019-11-25 17:40:18 -08:00
if(NET_SendUnreliableMessage(client->netconnection, &msg) == -1)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
SV_DropClient(true); // if the message couldn't send, kick off
2019-11-24 20:45:15 -08:00
return false;
}
return true;
}
/*
=======================
SV_UpdateToReliableMessages
=======================
*/
2019-11-25 17:40:18 -08:00
void SV_UpdateToReliableMessages(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t i, j;
2019-11-24 20:45:15 -08:00
client_t *client;
// check for changes to be sent over the reliable streams
2019-11-25 17:40:18 -08:00
for(i = 0, host_client = svs.clients ; i < svs.maxclients ; i++, host_client++)
2019-11-24 20:45:15 -08:00
{
if(host_client->old_frags != ED_Float(host_client->edict, ED_frags))
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
for(j = 0, client = svs.clients ; j < svs.maxclients ; j++, client++)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
if(!client->active)
2019-11-24 20:45:15 -08:00
continue;
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&client->message, svc_updatefrags);
MSG_WriteByte(&client->message, i);
MSG_WriteShort(&client->message, ED_Float(host_client->edict, ED_frags));
2019-11-24 20:45:15 -08:00
}
host_client->old_frags = ED_Float(host_client->edict, ED_frags);
2019-11-24 20:45:15 -08:00
}
}
2019-11-25 17:40:18 -08:00
for(j = 0, client = svs.clients ; j < svs.maxclients ; j++, client++)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
if(!client->active)
2019-11-24 20:45:15 -08:00
continue;
2019-11-25 17:40:18 -08:00
SZ_Write(&client->message, sv.reliable_datagram.data, sv.reliable_datagram.cursize);
2019-11-24 20:45:15 -08:00
}
2019-11-25 17:40:18 -08:00
SZ_Clear(&sv.reliable_datagram);
2019-11-24 20:45:15 -08:00
}
/*
=======================
SV_SendNop
Send a nop message without trashing or sending the accumulated client
message buffer
=======================
*/
2019-11-25 17:40:18 -08:00
void SV_SendNop(client_t *client)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
sizebuf_t msg;
byte buf[4];
2019-11-24 20:45:15 -08:00
msg.data = buf;
msg.maxsize = sizeof(buf);
msg.cursize = 0;
2019-11-25 17:40:18 -08:00
MSG_WriteChar(&msg, svc_nop);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(NET_SendUnreliableMessage(client->netconnection, &msg) == -1)
SV_DropClient(true); // if the message couldn't send, kick off
2019-11-24 20:45:15 -08:00
client->last_message = realtime;
}
/*
=======================
SV_SendClientMessages
=======================
*/
2019-11-25 17:40:18 -08:00
void SV_SendClientMessages(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t i;
2019-11-24 20:45:15 -08:00
// update frags, names, etc
2019-11-25 17:40:18 -08:00
SV_UpdateToReliableMessages();
2019-11-24 20:45:15 -08:00
// build individual updates
2019-11-25 17:40:18 -08:00
for(i = 0, host_client = svs.clients ; i < svs.maxclients ; i++, host_client++)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
if(!host_client->active)
2019-11-24 20:45:15 -08:00
continue;
2019-11-25 17:40:18 -08:00
if(host_client->spawned)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
if(!SV_SendClientDatagram(host_client))
2019-11-24 20:45:15 -08:00
continue;
}
else
{
2019-11-25 17:40:18 -08:00
// the player isn't totally in the game yet
// send small keepalive messages if too much time has passed
// send a full message when the next signon stage has been requested
// some other message data (name changes, etc) may accumulate
// between signon stages
if(!host_client->sendsignon)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
if(realtime - host_client->last_message > 5)
SV_SendNop(host_client);
continue; // don't send out non-signon messages
2019-11-24 20:45:15 -08:00
}
}
// check for an overflowed message. Should only happen
// on a very fucked up connection that backs up a lot, then
// changes level
2019-11-25 17:40:18 -08:00
if(host_client->message.overflowed)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
SV_DropClient(true);
2019-11-24 20:45:15 -08:00
host_client->message.overflowed = false;
continue;
}
2019-11-25 17:40:18 -08:00
if(host_client->message.cursize || host_client->dropasap)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
if(!NET_CanSendMessage(host_client->netconnection))
2019-11-24 20:45:15 -08:00
{
// I_Printf ("can't write\n");
continue;
}
2019-11-25 17:40:18 -08:00
if(host_client->dropasap)
SV_DropClient(false); // went to another level
2019-11-24 20:45:15 -08:00
else
{
2019-11-25 17:40:18 -08:00
if(NET_SendMessage(host_client->netconnection
, &host_client->message) == -1)
SV_DropClient(true); // if the message couldn't send, kick off
SZ_Clear(&host_client->message);
2019-11-24 20:45:15 -08:00
host_client->last_message = realtime;
host_client->sendsignon = false;
}
}
}
// clear muzzle flashes
2019-11-25 17:40:18 -08:00
SV_CleanupEnts();
2019-11-24 20:45:15 -08:00
}
/*
==============================================================================
SERVER SPAWNING
==============================================================================
*/
/*
================
SV_ModelIndex
================
*/
2019-11-25 17:40:18 -08:00
int32_t SV_ModelIndex(const char *name)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t i;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(!name || !name[0])
2019-11-24 20:45:15 -08:00
return 0;
2019-11-25 17:40:18 -08:00
for(i = 0 ; i < MAX_MODELS && sv.model_precache[i] ; i++)
if(!strcmp(sv.model_precache[i], name))
2019-11-24 20:45:15 -08:00
return i;
2019-11-25 17:40:18 -08:00
if(i == MAX_MODELS || !sv.model_precache[i])
Sys_Error("SV_ModelIndex: model %s not precached", name);
2019-11-24 20:45:15 -08:00
return i;
}
/*
================
SV_CreateBaseline
================
*/
2019-11-25 17:40:18 -08:00
void SV_CreateBaseline(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t i;
edict_t *svent;
int32_t entnum;
int32_t bits; //johnfitz -- PROTOCOL_FITZQUAKE
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
for(entnum = 0; entnum < sv.num_edicts ; entnum++)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
// get the current server version
svent = EdictNum(entnum);
2019-11-25 17:40:18 -08:00
if(svent->free)
2019-11-24 20:45:15 -08:00
continue;
if(entnum > svs.maxclients && !ED_Float(svent, ED_modelindex))
2019-11-24 20:45:15 -08:00
continue;
2019-11-25 17:40:18 -08:00
//
// create entity baseline
//
VectorCopy(ED_Vector(svent, ED_origin), svent->baseline.origin);
VectorCopy(ED_Vector(svent, ED_angles), svent->baseline.angles);
svent->baseline.frame = ED_Float(svent, ED_frame);
svent->baseline.skin = ED_Float(svent, ED_skin);
2019-11-25 17:40:18 -08:00
if(entnum > 0 && entnum <= svs.maxclients)
2019-11-24 20:45:15 -08:00
{
svent->baseline.colormap = entnum;
svent->baseline.modelindex = SV_ModelIndex("progs/player.mdl");
svent->baseline.alpha = ENTALPHA_DEFAULT; //johnfitz -- alpha support
}
else
{
svent->baseline.colormap = 0;
svent->baseline.modelindex = SV_ModelIndex(ED_String(svent, ED_model));
2019-11-24 20:45:15 -08:00
svent->baseline.alpha = svent->alpha; //johnfitz -- alpha support
}
//johnfitz -- PROTOCOL_FITZQUAKE
bits = 0;
2019-11-25 17:40:18 -08:00
if(sv.protocol == PROTOCOL_NETQUAKE) //still want to send baseline in PROTOCOL_NETQUAKE, so reset these values
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
if(svent->baseline.modelindex & 0xFF00)
2019-11-24 20:45:15 -08:00
svent->baseline.modelindex = 0;
2019-11-25 17:40:18 -08:00
if(svent->baseline.frame & 0xFF00)
2019-11-24 20:45:15 -08:00
svent->baseline.frame = 0;
svent->baseline.alpha = ENTALPHA_DEFAULT;
}
else //decide which extra data needs to be sent
{
2019-11-25 17:40:18 -08:00
if(svent->baseline.modelindex & 0xFF00)
2019-11-24 20:45:15 -08:00
bits |= B_LARGEMODEL;
2019-11-25 17:40:18 -08:00
if(svent->baseline.frame & 0xFF00)
2019-11-24 20:45:15 -08:00
bits |= B_LARGEFRAME;
2019-11-25 17:40:18 -08:00
if(svent->baseline.alpha != ENTALPHA_DEFAULT)
2019-11-24 20:45:15 -08:00
bits |= B_ALPHA;
}
//johnfitz
2019-11-25 17:40:18 -08:00
//
// add to the message
//
2019-11-24 20:45:15 -08:00
//johnfitz -- PROTOCOL_FITZQUAKE
2019-11-25 17:40:18 -08:00
if(bits)
MSG_WriteByte(&sv.signon, svc_spawnbaseline2);
2019-11-24 20:45:15 -08:00
else
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&sv.signon, svc_spawnbaseline);
2019-11-24 20:45:15 -08:00
//johnfitz
2019-11-25 17:40:18 -08:00
MSG_WriteShort(&sv.signon, entnum);
2019-11-24 20:45:15 -08:00
//johnfitz -- PROTOCOL_FITZQUAKE
2019-11-25 17:40:18 -08:00
if(bits)
MSG_WriteByte(&sv.signon, bits);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(bits & B_LARGEMODEL)
MSG_WriteShort(&sv.signon, svent->baseline.modelindex);
2019-11-24 20:45:15 -08:00
else
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&sv.signon, svent->baseline.modelindex);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(bits & B_LARGEFRAME)
MSG_WriteShort(&sv.signon, svent->baseline.frame);
2019-11-24 20:45:15 -08:00
else
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&sv.signon, svent->baseline.frame);
2019-11-24 20:45:15 -08:00
//johnfitz
2019-11-25 17:40:18 -08:00
MSG_WriteByte(&sv.signon, svent->baseline.colormap);
MSG_WriteByte(&sv.signon, svent->baseline.skin);
for(i = 0 ; i < 3 ; i++)
2019-11-24 20:45:15 -08:00
{
MSG_WriteCoord(&sv.signon, svent->baseline.origin[i], sv.protocolflags);
MSG_WriteAngle(&sv.signon, svent->baseline.angles[i], sv.protocolflags);
}
//johnfitz -- PROTOCOL_FITZQUAKE
2019-11-25 17:40:18 -08:00
if(bits & B_ALPHA)
MSG_WriteByte(&sv.signon, svent->baseline.alpha);
2019-11-24 20:45:15 -08:00
//johnfitz
}
}
/*
================
SV_SendReconnect
Tell all the clients that the server is changing levels
================
*/
2019-11-25 17:40:18 -08:00
void SV_SendReconnect(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
byte data[128];
sizebuf_t msg;
2019-11-24 20:45:15 -08:00
msg.data = data;
msg.cursize = 0;
msg.maxsize = sizeof(data);
2019-11-25 17:40:18 -08:00
MSG_WriteChar(&msg, svc_stufftext);
MSG_WriteString(&msg, "reconnect\n");
NET_SendToAll(&msg, 5.0);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(!isDedicated)
Cmd_ExecuteString("reconnect\n", src_command);
2019-11-24 20:45:15 -08:00
}
/*
================
SV_SaveSpawnparms
Grabs the current state of each client for saving across the
transition to another level
================
*/
2019-11-25 17:40:18 -08:00
void SV_SaveSpawnparms(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t i, j;
2019-11-24 20:45:15 -08:00
svs.serverflags = G_Float(GBL_serverflags);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
for(i = 0, host_client = svs.clients ; i < svs.maxclients ; i++, host_client++)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
if(!host_client->active)
2019-11-24 20:45:15 -08:00
continue;
2019-11-25 17:40:18 -08:00
// call the progs to get default spawn parms for the new client
G_PEdict(GBL_self) = EdictProg(host_client->edict);
PR_ExecuteProgram(G_Func(GBL_SetChangeParms));
2019-11-25 17:40:18 -08:00
for(j = 0 ; j < NUM_SPAWN_PARMS ; j++)
host_client->spawn_parms[j] = (&G_Float(GBL_parm1))[j];
2019-11-24 20:45:15 -08:00
}
}
/*
================
SV_SpawnServer
This is called at the start of each level
================
*/
2019-11-25 17:40:18 -08:00
extern float scr_centertime_off;
void SV_SpawnServer(const char *server)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
static char dummy[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
edict_t *ent;
int32_t i;
2019-11-24 20:45:15 -08:00
// let's not have any servers with no name
2019-11-25 17:40:18 -08:00
if(hostname.string[0] == 0)
Cvar_Set("hostname", "UNNAMED");
2019-11-24 20:45:15 -08:00
scr_centertime_off = 0;
2019-11-25 17:40:18 -08:00
Con_DPrintf("SpawnServer: %s\n", server);
svs.changelevel_issued = false; // now safe to issue another
2019-11-24 20:45:15 -08:00
//
// tell all connected clients that we are going to a new level
//
2019-11-25 17:40:18 -08:00
if(sv.active)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
SV_SendReconnect();
2019-11-24 20:45:15 -08:00
}
//
// make cvars consistant
//
2019-11-25 17:40:18 -08:00
if(coop.value)
Cvar_Set("deathmatch", "0");
2019-11-25 16:49:58 -08:00
current_skill = (int32_t)(skill.value + 0.5);
2019-11-25 17:40:18 -08:00
if(current_skill < 0)
2019-11-24 20:45:15 -08:00
current_skill = 0;
2019-11-25 17:40:18 -08:00
if(current_skill > 3)
2019-11-24 20:45:15 -08:00
current_skill = 3;
2019-11-25 17:40:18 -08:00
Cvar_SetValue("skill", (float)current_skill);
2019-11-24 20:45:15 -08:00
//
// set up the new server
//
//memset (&sv, 0, sizeof(sv));
2019-11-25 17:40:18 -08:00
Host_ClearMemory();
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
q_strlcpy(sv.name, server, sizeof(sv.name));
2019-11-24 20:45:15 -08:00
sv.protocol = sv_protocol; // johnfitz
2019-11-24 22:55:47 -08:00
2019-11-25 17:40:18 -08:00
if(sv.protocol == PROTOCOL_RMQ)
2019-11-24 20:45:15 -08:00
{
// set up the protocol flags used by this server
// (note - these could be cvar-ised so that server admins could choose the protocol features used by their servers)
sv.protocolflags = PRFL_INT32COORD | PRFL_SHORTANGLE;
}
else sv.protocolflags = 0;
// load progs to get entity field count
2019-11-25 17:40:18 -08:00
PR_LoadProgs();
2019-11-24 20:45:15 -08:00
// allocate server memory
/* Host_ClearMemory() called above already cleared the whole sv structure */
2019-11-25 17:40:18 -08:00
sv.max_edicts = CLAMP(MIN_EDICTS, (int32_t)max_edicts.value, MAX_EDICTS); //johnfitz -- max_edicts cvar
sv.edicts = (edict_t *) malloc(sv.max_edicts * pr_edict_size); // ericw -- sv.edicts switched to use malloc()
2019-11-24 20:45:15 -08:00
sv.datagram.maxsize = sizeof(sv.datagram_buf);
sv.datagram.cursize = 0;
sv.datagram.data = sv.datagram_buf;
sv.reliable_datagram.maxsize = sizeof(sv.reliable_datagram_buf);
sv.reliable_datagram.cursize = 0;
sv.reliable_datagram.data = sv.reliable_datagram_buf;
sv.signon.maxsize = sizeof(sv.signon_buf);
sv.signon.cursize = 0;
sv.signon.data = sv.signon_buf;
// leave slots at start for clients only
2019-11-25 17:40:18 -08:00
sv.num_edicts = svs.maxclients + 1;
memset(sv.edicts, 0, sv.num_edicts * pr_edict_size); // ericw -- sv.edicts switched to use malloc()
for(i = 0 ; i < svs.maxclients ; i++)
2019-11-24 20:45:15 -08:00
{
ent = EdictNum(i + 1);
2019-11-24 20:45:15 -08:00
svs.clients[i].edict = ent;
}
sv.state = ss_loading;
sv.paused = false;
sv.time = 1.0;
2019-11-25 17:40:18 -08:00
q_strlcpy(sv.name, server, sizeof(sv.name));
q_snprintf(sv.modelname, sizeof(sv.modelname), "maps/%s.bsp", server);
sv.worldmodel = Mod_ForName(sv.modelname, false);
if(!sv.worldmodel)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
Con_Printf("Couldn't spawn server %s\n", sv.modelname);
2019-11-24 20:45:15 -08:00
sv.active = false;
return;
}
sv.models[1] = sv.worldmodel;
//
// clear world interaction links
//
2019-11-25 17:40:18 -08:00
SV_ClearWorld();
2019-11-24 20:45:15 -08:00
sv.sound_precache[0] = dummy;
sv.model_precache[0] = dummy;
sv.model_precache[1] = sv.modelname;
2019-11-25 17:40:18 -08:00
for(i = 1 ; i < sv.worldmodel->numsubmodels ; i++)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
sv.model_precache[1 + i] = localmodels[i];
sv.models[i + 1] = Mod_ForName(localmodels[i], false);
2019-11-24 20:45:15 -08:00
}
//
// load the rest of the entities
//
ent = EdictNum(0);
2019-12-06 07:53:56 -08:00
memset(ent->fields, 0, progs.entityfields * 4);
2019-11-24 20:45:15 -08:00
ent->free = false;
ED_RString(ent, ED_model) = PR_SetEngineString(sv.worldmodel->name);
ED_Float(ent, ED_modelindex) = 1; // world model
ED_Float(ent, ED_solid) = SOLID_BSP;
ED_Float(ent, ED_movetype) = MOVETYPE_PUSH;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(coop.value)
G_Float(GBL_coop) = coop.value;
2019-11-24 20:45:15 -08:00
else
G_Float(GBL_deathmatch) = deathmatch.value;
2019-11-24 20:45:15 -08:00
G_RString(GBL_mapname) = PR_SetEngineString(sv.name);
2019-11-24 20:45:15 -08:00
// serverflags are for cross level information (sigils)
G_Float(GBL_serverflags) = svs.serverflags;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
ED_LoadFromFile(sv.worldmodel->entities);
2019-11-24 20:45:15 -08:00
sv.active = true;
// all setup is completed, any further precache statements are errors
sv.state = ss_active;
// run two frames to allow everything to settle
host_frametime = 0.1;
2019-11-25 17:40:18 -08:00
SV_Physics();
SV_Physics();
2019-11-24 20:45:15 -08:00
// create a baseline for more efficient communications
2019-11-25 17:40:18 -08:00
SV_CreateBaseline();
2019-11-24 20:45:15 -08:00
//johnfitz -- warn if signon buffer larger than standard server can handle
2019-11-25 17:40:18 -08:00
if(sv.signon.cursize > 8000 - 2) //max size that will fit into 8000-sized client->message buffer with 2 extra bytes on the end
Con_DWarning("%" PRIi32 " byte signon buffer exceeds standard limit of 7998 (max = %" PRIi32 ").\n", sv.signon.cursize, sv.signon.maxsize);
2019-11-24 20:45:15 -08:00
//johnfitz
// send serverinfo to all connected clients
2019-11-25 17:40:18 -08:00
for(i = 0, host_client = svs.clients ; i < svs.maxclients ; i++, host_client++)
if(host_client->active)
SV_SendServerinfo(host_client);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
Con_DPrintf("Server spawned.\n");
2019-11-24 20:45:15 -08:00
}