2 Copyright (C) 1996-1997 Id Software, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 // sv_user.c -- server code for moving users
24 cvar_t sv_edgefriction = {0, "edgefriction", "2"};
25 cvar_t sv_deltacompress = {0, "sv_deltacompress", "1"};
26 cvar_t sv_idealpitchscale = {0, "sv_idealpitchscale","0.8"};
27 cvar_t sv_maxspeed = {CVAR_NOTIFY, "sv_maxspeed", "320"};
28 cvar_t sv_accelerate = {0, "sv_accelerate", "10"};
39 void SV_SetIdealPitch (void)
41 float angleval, sinval, cosval;
48 if (!((int)host_client->edict->v->flags & FL_ONGROUND))
51 angleval = host_client->edict->v->angles[YAW] * M_PI*2 / 360;
52 sinval = sin(angleval);
53 cosval = cos(angleval);
55 for (i=0 ; i<MAX_FORWARD ; i++)
57 top[0] = host_client->edict->v->origin[0] + cosval*(i+3)*12;
58 top[1] = host_client->edict->v->origin[1] + sinval*(i+3)*12;
59 top[2] = host_client->edict->v->origin[2] + host_client->edict->v->view_ofs[2];
63 bottom[2] = top[2] - 160;
65 tr = SV_Move (top, vec3_origin, vec3_origin, bottom, MOVE_NOMONSTERS, host_client->edict);
66 // if looking at a wall, leave ideal the way is was
74 z[i] = top[2] + tr.fraction*(bottom[2]-top[2]);
82 if (step > -ON_EPSILON && step < ON_EPSILON)
86 if (dir && ( step-dir > ON_EPSILON || step-dir < -ON_EPSILON ) )
95 host_client->edict->v->idealpitch = 0;
101 host_client->edict->v->idealpitch = -dir * sv_idealpitchscale.value;
105 static vec3_t wishdir, forward, right, up;
106 static float wishspeed;
108 static qboolean onground;
116 void SV_UserFriction (void)
118 float speed, newspeed, control, friction;
122 speed = sqrt(host_client->edict->v->velocity[0]*host_client->edict->v->velocity[0]+host_client->edict->v->velocity[1]*host_client->edict->v->velocity[1]);
126 // if the leading edge is over a dropoff, increase friction
127 start[0] = stop[0] = host_client->edict->v->origin[0] + host_client->edict->v->velocity[0]/speed*16;
128 start[1] = stop[1] = host_client->edict->v->origin[1] + host_client->edict->v->velocity[1]/speed*16;
129 start[2] = host_client->edict->v->origin[2] + host_client->edict->v->mins[2];
130 stop[2] = start[2] - 34;
132 trace = SV_Move (start, vec3_origin, vec3_origin, stop, MOVE_NOMONSTERS, host_client->edict);
134 if (trace.fraction == 1.0)
135 friction = sv_friction.value*sv_edgefriction.value;
137 friction = sv_friction.value;
140 control = speed < sv_stopspeed.value ? sv_stopspeed.value : speed;
141 newspeed = speed - sv.frametime*control*friction;
148 VectorScale(host_client->edict->v->velocity, newspeed, host_client->edict->v->velocity);
156 void SV_Accelerate (void)
159 float addspeed, accelspeed, currentspeed;
161 currentspeed = DotProduct (host_client->edict->v->velocity, wishdir);
162 addspeed = wishspeed - currentspeed;
165 accelspeed = sv_accelerate.value*sv.frametime*wishspeed;
166 if (accelspeed > addspeed)
167 accelspeed = addspeed;
169 for (i=0 ; i<3 ; i++)
170 host_client->edict->v->velocity[i] += accelspeed*wishdir[i];
173 void SV_AirAccelerate (vec3_t wishveloc)
176 float addspeed, wishspd, accelspeed, currentspeed;
178 wishspd = VectorNormalizeLength (wishveloc);
181 currentspeed = DotProduct (host_client->edict->v->velocity, wishveloc);
182 addspeed = wishspd - currentspeed;
185 accelspeed = sv_accelerate.value*wishspeed * sv.frametime;
186 if (accelspeed > addspeed)
187 accelspeed = addspeed;
189 for (i=0 ; i<3 ; i++)
190 host_client->edict->v->velocity[i] += accelspeed*wishveloc[i];
194 void DropPunchAngle (void)
199 len = VectorNormalizeLength (host_client->edict->v->punchangle);
201 len -= 10*sv.frametime;
204 VectorScale (host_client->edict->v->punchangle, len, host_client->edict->v->punchangle);
206 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_punchvector)))
208 len = VectorNormalizeLength (val->vector);
210 len -= 20*sv.frametime;
213 VectorScale (val->vector, len, val->vector);
222 void SV_FreeMove (void)
227 AngleVectors (host_client->edict->v->v_angle, forward, right, up);
229 for (i = 0; i < 3; i++)
230 host_client->edict->v->velocity[i] = forward[i] * cmd.forwardmove + right[i] * cmd.sidemove;
232 host_client->edict->v->velocity[2] += cmd.upmove;
234 wishspeed = VectorLength(host_client->edict->v->velocity);
235 if (wishspeed > sv_maxspeed.value)
236 VectorScale(host_client->edict->v->velocity, sv_maxspeed.value / wishspeed, host_client->edict->v->velocity);
245 void SV_WaterMove (void)
249 float speed, newspeed, wishspeed, addspeed, accelspeed, temp;
252 AngleVectors (host_client->edict->v->v_angle, forward, right, up);
254 for (i=0 ; i<3 ; i++)
255 wishvel[i] = forward[i]*cmd.forwardmove + right[i]*cmd.sidemove;
257 if (!cmd.forwardmove && !cmd.sidemove && !cmd.upmove)
258 wishvel[2] -= 60; // drift towards bottom
260 wishvel[2] += cmd.upmove;
262 wishspeed = VectorLength(wishvel);
263 if (wishspeed > sv_maxspeed.value)
265 temp = sv_maxspeed.value/wishspeed;
266 VectorScale (wishvel, temp, wishvel);
267 wishspeed = sv_maxspeed.value;
272 speed = VectorLength(host_client->edict->v->velocity);
275 newspeed = speed - sv.frametime * speed * sv_friction.value;
278 temp = newspeed/speed;
279 VectorScale(host_client->edict->v->velocity, temp, host_client->edict->v->velocity);
284 // water acceleration
288 addspeed = wishspeed - newspeed;
292 VectorNormalize (wishvel);
293 accelspeed = sv_accelerate.value * wishspeed * sv.frametime;
294 if (accelspeed > addspeed)
295 accelspeed = addspeed;
297 for (i=0 ; i<3 ; i++)
298 host_client->edict->v->velocity[i] += accelspeed * wishvel[i];
301 void SV_WaterJump (void)
303 if (sv.time > host_client->edict->v->teleport_time || !host_client->edict->v->waterlevel)
305 host_client->edict->v->flags = (int)host_client->edict->v->flags & ~FL_WATERJUMP;
306 host_client->edict->v->teleport_time = 0;
308 host_client->edict->v->velocity[0] = host_client->edict->v->movedir[0];
309 host_client->edict->v->velocity[1] = host_client->edict->v->movedir[1];
319 void SV_AirMove (void)
323 float fmove, smove, temp;
325 // LordHavoc: correct quake movement speed bug when looking up/down
326 wishvel[0] = wishvel[2] = 0;
327 wishvel[1] = host_client->edict->v->angles[1];
328 AngleVectors (wishvel, forward, right, up);
330 fmove = cmd.forwardmove;
331 smove = cmd.sidemove;
333 // hack to not let you back into teleporter
334 if (sv.time < host_client->edict->v->teleport_time && fmove < 0)
337 for (i=0 ; i<3 ; i++)
338 wishvel[i] = forward[i]*fmove + right[i]*smove;
340 if ((int)host_client->edict->v->movetype != MOVETYPE_WALK)
341 wishvel[2] += cmd.upmove;
343 VectorCopy (wishvel, wishdir);
344 wishspeed = VectorNormalizeLength(wishdir);
345 if (wishspeed > sv_maxspeed.value)
347 temp = sv_maxspeed.value/wishspeed;
348 VectorScale (wishvel, temp, wishvel);
349 wishspeed = sv_maxspeed.value;
352 if (host_client->edict->v->movetype == MOVETYPE_NOCLIP)
355 VectorCopy (wishvel, host_client->edict->v->velocity);
364 // not on ground, so little effect on velocity
365 SV_AirAccelerate (wishvel);
373 the move fields specify an intended velocity in pix/sec
374 the angle fields specify an exact angular motion in degrees
377 void SV_ClientThink (void)
381 if (host_client->edict->v->movetype == MOVETYPE_NONE)
384 onground = (int)host_client->edict->v->flags & FL_ONGROUND;
388 // if dead, behave differently
389 if (host_client->edict->v->health <= 0)
392 cmd = host_client->cmd;
395 // show 1/3 the pitch angle and all the roll angle
396 VectorAdd (host_client->edict->v->v_angle, host_client->edict->v->punchangle, v_angle);
397 host_client->edict->v->angles[ROLL] = V_CalcRoll (host_client->edict->v->angles, host_client->edict->v->velocity)*4;
398 if (!host_client->edict->v->fixangle)
400 host_client->edict->v->angles[PITCH] = -v_angle[PITCH]/3;
401 host_client->edict->v->angles[YAW] = v_angle[YAW];
404 if ( (int)host_client->edict->v->flags & FL_WATERJUMP )
411 // Player is (somehow) outside of the map, or flying, or noclipping
412 if (host_client->edict->v->movetype != MOVETYPE_NOCLIP && (host_client->edict->v->movetype == MOVETYPE_FLY || SV_TestEntityPosition (host_client->edict)))
413 //if (host_client->edict->v->movetype == MOVETYPE_NOCLIP || host_client->edict->v->movetype == MOVETYPE_FLY || SV_TestEntityPosition (host_client->edict))
421 if ((host_client->edict->v->waterlevel >= 2) && (host_client->edict->v->movetype != MOVETYPE_NOCLIP))
432 extern cvar_t cl_rollspeed;
433 extern cvar_t cl_rollangle;
434 void SV_ClientThink(void)
437 vec3_t wishvel, wishdir, v, v_forward, v_right, v_up, start, stop;
438 float wishspeed, f, limit;
441 if (host_client->edict->v->movetype == MOVETYPE_NONE)
444 f = DotProduct(host_client->edict->v->punchangle, host_client->edict->v->punchangle);
448 f = (limit - 10 * sv.frametime);
451 VectorScale(host_client->edict->v->punchangle, f, host_client->edict->v->punchangle);
454 // if dead, behave differently
455 if (host_client->edict->v->health <= 0)
458 AngleVectors(host_client->edict->v->v_angle, v_forward, v_right, v_up);
459 // show 1/3 the pitch angle and all the roll angle
460 f = DotProduct(host_client->edict->v->velocity, v_right) * (1.0 / cl_rollspeed.value);
461 host_client->edict->v->angles[2] = bound(-1, f, 1) * cl_rollangle.value * 4;
462 if (!host_client->edict->v->fixangle)
464 host_client->edict->v->angles[0] = (host_client->edict->v->v_angle[0] + host_client->edict->v->punchangle[0]) * -0.333;
465 host_client->edict->v->angles[1] = host_client->edict->v->v_angle[1] + host_client->edict->v->punchangle[1];
468 if ((int)host_client->edict->v->flags & FL_WATERJUMP)
470 host_client->edict->v->velocity[0] = host_client->edict->v->movedir[0];
471 host_client->edict->v->velocity[1] = host_client->edict->v->movedir[1];
472 if (sv.time > host_client->edict->v->teleport_time || host_client->edict->v->waterlevel == 0)
474 host_client->edict->v->flags = (int)host_client->edict->v->flags - ((int)host_client->edict->v->flags & FL_WATERJUMP);
475 host_client->edict->v->teleport_time = 0;
481 if (host_client->edict->v->waterlevel >= 2)
482 if (host_client->edict->v->movetype != MOVETYPE_NOCLIP)
484 if (host_client->cmd.forwardmove == 0 && host_client->cmd.sidemove == 0 && host_client->cmd.upmove == 0)
486 // drift towards bottom
493 for (j = 0;j < 3;j++)
494 wishvel[j] = v_forward[j] * host_client->cmd.forwardmove + v_right[j] * host_client->cmd.sidemove;
495 wishvel[2] += host_client->cmd.upmove;
498 wishspeed = VectorLength(wishvel);
499 wishspeed = min(wishspeed, sv_maxspeed.value) * 0.7;
502 f = VectorLength(host_client->edict->v->velocity) * (1 - sv.frametime * sv_friction.value);
504 f /= VectorLength(host_client->edict->v->velocity);
507 VectorScale(host_client->edict->v->velocity, f, host_client->edict->v->velocity);
509 // water acceleration
514 limit = sv_accelerate.value * wishspeed * sv.frametime;
517 limit = VectorLength(wishvel);
520 VectorMA(host_client->edict->v->velocity, f, wishvel, host_client->edict->v->velocity);
524 // if not flying, move horizontally only
525 if (host_client->edict->v->movetype != MOVETYPE_FLY)
527 VectorClear(wishvel);
528 wishvel[1] = host_client->edict->v->v_angle[1];
529 AngleVectors(wishvel, v_forward, v_right, v_up);
532 // hack to not let you back into teleporter
533 VectorScale(v_right, host_client->cmd.sidemove, wishvel);
534 if (sv.time >= host_client->edict->v->teleport_time || host_client->cmd.forwardmove > 0)
535 VectorMA(wishvel, host_client->cmd.forwardmove, v_forward, wishvel);
536 if (host_client->edict->v->movetype != MOVETYPE_WALK)
537 wishvel[2] += cmd.upmove;
539 VectorCopy(wishvel, wishdir);
540 VectorNormalize(wishdir);
541 wishspeed = VectorLength(wishvel);
542 if (wishspeed > sv_maxspeed.value)
543 wishspeed = sv_maxspeed.value;
545 if (host_client->edict->v->movetype == MOVETYPE_NOCLIP || host_client->edict->v->movetype == MOVETYPE_FLY)
547 VectorScale(wishdir, wishspeed, host_client->edict->v->velocity);
551 if ((int)host_client->edict->v->flags & FL_ONGROUND) // walking
554 f = host_client->edict->v->velocity[0] * host_client->edict->v->velocity[0] + host_client->edict->v->velocity[1] * host_client->edict->v->velocity[1];
558 VectorCopy(host_client->edict->v->velocity, v);
561 // if the leading edge is over a dropoff, increase friction
563 VectorMA(host_client->edict->v->origin, limit, v, v);
564 v[2] += host_client->edict->v->mins[2];
566 VectorCopy(v, start);
569 trace = SV_Move(start, vec3_origin, vec3_origin, stop, MOVE_NOMONSTERS, host_client->edict);
572 if (f < sv_stopspeed.value)
573 f = sv_stopspeed.value / f;
576 if (trace.fraction == 1)
577 f *= sv_edgefriction.value;
578 f = 1 - sv.frametime * f * sv_friction.value;
582 VectorScale(host_client->edict->v->velocity, f, host_client->edict->v->velocity);
586 wishspeed = min(wishspeed, 30);
588 // ground or air acceleration
589 f = wishspeed - DotProduct(host_client->edict->v->velocity, wishdir);
592 limit = sv_accelerate.value * sv.frametime * wishspeed;
595 VectorMA(host_client->edict->v->velocity, f, wishdir, host_client->edict->v->velocity);
605 void SV_ReadClientMove (usercmd_t *move)
614 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
615 host_client->ping_times[host_client->num_pings % NUM_PING_TIMES] = sv.time - MSG_ReadFloat ();
616 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
617 host_client->num_pings++;
618 for (i=0, total = 0;i < NUM_PING_TIMES;i++)
619 total += host_client->ping_times[i];
620 // can be used for prediction
621 host_client->ping = total / NUM_PING_TIMES;
622 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_ping)))
623 val->_float = host_client->ping * 1000.0;
625 // read current angles
626 for (i = 0;i < 3;i++)
628 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
629 if (sv.protocol == PROTOCOL_QUAKE)
630 angle[i] = MSG_ReadAngle8i();
631 else if (sv.protocol == PROTOCOL_DARKPLACES2 || sv.protocol == PROTOCOL_DARKPLACES3)
632 angle[i] = MSG_ReadAngle32f();
633 else if (sv.protocol == PROTOCOL_DARKPLACES1 || sv.protocol == PROTOCOL_DARKPLACES4 || sv.protocol == PROTOCOL_DARKPLACES5 || sv.protocol == PROTOCOL_DARKPLACES6)
634 angle[i] = MSG_ReadAngle16i();
635 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
638 VectorCopy (angle, host_client->edict->v->v_angle);
641 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
642 move->forwardmove = MSG_ReadCoord16i ();
643 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
644 move->sidemove = MSG_ReadCoord16i ();
645 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
646 move->upmove = MSG_ReadCoord16i ();
647 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
648 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_movement)))
650 val->vector[0] = move->forwardmove;
651 val->vector[1] = move->sidemove;
652 val->vector[2] = move->upmove;
656 if (sv.protocol == PROTOCOL_DARKPLACES6)
657 bits = MSG_ReadLong ();
659 bits = MSG_ReadByte ();
660 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
661 host_client->edict->v->button0 = bits & 1;
662 host_client->edict->v->button2 = (bits & 2)>>1;
663 // LordHavoc: added 6 new buttons
664 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_button3))) val->_float = ((bits >> 2) & 1);
665 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_button4))) val->_float = ((bits >> 3) & 1);
666 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_button5))) val->_float = ((bits >> 4) & 1);
667 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_button6))) val->_float = ((bits >> 5) & 1);
668 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_button7))) val->_float = ((bits >> 6) & 1);
669 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_button8))) val->_float = ((bits >> 7) & 1);
670 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_buttonuse))) val->_float = ((bits >> 8) & 1);
671 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_buttonchat))) val->_float = ((bits >> 9) & 1);
672 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_cursor_active))) val->_float = ((bits >> 10) & 1);
675 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
677 host_client->edict->v->impulse = i;
679 // PRYDON_CLIENTCURSOR
680 if (sv.protocol == PROTOCOL_DARKPLACES6)
683 move->cursor_screen[0] = MSG_ReadShort() * (1.0f / 32767.0f);
684 move->cursor_screen[1] = MSG_ReadShort() * (1.0f / 32767.0f);
685 move->cursor_start[0] = MSG_ReadFloat();
686 move->cursor_start[1] = MSG_ReadFloat();
687 move->cursor_start[2] = MSG_ReadFloat();
688 move->cursor_impact[0] = MSG_ReadFloat();
689 move->cursor_impact[1] = MSG_ReadFloat();
690 move->cursor_impact[2] = MSG_ReadFloat();
691 move->cursor_entitynumber = MSG_ReadShort();
692 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
694 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_cursor_screen))) VectorCopy(move->cursor_screen, val->vector);
695 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_cursor_trace_start))) VectorCopy(move->cursor_start, val->vector);
696 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_cursor_trace_endpos))) VectorCopy(move->cursor_impact, val->vector);
697 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_cursor_trace_ent))) val->edict = EDICT_TO_PROG(EDICT_NUM(move->cursor_entitynumber));
700 void SV_FrameLost(int framenum)
702 if (host_client->entitydatabase5)
703 EntityFrame5_LostFrame(host_client->entitydatabase5, framenum, host_client - svs.clients + 1);
706 void SV_FrameAck(int framenum)
708 if (host_client->entitydatabase)
709 EntityFrame_AckFrame(host_client->entitydatabase, framenum);
710 else if (host_client->entitydatabase4)
711 EntityFrame4_AckFrame(host_client->entitydatabase4, framenum, true);
712 else if (host_client->entitydatabase5)
713 EntityFrame5_AckFrame(host_client->entitydatabase5, framenum);
721 extern void SV_SendServerinfo(client_t *client);
722 void SV_ReadClientMessage(void)
727 //MSG_BeginReading ();
731 if (!host_client->active)
733 // a command caused an error
734 SV_DropClient (false);
740 Con_Print("SV_ReadClientMessage: badread\n");
741 SV_DropClient (false);
745 cmd = MSG_ReadChar ();
755 Con_Printf("SV_ReadClientMessage: unknown command char %i\n", cmd);
756 SV_DropClient (false);
763 s = MSG_ReadString ();
764 if (strncasecmp(s, "spawn", 5) == 0
765 || strncasecmp(s, "begin", 5) == 0
766 || strncasecmp(s, "prespawn", 8) == 0)
767 Cmd_ExecuteString (s, src_client);
768 else if (SV_ParseClientCommandQC)
770 G_INT(OFS_PARM0) = PR_SetString(s);
771 pr_global_struct->self = EDICT_TO_PROG(host_client->edict);
772 PR_ExecuteProgram ((func_t)(SV_ParseClientCommandQC - pr_functions), "QC function SV_ParseClientCommand is missing");
774 else if (strncasecmp(s, "status", 6) == 0
775 || strncasecmp(s, "name", 4) == 0
776 || strncasecmp(s, "say", 3) == 0
777 || strncasecmp(s, "say_team", 8) == 0
778 || strncasecmp(s, "tell", 4) == 0
779 || strncasecmp(s, "color", 5) == 0
780 || strncasecmp(s, "kill", 4) == 0
781 || strncasecmp(s, "pause", 5) == 0
782 || strncasecmp(s, "kick", 4) == 0
783 || strncasecmp(s, "ping", 4) == 0
784 || strncasecmp(s, "ban", 3) == 0
785 || strncasecmp(s, "pmodel", 6) == 0
786 || strncasecmp(s, "rate", 4) == 0
787 || (gamemode == GAME_NEHAHRA && (strncasecmp(s, "max", 3) == 0 || strncasecmp(s, "monster", 7) == 0 || strncasecmp(s, "scrag", 5) == 0 || strncasecmp(s, "gimme", 5) == 0 || strncasecmp(s, "wraith", 6) == 0))
788 || (gamemode != GAME_NEHAHRA && (strncasecmp(s, "god", 3) == 0 || strncasecmp(s, "notarget", 8) == 0 || strncasecmp(s, "fly", 3) == 0 || strncasecmp(s, "give", 4) == 0 || strncasecmp(s, "noclip", 6) == 0)))
789 Cmd_ExecuteString (s, src_client);
791 Con_Printf("%s tried to %s\n", host_client->name, s);
795 SV_DropClient (false); // client wants to disconnect
799 SV_ReadClientMove (&host_client->cmd);
803 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
804 num = MSG_ReadLong();
805 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
806 if (developer_networkentities.integer >= 1)
807 Con_Printf("recv clc_ackframe %i\n", num);
808 if (host_client->latestframenum < num)
811 for (i = host_client->latestframenum + 1;i < num;i++)
814 host_client->latestframenum = num;
826 void SV_RunClients (void)
830 for (i = 0, host_client = svs.clients;i < svs.maxclients;i++, host_client++)
832 if (!host_client->active)
835 if (!host_client->spawned)
837 // clear client movement until a new packet is received
838 memset (&host_client->cmd, 0, sizeof(host_client->cmd));
844 // LordHavoc: QuakeC replacement for SV_ClientThink (player movement)
845 if (SV_PlayerPhysicsQC)
847 pr_global_struct->time = sv.time;
848 pr_global_struct->self = EDICT_TO_PROG(host_client->edict);
849 PR_ExecuteProgram ((func_t)(SV_PlayerPhysicsQC - pr_functions), "QC function SV_PlayerPhysics is missing");
854 SV_CheckVelocity(host_client->edict);
856 // LordHavoc: a hack to ensure that the (rather silly) id1 quakec
857 // player_run/player_stand1 does not horribly malfunction if the
858 // velocity becomes a number that is both == 0 and != 0
859 // (sounds to me like NaN but to be absolutely safe...)
860 if (DotProduct(host_client->edict->v->velocity, host_client->edict->v->velocity) < 0.0001)
861 VectorClear(host_client->edict->v->velocity);