mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-30 00:10:53 +00:00
cl_input.d in Sachen Kommentare aufgeräumt
This commit is contained in:
parent
f65ec5eff8
commit
9aeacdc2be
1 changed files with 247 additions and 233 deletions
|
@ -1,23 +1,22 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 1997-2001 Id Software, Inc.
|
* Copyright (C) 1997-2001 Id Software, Inc.
|
||||||
|
*
|
||||||
This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or modify it under
|
||||||
modify it under the terms of the GNU General Public License
|
* the terms of the GNU General Public License as published by the Free
|
||||||
as published by the Free Software Foundation; either version 2
|
* Software Foundation; either version 2 of the License, or (at your option)
|
||||||
of the License, or (at your option) any later version.
|
* any later version.
|
||||||
|
*
|
||||||
This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
* FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
*
|
||||||
See the GNU General Public License for more details.
|
* See the GNU General Public License for more details.
|
||||||
|
*
|
||||||
You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License along with
|
||||||
along with this program; if not, write to the Free Software
|
* this program; if not, write to the Free Software Foundation, Inc., 59
|
||||||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
* Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
// cl.input.c -- builds an intended movement command to send to the server
|
|
||||||
|
|
||||||
#include "header/client.h"
|
#include "header/client.h"
|
||||||
|
|
||||||
|
@ -28,31 +27,26 @@ unsigned frame_msec;
|
||||||
unsigned old_sys_frame_time;
|
unsigned old_sys_frame_time;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
===============================================================================
|
* KEY BUTTONS
|
||||||
|
*
|
||||||
KEY BUTTONS
|
* Continuous button event tracking is complicated by the fact that two different
|
||||||
|
* input sources (say, mouse button 1 and the control key) can both press the
|
||||||
Continuous button event tracking is complicated by the fact that two different
|
* same button, but the button should only be released when both of the
|
||||||
input sources (say, mouse button 1 and the control key) can both press the
|
* pressing key have been released.
|
||||||
same button, but the button should only be released when both of the
|
*
|
||||||
pressing key have been released.
|
* When a key event issues a button command (+forward, +attack, etc), it appends
|
||||||
|
* its key number as a parameter to the command so it can be matched up with
|
||||||
When a key event issues a button command (+forward, +attack, etc), it appends
|
* the release.
|
||||||
its key number as a parameter to the command so it can be matched up with
|
*
|
||||||
the release.
|
* state bit 0 is the current state of the key
|
||||||
|
* state bit 1 is edge triggered on the up to down transition
|
||||||
state bit 0 is the current state of the key
|
* state bit 2 is edge triggered on the down to up transition
|
||||||
state bit 1 is edge triggered on the up to down transition
|
*
|
||||||
state bit 2 is edge triggered on the down to up transition
|
*
|
||||||
|
* Key_Event (int key, qboolean down, unsigned time);
|
||||||
|
*
|
||||||
Key_Event (int key, qboolean down, unsigned time);
|
* +mlook src time
|
||||||
|
*/
|
||||||
+mlook src time
|
|
||||||
|
|
||||||
===============================================================================
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
kbutton_t in_klook;
|
kbutton_t in_klook;
|
||||||
kbutton_t in_left, in_right, in_forward, in_back;
|
kbutton_t in_left, in_right, in_forward, in_back;
|
||||||
|
@ -62,156 +56,215 @@ kbutton_t in_up, in_down;
|
||||||
|
|
||||||
int in_impulse;
|
int in_impulse;
|
||||||
|
|
||||||
|
void KeyDown (kbutton_t *b) {
|
||||||
void KeyDown (kbutton_t *b)
|
|
||||||
{
|
|
||||||
int k;
|
int k;
|
||||||
char *c;
|
char *c;
|
||||||
|
|
||||||
c = Cmd_Argv(1);
|
c = Cmd_Argv(1);
|
||||||
|
|
||||||
if (c[0])
|
if (c[0])
|
||||||
k = atoi(c);
|
k = atoi(c);
|
||||||
|
|
||||||
else
|
else
|
||||||
k = -1; // typed manually at the console for continuous down
|
k = -1; /* typed manually at the console for continuous down */
|
||||||
|
|
||||||
if (k == b->down[0] || k == b->down[1])
|
if (k == b->down[0] || k == b->down[1])
|
||||||
return; // repeating key
|
return; /* repeating key */
|
||||||
|
|
||||||
if (!b->down[0])
|
if (!b->down[0])
|
||||||
b->down[0] = k;
|
b->down[0] = k;
|
||||||
|
|
||||||
else if (!b->down[1])
|
else if (!b->down[1])
|
||||||
b->down[1] = k;
|
b->down[1] = k;
|
||||||
else
|
|
||||||
{
|
else {
|
||||||
Com_Printf ("Three keys down for a button!\n");
|
Com_Printf ("Three keys down for a button!\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (b->state & 1)
|
if (b->state & 1)
|
||||||
return; // still down
|
return; /* still down */
|
||||||
|
|
||||||
// save timestamp
|
/* save timestamp */
|
||||||
c = Cmd_Argv(2);
|
c = Cmd_Argv(2);
|
||||||
b->downtime = atoi(c);
|
b->downtime = atoi(c);
|
||||||
|
|
||||||
if (!b->downtime)
|
if (!b->downtime)
|
||||||
b->downtime = sys_frame_time - 100;
|
b->downtime = sys_frame_time - 100;
|
||||||
|
|
||||||
b->state |= 1 + 2; // down + impulse down
|
b->state |= 1 + 2; /* down + impulse down */
|
||||||
}
|
}
|
||||||
|
|
||||||
void KeyUp (kbutton_t *b)
|
void KeyUp (kbutton_t *b) {
|
||||||
{
|
|
||||||
int k;
|
int k;
|
||||||
char *c;
|
char *c;
|
||||||
unsigned uptime;
|
unsigned uptime;
|
||||||
|
|
||||||
c = Cmd_Argv(1);
|
c = Cmd_Argv(1);
|
||||||
|
|
||||||
if (c[0])
|
if (c[0])
|
||||||
k = atoi(c);
|
k = atoi(c);
|
||||||
else
|
|
||||||
{ // typed manually at the console, assume for unsticking, so clear all
|
else {
|
||||||
|
/* typed manually at the console, assume for unsticking, so clear all */
|
||||||
b->down[0] = b->down[1] = 0;
|
b->down[0] = b->down[1] = 0;
|
||||||
b->state = 4; // impulse up
|
b->state = 4; /* impulse up */
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (b->down[0] == k)
|
if (b->down[0] == k)
|
||||||
b->down[0] = 0;
|
b->down[0] = 0;
|
||||||
|
|
||||||
else if (b->down[1] == k)
|
else if (b->down[1] == k)
|
||||||
b->down[1] = 0;
|
b->down[1] = 0;
|
||||||
|
|
||||||
else
|
else
|
||||||
return; // key up without coresponding down (menu pass through)
|
return; /* key up without coresponding down (menu pass through) */
|
||||||
|
|
||||||
if (b->down[0] || b->down[1])
|
if (b->down[0] || b->down[1])
|
||||||
return; // some other key is still holding it down
|
return; /* some other key is still holding it down */
|
||||||
|
|
||||||
if (!(b->state & 1))
|
if (!(b->state & 1))
|
||||||
return; // still up (this should not happen)
|
return; /* still up (this should not happen) */
|
||||||
|
|
||||||
// save timestamp
|
/* save timestamp */
|
||||||
c = Cmd_Argv(2);
|
c = Cmd_Argv(2);
|
||||||
uptime = atoi(c);
|
uptime = atoi(c);
|
||||||
|
|
||||||
if (uptime)
|
if (uptime)
|
||||||
b->msec += uptime - b->downtime;
|
b->msec += uptime - b->downtime;
|
||||||
|
|
||||||
else
|
else
|
||||||
b->msec += 10;
|
b->msec += 10;
|
||||||
|
|
||||||
b->state &= ~1; // now up
|
b->state &= ~1; /* now up */
|
||||||
b->state |= 4; // impulse up
|
b->state |= 4; /* impulse up */
|
||||||
}
|
}
|
||||||
|
|
||||||
void IN_KLookDown (void) {KeyDown(&in_klook);}
|
void IN_KLookDown (void) {
|
||||||
void IN_KLookUp (void) {KeyUp(&in_klook);}
|
KeyDown(&in_klook);
|
||||||
void IN_UpDown(void) {KeyDown(&in_up);}
|
}
|
||||||
void IN_UpUp(void) {KeyUp(&in_up);}
|
void IN_KLookUp (void) {
|
||||||
void IN_DownDown(void) {KeyDown(&in_down);}
|
KeyUp(&in_klook);
|
||||||
void IN_DownUp(void) {KeyUp(&in_down);}
|
}
|
||||||
void IN_LeftDown(void) {KeyDown(&in_left);}
|
void IN_UpDown(void) {
|
||||||
void IN_LeftUp(void) {KeyUp(&in_left);}
|
KeyDown(&in_up);
|
||||||
void IN_RightDown(void) {KeyDown(&in_right);}
|
}
|
||||||
void IN_RightUp(void) {KeyUp(&in_right);}
|
void IN_UpUp(void) {
|
||||||
void IN_ForwardDown(void) {KeyDown(&in_forward);}
|
KeyUp(&in_up);
|
||||||
void IN_ForwardUp(void) {KeyUp(&in_forward);}
|
}
|
||||||
void IN_BackDown(void) {KeyDown(&in_back);}
|
void IN_DownDown(void) {
|
||||||
void IN_BackUp(void) {KeyUp(&in_back);}
|
KeyDown(&in_down);
|
||||||
void IN_LookupDown(void) {KeyDown(&in_lookup);}
|
}
|
||||||
void IN_LookupUp(void) {KeyUp(&in_lookup);}
|
void IN_DownUp(void) {
|
||||||
void IN_LookdownDown(void) {KeyDown(&in_lookdown);}
|
KeyUp(&in_down);
|
||||||
void IN_LookdownUp(void) {KeyUp(&in_lookdown);}
|
}
|
||||||
void IN_MoveleftDown(void) {KeyDown(&in_moveleft);}
|
void IN_LeftDown(void) {
|
||||||
void IN_MoveleftUp(void) {KeyUp(&in_moveleft);}
|
KeyDown(&in_left);
|
||||||
void IN_MoverightDown(void) {KeyDown(&in_moveright);}
|
}
|
||||||
void IN_MoverightUp(void) {KeyUp(&in_moveright);}
|
void IN_LeftUp(void) {
|
||||||
|
KeyUp(&in_left);
|
||||||
|
}
|
||||||
|
void IN_RightDown(void) {
|
||||||
|
KeyDown(&in_right);
|
||||||
|
}
|
||||||
|
void IN_RightUp(void) {
|
||||||
|
KeyUp(&in_right);
|
||||||
|
}
|
||||||
|
void IN_ForwardDown(void) {
|
||||||
|
KeyDown(&in_forward);
|
||||||
|
}
|
||||||
|
void IN_ForwardUp(void) {
|
||||||
|
KeyUp(&in_forward);
|
||||||
|
}
|
||||||
|
void IN_BackDown(void) {
|
||||||
|
KeyDown(&in_back);
|
||||||
|
}
|
||||||
|
void IN_BackUp(void) {
|
||||||
|
KeyUp(&in_back);
|
||||||
|
}
|
||||||
|
void IN_LookupDown(void) {
|
||||||
|
KeyDown(&in_lookup);
|
||||||
|
}
|
||||||
|
void IN_LookupUp(void) {
|
||||||
|
KeyUp(&in_lookup);
|
||||||
|
}
|
||||||
|
void IN_LookdownDown(void) {
|
||||||
|
KeyDown(&in_lookdown);
|
||||||
|
}
|
||||||
|
void IN_LookdownUp(void) {
|
||||||
|
KeyUp(&in_lookdown);
|
||||||
|
}
|
||||||
|
void IN_MoveleftDown(void) {
|
||||||
|
KeyDown(&in_moveleft);
|
||||||
|
}
|
||||||
|
void IN_MoveleftUp(void) {
|
||||||
|
KeyUp(&in_moveleft);
|
||||||
|
}
|
||||||
|
void IN_MoverightDown(void) {
|
||||||
|
KeyDown(&in_moveright);
|
||||||
|
}
|
||||||
|
void IN_MoverightUp(void) {
|
||||||
|
KeyUp(&in_moveright);
|
||||||
|
}
|
||||||
|
|
||||||
void IN_SpeedDown(void) {KeyDown(&in_speed);}
|
void IN_SpeedDown(void) {
|
||||||
void IN_SpeedUp(void) {KeyUp(&in_speed);}
|
KeyDown(&in_speed);
|
||||||
void IN_StrafeDown(void) {KeyDown(&in_strafe);}
|
}
|
||||||
void IN_StrafeUp(void) {KeyUp(&in_strafe);}
|
void IN_SpeedUp(void) {
|
||||||
|
KeyUp(&in_speed);
|
||||||
|
}
|
||||||
|
void IN_StrafeDown(void) {
|
||||||
|
KeyDown(&in_strafe);
|
||||||
|
}
|
||||||
|
void IN_StrafeUp(void) {
|
||||||
|
KeyUp(&in_strafe);
|
||||||
|
}
|
||||||
|
|
||||||
void IN_AttackDown(void) {KeyDown(&in_attack);}
|
void IN_AttackDown(void) {
|
||||||
void IN_AttackUp(void) {KeyUp(&in_attack);}
|
KeyDown(&in_attack);
|
||||||
|
}
|
||||||
|
void IN_AttackUp(void) {
|
||||||
|
KeyUp(&in_attack);
|
||||||
|
}
|
||||||
|
|
||||||
void IN_UseDown (void) {KeyDown(&in_use);}
|
void IN_UseDown (void) {
|
||||||
void IN_UseUp (void) {KeyUp(&in_use);}
|
KeyDown(&in_use);
|
||||||
|
}
|
||||||
|
void IN_UseUp (void) {
|
||||||
|
KeyUp(&in_use);
|
||||||
|
}
|
||||||
|
|
||||||
void IN_Impulse (void) {in_impulse=atoi(Cmd_Argv(1));}
|
void IN_Impulse (void) {
|
||||||
|
in_impulse=atoi(Cmd_Argv(1));
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
float CL_KeyState (kbutton_t *key) {
|
||||||
===============
|
|
||||||
CL_KeyState
|
|
||||||
|
|
||||||
Returns the fraction of the frame that the key was down
|
|
||||||
===============
|
|
||||||
*/
|
|
||||||
float CL_KeyState (kbutton_t *key)
|
|
||||||
{
|
|
||||||
float val;
|
float val;
|
||||||
int msec;
|
int msec;
|
||||||
|
|
||||||
key->state &= 1; // clear impulses
|
key->state &= 1; /* clear impulses */
|
||||||
|
|
||||||
msec = key->msec;
|
msec = key->msec;
|
||||||
key->msec = 0;
|
key->msec = 0;
|
||||||
|
|
||||||
if (key->state)
|
if (key->state) {
|
||||||
{ // still down
|
/* still down */
|
||||||
msec += sys_frame_time - key->downtime;
|
msec += sys_frame_time - key->downtime;
|
||||||
key->downtime = sys_frame_time;
|
key->downtime = sys_frame_time;
|
||||||
}
|
}
|
||||||
|
|
||||||
val = (float)msec / frame_msec;
|
val = (float)msec / frame_msec;
|
||||||
|
|
||||||
if (val < 0)
|
if (val < 0)
|
||||||
val = 0;
|
val = 0;
|
||||||
|
|
||||||
if (val > 1)
|
if (val > 1)
|
||||||
val = 1;
|
val = 1;
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//==========================================================================
|
|
||||||
|
|
||||||
cvar_t *cl_upspeed;
|
cvar_t *cl_upspeed;
|
||||||
cvar_t *cl_forwardspeed;
|
cvar_t *cl_forwardspeed;
|
||||||
cvar_t *cl_sidespeed;
|
cvar_t *cl_sidespeed;
|
||||||
|
@ -225,29 +278,24 @@ cvar_t *cl_anglespeedkey;
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
================
|
* Moves the local angle positions
|
||||||
CL_AdjustAngles
|
*/
|
||||||
|
void CL_AdjustAngles (void) {
|
||||||
Moves the local angle positions
|
|
||||||
================
|
|
||||||
*/
|
|
||||||
void CL_AdjustAngles (void)
|
|
||||||
{
|
|
||||||
float speed;
|
float speed;
|
||||||
float up, down;
|
float up, down;
|
||||||
|
|
||||||
if (in_speed.state & 1)
|
if (in_speed.state & 1)
|
||||||
speed = cls.frametime * cl_anglespeedkey->value;
|
speed = cls.frametime * cl_anglespeedkey->value;
|
||||||
|
|
||||||
else
|
else
|
||||||
speed = cls.frametime;
|
speed = cls.frametime;
|
||||||
|
|
||||||
if (!(in_strafe.state & 1))
|
if (!(in_strafe.state & 1)) {
|
||||||
{
|
|
||||||
cl.viewangles[YAW] -= speed*cl_yawspeed->value*CL_KeyState (&in_right);
|
cl.viewangles[YAW] -= speed*cl_yawspeed->value*CL_KeyState (&in_right);
|
||||||
cl.viewangles[YAW] += speed*cl_yawspeed->value*CL_KeyState (&in_left);
|
cl.viewangles[YAW] += speed*cl_yawspeed->value*CL_KeyState (&in_left);
|
||||||
}
|
}
|
||||||
if (in_klook.state & 1)
|
|
||||||
{
|
if (in_klook.state & 1) {
|
||||||
cl.viewangles[PITCH] -= speed*cl_pitchspeed->value * CL_KeyState (&in_forward);
|
cl.viewangles[PITCH] -= speed*cl_pitchspeed->value * CL_KeyState (&in_forward);
|
||||||
cl.viewangles[PITCH] += speed*cl_pitchspeed->value * CL_KeyState (&in_back);
|
cl.viewangles[PITCH] += speed*cl_pitchspeed->value * CL_KeyState (&in_back);
|
||||||
}
|
}
|
||||||
|
@ -260,21 +308,16 @@ void CL_AdjustAngles (void)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
================
|
* Send the intended movement message to the server
|
||||||
CL_BaseMove
|
*/
|
||||||
|
void CL_BaseMove (usercmd_t *cmd) {
|
||||||
Send the intended movement message to the server
|
|
||||||
================
|
|
||||||
*/
|
|
||||||
void CL_BaseMove (usercmd_t *cmd)
|
|
||||||
{
|
|
||||||
CL_AdjustAngles ();
|
CL_AdjustAngles ();
|
||||||
|
|
||||||
memset (cmd, 0, sizeof(*cmd));
|
memset (cmd, 0, sizeof(*cmd));
|
||||||
|
|
||||||
VectorCopy (cl.viewangles, cmd->angles);
|
VectorCopy (cl.viewangles, cmd->angles);
|
||||||
if (in_strafe.state & 1)
|
|
||||||
{
|
if (in_strafe.state & 1) {
|
||||||
cmd->sidemove += cl_sidespeed->value * CL_KeyState (&in_right);
|
cmd->sidemove += cl_sidespeed->value * CL_KeyState (&in_right);
|
||||||
cmd->sidemove -= cl_sidespeed->value * CL_KeyState (&in_left);
|
cmd->sidemove -= cl_sidespeed->value * CL_KeyState (&in_left);
|
||||||
}
|
}
|
||||||
|
@ -285,102 +328,93 @@ void CL_BaseMove (usercmd_t *cmd)
|
||||||
cmd->upmove += cl_upspeed->value * CL_KeyState (&in_up);
|
cmd->upmove += cl_upspeed->value * CL_KeyState (&in_up);
|
||||||
cmd->upmove -= cl_upspeed->value * CL_KeyState (&in_down);
|
cmd->upmove -= cl_upspeed->value * CL_KeyState (&in_down);
|
||||||
|
|
||||||
if (! (in_klook.state & 1) )
|
if (! (in_klook.state & 1) ) {
|
||||||
{
|
|
||||||
cmd->forwardmove += cl_forwardspeed->value * CL_KeyState (&in_forward);
|
cmd->forwardmove += cl_forwardspeed->value * CL_KeyState (&in_forward);
|
||||||
cmd->forwardmove -= cl_forwardspeed->value * CL_KeyState (&in_back);
|
cmd->forwardmove -= cl_forwardspeed->value * CL_KeyState (&in_back);
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
/* adjust for speed key / running */
|
||||||
// adjust for speed key / running
|
if ( (in_speed.state & 1) ^ (int)(cl_run->value) ) {
|
||||||
//
|
|
||||||
if ( (in_speed.state & 1) ^ (int)(cl_run->value) )
|
|
||||||
{
|
|
||||||
cmd->forwardmove *= 2;
|
cmd->forwardmove *= 2;
|
||||||
cmd->sidemove *= 2;
|
cmd->sidemove *= 2;
|
||||||
cmd->upmove *= 2;
|
cmd->upmove *= 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void CL_ClampPitch (void)
|
void CL_ClampPitch (void) {
|
||||||
{
|
|
||||||
float pitch;
|
float pitch;
|
||||||
|
|
||||||
pitch = SHORT2ANGLE(cl.frame.playerstate.pmove.delta_angles[PITCH]);
|
pitch = SHORT2ANGLE(cl.frame.playerstate.pmove.delta_angles[PITCH]);
|
||||||
|
|
||||||
if (pitch > 180)
|
if (pitch > 180)
|
||||||
pitch -= 360;
|
pitch -= 360;
|
||||||
|
|
||||||
if (cl.viewangles[PITCH] + pitch < -360)
|
if (cl.viewangles[PITCH] + pitch < -360)
|
||||||
cl.viewangles[PITCH] += 360; // wrapped
|
cl.viewangles[PITCH] += 360; /* wrapped */
|
||||||
|
|
||||||
if (cl.viewangles[PITCH] + pitch > 360)
|
if (cl.viewangles[PITCH] + pitch > 360)
|
||||||
cl.viewangles[PITCH] -= 360; // wrapped
|
cl.viewangles[PITCH] -= 360; /* wrapped */
|
||||||
|
|
||||||
if (cl.viewangles[PITCH] + pitch > 89)
|
if (cl.viewangles[PITCH] + pitch > 89)
|
||||||
cl.viewangles[PITCH] = 89 - pitch;
|
cl.viewangles[PITCH] = 89 - pitch;
|
||||||
|
|
||||||
if (cl.viewangles[PITCH] + pitch < -89)
|
if (cl.viewangles[PITCH] + pitch < -89)
|
||||||
cl.viewangles[PITCH] = -89 - pitch;
|
cl.viewangles[PITCH] = -89 - pitch;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
void CL_FinishMove (usercmd_t *cmd) {
|
||||||
==============
|
|
||||||
CL_FinishMove
|
|
||||||
==============
|
|
||||||
*/
|
|
||||||
void CL_FinishMove (usercmd_t *cmd)
|
|
||||||
{
|
|
||||||
int ms;
|
int ms;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
//
|
/* figure button bits */
|
||||||
// figure button bits
|
|
||||||
//
|
|
||||||
if ( in_attack.state & 3 )
|
if ( in_attack.state & 3 )
|
||||||
cmd->buttons |= BUTTON_ATTACK;
|
cmd->buttons |= BUTTON_ATTACK;
|
||||||
|
|
||||||
in_attack.state &= ~2;
|
in_attack.state &= ~2;
|
||||||
|
|
||||||
if (in_use.state & 3)
|
if (in_use.state & 3)
|
||||||
cmd->buttons |= BUTTON_USE;
|
cmd->buttons |= BUTTON_USE;
|
||||||
|
|
||||||
in_use.state &= ~2;
|
in_use.state &= ~2;
|
||||||
|
|
||||||
if (anykeydown && cls.key_dest == key_game)
|
if (anykeydown && cls.key_dest == key_game)
|
||||||
cmd->buttons |= BUTTON_ANY;
|
cmd->buttons |= BUTTON_ANY;
|
||||||
|
|
||||||
// send milliseconds of time to apply the move
|
/* send milliseconds of time to apply the move */
|
||||||
ms = cls.frametime * 1000;
|
ms = cls.frametime * 1000;
|
||||||
|
|
||||||
if (ms > 250)
|
if (ms > 250)
|
||||||
ms = 100; // time was unreasonable
|
ms = 100; /* time was unreasonable */
|
||||||
|
|
||||||
cmd->msec = ms;
|
cmd->msec = ms;
|
||||||
|
|
||||||
CL_ClampPitch ();
|
CL_ClampPitch ();
|
||||||
|
|
||||||
for (i=0 ; i<3 ; i++)
|
for (i=0 ; i<3 ; i++)
|
||||||
cmd->angles[i] = ANGLE2SHORT(cl.viewangles[i]);
|
cmd->angles[i] = ANGLE2SHORT(cl.viewangles[i]);
|
||||||
|
|
||||||
cmd->impulse = in_impulse;
|
cmd->impulse = in_impulse;
|
||||||
in_impulse = 0;
|
in_impulse = 0;
|
||||||
|
|
||||||
// send the ambient light level at the player's current position
|
/* send the ambient light level at the player's current position */
|
||||||
cmd->lightlevel = (byte)cl_lightlevel->value;
|
cmd->lightlevel = (byte)cl_lightlevel->value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
usercmd_t CL_CreateCmd (void) {
|
||||||
=================
|
|
||||||
CL_CreateCmd
|
|
||||||
=================
|
|
||||||
*/
|
|
||||||
usercmd_t CL_CreateCmd (void)
|
|
||||||
{
|
|
||||||
usercmd_t cmd;
|
usercmd_t cmd;
|
||||||
|
|
||||||
frame_msec = sys_frame_time - old_sys_frame_time;
|
frame_msec = sys_frame_time - old_sys_frame_time;
|
||||||
|
|
||||||
if (frame_msec < 1)
|
if (frame_msec < 1)
|
||||||
frame_msec = 1;
|
frame_msec = 1;
|
||||||
|
|
||||||
if (frame_msec > 200)
|
if (frame_msec > 200)
|
||||||
frame_msec = 200;
|
frame_msec = 200;
|
||||||
|
|
||||||
// get basic movement from keyboard
|
/* get basic movement from keyboard */
|
||||||
CL_BaseMove (&cmd);
|
CL_BaseMove (&cmd);
|
||||||
|
|
||||||
// allow mice or other external controllers to add to the move
|
/* allow mice or other external controllers to add to the move */
|
||||||
IN_Move (&cmd);
|
IN_Move (&cmd);
|
||||||
|
|
||||||
CL_FinishMove (&cmd);
|
CL_FinishMove (&cmd);
|
||||||
|
@ -390,19 +424,11 @@ usercmd_t CL_CreateCmd (void)
|
||||||
return cmd;
|
return cmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void IN_CenterView (void) {
|
||||||
void IN_CenterView (void)
|
|
||||||
{
|
|
||||||
cl.viewangles[PITCH] = -SHORT2ANGLE(cl.frame.playerstate.pmove.delta_angles[PITCH]);
|
cl.viewangles[PITCH] = -SHORT2ANGLE(cl.frame.playerstate.pmove.delta_angles[PITCH]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
void CL_InitInput (void) {
|
||||||
============
|
|
||||||
CL_InitInput
|
|
||||||
============
|
|
||||||
*/
|
|
||||||
void CL_InitInput (void)
|
|
||||||
{
|
|
||||||
Cmd_AddCommand ("centerview",IN_CenterView);
|
Cmd_AddCommand ("centerview",IN_CenterView);
|
||||||
|
|
||||||
Cmd_AddCommand ("+moveup",IN_UpDown);
|
Cmd_AddCommand ("+moveup",IN_UpDown);
|
||||||
|
@ -440,15 +466,7 @@ void CL_InitInput (void)
|
||||||
cl_nodelta = Cvar_Get ("cl_nodelta", "0", 0);
|
cl_nodelta = Cvar_Get ("cl_nodelta", "0", 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CL_SendCmd (void) {
|
||||||
|
|
||||||
/*
|
|
||||||
=================
|
|
||||||
CL_SendCmd
|
|
||||||
=================
|
|
||||||
*/
|
|
||||||
void CL_SendCmd (void)
|
|
||||||
{
|
|
||||||
sizebuf_t buf;
|
sizebuf_t buf;
|
||||||
byte data[128];
|
byte data[128];
|
||||||
int i;
|
int i;
|
||||||
|
@ -456,12 +474,12 @@ void CL_SendCmd (void)
|
||||||
usercmd_t nullcmd;
|
usercmd_t nullcmd;
|
||||||
int checksumIndex;
|
int checksumIndex;
|
||||||
|
|
||||||
// build a command even if not connected
|
/* build a command even if not connected */
|
||||||
|
|
||||||
// save this command off for prediction
|
/* save this command off for prediction */
|
||||||
i = cls.netchan.outgoing_sequence & (CMD_BACKUP-1);
|
i = cls.netchan.outgoing_sequence & (CMD_BACKUP-1);
|
||||||
cmd = &cl.cmds[i];
|
cmd = &cl.cmds[i];
|
||||||
cl.cmd_time[i] = cls.realtime; // for netgraph ping calculation
|
cl.cmd_time[i] = cls.realtime; /* for netgraph ping calculation */
|
||||||
|
|
||||||
*cmd = CL_CreateCmd ();
|
*cmd = CL_CreateCmd ();
|
||||||
|
|
||||||
|
@ -470,16 +488,15 @@ void CL_SendCmd (void)
|
||||||
if (cls.state == ca_disconnected || cls.state == ca_connecting)
|
if (cls.state == ca_disconnected || cls.state == ca_connecting)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if ( cls.state == ca_connected)
|
if ( cls.state == ca_connected) {
|
||||||
{
|
|
||||||
if (cls.netchan.message.cursize || curtime - cls.netchan.last_sent > 100 )
|
if (cls.netchan.message.cursize || curtime - cls.netchan.last_sent > 100 )
|
||||||
Netchan_Transmit (&cls.netchan, 0, buf.data);
|
Netchan_Transmit (&cls.netchan, 0, buf.data);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// send a userinfo update if needed
|
/* send a userinfo update if needed */
|
||||||
if (userinfo_modified)
|
if (userinfo_modified) {
|
||||||
{
|
|
||||||
CL_FixUpGender();
|
CL_FixUpGender();
|
||||||
userinfo_modified = false;
|
userinfo_modified = false;
|
||||||
MSG_WriteByte (&cls.netchan.message, clc_userinfo);
|
MSG_WriteByte (&cls.netchan.message, clc_userinfo);
|
||||||
|
@ -489,27 +506,28 @@ void CL_SendCmd (void)
|
||||||
SZ_Init (&buf, data, sizeof(data));
|
SZ_Init (&buf, data, sizeof(data));
|
||||||
|
|
||||||
if (cmd->buttons && cl.cinematictime > 0 && !cl.attractloop
|
if (cmd->buttons && cl.cinematictime > 0 && !cl.attractloop
|
||||||
&& cls.realtime - cl.cinematictime > 1000)
|
&& cls.realtime - cl.cinematictime > 1000) {
|
||||||
{ // skip the rest of the cinematic
|
/* skip the rest of the cinematic */
|
||||||
SCR_FinishCinematic ();
|
SCR_FinishCinematic ();
|
||||||
}
|
}
|
||||||
|
|
||||||
// begin a client move command
|
/* begin a client move command */
|
||||||
MSG_WriteByte (&buf, clc_move);
|
MSG_WriteByte (&buf, clc_move);
|
||||||
|
|
||||||
// save the position for a checksum byte
|
/* save the position for a checksum byte */
|
||||||
checksumIndex = buf.cursize;
|
checksumIndex = buf.cursize;
|
||||||
MSG_WriteByte (&buf, 0);
|
MSG_WriteByte (&buf, 0);
|
||||||
|
|
||||||
// let the server know what the last frame we
|
/* let the server know what the last frame we
|
||||||
// got was, so the next message can be delta compressed
|
got was, so the next message can be delta compressed */
|
||||||
if (cl_nodelta->value || !cl.frame.valid || cls.demowaiting)
|
if (cl_nodelta->value || !cl.frame.valid || cls.demowaiting)
|
||||||
MSG_WriteLong (&buf, -1); // no compression
|
MSG_WriteLong (&buf, -1); /* no compression */
|
||||||
|
|
||||||
else
|
else
|
||||||
MSG_WriteLong (&buf, cl.frame.serverframe);
|
MSG_WriteLong (&buf, cl.frame.serverframe);
|
||||||
|
|
||||||
// send this and the previous cmds in the message, so
|
/* send this and the previous cmds in the message, so
|
||||||
// if the last packet was dropped, it can be recovered
|
if the last packet was dropped, it can be recovered */
|
||||||
i = (cls.netchan.outgoing_sequence-2) & (CMD_BACKUP-1);
|
i = (cls.netchan.outgoing_sequence-2) & (CMD_BACKUP-1);
|
||||||
cmd = &cl.cmds[i];
|
cmd = &cl.cmds[i];
|
||||||
memset (&nullcmd, 0, sizeof(nullcmd));
|
memset (&nullcmd, 0, sizeof(nullcmd));
|
||||||
|
@ -525,15 +543,11 @@ void CL_SendCmd (void)
|
||||||
cmd = &cl.cmds[i];
|
cmd = &cl.cmds[i];
|
||||||
MSG_WriteDeltaUsercmd (&buf, oldcmd, cmd);
|
MSG_WriteDeltaUsercmd (&buf, oldcmd, cmd);
|
||||||
|
|
||||||
// calculate a checksum over the move commands
|
/* calculate a checksum over the move commands */
|
||||||
buf.data[checksumIndex] = COM_BlockSequenceCRCByte(
|
buf.data[checksumIndex] = COM_BlockSequenceCRCByte(
|
||||||
buf.data + checksumIndex + 1, buf.cursize - checksumIndex - 1,
|
buf.data + checksumIndex + 1, buf.cursize - checksumIndex - 1,
|
||||||
cls.netchan.outgoing_sequence);
|
cls.netchan.outgoing_sequence);
|
||||||
|
|
||||||
//
|
/* deliver the message */
|
||||||
// deliver the message
|
|
||||||
//
|
|
||||||
Netchan_Transmit (&cls.netchan, buf.cursize, buf.data);
|
Netchan_Transmit (&cls.netchan, buf.cursize, buf.data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue