mirror of
https://github.com/nzp-team/quakec.git
synced 2025-04-05 09:21:28 +00:00
MENU: Settings, Credits
This commit is contained in:
parent
43bd3dfca3
commit
4b4761d3e2
7 changed files with 222 additions and 86 deletions
|
@ -20,6 +20,7 @@ menu_vide.qc // Video Menu
|
|||
menu_audi.qc // Audio Menu
|
||||
menu_ctrl.qc // Control Menu
|
||||
menu_gpad.qc // Gamepad Menu
|
||||
menu_cred.qc // Credits Menu
|
||||
|
||||
main.qc
|
||||
#endlist
|
|
@ -34,6 +34,7 @@ enum {
|
|||
MENU_AUDIO,
|
||||
MENU_CONTROL,
|
||||
MENU_GAMEPAD,
|
||||
MENU_CREDITS,
|
||||
MENU_HELP
|
||||
};
|
||||
|
||||
|
@ -48,6 +49,7 @@ void() Menu_Video;
|
|||
void() Menu_Audio;
|
||||
void() Menu_Control;
|
||||
void() Menu_Gamepad;
|
||||
void() Menu_Credits;
|
||||
|
||||
enum {
|
||||
MAP_SOLOSTOCK,
|
||||
|
|
|
@ -312,6 +312,30 @@ float(string id, vector pos, vector size, string text) my_button =
|
|||
return sui_is_clicked(id);
|
||||
};
|
||||
|
||||
//
|
||||
// Menu_DrawCreditHeader()
|
||||
// Wrapper for drawing the role/title in credits.
|
||||
//
|
||||
void(float order, string header) Menu_DrawCreditHeader =
|
||||
{
|
||||
vector position = [8, 60 + (order * 60)];
|
||||
sui_set_align([SUI_ALIGN_START, SUI_ALIGN_START]);
|
||||
sui_text(position - [getTextWidth(header, MENU_TEXT_SMALL_x), 0, 0] + [275, 0, 0], MENU_TEXT_SMALL, header, [1, 1, 0], 1, 0);
|
||||
};
|
||||
|
||||
//
|
||||
// Menu_DrawCreditContributor()
|
||||
// Wrapper for drawing the contributor list in credits.
|
||||
//
|
||||
void(float order, float sub_order, string header) Menu_DrawCreditContributor =
|
||||
{
|
||||
vector position = [315, 60 + (order * 60)];
|
||||
position_y += sub_order * (MENU_TEXT_SUPERSMALL_x + 3);
|
||||
|
||||
sui_set_align([SUI_ALIGN_START, SUI_ALIGN_START]);
|
||||
sui_text(position, MENU_TEXT_SUPERSMALL, header, [1, 1, 1], 1, 0);
|
||||
};
|
||||
|
||||
//
|
||||
// Menu_DrawBuildDate()
|
||||
// Wrapper for drawing the build date
|
||||
|
@ -554,6 +578,7 @@ void(vector size) root_menu =
|
|||
case MENU_AUDIO: Menu_Audio(); break;
|
||||
case MENU_CONTROL: Menu_Control(); break;
|
||||
case MENU_GAMEPAD: Menu_Gamepad(); break;
|
||||
case MENU_CREDITS: Menu_Credits(); break;
|
||||
case MENU_HELP: help_menu();
|
||||
default: break;
|
||||
}
|
||||
|
|
129
source/menu/menu_cred.qc
Normal file
129
source/menu/menu_cred.qc
Normal file
|
@ -0,0 +1,129 @@
|
|||
var struct credits_s
|
||||
{
|
||||
string header;
|
||||
string contributors[4];
|
||||
};
|
||||
|
||||
string credits_models[4] =
|
||||
{
|
||||
"blubs, Ju[s]tice, Derped_Crusader, cypress,",
|
||||
"BCDeshiG, Revnova, Naievil, Stoohp,",
|
||||
"Jacob Giguere, Lexi",
|
||||
""
|
||||
};
|
||||
|
||||
string credits_code[4] =
|
||||
{
|
||||
"blubs, Jukki, DR_Mabuse1981, Naievil, cypress,",
|
||||
"Scatterbox, Peter0x44",
|
||||
"",
|
||||
""
|
||||
};
|
||||
|
||||
string credits_art[4] =
|
||||
{
|
||||
"Ju[s]tice, blubs, cypress, Derped_Crusader",
|
||||
"",
|
||||
"",
|
||||
""
|
||||
};
|
||||
|
||||
string credits_music[4] =
|
||||
{
|
||||
"blubs, Marty P., cypress",
|
||||
"",
|
||||
"",
|
||||
""
|
||||
};
|
||||
|
||||
string credits_sfx[4] =
|
||||
{
|
||||
"blubs, Biodude, cypress",
|
||||
"",
|
||||
"",
|
||||
""
|
||||
};
|
||||
|
||||
string credits_thx[4] =
|
||||
{
|
||||
"Spike, eukara, Shpuld, Crow_Bar, st1x51,",
|
||||
"fgsfdsfgs, MasterFeizz, Rinnegatamante,",
|
||||
"Azenn"
|
||||
};
|
||||
|
||||
credits_s credits[] =
|
||||
{
|
||||
{
|
||||
"MODELING, MAPS",
|
||||
{
|
||||
credits_models[0],
|
||||
credits_models[1],
|
||||
credits_models[2],
|
||||
credits_models[3]
|
||||
}
|
||||
},
|
||||
{
|
||||
"PROGRAMMING",
|
||||
{
|
||||
credits_code[0],
|
||||
credits_code[1],
|
||||
credits_code[2],
|
||||
credits_code[3]
|
||||
}
|
||||
},
|
||||
{
|
||||
"2D ART",
|
||||
{
|
||||
credits_art[0],
|
||||
credits_art[1],
|
||||
credits_art[2],
|
||||
credits_art[3]
|
||||
}
|
||||
},
|
||||
{
|
||||
"MUSIC",
|
||||
{
|
||||
credits_music[0],
|
||||
credits_music[1],
|
||||
credits_music[2],
|
||||
credits_music[3]
|
||||
}
|
||||
},
|
||||
{
|
||||
"SFX",
|
||||
{
|
||||
credits_sfx[0],
|
||||
credits_sfx[1],
|
||||
credits_sfx[2],
|
||||
credits_sfx[3]
|
||||
}
|
||||
},
|
||||
{
|
||||
"SPECIAL THANKS",
|
||||
{
|
||||
credits_thx[0],
|
||||
credits_thx[1],
|
||||
credits_thx[2],
|
||||
credits_thx[3]
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
void() Menu_Credits =
|
||||
{
|
||||
Menu_DrawBackground();
|
||||
Menu_DrawTitle("CREDITS");
|
||||
Menu_DrawMapPanel();
|
||||
|
||||
for(int i = 0; i < credits.length; i++) {
|
||||
Menu_DrawCreditHeader(i, credits[i].header);
|
||||
|
||||
for(int j = 0; j < 4; j++) {
|
||||
Menu_DrawCreditContributor(i, j, credits[i].contributors[j]);
|
||||
}
|
||||
}
|
||||
|
||||
Menu_Button(-1, "cr_back", "BACK", "Return to Main Menu.") ? current_menu = MENU_MAIN : 0;
|
||||
|
||||
sui_pop_frame();
|
||||
};
|
|
@ -1,65 +1,40 @@
|
|||
float menu_gpad_init;
|
||||
|
||||
// float current_adsmode;
|
||||
// float current_invert;
|
||||
|
||||
// void() Menu_Control_StoreCurrentSettings =
|
||||
// {
|
||||
// // Figure out ADS mode.
|
||||
// tokenize(findkeysforcommandex("+button8"));
|
||||
// string button8_key = strtoupper(argv(0));
|
||||
// if (button8_key == "MOUSE2") {
|
||||
// current_adsmode = 0;
|
||||
// } else {
|
||||
// current_adsmode = 1;
|
||||
// }
|
||||
|
||||
// if (cvar("m_pitch") == 0.022)
|
||||
// localcmd("m_pitch -0.022\n");
|
||||
// else
|
||||
// localcmd("m_pitch 0.022\n");
|
||||
|
||||
// current_invert = (cvar("m_pitch") == 0.022);
|
||||
// };
|
||||
|
||||
void() Menu_Gamepad_Init =
|
||||
void() Menu_Gamepad_ApplyGlpyh =
|
||||
{
|
||||
//Menu_Control_StoreCurrentSettings();
|
||||
menu_gpad_init = true;
|
||||
Menu_PlaySound(MENU_SND_ENTER);
|
||||
string current_glyph_brand = cvar_string("cl_controllerglyphs");
|
||||
string new_glyph_brand = "";
|
||||
|
||||
switch(current_glyph_brand) {
|
||||
case "xbox":
|
||||
new_glyph_brand = "sony";
|
||||
break;
|
||||
case "sony":
|
||||
new_glyph_brand = "nintendo";
|
||||
break;
|
||||
case "nintendo":
|
||||
new_glyph_brand = "generic";
|
||||
break;
|
||||
default:
|
||||
new_glyph_brand = "xbox";
|
||||
break;
|
||||
}
|
||||
|
||||
cvar_set("cl_controllerglyphs", new_glyph_brand);
|
||||
};
|
||||
|
||||
// void() Menu_Control_ApplyADS =
|
||||
// {
|
||||
// Menu_PlaySound(MENU_SND_ENTER);
|
||||
void() Menu_Gamepad_ApplyRumble =
|
||||
{
|
||||
Menu_PlaySound(MENU_SND_ENTER);
|
||||
float rumble = cvar("in_rumbleenabled");
|
||||
cvar_set("in_rumbleenabled", ftos(!rumble));
|
||||
};
|
||||
|
||||
// tokenize(findkeysforcommandex("+button8"));
|
||||
// string button8_key = strtoupper(argv(0));
|
||||
|
||||
// // ADS Mode
|
||||
// if (button8_key == "MOUSE2") {
|
||||
// localcmd("bind MOUSE2 \"impulse 26\"\n");
|
||||
// current_adsmode = 1;
|
||||
// } else {
|
||||
// localcmd("bind MOUSE2 \"+button8\"\n");
|
||||
// current_adsmode = 0;
|
||||
// }
|
||||
// };
|
||||
|
||||
// void() Menu_Control_InvertLook =
|
||||
// {
|
||||
// Menu_PlaySound(MENU_SND_ENTER);
|
||||
// current_invert = !current_invert;
|
||||
|
||||
// if (current_invert)
|
||||
// localcmd("m_pitch -0.022\n");
|
||||
// else
|
||||
// localcmd("m_pitch 0.022\n");
|
||||
// };
|
||||
|
||||
// {[6, 135], "Controller Glyphs", -1, setting_glyph, null, MENU_CONSETTINGS, 0, OPTION_WEB_AND_EXE}, // 67
|
||||
// {[6, 155], "Rumble", -1, settings_rumble, null, MENU_CONSETTINGS, 0, OPTION_WEB_AND_EXE}, // 68
|
||||
// {[6, 175], "Gamepad", -1, settings_gamepad, null, MENU_CONSETTINGS, 0, OPTION_WEB_AND_EXE}, // 69
|
||||
// {[6, 195], "Aim Assist", -1, settings_aimassist, null, MENU_CONSETTINGS, 0, OPTION_WEB_AND_EXE}, // 70
|
||||
void() Menu_Gamepad_ApplyAimAssist =
|
||||
{
|
||||
Menu_PlaySound(MENU_SND_ENTER);
|
||||
float rumble = cvar("in_aimassist");
|
||||
cvar_set("in_aimassist", ftos(!rumble));
|
||||
};
|
||||
|
||||
void() Menu_Gamepad_ApplySettings =
|
||||
{
|
||||
|
@ -69,39 +44,42 @@ void() Menu_Gamepad_ApplySettings =
|
|||
|
||||
void() Menu_Gamepad =
|
||||
{
|
||||
if (!menu_gpad_init)
|
||||
Menu_Gamepad_Init();
|
||||
|
||||
Menu_DrawBackground();
|
||||
Menu_DrawTitle("GAMEPAD OPTIONS");
|
||||
Menu_DrawMapPanel();
|
||||
|
||||
// Menu_Button(1, "cm_adsm", "AIM DOWN SIGHT", "Switch between Hold and Toggle ADS Modes.") ? Menu_Control_ApplyADS() : 0;
|
||||
// string ads_string = "";
|
||||
// switch(current_adsmode) {
|
||||
// case 0: ads_string = "HOLD"; break;
|
||||
// case 1: ads_string = "TOGGLE"; break;
|
||||
// default: break;
|
||||
// }
|
||||
// Menu_DrawOptionValue(1, ads_string);
|
||||
Menu_Button(1, "gp_glyp", "GLYPH TYPE", "Change the Style/Branding for Gamepad Glyphs.") ? Menu_Gamepad_ApplyGlpyh() : 0;
|
||||
string glyph_string = "";
|
||||
switch(cvar_string("cl_controllerglyphs")) {
|
||||
case "xbox": glyph_string = "MICROSOFT"; break;
|
||||
case "sony": glyph_string = "SONY"; break;
|
||||
case "nintendo": glyph_string = "NINTENDO"; break;
|
||||
case "generic": glyph_string = "LIBRE"; break;
|
||||
default: glyph_string = sprintf("USER (\"%s\")", cvar_string("cl_controllerglyphs")); break;
|
||||
}
|
||||
Menu_DrawOptionValue(1, glyph_string);
|
||||
|
||||
// Menu_Button(2, "cm_sens", "SENSITIVITY", "Alter Look Sensitivity.") ? 0 : 0;
|
||||
// Menu_CvarSlider(2, [1, 10, 10], "sensitivity", false, false);
|
||||
Menu_Button(2, "gp_rumb", "RUMBLE", "Toggle Rumble during Gameplay Actions.") ? Menu_Gamepad_ApplyRumble() : 0;
|
||||
string rumble_string = "";
|
||||
switch(cvar("in_rumbleenabled")) {
|
||||
case 0: rumble_string = "DISABLED"; break;
|
||||
case 1: rumble_string = "ENABLED"; break;
|
||||
default: break;
|
||||
}
|
||||
Menu_DrawOptionValue(2, rumble_string);
|
||||
|
||||
// Menu_Button(3, "cm_invs", "INVERT LOOK", "Invert Y-Axis Camera Input.") ? Menu_Control_InvertLook() : 0;
|
||||
// string invert_string = "";
|
||||
// switch(current_invert) {
|
||||
// case 0: invert_string = "ENABLED"; break;
|
||||
// case 1: invert_string = "DISABLED"; break;
|
||||
// default: break;
|
||||
// }
|
||||
// Menu_DrawOptionValue(3, invert_string);
|
||||
|
||||
// Menu_Button(4, "cm_gpad", "GAMEPAD", "Gamepad specific options.") ? current_menu = MENU_GAMEPAD : 0;
|
||||
Menu_Button(3, "gp_aima", "AIM ASSIST", "Toggle Camera Aim Assist.") ? Menu_Gamepad_ApplyAimAssist() : 0;
|
||||
string aa_string = "";
|
||||
switch(cvar("in_aimassist")) {
|
||||
case 0: aa_string = "DISABLED"; break;
|
||||
case 1: aa_string = "ENABLED"; break;
|
||||
default: break;
|
||||
}
|
||||
Menu_DrawOptionValue(3, aa_string);
|
||||
|
||||
Menu_DrawDivider(12.25);
|
||||
Menu_Button(-2, "gp_apply", "APPLY", "Save & Apply Settings.") ? Menu_Gamepad_ApplySettings() : 0;
|
||||
Menu_Button(-1, "gp_back", "BACK", "Return to Configuration.") ? current_menu = MENU_CONTROL : 0;
|
||||
Menu_Button(-1, "gp_back", "BACK", "Return to Control Options.") ? current_menu = MENU_CONTROL : 0;
|
||||
|
||||
sui_pop_frame();
|
||||
};
|
|
@ -25,9 +25,10 @@ void() Menu_Main =
|
|||
Menu_Button(2, "mm_coop", "COOPERATIVE", "Play with up to Four Players.") ? localcmd("\n") : 0;
|
||||
Menu_DrawDivider(3);
|
||||
Menu_Button(3.25, "mm_options", "CONFIGURATION", "Tweak Game related Options.") ? current_menu = MENU_OPTIONS : 0;
|
||||
Menu_Button(4.25, "mm_achievements", "ACHIEVEMENTS", "View Achievement Progress.") ? localcmd("\n") : 0;
|
||||
//Menu_Button(4.25, "mm_achievements", "ACHIEVEMENTS", "View Achievement Progress.") ? localcmd("\n") : 0;
|
||||
Menu_GreyButton(4.25, "ACHIEVEMENTS");
|
||||
Menu_DrawDivider(5.25);
|
||||
Menu_Button(5.50, "mm_credits", "CREDITS", "NZ:P Team + Special Thanks.") ? localcmd("\n") : 0;
|
||||
Menu_Button(5.50, "mm_credits", "CREDITS", "NZ:P Team + Special Thanks.") ? current_menu = MENU_CREDITS : 0;
|
||||
|
||||
// Don't have a Quit Game button on WASM
|
||||
if (running_platform != PLATFORM_WEB) {
|
||||
|
@ -35,7 +36,6 @@ void() Menu_Main =
|
|||
Menu_Button(6.75, "mm_quit", "QUIT GAME", sprintf("Return to %s.", Menu_Main_GetDashboardName())) ? localcmd("quit\n") : 0;
|
||||
}
|
||||
|
||||
|
||||
Menu_SocialBadge(1, "soc_youtube", "youtube.com/@nzpteam", 2);
|
||||
Menu_SocialBadge(2, "soc_mastadon", "FIXME", 3);
|
||||
Menu_SocialBadge(3, "soc_patreon", "patreon.com/cypressimplex", 4);
|
||||
|
|
|
@ -6,7 +6,8 @@ void() Menu_Options =
|
|||
Menu_Button(1, "om_video", "VIDEO", "Visual Fidelity options.") ? current_menu = MENU_VIDEO : 0;
|
||||
Menu_Button(2, "om_audio", "AUDIO", "Volume sliders.") ? current_menu = MENU_AUDIO : 0;
|
||||
Menu_Button(3, "om_binds", "CONTROLS", "Control Options and Bindings.") ? current_menu = MENU_CONTROL : 0;
|
||||
Menu_Button(4, "om_acces", "ACCESSIBILITY", "Light Sensitivity options.") ? 1 : 0;
|
||||
//Menu_Button(4, "om_acces", "ACCESSIBILITY", "Light Sensitivity options.") ? 1 : 0;
|
||||
Menu_GreyButton(4, "ACCESSIBILITY");
|
||||
Menu_DrawDivider(5);
|
||||
Menu_Button(5.25, "om_console", "OPEN CONSOLE", "Access the Developer Console.") ? localcmd("toggleconsole\n") : 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue