mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Allow analog joystick up axis to be remapped too.
This commit is contained in:
parent
6c8a9af300
commit
91fd58f6e4
3 changed files with 7 additions and 1 deletions
|
@ -418,7 +418,7 @@ void CL_JoystickMove( usercmd_t *cmd ) {
|
|||
cmd->forwardmove = ClampChar( cmd->forwardmove + (int) (j_forward->value * cl.joystickAxis[j_forward_axis->integer]) );
|
||||
}
|
||||
|
||||
cmd->upmove = ClampChar( cmd->upmove + cl.joystickAxis[AXIS_UP] );
|
||||
cmd->upmove = ClampChar( cmd->upmove + (int) (j_up->value * cl.joystickAxis[j_up_axis->integer]) );
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -96,10 +96,12 @@ cvar_t *j_pitch;
|
|||
cvar_t *j_yaw;
|
||||
cvar_t *j_forward;
|
||||
cvar_t *j_side;
|
||||
cvar_t *j_up;
|
||||
cvar_t *j_pitch_axis;
|
||||
cvar_t *j_yaw_axis;
|
||||
cvar_t *j_forward_axis;
|
||||
cvar_t *j_side_axis;
|
||||
cvar_t *j_up_axis;
|
||||
|
||||
cvar_t *cl_activeAction;
|
||||
|
||||
|
@ -3524,10 +3526,12 @@ void CL_Init( void ) {
|
|||
j_yaw = Cvar_Get ("j_yaw", "-0.022", CVAR_ARCHIVE);
|
||||
j_forward = Cvar_Get ("j_forward", "-0.25", CVAR_ARCHIVE);
|
||||
j_side = Cvar_Get ("j_side", "0.25", CVAR_ARCHIVE);
|
||||
j_up = Cvar_Get ("j_up", "1", CVAR_ARCHIVE);
|
||||
j_pitch_axis = Cvar_Get ("j_pitch_axis", "3", CVAR_ARCHIVE);
|
||||
j_yaw_axis = Cvar_Get ("j_yaw_axis", "4", CVAR_ARCHIVE);
|
||||
j_forward_axis = Cvar_Get ("j_forward_axis", "1", CVAR_ARCHIVE);
|
||||
j_side_axis = Cvar_Get ("j_side_axis", "0", CVAR_ARCHIVE);
|
||||
j_up_axis = Cvar_Get ("j_up_axis", "2", CVAR_ARCHIVE);
|
||||
|
||||
cl_motdString = Cvar_Get( "cl_motdString", "", CVAR_ROM );
|
||||
|
||||
|
|
|
@ -403,10 +403,12 @@ extern cvar_t *j_pitch;
|
|||
extern cvar_t *j_yaw;
|
||||
extern cvar_t *j_forward;
|
||||
extern cvar_t *j_side;
|
||||
extern cvar_t *j_up;
|
||||
extern cvar_t *j_pitch_axis;
|
||||
extern cvar_t *j_yaw_axis;
|
||||
extern cvar_t *j_forward_axis;
|
||||
extern cvar_t *j_side_axis;
|
||||
extern cvar_t *j_up_axis;
|
||||
|
||||
extern cvar_t *cl_timedemo;
|
||||
extern cvar_t *cl_aviFrameRate;
|
||||
|
|
Loading…
Reference in a new issue