mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
- Seperate into "This Profile only" and "For all Profiles" - Move screen tilting and reducevfx from Video Options to Accessibility submenu, under "For all Profiles" - Adjust spacing on menu
124 lines
2.9 KiB
C++
124 lines
2.9 KiB
C++
/// \file menus/options-profiles-edit-accessibility.c
|
|
/// \brief Profile Accessibibility Options
|
|
|
|
#include "../v_draw.hpp"
|
|
|
|
#include "../command.h"
|
|
#include "../k_menu.h"
|
|
#include "../p_local.h" // cv_tilting
|
|
|
|
extern "C" consvar_t cv_mindelay;
|
|
|
|
using srb2::Draw;
|
|
|
|
namespace
|
|
{
|
|
|
|
void draw_routine()
|
|
{
|
|
Draw row = Draw(0, currentMenu->y).font(Draw::Font::kConsole);
|
|
|
|
M_DrawEditProfileTooltips();
|
|
|
|
for (int i = 0; i < currentMenu->numitems; ++i)
|
|
{
|
|
const menuitem_t& it = currentMenu->menuitems[i];
|
|
|
|
if (it.status & IT_DISPLAY)
|
|
{
|
|
bool selected = i == itemOn;
|
|
|
|
Draw h = row.x(currentMenu->x);
|
|
|
|
if ((it.status & IT_HEADERTEXT) == IT_HEADERTEXT)
|
|
{
|
|
h
|
|
.x(-4)
|
|
.flags(V_GRAYMAP)
|
|
.text(it.text);
|
|
}
|
|
else
|
|
{
|
|
h
|
|
.flags(selected ? highlightflags : 0)
|
|
.text(it.text);
|
|
}
|
|
|
|
if ((it.status & IT_TYPE) == IT_CVAR)
|
|
{
|
|
auto val = Draw::TextElement(it.itemaction.cvar->string).font(Draw::Font::kConsole);
|
|
|
|
h = row.x(BASEVIDWIDTH - 16).flags(highlightflags);
|
|
h.align(Draw::Align::kRight).text(val);
|
|
|
|
if (selected)
|
|
{
|
|
int ofs = skullAnimCounter / 5;
|
|
h.x(-val.width() - 10 - ofs).text("\x1C");
|
|
h.x(2 + ofs).text("\x1D");
|
|
}
|
|
}
|
|
}
|
|
|
|
row = row.y(11);
|
|
}
|
|
|
|
// Finally, draw the card ontop
|
|
if (optionsmenu.profile != NULL)
|
|
{
|
|
M_DrawProfileCard(optionsmenu.optx, optionsmenu.opty, false, optionsmenu.profile);
|
|
}
|
|
}
|
|
|
|
}; // namespace
|
|
|
|
menuitem_t OPTIONS_ProfileAccessibility[] = {
|
|
|
|
{IT_HEADER, "This Profile only:", NULL,
|
|
NULL, {NULL}, 0, 0},
|
|
|
|
{IT_STRING | IT_CVAR, "Rumble", "For gamepad users - should your device rumble?",
|
|
NULL, {.cvar = &cv_dummyprofilerumble}, 0, 0},
|
|
|
|
{IT_STRING | IT_CVAR, "Auto Roulette", "Item roulette auto-stops on a random result.",
|
|
NULL, {.cvar = &cv_dummyprofileautoroulette}, 0, 0},
|
|
|
|
{IT_STRING | IT_CVAR, "Kickstart Accel", "Hold A to auto-accel. Tap it to cancel.",
|
|
NULL, {.cvar = &cv_dummyprofilekickstart}, 0, 0},
|
|
|
|
{IT_STRING | IT_CVAR, "Lite Steer", "Hold DOWN on d-pad/keyboard for shallow turns.",
|
|
NULL, {.cvar = &cv_dummyprofilelitesteer}, 0, 0},
|
|
|
|
{IT_SPACE | IT_NOTHING, NULL, NULL,
|
|
NULL, {NULL}, 0, 0},
|
|
|
|
{IT_HEADER, "For all Profiles:", NULL,
|
|
NULL, {NULL}, 0, 0},
|
|
|
|
{IT_STRING | IT_CVAR, "Minimum Input Delay", "Practice for online play! 0 = instant response.",
|
|
NULL, {.cvar = &cv_mindelay}, 0, 0},
|
|
|
|
{IT_STRING | IT_CVAR, "Screen Tilting", "View rotation on inclines.",
|
|
NULL, {.cvar = &cv_tilting}, 0, 0},
|
|
|
|
{IT_STRING | IT_CVAR, "Reduce Effects", "If overwhelmed, hide less-important particle cues.",
|
|
NULL, {.cvar = &cv_reducevfx}, 0, 0},
|
|
};
|
|
|
|
menu_t OPTIONS_ProfileAccessibilityDef = {
|
|
sizeof (OPTIONS_ProfileAccessibility) / sizeof (menuitem_t),
|
|
&OPTIONS_EditProfileDef,
|
|
0,
|
|
OPTIONS_ProfileAccessibility,
|
|
145, 52,
|
|
SKINCOLOR_ULTRAMARINE, 0,
|
|
MBF_DRAWBGWHILEPLAYING,
|
|
"FILE",
|
|
2, 5,
|
|
draw_routine,
|
|
M_DrawOptionsCogs,
|
|
M_OptionsTick, // animate cogs
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
};
|