spingle/source/sv_user.c

631 lines
14 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_user.c -- server code for moving users
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
edict_t *sv_player;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
extern cvar_t sv_friction;
cvar_t sv_edgefriction = {"edgefriction", "2", CVAR_NONE};
extern cvar_t sv_stopspeed;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
static vec3_t forward, right, up;
2019-11-24 20:45:15 -08:00
// world
2019-11-25 17:40:18 -08:00
float *angles;
float *origin;
float *velocity;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
bool onground;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
usercmd_t cmd;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
cvar_t sv_idealpitchscale = {"sv_idealpitchscale", "0.8", CVAR_NONE};
cvar_t sv_altnoclip = {"sv_altnoclip", "1", CVAR_ARCHIVE}; //johnfitz
2019-11-24 20:45:15 -08:00
/*
===============
SV_SetIdealPitch
===============
*/
2019-11-25 17:40:18 -08:00
#define MAX_FORWARD 6
void SV_SetIdealPitch(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
float angleval, sinval, cosval;
trace_t tr;
vec3_t top, bottom;
float z[MAX_FORWARD];
int32_t i, j;
int32_t step, dir, steps;
if(!((int32_t)ED_Float(sv_player, ED_flags) & FL_ONGROUND))
2019-11-24 20:45:15 -08:00
return;
angleval = ED_Vector(sv_player, ED_angles)[YAW] * PI * 2 / 360;
2019-11-24 20:45:15 -08:00
sinval = sin(angleval);
cosval = cos(angleval);
2019-11-25 17:40:18 -08:00
for(i = 0 ; i < MAX_FORWARD ; i++)
2019-11-24 20:45:15 -08:00
{
top[0] = ED_Vector(sv_player, ED_origin)[0] + cosval * (i + 3) * 12;
top[1] = ED_Vector(sv_player, ED_origin)[1] + sinval * (i + 3) * 12;
top[2] = ED_Vector(sv_player, ED_origin)[2] + ED_Vector(sv_player, ED_view_ofs)[2];
2019-11-24 20:45:15 -08:00
bottom[0] = top[0];
bottom[1] = top[1];
bottom[2] = top[2] - 160;
2019-11-25 17:40:18 -08:00
tr = SV_Move(top, vec3_origin, vec3_origin, bottom, 1, sv_player);
if(tr.allsolid)
return; // looking at a wall, leave ideal the way is was
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(tr.fraction == 1)
return; // near a dropoff
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
z[i] = top[2] + tr.fraction * (bottom[2] - top[2]);
2019-11-24 20:45:15 -08:00
}
dir = 0;
steps = 0;
2019-11-25 17:40:18 -08:00
for(j = 1 ; j < i ; j++)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
step = z[j] - z[j - 1];
if(step > -ON_EPSILON && step < ON_EPSILON)
2019-11-24 20:45:15 -08:00
continue;
2019-11-25 17:40:18 -08:00
if(dir && (step - dir > ON_EPSILON || step - dir < -ON_EPSILON))
return; // mixed changes
2019-11-24 20:45:15 -08:00
steps++;
dir = step;
}
2019-11-25 17:40:18 -08:00
if(!dir)
2019-11-24 20:45:15 -08:00
{
ED_Float(sv_player, ED_idealpitch) = 0;
2019-11-24 20:45:15 -08:00
return;
}
2019-11-25 17:40:18 -08:00
if(steps < 2)
2019-11-24 20:45:15 -08:00
return;
ED_Float(sv_player, ED_idealpitch) = -dir * sv_idealpitchscale.value;
2019-11-24 20:45:15 -08:00
}
/*
==================
SV_UserFriction
==================
*/
2019-11-25 17:40:18 -08:00
void SV_UserFriction(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
float *vel;
float speed, newspeed, control;
vec3_t start, stop;
float friction;
trace_t trace;
2019-11-24 20:45:15 -08:00
vel = velocity;
2019-11-25 17:40:18 -08:00
speed = sqrt(vel[0] * vel[0] + vel[1] * vel[1]);
if(!speed)
2019-11-24 20:45:15 -08:00
return;
// if the leading edge is over a dropoff, increase friction
2019-11-25 17:40:18 -08:00
start[0] = stop[0] = origin[0] + vel[0] / speed * 16;
start[1] = stop[1] = origin[1] + vel[1] / speed * 16;
start[2] = origin[2] + ED_Vector(sv_player, ED_mins)[2];
2019-11-24 20:45:15 -08:00
stop[2] = start[2] - 34;
2019-11-25 17:40:18 -08:00
trace = SV_Move(start, vec3_origin, vec3_origin, stop, true, sv_player);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(trace.fraction == 1.0)
friction = sv_friction.value * sv_edgefriction.value;
2019-11-24 20:45:15 -08:00
else
friction = sv_friction.value;
// apply friction
control = speed < sv_stopspeed.value ? sv_stopspeed.value : speed;
2019-11-25 17:40:18 -08:00
newspeed = speed - host_frametime * control * friction;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(newspeed < 0)
2019-11-24 20:45:15 -08:00
newspeed = 0;
newspeed /= speed;
vel[0] = vel[0] * newspeed;
vel[1] = vel[1] * newspeed;
vel[2] = vel[2] * newspeed;
}
/*
==============
SV_Accelerate
==============
*/
2019-11-25 17:40:18 -08:00
cvar_t sv_maxspeed = {"sv_maxspeed", "320", CVAR_NOTIFY | CVAR_SERVERINFO};
cvar_t sv_accelerate = {"sv_accelerate", "10", CVAR_NONE};
void SV_Accelerate(float wishspeed, const vec3_t wishdir)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t i;
float addspeed, accelspeed, currentspeed;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
currentspeed = DotProduct(velocity, wishdir);
2019-11-24 20:45:15 -08:00
addspeed = wishspeed - currentspeed;
2019-11-25 17:40:18 -08:00
if(addspeed <= 0)
2019-11-24 20:45:15 -08:00
return;
2019-11-25 17:40:18 -08:00
accelspeed = sv_accelerate.value * host_frametime * wishspeed;
if(accelspeed > addspeed)
2019-11-24 20:45:15 -08:00
accelspeed = addspeed;
2019-11-25 17:40:18 -08:00
for(i = 0 ; i < 3 ; i++)
velocity[i] += accelspeed * wishdir[i];
2019-11-24 20:45:15 -08:00
}
2019-11-25 17:40:18 -08:00
void SV_AirAccelerate(float wishspeed, vec3_t wishveloc)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t i;
float addspeed, wishspd, accelspeed, currentspeed;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
wishspd = VectorNormalize(wishveloc);
if(wishspd > 30)
2019-11-24 20:45:15 -08:00
wishspd = 30;
2019-11-25 17:40:18 -08:00
currentspeed = DotProduct(velocity, wishveloc);
2019-11-24 20:45:15 -08:00
addspeed = wishspd - currentspeed;
2019-11-25 17:40:18 -08:00
if(addspeed <= 0)
2019-11-24 20:45:15 -08:00
return;
// accelspeed = sv_accelerate.value * host_frametime;
2019-11-25 17:40:18 -08:00
accelspeed = sv_accelerate.value * wishspeed * host_frametime;
if(accelspeed > addspeed)
2019-11-24 20:45:15 -08:00
accelspeed = addspeed;
2019-11-25 17:40:18 -08:00
for(i = 0 ; i < 3 ; i++)
velocity[i] += accelspeed * wishveloc[i];
2019-11-24 20:45:15 -08:00
}
2019-11-25 17:40:18 -08:00
void DropPunchAngle(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
float len;
2019-11-24 20:45:15 -08:00
len = VectorNormalize(ED_Vector(sv_player, ED_punchangle));
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
len -= 10 * host_frametime;
if(len < 0)
2019-11-24 20:45:15 -08:00
len = 0;
VectorScale(ED_Vector(sv_player, ED_punchangle), len, ED_Vector(sv_player, ED_punchangle));
2019-11-24 20:45:15 -08:00
}
/*
===================
SV_WaterMove
===================
*/
2019-11-25 17:40:18 -08:00
void SV_WaterMove(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t i;
vec3_t wishvel;
float speed, newspeed, wishspeed, addspeed, accelspeed;
2019-11-24 20:45:15 -08:00
//
// user intentions
//
AngleVectors(ED_Vector(sv_player, ED_v_angle), forward, right, up);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
for(i = 0 ; i < 3 ; i++)
wishvel[i] = forward[i] * cmd.forwardmove + right[i] * cmd.sidemove;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(!cmd.forwardmove && !cmd.sidemove && !cmd.upmove)
wishvel[2] -= 60; // drift towards bottom
2019-11-24 20:45:15 -08:00
else
wishvel[2] += cmd.upmove;
wishspeed = VectorLength(wishvel);
2019-11-25 17:40:18 -08:00
if(wishspeed > sv_maxspeed.value)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
VectorScale(wishvel, sv_maxspeed.value / wishspeed, wishvel);
2019-11-24 20:45:15 -08:00
wishspeed = sv_maxspeed.value;
}
wishspeed *= 0.7;
//
// water friction
//
2019-11-25 17:40:18 -08:00
speed = VectorLength(velocity);
if(speed)
2019-11-24 20:45:15 -08:00
{
newspeed = speed - host_frametime * speed * sv_friction.value;
2019-11-25 17:40:18 -08:00
if(newspeed < 0)
2019-11-24 20:45:15 -08:00
newspeed = 0;
2019-11-25 17:40:18 -08:00
VectorScale(velocity, newspeed / speed, velocity);
2019-11-24 20:45:15 -08:00
}
else
newspeed = 0;
//
// water acceleration
//
2019-11-25 17:40:18 -08:00
if(!wishspeed)
2019-11-24 20:45:15 -08:00
return;
addspeed = wishspeed - newspeed;
2019-11-25 17:40:18 -08:00
if(addspeed <= 0)
2019-11-24 20:45:15 -08:00
return;
2019-11-25 17:40:18 -08:00
VectorNormalize(wishvel);
2019-11-24 20:45:15 -08:00
accelspeed = sv_accelerate.value * wishspeed * host_frametime;
2019-11-25 17:40:18 -08:00
if(accelspeed > addspeed)
2019-11-24 20:45:15 -08:00
accelspeed = addspeed;
2019-11-25 17:40:18 -08:00
for(i = 0 ; i < 3 ; i++)
2019-11-24 20:45:15 -08:00
velocity[i] += accelspeed * wishvel[i];
}
2019-11-25 17:40:18 -08:00
void SV_WaterJump(void)
2019-11-24 20:45:15 -08:00
{
if(sv.time > ED_Float(sv_player, ED_teleport_time)
|| !ED_Float(sv_player, ED_waterlevel))
2019-11-24 20:45:15 -08:00
{
ED_Float(sv_player, ED_flags) = (int32_t)ED_Float(sv_player, ED_flags) & ~FL_WATERJUMP;
ED_Float(sv_player, ED_teleport_time) = 0;
2019-11-24 20:45:15 -08:00
}
ED_Vector(sv_player, ED_velocity)[0] = ED_Vector(sv_player, ED_movedir)[0];
ED_Vector(sv_player, ED_velocity)[1] = ED_Vector(sv_player, ED_movedir)[1];
2019-11-24 20:45:15 -08:00
}
/*
===================
SV_NoclipMove -- johnfitz
new, alternate noclip. old noclip is still handled in SV_AirMove
===================
*/
2019-11-25 17:40:18 -08:00
void SV_NoclipMove(void)
2019-11-24 20:45:15 -08:00
{
AngleVectors(ED_Vector(sv_player, ED_v_angle), forward, right, up);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
velocity[0] = forward[0] * cmd.forwardmove + right[0] * cmd.sidemove;
velocity[1] = forward[1] * cmd.forwardmove + right[1] * cmd.sidemove;
velocity[2] = forward[2] * cmd.forwardmove + right[2] * cmd.sidemove;
velocity[2] += cmd.upmove * 2; //doubled to match running speed
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(VectorLength(velocity) > sv_maxspeed.value)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
VectorNormalize(velocity);
VectorScale(velocity, sv_maxspeed.value, velocity);
2019-11-24 20:45:15 -08:00
}
}
/*
===================
SV_AirMove
===================
*/
2019-11-25 17:40:18 -08:00
void SV_AirMove(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t i;
vec3_t wishvel, wishdir;
float wishspeed;
float fmove, smove;
2019-11-24 20:45:15 -08:00
AngleVectors(ED_Vector(sv_player, ED_angles), forward, right, up);
2019-11-24 20:45:15 -08:00
fmove = cmd.forwardmove;
smove = cmd.sidemove;
// hack to not let you back into teleporter
if(sv.time < ED_Float(sv_player, ED_teleport_time) && fmove < 0)
2019-11-24 20:45:15 -08:00
fmove = 0;
2019-11-25 17:40:18 -08:00
for(i = 0 ; i < 3 ; i++)
wishvel[i] = forward[i] * fmove + right[i] * smove;
2019-11-24 20:45:15 -08:00
if((int32_t)ED_Float(sv_player, ED_movetype) != MOVETYPE_WALK)
2019-11-24 20:45:15 -08:00
wishvel[2] = cmd.upmove;
else
wishvel[2] = 0;
2019-11-25 17:40:18 -08:00
VectorCopy(wishvel, wishdir);
2019-11-24 20:45:15 -08:00
wishspeed = VectorNormalize(wishdir);
2019-11-25 17:40:18 -08:00
if(wishspeed > sv_maxspeed.value)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
VectorScale(wishvel, sv_maxspeed.value / wishspeed, wishvel);
2019-11-24 20:45:15 -08:00
wishspeed = sv_maxspeed.value;
}
if(ED_Float(sv_player, ED_movetype) == MOVETYPE_NOCLIP)
2019-11-25 17:40:18 -08:00
{
// noclip
VectorCopy(wishvel, velocity);
2019-11-24 20:45:15 -08:00
}
2019-11-25 17:40:18 -08:00
else if(onground)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
SV_UserFriction();
SV_Accelerate(wishspeed, wishdir);
2019-11-24 20:45:15 -08:00
}
else
2019-11-25 17:40:18 -08:00
{
// not on ground, so little effect on velocity
SV_AirAccelerate(wishspeed, wishvel);
2019-11-24 20:45:15 -08:00
}
}
/*
===================
SV_ClientThink
2019-12-06 09:07:30 -08:00
moves specify an intended velocity in pix/sec
angles specify an exact angular motion in degrees
2019-11-24 20:45:15 -08:00
===================
*/
2019-11-25 17:40:18 -08:00
void SV_ClientThink(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
vec3_t v_angle;
2019-11-24 20:45:15 -08:00
if(ED_Float(sv_player, ED_movetype) == MOVETYPE_NONE)
2019-11-24 20:45:15 -08:00
return;
onground = (int32_t)ED_Float(sv_player, ED_flags) & FL_ONGROUND;
2019-11-24 20:45:15 -08:00
origin = ED_Vector(sv_player, ED_origin);
velocity = ED_Vector(sv_player, ED_velocity);
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
DropPunchAngle();
2019-11-24 20:45:15 -08:00
//
// if dead, behave differently
//
if(ED_Float(sv_player, ED_health) <= 0)
2019-11-24 20:45:15 -08:00
return;
//
// angles
// show 1/3 the pitch angle and all the roll angle
cmd = host_client->cmd;
angles = ED_Vector(sv_player, ED_angles);
2019-11-24 20:45:15 -08:00
VectorAdd(ED_Vector(sv_player, ED_v_angle), ED_Vector(sv_player, ED_punchangle), v_angle);
angles[ROLL] = V_CalcRoll(ED_Vector(sv_player, ED_angles), ED_Vector(sv_player, ED_velocity)) * 4;
if(!ED_Float(sv_player, ED_fixangle))
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
angles[PITCH] = -v_angle[PITCH] / 3;
2019-11-24 20:45:15 -08:00
angles[YAW] = v_angle[YAW];
}
if((int32_t)ED_Float(sv_player, ED_flags) & FL_WATERJUMP)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
SV_WaterJump();
2019-11-24 20:45:15 -08:00
return;
}
//
// walk
//
//johnfitz -- alternate noclip
if(ED_Float(sv_player, ED_movetype) == MOVETYPE_NOCLIP && sv_altnoclip.value)
2019-11-25 17:40:18 -08:00
SV_NoclipMove();
else if(ED_Float(sv_player, ED_waterlevel) >= 2 && ED_Float(sv_player, ED_movetype) != MOVETYPE_NOCLIP)
2019-11-25 17:40:18 -08:00
SV_WaterMove();
2019-11-24 20:45:15 -08:00
else
2019-11-25 17:40:18 -08:00
SV_AirMove();
2019-11-24 20:45:15 -08:00
//johnfitz
}
/*
===================
SV_ReadClientMove
===================
*/
2019-11-25 17:40:18 -08:00
void SV_ReadClientMove(usercmd_t *move)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t i;
vec3_t angle;
int32_t bits;
2019-11-24 20:45:15 -08:00
// read ping time
2019-11-25 17:40:18 -08:00
host_client->ping_times[host_client->num_pings % NUM_PING_TIMES]
= sv.time - MSG_ReadFloat();
2019-11-24 20:45:15 -08:00
host_client->num_pings++;
// read current angles
2019-11-25 17:40:18 -08:00
for(i = 0 ; i < 3 ; i++)
2019-11-24 20:45:15 -08:00
//johnfitz -- 16-bit angles for PROTOCOL_FITZQUAKE
2019-11-25 17:40:18 -08:00
if(sv.protocol == PROTOCOL_NETQUAKE)
angle[i] = MSG_ReadAngle(sv.protocolflags);
2019-11-24 20:45:15 -08:00
else
2019-11-25 17:40:18 -08:00
angle[i] = MSG_ReadAngle16(sv.protocolflags);
//johnfitz
2019-11-24 20:45:15 -08:00
VectorCopy(angle, ED_Vector(host_client->edict, ED_v_angle));
2019-11-24 20:45:15 -08:00
// read movement
2019-11-25 17:40:18 -08:00
move->forwardmove = MSG_ReadShort();
move->sidemove = MSG_ReadShort();
move->upmove = MSG_ReadShort();
2019-11-24 20:45:15 -08:00
// read buttons
2019-11-25 17:40:18 -08:00
bits = MSG_ReadByte();
ED_Float(host_client->edict, ED_button0) = bits & 1;
ED_Float(host_client->edict, ED_button2) = (bits & 2) >> 1;
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
i = MSG_ReadByte();
if(i)
ED_Float(host_client->edict, ED_impulse) = i;
2019-11-24 20:45:15 -08:00
}
/*
===================
SV_ReadClientMessage
Returns false if the client should be killed
===================
*/
2019-11-25 17:40:18 -08:00
bool SV_ReadClientMessage(void)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
int32_t ret;
int32_t ccmd;
const char *s;
2019-11-24 20:45:15 -08:00
do
{
nextmsg:
2019-11-25 17:40:18 -08:00
ret = NET_GetMessage(host_client->netconnection);
if(ret == -1)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
Sys_Printf("SV_ReadClientMessage: NET_GetMessage failed\n");
2019-11-24 20:45:15 -08:00
return false;
}
2019-11-25 17:40:18 -08:00
if(!ret)
2019-11-24 20:45:15 -08:00
return true;
2019-11-25 17:40:18 -08:00
MSG_BeginReading();
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(!host_client->active)
return false; // a command caused an error
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
if(msg_badread)
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
Sys_Printf("SV_ReadClientMessage: badread\n");
2019-11-24 20:45:15 -08:00
return false;
}
2019-11-25 17:40:18 -08:00
ccmd = MSG_ReadChar();
2019-11-24 20:45:15 -08:00
2019-11-25 17:40:18 -08:00
switch(ccmd)
2019-11-24 20:45:15 -08:00
{
case -1:
2019-11-25 17:40:18 -08:00
goto nextmsg; // end of message
2019-11-24 20:45:15 -08:00
default:
2019-11-25 17:40:18 -08:00
Sys_Printf("SV_ReadClientMessage: unknown command char\n");
2019-11-24 20:45:15 -08:00
return false;
case clc_nop:
// Sys_Printf ("clc_nop\n");
break;
case clc_stringcmd:
2019-11-25 17:40:18 -08:00
s = MSG_ReadString();
2019-11-24 20:45:15 -08:00
ret = 0;
2019-11-25 17:40:18 -08:00
if(q_strncasecmp(s, "status", 6) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "god", 3) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "notarget", 8) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "fly", 3) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "name", 4) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "noclip", 6) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "setpos", 6) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "say", 3) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "say_team", 8) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "tell", 4) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "color", 5) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "kill", 4) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "pause", 5) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "spawn", 5) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "begin", 5) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "prespawn", 8) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "kick", 4) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "ping", 4) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "give", 4) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
else if(q_strncasecmp(s, "ban", 3) == 0)
2019-11-24 20:45:15 -08:00
ret = 1;
2019-11-25 17:40:18 -08:00
if(ret == 1)
Cmd_ExecuteString(s, src_client);
2019-11-24 20:45:15 -08:00
else
Con_DPrintf("%s tried to %s\n", host_client->name, s);
break;
case clc_disconnect:
// Sys_Printf ("SV_ReadClientMessage: client disconnected\n");
return false;
case clc_move:
2019-11-25 17:40:18 -08:00
SV_ReadClientMove(&host_client->cmd);
2019-11-24 20:45:15 -08:00
break;
}
}
2019-11-25 17:40:18 -08:00
}
while(ret == 1);
2019-11-24 20:45:15 -08:00
return true;
}
/*
==================
SV_RunClients
==================
*/
2019-11-25 17:40:18 -08:00
void SV_RunClients(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
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;
sv_player = host_client->edict;
2019-11-25 17:40:18 -08:00
if(!SV_ReadClientMessage())
2019-11-24 20:45:15 -08:00
{
2019-11-25 17:40:18 -08:00
SV_DropClient(false); // client misbehaved...
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
// clear client movement until a new packet is received
memset(&host_client->cmd, 0, sizeof(host_client->cmd));
2019-11-24 20:45:15 -08:00
continue;
}
// always pause in single player if in console or menus
2019-11-25 17:40:18 -08:00
if(!sv.paused && (svs.maxclients > 1 || key_dest == key_game))
SV_ClientThink();
2019-11-24 20:45:15 -08:00
}
}