mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 14:52:08 +00:00
a little ws cleanup
This commit is contained in:
parent
eb9deb1f33
commit
a38f854210
1 changed files with 121 additions and 122 deletions
241
source/sv_user.c
241
source/sv_user.c
|
@ -1422,173 +1422,172 @@ extern qboolean nouse; // 1999-10-29 +USE fix by Maddes
|
||||||
|
|
||||||
void SV_RunCmd (usercmd_t *ucmd, qboolean inside)
|
void SV_RunCmd (usercmd_t *ucmd, qboolean inside)
|
||||||
{
|
{
|
||||||
edict_t *ent;
|
edict_t *ent;
|
||||||
int i, n, oldmsec;
|
int i, n, oldmsec;
|
||||||
double tmp_time;
|
double tmp_time;
|
||||||
|
|
||||||
// To prevent a infinite loop
|
// To prevent a infinite loop
|
||||||
if (!inside) {
|
if (!inside) {
|
||||||
host_client->msecs += ucmd->msec;
|
host_client->msecs += ucmd->msec;
|
||||||
|
|
||||||
if ((sv_timekick->value >= 1) &&
|
if ((sv_timekick->value >= 1) &&
|
||||||
(tmp_time = realtime - host_client->last_check) >= sv_timekick_interval->value) {
|
(tmp_time = realtime - host_client->last_check) >=
|
||||||
tmp_time *= (1000 + sv_timekick_fuzz->value);
|
sv_timekick_interval->value) {
|
||||||
if (host_client->msecs > (int) tmp_time) {
|
tmp_time *= (1000 + sv_timekick_fuzz->value);
|
||||||
host_client->msec_cheating++;
|
if (host_client->msecs > (int) tmp_time) {
|
||||||
SV_BroadcastPrintf( PRINT_HIGH,
|
host_client->msec_cheating++;
|
||||||
va("%s thinks %d msecs pass in %f msecs. (Strike %d/%d)\n",
|
SV_BroadcastPrintf( PRINT_HIGH,
|
||||||
host_client->name, host_client->msecs, tmp_time,
|
va("%s thinks %d msecs pass in %f msecs. (Strike %d/%d)\n",
|
||||||
host_client->msec_cheating, (int)sv_timekick->value));
|
host_client->name, host_client->msecs, tmp_time,
|
||||||
|
host_client->msec_cheating, (int)sv_timekick->value));
|
||||||
|
|
||||||
if (host_client->msec_cheating >= sv_timekick->value) {
|
if (host_client->msec_cheating >= sv_timekick->value) {
|
||||||
SV_BroadcastPrintf(PRINT_HIGH, va("Strike %d for %s!!\n",
|
SV_BroadcastPrintf(PRINT_HIGH, va("Strike %d for %s!!\n",
|
||||||
host_client->msec_cheating, host_client->name));
|
host_client->msec_cheating, host_client->name));
|
||||||
SV_BroadcastPrintf(PRINT_HIGH, "Please see http://www.quakeforge.net/speed_cheat.php for infomation on QuakeForge's time cheat protection, and to explain how some may be cheating without knowing it.\n"
|
SV_BroadcastPrintf(PRINT_HIGH, "Please see http://www.quakeforge.net/speed_cheat.php for infomation on QuakeForge's time cheat protection, and to explain how some may be cheating without knowing it.\n"
|
||||||
);
|
);
|
||||||
SV_DropClient(host_client);
|
SV_DropClient(host_client);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
host_client->msecs = 0;
|
host_client->msecs = 0;
|
||||||
host_client->last_check = realtime;
|
host_client->last_check = realtime;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
cmd = *ucmd;
|
cmd = *ucmd;
|
||||||
|
|
||||||
// chop up very long commands
|
// chop up very long commands
|
||||||
if (cmd.msec > 50) {
|
if (cmd.msec > 50) {
|
||||||
oldmsec = ucmd->msec;
|
oldmsec = ucmd->msec;
|
||||||
cmd.msec = oldmsec/2;
|
cmd.msec = oldmsec/2;
|
||||||
SV_RunCmd (&cmd, 1);
|
SV_RunCmd (&cmd, 1);
|
||||||
cmd.msec = oldmsec/2;
|
cmd.msec = oldmsec/2;
|
||||||
cmd.impulse = 0;
|
cmd.impulse = 0;
|
||||||
SV_RunCmd (&cmd, 1);
|
SV_RunCmd (&cmd, 1);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!sv_player->v.fixangle)
|
if (!sv_player->v.fixangle)
|
||||||
VectorCopy (ucmd->angles, sv_player->v.v_angle);
|
VectorCopy (ucmd->angles, sv_player->v.v_angle);
|
||||||
|
|
||||||
sv_player->v.button0 = ucmd->buttons & 1;
|
sv_player->v.button0 = ucmd->buttons & 1;
|
||||||
// 1999-10-29 +USE fix by Maddes start
|
// 1999-10-29 +USE fix by Maddes start
|
||||||
if (!nouse)
|
if (!nouse)
|
||||||
{
|
{
|
||||||
sv_player->v.button1 = (ucmd->buttons & 4)>>2;
|
sv_player->v.button1 = (ucmd->buttons & 4)>>2;
|
||||||
}
|
}
|
||||||
// 1999-10-29 +USE fix by Maddes end
|
// 1999-10-29 +USE fix by Maddes end
|
||||||
sv_player->v.button2 = (ucmd->buttons & 2)>>1;
|
sv_player->v.button2 = (ucmd->buttons & 2)>>1;
|
||||||
if (ucmd->impulse)
|
if (ucmd->impulse)
|
||||||
sv_player->v.impulse = ucmd->impulse;
|
sv_player->v.impulse = ucmd->impulse;
|
||||||
|
|
||||||
//
|
//
|
||||||
// angles
|
// angles
|
||||||
// show 1/3 the pitch angle and all the roll angle
|
// show 1/3 the pitch angle and all the roll angle
|
||||||
if (sv_player->v.health > 0) {
|
if (sv_player->v.health > 0) {
|
||||||
if (!sv_player->v.fixangle) {
|
if (!sv_player->v.fixangle) {
|
||||||
sv_player->v.angles[PITCH] = -sv_player->v.v_angle[PITCH]/3;
|
sv_player->v.angles[PITCH] = -sv_player->v.v_angle[PITCH]/3;
|
||||||
sv_player->v.angles[YAW] = sv_player->v.v_angle[YAW];
|
sv_player->v.angles[YAW] = sv_player->v.v_angle[YAW];
|
||||||
}
|
}
|
||||||
sv_player->v.angles[ROLL] =
|
sv_player->v.angles[ROLL] =
|
||||||
SV_CalcRoll (sv_player->v.angles, sv_player->v.velocity)*4;
|
SV_CalcRoll (sv_player->v.angles, sv_player->v.velocity)*4;
|
||||||
}
|
}
|
||||||
|
|
||||||
sv_frametime = min(0.1, ucmd->msec * 0.001);
|
sv_frametime = min(0.1, ucmd->msec * 0.001);
|
||||||
|
|
||||||
if (!host_client->spectator) {
|
if (!host_client->spectator) {
|
||||||
pr_global_struct->frametime = sv_frametime;
|
pr_global_struct->frametime = sv_frametime;
|
||||||
|
|
||||||
pr_global_struct->time = sv.time;
|
pr_global_struct->time = sv.time;
|
||||||
pr_global_struct->self = EDICT_TO_PROG(sv_player);
|
pr_global_struct->self = EDICT_TO_PROG(sv_player);
|
||||||
PR_ExecuteProgram (pr_global_struct->PlayerPreThink);
|
PR_ExecuteProgram (pr_global_struct->PlayerPreThink);
|
||||||
|
|
||||||
SV_RunThink (sv_player);
|
SV_RunThink (sv_player);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i=0 ; i<3 ; i++)
|
for (i=0 ; i<3 ; i++)
|
||||||
pmove.origin[i] = sv_player->v.origin[i] + (sv_player->v.mins[i]
|
pmove.origin[i] = sv_player->v.origin[i] + (sv_player->v.mins[i]
|
||||||
- player_mins[i]);
|
- player_mins[i]);
|
||||||
VectorCopy (sv_player->v.velocity, pmove.velocity);
|
VectorCopy (sv_player->v.velocity, pmove.velocity);
|
||||||
VectorCopy (sv_player->v.v_angle, pmove.angles);
|
VectorCopy (sv_player->v.v_angle, pmove.angles);
|
||||||
|
|
||||||
pmove.flying = sv_player->v.movetype == MOVETYPE_FLY;
|
pmove.flying = sv_player->v.movetype == MOVETYPE_FLY;
|
||||||
pmove.spectator = host_client->spectator;
|
pmove.spectator = host_client->spectator;
|
||||||
pmove.waterjumptime = sv_player->v.teleport_time;
|
pmove.waterjumptime = sv_player->v.teleport_time;
|
||||||
pmove.numphysent = 1;
|
pmove.numphysent = 1;
|
||||||
pmove.physents[0].model = sv.worldmodel;
|
pmove.physents[0].model = sv.worldmodel;
|
||||||
pmove.cmd = *ucmd;
|
pmove.cmd = *ucmd;
|
||||||
pmove.dead = sv_player->v.health <= 0;
|
pmove.dead = sv_player->v.health <= 0;
|
||||||
pmove.oldbuttons = host_client->oldbuttons;
|
pmove.oldbuttons = host_client->oldbuttons;
|
||||||
|
|
||||||
movevars.entgravity = host_client->entgravity;
|
movevars.entgravity = host_client->entgravity;
|
||||||
movevars.maxspeed = host_client->maxspeed;
|
movevars.maxspeed = host_client->maxspeed;
|
||||||
|
|
||||||
for (i=0 ; i<3 ; i++) {
|
for (i=0 ; i<3 ; i++) {
|
||||||
pmove_mins[i] = pmove.origin[i] - 256;
|
pmove_mins[i] = pmove.origin[i] - 256;
|
||||||
pmove_maxs[i] = pmove.origin[i] + 256;
|
pmove_maxs[i] = pmove.origin[i] + 256;
|
||||||
}
|
}
|
||||||
#if 1
|
#if 1
|
||||||
AddLinksToPmove ( sv_areanodes );
|
AddLinksToPmove ( sv_areanodes );
|
||||||
#else
|
#else
|
||||||
AddAllEntsToPmove ();
|
AddAllEntsToPmove ();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
{
|
{
|
||||||
int before, after;
|
int before, after;
|
||||||
|
|
||||||
before = PM_TestPlayerPosition (pmove.origin);
|
before = PM_TestPlayerPosition (pmove.origin);
|
||||||
PlayerMove ();
|
PlayerMove ();
|
||||||
after = PM_TestPlayerPosition (pmove.origin);
|
after = PM_TestPlayerPosition (pmove.origin);
|
||||||
|
|
||||||
if (sv_player->v.health > 0 && before && !after )
|
if (sv_player->v.health > 0 && before && !after )
|
||||||
Con_Printf ("player %s got stuck in playermove!!!!\n", host_client->name
|
Con_Printf ("player %s got stuck in playermove!!!!\n", host_client->name);
|
||||||
);
|
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
PlayerMove ();
|
PlayerMove ();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
host_client->oldbuttons = pmove.oldbuttons;
|
host_client->oldbuttons = pmove.oldbuttons;
|
||||||
sv_player->v.teleport_time = pmove.waterjumptime;
|
sv_player->v.teleport_time = pmove.waterjumptime;
|
||||||
sv_player->v.waterlevel = waterlevel;
|
sv_player->v.waterlevel = waterlevel;
|
||||||
sv_player->v.watertype = watertype;
|
sv_player->v.watertype = watertype;
|
||||||
if (onground != -1) {
|
if (onground != -1) {
|
||||||
sv_player->v.flags = (int)sv_player->v.flags | FL_ONGROUND;
|
sv_player->v.flags = (int)sv_player->v.flags | FL_ONGROUND;
|
||||||
sv_player->v.groundentity = EDICT_TO_PROG(EDICT_NUM(pmove.physents[onground].info));
|
sv_player->v.groundentity = EDICT_TO_PROG(EDICT_NUM(pmove.physents[onground].info));
|
||||||
} else {
|
} else {
|
||||||
sv_player->v.flags = (int)sv_player->v.flags & ~FL_ONGROUND;
|
sv_player->v.flags = (int)sv_player->v.flags & ~FL_ONGROUND;
|
||||||
}
|
}
|
||||||
for (i=0 ; i<3 ; i++)
|
for (i=0 ; i<3 ; i++)
|
||||||
sv_player->v.origin[i] = pmove.origin[i] - (sv_player->v.mins[i]
|
sv_player->v.origin[i] = pmove.origin[i] - (sv_player->v.mins[i] - player_mins[i]);
|
||||||
- player_mins[i]);
|
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
// truncate velocity the same way the net protocol will
|
// truncate velocity the same way the net protocol will
|
||||||
for (i=0 ; i<3 ; i++)
|
for (i=0 ; i<3 ; i++)
|
||||||
sv_player->v.velocity[i] = (int)pmove.velocity[i];
|
sv_player->v.velocity[i] = (int)pmove.velocity[i];
|
||||||
#else
|
#else
|
||||||
VectorCopy (pmove.velocity, sv_player->v.velocity);
|
VectorCopy (pmove.velocity, sv_player->v.velocity);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
VectorCopy (pmove.angles, sv_player->v.v_angle);
|
VectorCopy (pmove.angles, sv_player->v.v_angle);
|
||||||
|
|
||||||
if (!host_client->spectator) {
|
if (!host_client->spectator) {
|
||||||
// link into place and touch triggers
|
// link into place and touch triggers
|
||||||
SV_LinkEdict (sv_player, true);
|
SV_LinkEdict (sv_player, true);
|
||||||
|
|
||||||
// touch other objects
|
// touch other objects
|
||||||
for (i=0 ; i<pmove.numtouch ; i++) {
|
for (i=0 ; i<pmove.numtouch ; i++) {
|
||||||
n = pmove.physents[pmove.touchindex[i]].info;
|
n = pmove.physents[pmove.touchindex[i]].info;
|
||||||
ent = EDICT_NUM(n);
|
ent = EDICT_NUM(n);
|
||||||
if (!ent->v.touch || (playertouch[n/8]&(1<<(n%8))))
|
if (!ent->v.touch || (playertouch[n/8]&(1<<(n%8))))
|
||||||
continue;
|
continue;
|
||||||
pr_global_struct->self = EDICT_TO_PROG(ent);
|
pr_global_struct->self = EDICT_TO_PROG(ent);
|
||||||
pr_global_struct->other = EDICT_TO_PROG(sv_player);
|
pr_global_struct->other = EDICT_TO_PROG(sv_player);
|
||||||
PR_ExecuteProgram (ent->v.touch);
|
PR_ExecuteProgram (ent->v.touch);
|
||||||
playertouch[n/8] |= 1 << (n%8);
|
playertouch[n/8] |= 1 << (n%8);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue