mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-23 04:52:07 +00:00
"Invert gyro" spincontrols
This commit is contained in:
parent
54eb9e441d
commit
da31490684
1 changed files with 39 additions and 0 deletions
|
@ -1607,6 +1607,8 @@ static menulist_s s_gyro_mode_box;
|
|||
static menulist_s s_turning_axis_box;
|
||||
static menuslider_s s_gyro_yawsensitivity_slider;
|
||||
static menuslider_s s_gyro_pitchsensitivity_slider;
|
||||
static menulist_s s_gyro_invertyaw_box;
|
||||
static menulist_s s_gyro_invertpitch_box;
|
||||
static menuseparator_s s_calibrating_text[2];
|
||||
static menuaction_s s_calibrate_gyro;
|
||||
|
||||
|
@ -1651,6 +1653,18 @@ TurningAxisFunc(void *unused)
|
|||
Cvar_SetValue("gyro_turning_axis", (int)s_turning_axis_box.curvalue);
|
||||
}
|
||||
|
||||
static void
|
||||
InvertGyroYawFunc(void *unused)
|
||||
{
|
||||
Cvar_SetValue("gyro_yawsensitivity", -Cvar_VariableValue("gyro_yawsensitivity"));
|
||||
}
|
||||
|
||||
static void
|
||||
InvertGyroPitchFunc(void *unused)
|
||||
{
|
||||
Cvar_SetValue("gyro_pitchsensitivity", -Cvar_VariableValue("gyro_pitchsensitivity"));
|
||||
}
|
||||
|
||||
static void
|
||||
Gyro_MenuInit(void)
|
||||
{
|
||||
|
@ -1670,6 +1684,13 @@ Gyro_MenuInit(void)
|
|||
0
|
||||
};
|
||||
|
||||
static const char *yesno_names[] =
|
||||
{
|
||||
"no",
|
||||
"yes",
|
||||
0
|
||||
};
|
||||
|
||||
int y = 0;
|
||||
float scale = SCR_GetMenuScale();
|
||||
|
||||
|
@ -1710,6 +1731,22 @@ Gyro_MenuInit(void)
|
|||
s_gyro_pitchsensitivity_slider.maxvalue = 8.0f;
|
||||
s_gyro_pitchsensitivity_slider.abs = true;
|
||||
|
||||
s_gyro_invertyaw_box.generic.type = MTYPE_SPINCONTROL;
|
||||
s_gyro_invertyaw_box.generic.x = 0;
|
||||
s_gyro_invertyaw_box.generic.y = (y += 10);
|
||||
s_gyro_invertyaw_box.generic.name = "invert yaw";
|
||||
s_gyro_invertyaw_box.generic.callback = InvertGyroYawFunc;
|
||||
s_gyro_invertyaw_box.itemnames = yesno_names;
|
||||
s_gyro_invertyaw_box.curvalue = (Cvar_VariableValue("gyro_yawsensitivity") < 0);
|
||||
|
||||
s_gyro_invertpitch_box.generic.type = MTYPE_SPINCONTROL;
|
||||
s_gyro_invertpitch_box.generic.x = 0;
|
||||
s_gyro_invertpitch_box.generic.y = (y += 10);
|
||||
s_gyro_invertpitch_box.generic.name = "invert pitch";
|
||||
s_gyro_invertpitch_box.generic.callback = InvertGyroPitchFunc;
|
||||
s_gyro_invertpitch_box.itemnames = yesno_names;
|
||||
s_gyro_invertpitch_box.curvalue = (Cvar_VariableValue("gyro_pitchsensitivity") < 0);
|
||||
|
||||
s_calibrating_text[0].generic.type = MTYPE_SEPARATOR;
|
||||
s_calibrating_text[0].generic.x = 48 * scale + 32;
|
||||
s_calibrating_text[0].generic.y = (y += 20);
|
||||
|
@ -1730,6 +1767,8 @@ Gyro_MenuInit(void)
|
|||
Menu_AddItem(&s_gyro_menu, (void *)&s_turning_axis_box);
|
||||
Menu_AddItem(&s_gyro_menu, (void *)&s_gyro_yawsensitivity_slider);
|
||||
Menu_AddItem(&s_gyro_menu, (void *)&s_gyro_pitchsensitivity_slider);
|
||||
Menu_AddItem(&s_gyro_menu, (void *)&s_gyro_invertyaw_box);
|
||||
Menu_AddItem(&s_gyro_menu, (void *)&s_gyro_invertpitch_box);
|
||||
Menu_AddItem(&s_gyro_menu, (void *)&s_calibrating_text[0]);
|
||||
Menu_AddItem(&s_gyro_menu, (void *)&s_calibrating_text[1]);
|
||||
Menu_AddItem(&s_gyro_menu, (void *)&s_calibrate_gyro);
|
||||
|
|
Loading…
Reference in a new issue