mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
Much diff reduction.
In the process, found a bug where the yaw speed was not being limited as desired.
This commit is contained in:
parent
88005f6710
commit
245cfb0b6f
5 changed files with 197 additions and 169 deletions
|
@ -131,12 +131,28 @@ typedef struct
|
|||
int signon; // 0 to SIGNONS
|
||||
struct qsocket_s *netcon;
|
||||
sizebuf_t message; // writing buffer to send to server
|
||||
|
||||
int sv_cshifts;
|
||||
} client_static_t;
|
||||
|
||||
extern client_static_t cls;
|
||||
|
||||
#define FPD_NO_MACROS 0x0001 // Many clients ignore this, and it isn't used, but let's honor it
|
||||
#define FPD_NO_TIMERS 0x0002 // We never allow timers anyway
|
||||
#define FPD_NO_STRIGGER 0x0004 // Don't have soundtrigger yet, but this disables it
|
||||
#define FPD_HIDE_PERCENTE 0x0020 // Ditto
|
||||
#define FPD_HIDE_POINT 0x0080 // Can ignore if we do visibility checking for point
|
||||
#define FPD_NO_TEAMSKIN 0x0100 // Disable skin force
|
||||
#define FPD_NO_TEAMCOLOR 0x0200 // Disable color force
|
||||
#define FPD_HIDE_ITEM 0x0400 // No idea what this does
|
||||
#define FPD_LIMIT_PITCH 0x4000 // Limit pitchspeed
|
||||
#define FPD_LIMIT_YAW 0x8000 // Limit yawspeed
|
||||
|
||||
#define FPD_DEFAULT (FPD_HIDE_PERCENTE | FPD_NO_TEAMSKIN)
|
||||
|
||||
// These limits prevent a usable RJ script, requiring > 0.1 sec of turning time.
|
||||
#define FPD_MAXPITCH 1000
|
||||
#define FPD_MAXYAW 2000
|
||||
|
||||
|
||||
/*
|
||||
the client_state_t structure is wiped completely at every
|
||||
server signon
|
||||
|
@ -220,6 +236,10 @@ typedef struct
|
|||
scoreboard_t *scores; // [cl.maxclients]
|
||||
|
||||
unsigned protocol;
|
||||
|
||||
int sv_cshifts;
|
||||
int chase;
|
||||
int fpd;
|
||||
} client_state_t;
|
||||
|
||||
|
||||
|
@ -309,7 +329,7 @@ void CL_NextDemo (void);
|
|||
|
||||
|
||||
// cl_input
|
||||
void CL_InitInput (void);
|
||||
void CL_Input_Init (void);
|
||||
void CL_SendCmd (void);
|
||||
void CL_SendMove (usercmd_t *cmd);
|
||||
|
||||
|
|
|
@ -67,7 +67,6 @@ static __attribute__ ((used)) const char rcsid[] =
|
|||
state bit 2 is edge triggered on the down to up transition
|
||||
*/
|
||||
|
||||
|
||||
kbutton_t in_left, in_right, in_forward, in_back;
|
||||
kbutton_t in_lookup, in_lookdown, in_moveleft, in_moveright;
|
||||
kbutton_t in_use, in_jump, in_attack;
|
||||
|
@ -163,7 +162,7 @@ static void
|
|||
IN_MLookRelease (void)
|
||||
{
|
||||
KeyRelease (&in_mlook);
|
||||
if (!(in_mlook.state & 1) && lookspring->int_val)
|
||||
if (!freelook && lookspring->int_val)
|
||||
V_StartPitchDrift ();
|
||||
}
|
||||
|
||||
|
@ -419,37 +418,46 @@ cvar_t *cl_yawspeed;
|
|||
static void
|
||||
CL_AdjustAngles (void)
|
||||
{
|
||||
float speed, up, down;
|
||||
float down, up;
|
||||
float pitchspeed, yawspeed;
|
||||
|
||||
if (in_speed.state & 1)
|
||||
speed = host_frametime * cl_anglespeedkey->value;
|
||||
else
|
||||
speed = host_frametime;
|
||||
pitchspeed = cl_pitchspeed->value;
|
||||
yawspeed = cl_yawspeed->value;
|
||||
|
||||
if (in_speed.state & 1) {
|
||||
pitchspeed *= cl_anglespeedkey->value;
|
||||
yawspeed *= cl_anglespeedkey->value;
|
||||
}
|
||||
|
||||
if ((cl.fpd & FPD_LIMIT_PITCH) && pitchspeed > FPD_MAXPITCH)
|
||||
pitchspeed = FPD_MAXPITCH;
|
||||
if ((cl.fpd & FPD_LIMIT_YAW) && yawspeed > FPD_MAXYAW)
|
||||
yawspeed = FPD_MAXYAW;
|
||||
|
||||
pitchspeed *= host_frametime;
|
||||
yawspeed *= host_frametime;
|
||||
|
||||
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_left);
|
||||
cl.viewangles[YAW] -= yawspeed * CL_KeyState (&in_right);
|
||||
cl.viewangles[YAW] += yawspeed * CL_KeyState (&in_left);
|
||||
cl.viewangles[YAW] = anglemod (cl.viewangles[YAW]);
|
||||
}
|
||||
if (in_klook.state & 1) {
|
||||
V_StopPitchDrift ();
|
||||
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] -= pitchspeed * CL_KeyState (&in_forward);
|
||||
cl.viewangles[PITCH] += pitchspeed * CL_KeyState (&in_back);
|
||||
}
|
||||
|
||||
up = CL_KeyState (&in_lookup);
|
||||
down = CL_KeyState (&in_lookdown);
|
||||
|
||||
cl.viewangles[PITCH] -= speed * cl_pitchspeed->value * up;
|
||||
cl.viewangles[PITCH] += speed * cl_pitchspeed->value * down;
|
||||
cl.viewangles[PITCH] -= pitchspeed * up;
|
||||
cl.viewangles[PITCH] += pitchspeed * down;
|
||||
|
||||
if (up || down)
|
||||
V_StopPitchDrift ();
|
||||
|
||||
// FIXME: Need to clean up view angle limits
|
||||
if (cl.viewangles[PITCH] > 80)
|
||||
cl.viewangles[PITCH] = 80;
|
||||
if (cl.viewangles[PITCH] < -70)
|
||||
|
@ -459,7 +467,6 @@ CL_AdjustAngles (void)
|
|||
cl.viewangles[ROLL] = 50;
|
||||
if (cl.viewangles[ROLL] < -50)
|
||||
cl.viewangles[ROLL] = -50;
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -509,7 +516,8 @@ CL_BaseMove (usercmd_t *cmd)
|
|||
IN_Move ();
|
||||
|
||||
// adjust for chase camera angles
|
||||
if (chase_active->int_val == 2 || chase_active->int_val == 3) {
|
||||
if (cl.chase
|
||||
&& (chase_active->int_val == 2 || chase_active->int_val == 3)) {
|
||||
vec3_t forward, right, up, f, r;
|
||||
vec3_t dir = {0, 0, 0};
|
||||
|
||||
|
@ -594,7 +602,7 @@ CL_SendMove (usercmd_t *cmd)
|
|||
}
|
||||
|
||||
void
|
||||
CL_InitInput (void)
|
||||
CL_Input_Init (void)
|
||||
{
|
||||
Cmd_AddCommand ("+moveup", IN_UpPress, "When active the player is "
|
||||
"swimming up in a liquid");
|
||||
|
|
|
@ -156,6 +156,7 @@ CL_ClearState (void)
|
|||
|
||||
// wipe the entire cl structure
|
||||
memset (&cl, 0, sizeof (cl));
|
||||
cl.chase = 1;
|
||||
r_force_fullscreen = 0;
|
||||
|
||||
CL_Init_Entity (&cl.viewent);
|
||||
|
@ -765,7 +766,7 @@ CL_Init (void)
|
|||
{
|
||||
SZ_Alloc (&cls.message, 1024);
|
||||
|
||||
CL_InitInput ();
|
||||
CL_Input_Init ();
|
||||
CL_TEnts_Init ();
|
||||
CL_ClearState ();
|
||||
|
||||
|
|
|
@ -89,10 +89,10 @@ int in_impulse;
|
|||
|
||||
|
||||
static void
|
||||
KeyDown (kbutton_t *b)
|
||||
KeyPress (kbutton_t *b)
|
||||
{
|
||||
int k;
|
||||
const char *c;
|
||||
int k;
|
||||
|
||||
c = Cmd_Argv (1);
|
||||
if (c[0])
|
||||
|
@ -119,10 +119,10 @@ KeyDown (kbutton_t *b)
|
|||
}
|
||||
|
||||
static void
|
||||
KeyUp (kbutton_t *b)
|
||||
KeyRelease (kbutton_t *b)
|
||||
{
|
||||
int k;
|
||||
const char *c;
|
||||
int k;
|
||||
|
||||
c = Cmd_Argv (1);
|
||||
if (c[0])
|
||||
|
@ -153,209 +153,209 @@ KeyUp (kbutton_t *b)
|
|||
}
|
||||
|
||||
static void
|
||||
IN_KLookDown (void)
|
||||
IN_KLookPress (void)
|
||||
{
|
||||
KeyDown (&in_klook);
|
||||
KeyPress (&in_klook);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_KLookUp (void)
|
||||
IN_KLookRelease (void)
|
||||
{
|
||||
KeyUp (&in_klook);
|
||||
KeyRelease (&in_klook);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_MLookDown (void)
|
||||
IN_MLookPress (void)
|
||||
{
|
||||
KeyDown (&in_mlook);
|
||||
KeyPress (&in_mlook);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_MLookUp (void)
|
||||
IN_MLookRelease (void)
|
||||
{
|
||||
KeyUp (&in_mlook);
|
||||
KeyRelease (&in_mlook);
|
||||
if (!freelook && lookspring->int_val)
|
||||
V_StartPitchDrift ();
|
||||
}
|
||||
|
||||
static void
|
||||
IN_UpDown (void)
|
||||
IN_UpPress (void)
|
||||
{
|
||||
KeyDown (&in_up);
|
||||
KeyPress (&in_up);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_UpUp (void)
|
||||
IN_UpRelease (void)
|
||||
{
|
||||
KeyUp (&in_up);
|
||||
KeyRelease (&in_up);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_DownDown (void)
|
||||
IN_DownPress (void)
|
||||
{
|
||||
KeyDown (&in_down);
|
||||
KeyPress (&in_down);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_DownUp (void)
|
||||
IN_DownRelease (void)
|
||||
{
|
||||
KeyUp (&in_down);
|
||||
KeyRelease (&in_down);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_LeftDown (void)
|
||||
IN_LeftPress (void)
|
||||
{
|
||||
KeyDown (&in_left);
|
||||
KeyPress (&in_left);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_LeftUp (void)
|
||||
IN_LeftRelease (void)
|
||||
{
|
||||
KeyUp (&in_left);
|
||||
KeyRelease (&in_left);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_RightDown (void)
|
||||
IN_RightPress (void)
|
||||
{
|
||||
KeyDown (&in_right);
|
||||
KeyPress (&in_right);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_RightUp (void)
|
||||
IN_RightRelease (void)
|
||||
{
|
||||
KeyUp (&in_right);
|
||||
KeyRelease (&in_right);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_ForwardDown (void)
|
||||
IN_ForwardPress (void)
|
||||
{
|
||||
KeyDown (&in_forward);
|
||||
KeyPress (&in_forward);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_ForwardUp (void)
|
||||
IN_ForwardRelease (void)
|
||||
{
|
||||
KeyUp (&in_forward);
|
||||
KeyRelease (&in_forward);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_BackDown (void)
|
||||
IN_BackPress (void)
|
||||
{
|
||||
KeyDown (&in_back);
|
||||
KeyPress (&in_back);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_BackUp (void)
|
||||
IN_BackRelease (void)
|
||||
{
|
||||
KeyUp (&in_back);
|
||||
KeyRelease (&in_back);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_LookupDown (void)
|
||||
IN_LookupPress (void)
|
||||
{
|
||||
KeyDown (&in_lookup);
|
||||
KeyPress (&in_lookup);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_LookupUp (void)
|
||||
IN_LookupRelease (void)
|
||||
{
|
||||
KeyUp (&in_lookup);
|
||||
KeyRelease (&in_lookup);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_LookdownDown (void)
|
||||
IN_LookdownPress (void)
|
||||
{
|
||||
KeyDown (&in_lookdown);
|
||||
KeyPress (&in_lookdown);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_LookdownUp (void)
|
||||
IN_LookdownRelease (void)
|
||||
{
|
||||
KeyUp (&in_lookdown);
|
||||
KeyRelease (&in_lookdown);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_MoveleftDown (void)
|
||||
IN_MoveleftPress (void)
|
||||
{
|
||||
KeyDown (&in_moveleft);
|
||||
KeyPress (&in_moveleft);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_MoveleftUp (void)
|
||||
IN_MoveleftRelease (void)
|
||||
{
|
||||
KeyUp (&in_moveleft);
|
||||
KeyRelease (&in_moveleft);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_MoverightDown (void)
|
||||
IN_MoverightPress (void)
|
||||
{
|
||||
KeyDown (&in_moveright);
|
||||
KeyPress (&in_moveright);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_MoverightUp (void)
|
||||
IN_MoverightRelease (void)
|
||||
{
|
||||
KeyUp (&in_moveright);
|
||||
KeyRelease (&in_moveright);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_SpeedDown (void)
|
||||
IN_SpeedPress (void)
|
||||
{
|
||||
KeyDown (&in_speed);
|
||||
KeyPress (&in_speed);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_SpeedUp (void)
|
||||
IN_SpeedRelease (void)
|
||||
{
|
||||
KeyUp (&in_speed);
|
||||
KeyRelease (&in_speed);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_StrafeDown (void)
|
||||
IN_StrafePress (void)
|
||||
{
|
||||
KeyDown (&in_strafe);
|
||||
KeyPress (&in_strafe);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_StrafeUp (void)
|
||||
IN_StrafeRelease (void)
|
||||
{
|
||||
KeyUp (&in_strafe);
|
||||
KeyRelease (&in_strafe);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_AttackDown (void)
|
||||
IN_AttackPress (void)
|
||||
{
|
||||
KeyDown (&in_attack);
|
||||
KeyPress (&in_attack);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_AttackUp (void)
|
||||
IN_AttackRelease (void)
|
||||
{
|
||||
KeyUp (&in_attack);
|
||||
KeyRelease (&in_attack);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_UseDown (void)
|
||||
IN_UsePress (void)
|
||||
{
|
||||
KeyDown (&in_use);
|
||||
KeyPress (&in_use);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_UseUp (void)
|
||||
IN_UseRelease (void)
|
||||
{
|
||||
KeyUp (&in_use);
|
||||
KeyRelease (&in_use);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_JumpDown (void)
|
||||
IN_JumpPress (void)
|
||||
{
|
||||
KeyDown (&in_jump);
|
||||
KeyPress (&in_jump);
|
||||
}
|
||||
|
||||
static void
|
||||
IN_JumpUp (void)
|
||||
IN_JumpRelease (void)
|
||||
{
|
||||
KeyUp (&in_jump);
|
||||
KeyRelease (&in_jump);
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -376,7 +376,7 @@ IN_Impulse (void)
|
|||
0 if held then released, and
|
||||
1.0 if held for the entire time
|
||||
*/
|
||||
float // FIXME: float? for 4 states? Ugh!
|
||||
float
|
||||
CL_KeyState (kbutton_t *key)
|
||||
{
|
||||
float val;
|
||||
|
@ -417,8 +417,6 @@ CL_KeyState (kbutton_t *key)
|
|||
return val;
|
||||
}
|
||||
|
||||
//==========================================================================
|
||||
|
||||
cvar_t *cl_anglespeedkey;
|
||||
cvar_t *cl_backspeed;
|
||||
cvar_t *cl_forwardspeed;
|
||||
|
@ -449,29 +447,28 @@ CL_AdjustAngles (void)
|
|||
|
||||
if ((cl.fpd & FPD_LIMIT_PITCH) && pitchspeed > FPD_MAXPITCH)
|
||||
pitchspeed = FPD_MAXPITCH;
|
||||
if ((cl.fpd & FPD_LIMIT_YAW) && pitchspeed > FPD_MAXYAW)
|
||||
pitchspeed = FPD_MAXYAW;
|
||||
if ((cl.fpd & FPD_LIMIT_YAW) && yawspeed > FPD_MAXYAW)
|
||||
yawspeed = FPD_MAXYAW;
|
||||
|
||||
pitchspeed *= host_frametime;
|
||||
yawspeed *= host_frametime;
|
||||
|
||||
if (!(in_strafe.state & 1)) {
|
||||
cl.viewangles[YAW] -=
|
||||
host_frametime * yawspeed * CL_KeyState (&in_right);
|
||||
cl.viewangles[YAW] +=
|
||||
host_frametime * yawspeed * CL_KeyState (&in_left);
|
||||
cl.viewangles[YAW] -= yawspeed * CL_KeyState (&in_right);
|
||||
cl.viewangles[YAW] += yawspeed * CL_KeyState (&in_left);
|
||||
cl.viewangles[YAW] = anglemod (cl.viewangles[YAW]);
|
||||
}
|
||||
if (in_klook.state & 1) {
|
||||
V_StopPitchDrift ();
|
||||
cl.viewangles[PITCH] -=
|
||||
host_frametime * pitchspeed * CL_KeyState (&in_forward);
|
||||
cl.viewangles[PITCH] +=
|
||||
host_frametime * pitchspeed * CL_KeyState (&in_back);
|
||||
cl.viewangles[PITCH] -= pitchspeed * CL_KeyState (&in_forward);
|
||||
cl.viewangles[PITCH] += pitchspeed * CL_KeyState (&in_back);
|
||||
}
|
||||
|
||||
up = CL_KeyState (&in_lookup);
|
||||
down = CL_KeyState (&in_lookdown);
|
||||
|
||||
cl.viewangles[PITCH] -= host_frametime * pitchspeed * up;
|
||||
cl.viewangles[PITCH] += host_frametime * pitchspeed * down;
|
||||
cl.viewangles[PITCH] -= pitchspeed * up;
|
||||
cl.viewangles[PITCH] += pitchspeed * down;
|
||||
|
||||
if (up || down)
|
||||
V_StopPitchDrift ();
|
||||
|
@ -534,9 +531,10 @@ CL_BaseMove (usercmd_t *cmd)
|
|||
|
||||
// adjust for chase camera angles
|
||||
if (cl.chase
|
||||
&& (chase_active->int_val == 2 || chase_active->int_val == 3))
|
||||
{
|
||||
vec3_t dir = {0,0,0}, forward, right, up, f, r;
|
||||
&& (chase_active->int_val == 2 || chase_active->int_val == 3)) {
|
||||
vec3_t forward, right, up, f, r;
|
||||
vec3_t dir = {0, 0, 0};
|
||||
|
||||
dir[1] = r_refdef.viewangles[1] - cl.viewangles[1];
|
||||
AngleVectors (dir, forward, right, up);
|
||||
VectorScale (forward, cmd->forwardmove, f);
|
||||
|
@ -767,77 +765,78 @@ CL_SendCmd (void)
|
|||
void
|
||||
CL_Input_Init (void)
|
||||
{
|
||||
Cmd_AddCommand ("+moveup", IN_UpDown, "When active the player is swimming "
|
||||
"up in a liquid");
|
||||
Cmd_AddCommand ("-moveup", IN_UpUp, "When active the player is not "
|
||||
Cmd_AddCommand ("+moveup", IN_UpPress, "When active the player is "
|
||||
"swimming up in a liquid");
|
||||
Cmd_AddCommand ("+movedown", IN_DownDown, "When active the player is "
|
||||
Cmd_AddCommand ("-moveup", IN_UpRelease, "When active the player is not "
|
||||
"swimming up in a liquid");
|
||||
Cmd_AddCommand ("+movedown", IN_DownPress, "When active the player is "
|
||||
"swimming down in a liquid");
|
||||
Cmd_AddCommand ("-movedown", IN_DownUp, "When active the player is not "
|
||||
"swimming down in a liquid");
|
||||
Cmd_AddCommand ("+left", IN_LeftDown, "When active the player is turning "
|
||||
Cmd_AddCommand ("-movedown", IN_DownRelease, "When active the player is "
|
||||
"not swimming down in a liquid");
|
||||
Cmd_AddCommand ("+left", IN_LeftPress, "When active the player is turning "
|
||||
"left");
|
||||
Cmd_AddCommand ("-left", IN_LeftUp, "When active the player is not turning"
|
||||
" left");
|
||||
Cmd_AddCommand ("+right", IN_RightDown, "When active the player is "
|
||||
Cmd_AddCommand ("-left", IN_LeftRelease, "When active the player is not "
|
||||
"turning left");
|
||||
Cmd_AddCommand ("+right", IN_RightPress, "When active the player is "
|
||||
"turning right");
|
||||
Cmd_AddCommand ("-right", IN_RightUp, "When active the player is not "
|
||||
Cmd_AddCommand ("-right", IN_RightRelease, "When active the player is not "
|
||||
"turning right");
|
||||
Cmd_AddCommand ("+forward", IN_ForwardDown, "When active the player is "
|
||||
Cmd_AddCommand ("+forward", IN_ForwardPress, "When active the player is "
|
||||
"moving forward");
|
||||
Cmd_AddCommand ("-forward", IN_ForwardUp, "When active the player is not "
|
||||
"moving forward");
|
||||
Cmd_AddCommand ("+back", IN_BackDown, "When active the player is moving "
|
||||
Cmd_AddCommand ("-forward", IN_ForwardRelease, "When active the player is "
|
||||
"not moving forward");
|
||||
Cmd_AddCommand ("+back", IN_BackPress, "When active the player is moving "
|
||||
"backwards");
|
||||
Cmd_AddCommand ("-back", IN_BackUp, "When active the player is not "
|
||||
Cmd_AddCommand ("-back", IN_BackRelease, "When active the player is not "
|
||||
"moving backwards");
|
||||
Cmd_AddCommand ("+lookup", IN_LookupDown, "When active the player's view "
|
||||
Cmd_AddCommand ("+lookup", IN_LookupPress, "When active the player's view "
|
||||
"is looking up");
|
||||
Cmd_AddCommand ("-lookup", IN_LookupUp, "When active the player's view is "
|
||||
"not looking up");
|
||||
Cmd_AddCommand ("+lookdown", IN_LookdownDown, "When active the player's "
|
||||
"view is looking down");
|
||||
Cmd_AddCommand ("-lookdown", IN_LookdownUp, "When active the player's "
|
||||
Cmd_AddCommand ("-lookup", IN_LookupRelease, "When active the player's "
|
||||
"view is not looking up");
|
||||
Cmd_AddCommand ("+strafe", IN_StrafeDown, "When active, +left and +right "
|
||||
Cmd_AddCommand ("+lookdown", IN_LookdownPress, "When active the player's "
|
||||
"view is looking down");
|
||||
Cmd_AddCommand ("-lookdown", IN_LookdownRelease, "When active the "
|
||||
"player's view is not looking up");
|
||||
Cmd_AddCommand ("+strafe", IN_StrafePress, "When active, +left and +right "
|
||||
"function like +moveleft and +moveright");
|
||||
Cmd_AddCommand ("-strafe", IN_StrafeUp, "When active, +left and +right "
|
||||
"stop functioning like +moveleft and +moveright");
|
||||
Cmd_AddCommand ("+moveleft", IN_MoveleftDown, "When active the player is "
|
||||
Cmd_AddCommand ("-strafe", IN_StrafeRelease, "When active, +left and "
|
||||
"+right stop functioning like +moveleft and +moveright");
|
||||
Cmd_AddCommand ("+moveleft", IN_MoveleftPress, "When active the player is "
|
||||
"strafing left");
|
||||
Cmd_AddCommand ("-moveleft", IN_MoveleftUp, "When active the player is "
|
||||
"not strafing left");
|
||||
Cmd_AddCommand ("+moveright", IN_MoverightDown, "When active the player "
|
||||
Cmd_AddCommand ("-moveleft", IN_MoveleftRelease, "When active the player "
|
||||
"is not strafing left");
|
||||
Cmd_AddCommand ("+moveright", IN_MoverightPress, "When active the player "
|
||||
"is strafing right");
|
||||
Cmd_AddCommand ("-moveright", IN_MoverightUp, "When active the player is "
|
||||
"not strafing right");
|
||||
Cmd_AddCommand ("+speed", IN_SpeedDown, "When active the player is "
|
||||
Cmd_AddCommand ("-moveright", IN_MoverightRelease, "When active the "
|
||||
"player is not strafing right");
|
||||
Cmd_AddCommand ("+speed", IN_SpeedPress, "When active the player is "
|
||||
"running");
|
||||
Cmd_AddCommand ("-speed", IN_SpeedUp, "When active the player is not "
|
||||
Cmd_AddCommand ("-speed", IN_SpeedRelease, "When active the player is not "
|
||||
"running");
|
||||
Cmd_AddCommand ("+attack", IN_AttackDown, "When active player is "
|
||||
Cmd_AddCommand ("+attack", IN_AttackPress, "When active player is "
|
||||
"firing/using current weapon");
|
||||
Cmd_AddCommand ("-attack", IN_AttackUp, "When active player is not "
|
||||
Cmd_AddCommand ("-attack", IN_AttackRelease, "When active player is not "
|
||||
"firing/using current weapon");
|
||||
Cmd_AddCommand ("+use", IN_UseDown, "Non-functional. Left over command "
|
||||
Cmd_AddCommand ("+use", IN_UsePress, "Non-functional. Left over command "
|
||||
"for opening doors and triggering switches");
|
||||
Cmd_AddCommand ("-use", IN_UseUp, "Non-functional. Left over command for "
|
||||
"opening doors and triggering switches");
|
||||
Cmd_AddCommand ("+jump", IN_JumpDown, "When active the player is jumping");
|
||||
Cmd_AddCommand ("-jump", IN_JumpUp, "When active the player is not "
|
||||
Cmd_AddCommand ("-use", IN_UseRelease, "Non-functional. Left over command "
|
||||
"for opening doors and triggering switches");
|
||||
Cmd_AddCommand ("+jump", IN_JumpPress, "When active the player is "
|
||||
"jumping");
|
||||
Cmd_AddCommand ("-jump", IN_JumpRelease, "When active the player is not "
|
||||
"jumping");
|
||||
Cmd_AddCommand ("impulse", IN_Impulse, "Call a game function or QuakeC "
|
||||
"function.");
|
||||
Cmd_AddCommand ("+klook", IN_KLookDown, "When active, +forward and +back "
|
||||
Cmd_AddCommand ("+klook", IN_KLookPress, "When active, +forward and +back "
|
||||
"perform +lookup and +lookdown");
|
||||
Cmd_AddCommand ("-klook", IN_KLookUp, "When active, +forward and +back "
|
||||
"don't perform +lookup and +lookdown");
|
||||
Cmd_AddCommand ("+mlook", IN_MLookDown, "When active moving the mouse or "
|
||||
Cmd_AddCommand ("-klook", IN_KLookRelease, "When active, +forward and "
|
||||
"+back don't perform +lookup and +lookdown");
|
||||
Cmd_AddCommand ("+mlook", IN_MLookPress, "When active moving the mouse or "
|
||||
"joystick forwards and backwards performs +lookup and "
|
||||
"+lookdown");
|
||||
Cmd_AddCommand ("-mlook", IN_MLookUp, "When active moving the mouse or "
|
||||
"joystick forwards and backwards doesn't perform +lookup "
|
||||
"and +lookdown");
|
||||
Cmd_AddCommand ("-mlook", IN_MLookRelease, "When active moving the mouse "
|
||||
"or joystick forwards and backwards doesn't perform "
|
||||
"+lookup and +lookdown");
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
@ -242,7 +242,7 @@ void
|
|||
V_ParseDamage (void)
|
||||
{
|
||||
float count, side;
|
||||
int armor, blood, i;
|
||||
int armor, blood;
|
||||
vec3_t forward, from, right, up;
|
||||
|
||||
armor = MSG_ReadByte (net_message);
|
||||
|
|
Loading…
Reference in a new issue