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
33 void SV_SetIdealPitch (void)
35 float angleval, sinval, cosval, step, dir;
42 if (!((int)host_client->edict->fields.server->flags & FL_ONGROUND))
45 angleval = host_client->edict->fields.server->angles[YAW] * M_PI*2 / 360;
46 sinval = sin(angleval);
47 cosval = cos(angleval);
49 for (i=0 ; i<MAX_FORWARD ; i++)
51 top[0] = host_client->edict->fields.server->origin[0] + cosval*(i+3)*12;
52 top[1] = host_client->edict->fields.server->origin[1] + sinval*(i+3)*12;
53 top[2] = host_client->edict->fields.server->origin[2] + host_client->edict->fields.server->view_ofs[2];
57 bottom[2] = top[2] - 160;
59 tr = SV_Move (top, vec3_origin, vec3_origin, bottom, MOVE_NOMONSTERS, host_client->edict, SUPERCONTENTS_SOLID);
60 // if looking at a wall, leave ideal the way is was
68 z[i] = top[2] + tr.fraction*(bottom[2]-top[2]);
76 if (step > -ON_EPSILON && step < ON_EPSILON)
80 if (dir && ( step-dir > ON_EPSILON || step-dir < -ON_EPSILON ) )
89 host_client->edict->fields.server->idealpitch = 0;
95 host_client->edict->fields.server->idealpitch = -dir * sv_idealpitchscale.value;
98 static vec3_t wishdir, forward, right, up;
99 static float wishspeed;
101 static qboolean onground;
109 void SV_UserFriction (void)
111 float speed, newspeed, control, friction;
115 speed = sqrt(host_client->edict->fields.server->velocity[0]*host_client->edict->fields.server->velocity[0]+host_client->edict->fields.server->velocity[1]*host_client->edict->fields.server->velocity[1]);
119 // if the leading edge is over a dropoff, increase friction
120 start[0] = stop[0] = host_client->edict->fields.server->origin[0] + host_client->edict->fields.server->velocity[0]/speed*16;
121 start[1] = stop[1] = host_client->edict->fields.server->origin[1] + host_client->edict->fields.server->velocity[1]/speed*16;
122 start[2] = host_client->edict->fields.server->origin[2] + host_client->edict->fields.server->mins[2];
123 stop[2] = start[2] - 34;
125 trace = SV_Move (start, vec3_origin, vec3_origin, stop, MOVE_NOMONSTERS, host_client->edict, SV_GenericHitSuperContentsMask(host_client->edict));
127 if (trace.fraction == 1.0)
128 friction = sv_friction.value*sv_edgefriction.value;
130 friction = sv_friction.value;
133 control = speed < sv_stopspeed.value ? sv_stopspeed.value : speed;
134 newspeed = speed - sv.frametime*control*friction;
141 VectorScale(host_client->edict->fields.server->velocity, newspeed, host_client->edict->fields.server->velocity);
149 void SV_Accelerate (void)
152 float addspeed, accelspeed, currentspeed;
154 currentspeed = DotProduct (host_client->edict->fields.server->velocity, wishdir);
155 addspeed = wishspeed - currentspeed;
158 accelspeed = sv_accelerate.value*sv.frametime*wishspeed;
159 if (accelspeed > addspeed)
160 accelspeed = addspeed;
162 for (i=0 ; i<3 ; i++)
163 host_client->edict->fields.server->velocity[i] += accelspeed*wishdir[i];
166 void SV_AirAccelerate (vec3_t wishveloc)
169 float addspeed, wishspd, accelspeed, currentspeed;
171 wishspd = VectorNormalizeLength (wishveloc);
172 if (wishspd > sv_maxairspeed.value)
173 wishspd = sv_maxairspeed.value;
174 currentspeed = DotProduct (host_client->edict->fields.server->velocity, wishveloc);
175 addspeed = wishspd - currentspeed;
178 accelspeed = (sv_airaccelerate.value < 0 ? sv_accelerate.value : sv_airaccelerate.value)*wishspeed * sv.frametime;
179 if (accelspeed > addspeed)
180 accelspeed = addspeed;
182 for (i=0 ; i<3 ; i++)
183 host_client->edict->fields.server->velocity[i] += accelspeed*wishveloc[i];
187 void DropPunchAngle (void)
192 len = VectorNormalizeLength (host_client->edict->fields.server->punchangle);
194 len -= 10*sv.frametime;
197 VectorScale (host_client->edict->fields.server->punchangle, len, host_client->edict->fields.server->punchangle);
199 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.punchvector)))
201 len = VectorNormalizeLength (val->vector);
203 len -= 20*sv.frametime;
206 VectorScale (val->vector, len, val->vector);
215 void SV_FreeMove (void)
220 AngleVectors (host_client->edict->fields.server->v_angle, forward, right, up);
222 for (i = 0; i < 3; i++)
223 host_client->edict->fields.server->velocity[i] = forward[i] * cmd.forwardmove + right[i] * cmd.sidemove;
225 host_client->edict->fields.server->velocity[2] += cmd.upmove;
227 wishspeed = VectorLength(host_client->edict->fields.server->velocity);
228 if (wishspeed > sv_maxspeed.value)
229 VectorScale(host_client->edict->fields.server->velocity, sv_maxspeed.value / wishspeed, host_client->edict->fields.server->velocity);
238 void SV_WaterMove (void)
242 float speed, newspeed, wishspeed, addspeed, accelspeed, temp;
245 AngleVectors (host_client->edict->fields.server->v_angle, forward, right, up);
247 for (i=0 ; i<3 ; i++)
248 wishvel[i] = forward[i]*cmd.forwardmove + right[i]*cmd.sidemove;
250 if (!cmd.forwardmove && !cmd.sidemove && !cmd.upmove)
251 wishvel[2] -= 60; // drift towards bottom
253 wishvel[2] += cmd.upmove;
255 wishspeed = VectorLength(wishvel);
256 if (wishspeed > sv_maxspeed.value)
258 temp = sv_maxspeed.value/wishspeed;
259 VectorScale (wishvel, temp, wishvel);
260 wishspeed = sv_maxspeed.value;
265 speed = VectorLength(host_client->edict->fields.server->velocity);
268 newspeed = speed - sv.frametime * speed * (sv_waterfriction.value < 0 ? sv_friction.value : sv_waterfriction.value);
271 temp = newspeed/speed;
272 VectorScale(host_client->edict->fields.server->velocity, temp, host_client->edict->fields.server->velocity);
277 // water acceleration
281 addspeed = wishspeed - newspeed;
285 VectorNormalize (wishvel);
286 accelspeed = (sv_wateraccelerate.value < 0 ? sv_accelerate.value : sv_wateraccelerate.value) * wishspeed * sv.frametime;
287 if (accelspeed > addspeed)
288 accelspeed = addspeed;
290 for (i=0 ; i<3 ; i++)
291 host_client->edict->fields.server->velocity[i] += accelspeed * wishvel[i];
294 void SV_WaterJump (void)
296 if (sv.time > host_client->edict->fields.server->teleport_time || !host_client->edict->fields.server->waterlevel)
298 host_client->edict->fields.server->flags = (int)host_client->edict->fields.server->flags & ~FL_WATERJUMP;
299 host_client->edict->fields.server->teleport_time = 0;
301 host_client->edict->fields.server->velocity[0] = host_client->edict->fields.server->movedir[0];
302 host_client->edict->fields.server->velocity[1] = host_client->edict->fields.server->movedir[1];
312 void SV_AirMove (void)
316 float fmove, smove, temp;
318 // LordHavoc: correct quake movement speed bug when looking up/down
319 wishvel[0] = wishvel[2] = 0;
320 wishvel[1] = host_client->edict->fields.server->angles[1];
321 AngleVectors (wishvel, forward, right, up);
323 fmove = cmd.forwardmove;
324 smove = cmd.sidemove;
326 // hack to not let you back into teleporter
327 if (sv.time < host_client->edict->fields.server->teleport_time && fmove < 0)
330 for (i=0 ; i<3 ; i++)
331 wishvel[i] = forward[i]*fmove + right[i]*smove;
333 if ((int)host_client->edict->fields.server->movetype != MOVETYPE_WALK)
334 wishvel[2] += cmd.upmove;
336 VectorCopy (wishvel, wishdir);
337 wishspeed = VectorNormalizeLength(wishdir);
338 if (wishspeed > sv_maxspeed.value)
340 temp = sv_maxspeed.value/wishspeed;
341 VectorScale (wishvel, temp, wishvel);
342 wishspeed = sv_maxspeed.value;
345 if (host_client->edict->fields.server->movetype == MOVETYPE_NOCLIP)
348 VectorCopy (wishvel, host_client->edict->fields.server->velocity);
357 // not on ground, so little effect on velocity
358 SV_AirAccelerate (wishvel);
366 the move fields specify an intended velocity in pix/sec
367 the angle fields specify an exact angular motion in degrees
370 void SV_ClientThink (void)
374 //Con_Printf("clientthink for %ims\n", (int) (sv.frametime * 1000));
376 SV_ApplyClientMove();
377 // make sure the velocity is sane (not a NaN)
378 SV_CheckVelocity(host_client->edict);
380 // LordHavoc: QuakeC replacement for SV_ClientThink (player movement)
381 if (prog->funcoffsets.SV_PlayerPhysics && sv_playerphysicsqc.integer)
383 prog->globals.server->time = sv.time;
384 prog->globals.server->self = PRVM_EDICT_TO_PROG(host_client->edict);
385 PRVM_ExecuteProgram (prog->funcoffsets.SV_PlayerPhysics, "QC function SV_PlayerPhysics is missing");
386 SV_CheckVelocity(host_client->edict);
390 if (host_client->edict->fields.server->movetype == MOVETYPE_NONE)
393 onground = (int)host_client->edict->fields.server->flags & FL_ONGROUND;
397 // if dead, behave differently
398 if (host_client->edict->fields.server->health <= 0)
401 cmd = host_client->cmd;
404 // show 1/3 the pitch angle and all the roll angle
405 VectorAdd (host_client->edict->fields.server->v_angle, host_client->edict->fields.server->punchangle, v_angle);
406 host_client->edict->fields.server->angles[ROLL] = V_CalcRoll (host_client->edict->fields.server->angles, host_client->edict->fields.server->velocity)*4;
407 if (!host_client->edict->fields.server->fixangle)
409 host_client->edict->fields.server->angles[PITCH] = -v_angle[PITCH]/3;
410 host_client->edict->fields.server->angles[YAW] = v_angle[YAW];
413 if ( (int)host_client->edict->fields.server->flags & FL_WATERJUMP )
416 SV_CheckVelocity(host_client->edict);
421 // Player is (somehow) outside of the map, or flying, or noclipping
422 if (host_client->edict->fields.server->movetype != MOVETYPE_NOCLIP && (host_client->edict->fields.server->movetype == MOVETYPE_FLY || SV_TestEntityPosition (host_client->edict)))
423 //if (host_client->edict->fields.server->movetype == MOVETYPE_NOCLIP || host_client->edict->fields.server->movetype == MOVETYPE_FLY || SV_TestEntityPosition (host_client->edict))
431 if ((host_client->edict->fields.server->waterlevel >= 2) && (host_client->edict->fields.server->movetype != MOVETYPE_NOCLIP))
434 SV_CheckVelocity(host_client->edict);
439 SV_CheckVelocity(host_client->edict);
447 int sv_numreadmoves = 0;
448 usercmd_t sv_readmoves[CL_MAX_USERCMDS];
449 void SV_ReadClientMove (void)
453 usercmd_t *move = &newmove;
455 memset(move, 0, sizeof(*move));
457 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
460 if (sv.protocol != PROTOCOL_QUAKE && sv.protocol != PROTOCOL_QUAKEDP && sv.protocol != PROTOCOL_NEHAHRAMOVIE && sv.protocol != PROTOCOL_NEHAHRABJP && sv.protocol != PROTOCOL_NEHAHRABJP2 && sv.protocol != PROTOCOL_NEHAHRABJP3 && sv.protocol != PROTOCOL_DARKPLACES1 && sv.protocol != PROTOCOL_DARKPLACES2 && sv.protocol != PROTOCOL_DARKPLACES3 && sv.protocol != PROTOCOL_DARKPLACES4 && sv.protocol != PROTOCOL_DARKPLACES5 && sv.protocol != PROTOCOL_DARKPLACES6)
461 move->sequence = MSG_ReadLong ();
462 move->time = MSG_ReadFloat ();
463 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
464 move->receivetime = (float)sv.time;
467 Con_Printf("%s move%i #%i %ims (%ims) %i %i '%i %i %i' '%i %i %i'\n", move->time > move->receivetime ? "^3read future" : "^4read normal", sv_numreadmoves + 1, move->sequence, (int)floor((move->time - host_client->cmd.time) * 1000.0 + 0.5), (int)floor(move->time * 1000.0 + 0.5), move->impulse, move->buttons, (int)move->viewangles[0], (int)move->viewangles[1], (int)move->viewangles[2], (int)move->forwardmove, (int)move->sidemove, (int)move->upmove);
469 // limit reported time to current time
470 // (incase the client is trying to cheat)
471 move->time = min(move->time, move->receivetime + sv.frametime);
473 // read current angles
474 for (i = 0;i < 3;i++)
476 if (sv.protocol == PROTOCOL_QUAKE || sv.protocol == PROTOCOL_QUAKEDP || sv.protocol == PROTOCOL_NEHAHRAMOVIE || sv.protocol == PROTOCOL_NEHAHRABJP || sv.protocol == PROTOCOL_NEHAHRABJP2 || sv.protocol == PROTOCOL_NEHAHRABJP3)
477 move->viewangles[i] = MSG_ReadAngle8i();
478 else if (sv.protocol == PROTOCOL_DARKPLACES1)
479 move->viewangles[i] = MSG_ReadAngle16i();
480 else if (sv.protocol == PROTOCOL_DARKPLACES2 || sv.protocol == PROTOCOL_DARKPLACES3)
481 move->viewangles[i] = MSG_ReadAngle32f();
483 move->viewangles[i] = MSG_ReadAngle16i();
485 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
488 move->forwardmove = MSG_ReadCoord16i ();
489 move->sidemove = MSG_ReadCoord16i ();
490 move->upmove = MSG_ReadCoord16i ();
491 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
494 // be sure to bitwise OR them into the move->buttons because we want to
495 // accumulate button presses from multiple packets per actual move
496 if (sv.protocol == PROTOCOL_QUAKE || sv.protocol == PROTOCOL_QUAKEDP || sv.protocol == PROTOCOL_NEHAHRAMOVIE || sv.protocol == PROTOCOL_NEHAHRABJP || sv.protocol == PROTOCOL_NEHAHRABJP2 || sv.protocol == PROTOCOL_NEHAHRABJP3 || sv.protocol == PROTOCOL_DARKPLACES1 || sv.protocol == PROTOCOL_DARKPLACES2 || sv.protocol == PROTOCOL_DARKPLACES3 || sv.protocol == PROTOCOL_DARKPLACES4 || sv.protocol == PROTOCOL_DARKPLACES5)
497 move->buttons = MSG_ReadByte ();
499 move->buttons = MSG_ReadLong ();
500 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
503 move->impulse = MSG_ReadByte ();
504 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
506 // PRYDON_CLIENTCURSOR
507 if (sv.protocol != PROTOCOL_QUAKE && sv.protocol != PROTOCOL_QUAKEDP && sv.protocol != PROTOCOL_NEHAHRAMOVIE && sv.protocol != PROTOCOL_NEHAHRABJP && sv.protocol != PROTOCOL_NEHAHRABJP2 && sv.protocol != PROTOCOL_NEHAHRABJP3 && sv.protocol != PROTOCOL_DARKPLACES1 && sv.protocol != PROTOCOL_DARKPLACES2 && sv.protocol != PROTOCOL_DARKPLACES3 && sv.protocol != PROTOCOL_DARKPLACES4 && sv.protocol != PROTOCOL_DARKPLACES5)
510 move->cursor_screen[0] = MSG_ReadShort() * (1.0f / 32767.0f);
511 move->cursor_screen[1] = MSG_ReadShort() * (1.0f / 32767.0f);
512 move->cursor_start[0] = MSG_ReadFloat();
513 move->cursor_start[1] = MSG_ReadFloat();
514 move->cursor_start[2] = MSG_ReadFloat();
515 move->cursor_impact[0] = MSG_ReadFloat();
516 move->cursor_impact[1] = MSG_ReadFloat();
517 move->cursor_impact[2] = MSG_ReadFloat();
518 move->cursor_entitynumber = (unsigned short)MSG_ReadShort();
519 if (move->cursor_entitynumber >= prog->max_edicts)
521 Con_DPrintf("SV_ReadClientMessage: client send bad cursor_entitynumber\n");
522 move->cursor_entitynumber = 0;
524 // as requested by FrikaC, cursor_trace_ent is reset to world if the
525 // entity is free at time of receipt
526 if (PRVM_EDICT_NUM(move->cursor_entitynumber)->priv.server->free)
527 move->cursor_entitynumber = 0;
528 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
531 // if the previous move has not been applied yet, we need to accumulate
532 // the impulse/buttons from it
533 if (!host_client->cmd.applied)
536 move->impulse = host_client->cmd.impulse;
537 move->buttons |= host_client->cmd.buttons;
540 // now store this move for later execution
541 // (we have to buffer the moves because of old ones being repeated)
542 if (sv_numreadmoves < CL_MAX_USERCMDS)
543 sv_readmoves[sv_numreadmoves++] = *move;
546 void SV_ExecuteClientMoves(void)
551 double oldframetime2;
552 #ifdef NUM_PING_TIMES
556 if (sv_numreadmoves < 1)
558 // only start accepting input once the player is spawned
559 if (!host_client->spawned)
562 Con_Printf("SV_ExecuteClientMoves: read %i moves at sv.time %f\n", sv_numreadmoves, (float)sv.time);
564 // disable clientside movement prediction in some cases
565 if (ceil(max(sv_readmoves[sv_numreadmoves-1].receivetime - sv_readmoves[sv_numreadmoves-1].time, 0) * 1000.0) < sv_clmovement_minping.integer)
566 host_client->clmovement_disabletimeout = realtime + sv_clmovement_minping_disabletime.value / 1000.0;
567 // several conditions govern whether clientside movement prediction is allowed
568 if (sv_readmoves[sv_numreadmoves-1].sequence && sv_clmovement_enable.integer && sv_clmovement_waitforinput.integer > 0 && host_client->clmovement_disabletimeout <= realtime && host_client->edict->fields.server->movetype == MOVETYPE_WALK && (!(val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.disableclientprediction)) || !val->_float))
570 // process the moves in order and ignore old ones
571 // but always trust the latest move
572 // (this deals with bogus initial move sequences after level change,
573 // where the client will eventually catch up with the level change
574 // and reset its move sequence)
575 for (moveindex = 0;moveindex < sv_numreadmoves;moveindex++)
577 usercmd_t *move = sv_readmoves + moveindex;
578 if (host_client->movesequence < move->sequence || moveindex == sv_numreadmoves - 1)
581 Con_Printf("%smove #%i %ims (%ims) %i %i '%i %i %i' '%i %i %i'\n", (move->time - host_client->cmd.time) > sv.frametime * 1.01 ? "^1" : "^2", move->sequence, (int)floor((move->time - host_client->cmd.time) * 1000.0 + 0.5), (int)floor(move->time * 1000.0 + 0.5), move->impulse, move->buttons, (int)move->viewangles[0], (int)move->viewangles[1], (int)move->viewangles[2], (int)move->forwardmove, (int)move->sidemove, (int)move->upmove);
583 // this is a new move
584 move->time = bound(sv.time - 1, move->time, sv.time); // prevent slowhack/speedhack combos
585 move->time = max(move->time, host_client->cmd.time); // prevent backstepping of time
586 moveframetime = bound(0, move->time - host_client->cmd.time, 0.1);
587 //Con_Printf("movesequence = %i (%i lost), moveframetime = %f\n", move->sequence, move->sequence ? move->sequence - host_client->movesequence - 1 : 0, moveframetime);
588 host_client->cmd = *move;
589 host_client->movesequence = move->sequence;
591 // if using prediction, we need to perform moves when packets are
592 // received, even if multiple occur in one frame
593 // (they can't go beyond the current time so there is no cheat issue
594 // with this approach, and if they don't send input for a while they
595 // start moving anyway, so the longest 'lagaport' possible is
596 // determined by the sv_clmovement_waitforinput cvar)
597 if (moveframetime <= 0)
599 oldframetime = prog->globals.server->frametime;
600 oldframetime2 = sv.frametime;
601 // update ping time for qc to see while executing this move
602 host_client->ping = host_client->cmd.receivetime - host_client->cmd.time;
603 // the server and qc frametime values must be changed temporarily
604 prog->globals.server->frametime = sv.frametime = moveframetime;
605 // if move is more than 50ms, split it into two moves (this matches QWSV behavior and the client prediction)
606 if (sv.frametime > 0.05)
608 prog->globals.server->frametime = sv.frametime = moveframetime * 0.5f;
609 SV_Physics_ClientMove();
611 SV_Physics_ClientMove();
612 sv.frametime = oldframetime2;
613 prog->globals.server->frametime = oldframetime;
614 host_client->clmovement_skipphysicsframes = sv_clmovement_waitforinput.integer;
620 // try to gather button bits from old moves, but only if their time is
621 // advancing (ones with the same timestamp can't be trusted)
622 for (moveindex = 0;moveindex < sv_numreadmoves-1;moveindex++)
624 usercmd_t *move = sv_readmoves + moveindex;
625 if (host_client->cmd.time < move->time)
627 sv_readmoves[sv_numreadmoves-1].buttons |= move->buttons;
629 sv_readmoves[sv_numreadmoves-1].impulse = move->impulse;
632 // now copy the new move
633 host_client->cmd = sv_readmoves[sv_numreadmoves-1];
634 host_client->cmd.time = max(host_client->cmd.time, sv.time);
635 // physics will run up to sv.time, so allow no predicted moves
636 // before that otherwise, there is a speedhack by turning
637 // prediction on and off repeatedly on client side because the
638 // engine would run BOTH client and server physics for the same
640 host_client->movesequence = 0;
641 // make sure that normal physics takes over immediately
642 host_client->clmovement_skipphysicsframes = 0;
645 // calculate average ping time
646 host_client->ping = host_client->cmd.receivetime - host_client->cmd.time;
647 #ifdef NUM_PING_TIMES
648 host_client->ping_times[host_client->num_pings % NUM_PING_TIMES] = host_client->cmd.receivetime - host_client->cmd.time;
649 host_client->num_pings++;
650 for (i=0, total = 0;i < NUM_PING_TIMES;i++)
651 total += host_client->ping_times[i];
652 host_client->ping = total / NUM_PING_TIMES;
656 void SV_ApplyClientMove (void)
659 usercmd_t *move = &host_client->cmd;
661 if (!move->receivetime)
664 // note: a move can be applied multiple times if the client packets are
665 // not coming as often as the physics is executed, and the move must be
666 // applied before running qc each time because the id1 qc had a bug where
667 // it clears self.button2 in PlayerJump, causing pogostick behavior if
668 // moves are not applied every time before calling qc
669 move->applied = true;
671 // set the edict fields
672 host_client->edict->fields.server->button0 = move->buttons & 1;
673 host_client->edict->fields.server->button2 = (move->buttons & 2)>>1;
675 host_client->edict->fields.server->impulse = move->impulse;
676 // only send the impulse to qc once
678 VectorCopy(move->viewangles, host_client->edict->fields.server->v_angle);
679 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.button3))) val->_float = ((move->buttons >> 2) & 1);
680 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.button4))) val->_float = ((move->buttons >> 3) & 1);
681 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.button5))) val->_float = ((move->buttons >> 4) & 1);
682 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.button6))) val->_float = ((move->buttons >> 5) & 1);
683 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.button7))) val->_float = ((move->buttons >> 6) & 1);
684 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.button8))) val->_float = ((move->buttons >> 7) & 1);
685 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.button9))) val->_float = ((move->buttons >> 11) & 1);
686 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.button10))) val->_float = ((move->buttons >> 12) & 1);
687 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.button11))) val->_float = ((move->buttons >> 13) & 1);
688 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.button12))) val->_float = ((move->buttons >> 14) & 1);
689 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.button13))) val->_float = ((move->buttons >> 15) & 1);
690 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.button14))) val->_float = ((move->buttons >> 16) & 1);
691 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.button15))) val->_float = ((move->buttons >> 17) & 1);
692 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.button16))) val->_float = ((move->buttons >> 18) & 1);
693 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.buttonuse))) val->_float = ((move->buttons >> 8) & 1);
694 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.buttonchat))) val->_float = ((move->buttons >> 9) & 1);
695 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.cursor_active))) val->_float = ((move->buttons >> 10) & 1);
696 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.movement))) VectorSet(val->vector, move->forwardmove, move->sidemove, move->upmove);
697 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.cursor_screen))) VectorCopy(move->cursor_screen, val->vector);
698 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.cursor_trace_start))) VectorCopy(move->cursor_start, val->vector);
699 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.cursor_trace_endpos))) VectorCopy(move->cursor_impact, val->vector);
700 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.cursor_trace_ent))) val->edict = PRVM_EDICT_TO_PROG(PRVM_EDICT_NUM(move->cursor_entitynumber));
701 if ((val = PRVM_EDICTFIELDVALUE(host_client->edict, prog->fieldoffsets.ping))) val->_float = host_client->ping * 1000.0;
704 void SV_FrameLost(int framenum)
706 if (host_client->entitydatabase5)
707 EntityFrame5_LostFrame(host_client->entitydatabase5, framenum);
710 void SV_FrameAck(int framenum)
712 if (host_client->entitydatabase)
713 EntityFrame_AckFrame(host_client->entitydatabase, framenum);
714 else if (host_client->entitydatabase4)
715 EntityFrame4_AckFrame(host_client->entitydatabase4, framenum, true);
716 else if (host_client->entitydatabase5)
717 EntityFrame5_AckFrame(host_client->entitydatabase5, framenum);
725 extern void SV_SendServerinfo(client_t *client);
726 extern sizebuf_t vm_tempstringsbuf;
727 void SV_ReadClientMessage(void)
732 //MSG_BeginReading ();
737 if (!host_client->active)
739 // a command caused an error
740 SV_DropClient (false);
746 Con_Print("SV_ReadClientMessage: badread\n");
747 SV_DropClient (false);
751 cmd = MSG_ReadByte ();
755 // apply the moves that were read this frame
756 SV_ExecuteClientMoves();
763 Con_Printf("SV_ReadClientMessage: unknown command char %i\n", cmd);
764 SV_DropClient (false);
771 // allow reliable messages now as the client is done with initial loading
772 if (host_client->sendsignon == 2)
773 host_client->sendsignon = 0;
774 s = MSG_ReadString ();
776 for(p = s; *p; ++p) switch(*p)
785 goto clc_stringcmd_invalid; // newline seen, THEN something else -> possible exploit
790 if (strncasecmp(s, "spawn", 5) == 0
791 || strncasecmp(s, "begin", 5) == 0
792 || strncasecmp(s, "prespawn", 8) == 0)
793 Cmd_ExecuteString (s, src_client);
794 else if (prog->funcoffsets.SV_ParseClientCommand)
796 int restorevm_tempstringsbuf_cursize;
797 restorevm_tempstringsbuf_cursize = vm_tempstringsbuf.cursize;
798 PRVM_G_INT(OFS_PARM0) = PRVM_SetTempString(s);
799 prog->globals.server->self = PRVM_EDICT_TO_PROG(host_client->edict);
800 PRVM_ExecuteProgram (prog->funcoffsets.SV_ParseClientCommand, "QC function SV_ParseClientCommand is missing");
801 vm_tempstringsbuf.cursize = restorevm_tempstringsbuf_cursize;
804 Cmd_ExecuteString (s, src_client);
807 clc_stringcmd_invalid:
808 Con_Printf("Received invalid stringcmd from %s\n", host_client->name);
809 if(developer.integer)
810 Com_HexDumpToConsole((unsigned char *) s, strlen(s));
814 SV_DropClient (false); // client wants to disconnect
821 case clc_ackdownloaddata:
822 start = MSG_ReadLong();
823 num = MSG_ReadShort();
824 if (host_client->download_file && host_client->download_started)
826 if (host_client->download_expectedposition == start)
828 int size = (int)FS_FileSize(host_client->download_file);
829 // a data block was successfully received by the client,
830 // update the expected position on the next data block
831 host_client->download_expectedposition = start + num;
832 // if this was the last data block of the file, it's done
833 if (host_client->download_expectedposition >= FS_FileSize(host_client->download_file))
835 // tell the client that the download finished
836 // we need to calculate the crc now
838 // note: at this point the OS probably has the file
839 // entirely in memory, so this is a faster operation
840 // now than it was when the download started.
842 // it is also preferable to do this at the end of the
843 // download rather than the start because it reduces
844 // potential for Denial Of Service attacks against the
848 FS_Seek(host_client->download_file, 0, SEEK_SET);
849 temp = Mem_Alloc(tempmempool, size);
850 FS_Read(host_client->download_file, temp, size);
851 crc = CRC_Block(temp, size);
853 // calculated crc, send the file info to the client
854 // (so that it can verify the data)
855 Host_ClientCommands(va("\ncl_downloadfinished %i %i %s\n", size, crc, host_client->download_name));
856 Con_DPrintf("Download of %s by %s has finished\n", host_client->download_name, host_client->name);
857 FS_Close(host_client->download_file);
858 host_client->download_file = NULL;
859 host_client->download_name[0] = 0;
860 host_client->download_expectedposition = 0;
861 host_client->download_started = false;
866 // a data block was lost, reset to the expected position
867 // and resume sending from there
868 FS_Seek(host_client->download_file, host_client->download_expectedposition, SEEK_SET);
874 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
875 num = MSG_ReadLong();
876 if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__);
877 if (developer_networkentities.integer >= 10)
878 Con_Printf("recv clc_ackframe %i\n", num);
879 // if the client hasn't progressed through signons yet,
880 // ignore any clc_ackframes we get (they're probably from the
882 if (host_client->spawned && host_client->latestframenum < num)
885 for (i = host_client->latestframenum + 1;i < num;i++)
888 host_client->latestframenum = num;