2014-03-15 16:59:03 +00:00
|
|
|
// SONIC ROBO BLAST 2
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 1993-1996 by id Software, Inc.
|
|
|
|
// Copyright (C) 1998-2000 by DooM Legacy Team.
|
2020-01-06 22:16:27 +00:00
|
|
|
// Copyright (C) 2011-2016 by Matthew "Kaito Sinclaire" Walsh.
|
2020-02-19 22:08:45 +00:00
|
|
|
// Copyright (C) 1999-2020 by Sonic Team Junior.
|
2014-03-15 16:59:03 +00:00
|
|
|
//
|
|
|
|
// This program is free software distributed under the
|
|
|
|
// terms of the GNU General Public License, version 2.
|
|
|
|
// See the 'LICENSE' file for more details.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
/// \file m_menu.h
|
|
|
|
/// \brief Menu widget stuff, selection and such
|
|
|
|
|
|
|
|
#ifndef __X_MENU__
|
|
|
|
#define __X_MENU__
|
|
|
|
|
2020-03-09 13:54:56 +00:00
|
|
|
#include "doomstat.h" // for NUMGAMETYPES
|
2014-03-15 16:59:03 +00:00
|
|
|
#include "d_event.h"
|
|
|
|
#include "command.h"
|
2020-03-09 13:54:56 +00:00
|
|
|
#include "r_skins.h" // for SKINNAMESIZE
|
2019-08-13 02:12:20 +00:00
|
|
|
#include "f_finale.h" // for ttmode_enum
|
2014-03-15 16:59:03 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// MENUS
|
|
|
|
//
|
2018-11-15 20:51:29 +00:00
|
|
|
|
2018-11-16 19:16:41 +00:00
|
|
|
// If menu hierarchies go deeper, change this up to 5.
|
|
|
|
// Zero-based, inclusive.
|
|
|
|
#define NUMMENULEVELS 3
|
|
|
|
#define MENUBITS 6
|
|
|
|
|
2018-11-15 20:51:29 +00:00
|
|
|
// Menu IDs sectioned by numeric places to signify hierarchy
|
|
|
|
typedef enum
|
|
|
|
{
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_NONE,
|
2018-11-16 14:22:27 +00:00
|
|
|
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_MAIN,
|
2018-11-15 20:51:29 +00:00
|
|
|
|
|
|
|
// Single Player
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_SP_MAIN,
|
2018-11-15 20:51:29 +00:00
|
|
|
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_SP_LOAD,
|
|
|
|
MN_SP_PLAYER,
|
2018-11-15 20:51:29 +00:00
|
|
|
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_SP_LEVELSELECT,
|
|
|
|
MN_SP_LEVELSTATS,
|
2018-11-15 20:51:29 +00:00
|
|
|
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_SP_TIMEATTACK,
|
|
|
|
MN_SP_TIMEATTACK_LEVELSELECT,
|
|
|
|
MN_SP_GUESTREPLAY,
|
|
|
|
MN_SP_REPLAY,
|
|
|
|
MN_SP_GHOST,
|
2018-11-15 20:51:29 +00:00
|
|
|
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_SP_NIGHTSATTACK,
|
|
|
|
MN_SP_NIGHTS_LEVELSELECT,
|
|
|
|
MN_SP_NIGHTS_GUESTREPLAY,
|
|
|
|
MN_SP_NIGHTS_REPLAY,
|
|
|
|
MN_SP_NIGHTS_GHOST,
|
2018-11-15 20:51:29 +00:00
|
|
|
|
|
|
|
// Multiplayer
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_MP_MAIN,
|
|
|
|
MN_MP_SPLITSCREEN, // SplitServer
|
|
|
|
MN_MP_SERVER,
|
|
|
|
MN_MP_CONNECT,
|
|
|
|
MN_MP_ROOM,
|
|
|
|
MN_MP_PLAYERSETUP, // MP_PlayerSetupDef shared with SPLITSCREEN if #defined NONET
|
2019-10-19 19:25:02 +00:00
|
|
|
MN_MP_SERVER_OPTIONS,
|
2018-11-15 20:51:29 +00:00
|
|
|
|
2018-11-16 14:22:27 +00:00
|
|
|
// Options
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_OP_MAIN,
|
2018-11-15 21:05:09 +00:00
|
|
|
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_OP_P1CONTROLS,
|
|
|
|
MN_OP_CHANGECONTROLS, // OP_ChangeControlsDef shared with P2
|
|
|
|
MN_OP_P1MOUSE,
|
|
|
|
MN_OP_P1JOYSTICK,
|
|
|
|
MN_OP_JOYSTICKSET, // OP_JoystickSetDef shared with P2
|
2019-09-19 09:34:04 +00:00
|
|
|
MN_OP_P1CAMERA,
|
2018-11-15 20:51:29 +00:00
|
|
|
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_OP_P2CONTROLS,
|
|
|
|
MN_OP_P2MOUSE,
|
|
|
|
MN_OP_P2JOYSTICK,
|
2019-09-19 09:34:04 +00:00
|
|
|
MN_OP_P2CAMERA,
|
2018-11-15 20:51:29 +00:00
|
|
|
|
2019-12-10 04:06:50 +00:00
|
|
|
MN_OP_PLAYSTYLE,
|
|
|
|
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_OP_VIDEO,
|
|
|
|
MN_OP_VIDEOMODE,
|
|
|
|
MN_OP_COLOR,
|
|
|
|
MN_OP_OPENGL,
|
|
|
|
MN_OP_OPENGL_LIGHTING,
|
|
|
|
MN_OP_OPENGL_FOG,
|
|
|
|
MN_OP_OPENGL_COLOR,
|
2018-11-15 20:51:29 +00:00
|
|
|
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_OP_SOUND,
|
2018-11-15 21:05:09 +00:00
|
|
|
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_OP_SERVER,
|
|
|
|
MN_OP_MONITORTOGGLE,
|
2018-11-15 21:05:09 +00:00
|
|
|
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_OP_DATA,
|
|
|
|
MN_OP_ADDONS,
|
|
|
|
MN_OP_SCREENSHOTS,
|
|
|
|
MN_OP_ERASEDATA,
|
2018-11-15 21:05:09 +00:00
|
|
|
|
2019-11-21 00:34:32 +00:00
|
|
|
// Extras
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_SR_MAIN,
|
|
|
|
MN_SR_PANDORA,
|
|
|
|
MN_SR_LEVELSELECT,
|
|
|
|
MN_SR_UNLOCKCHECKLIST,
|
|
|
|
MN_SR_EMBLEMHINT,
|
2019-10-19 19:42:53 +00:00
|
|
|
MN_SR_PLAYER,
|
Sound test is cool now!
https://cdn.discordapp.com/attachments/405336003239477249/641295998395613224/srb20042.gif
* Port MUSICDEFs from Kart.
* Safe to modify without modifying game, so we can put it in music.dta eventually.
* "Title", "AltTitle", "Authors" fields are self-evident.
* "Soundtestpage" and "Soundtestcond" are used to determine which sound test unlockable can play them (set with Unlockable's variable, just like Level Select).
* "Stoppingtime" and "BPM" both accept floats, and are used for presentation stuff on the sound test.
* Ironically, we don't share a single field name with them. Such is the case of differing foci, though, and I expect they'll change their implementation to match (since this is necessary for a sound test).
* Change how S_AddSoundFx works to avoid iterating through all of them, and to allow cv_soundtest to only scroll through defined slots (instead of the infinite wall of thok sounds when scrolling to the left).
* Change V_DrawFixedPatch to allow scaling on two seperate axes.
* Now called "V_DrawStretchyFixedPatch".
* "V_DrawFixedPatch" is a macro to V_DrawStretchyFixedPatch now (same scale on both axes).
* Available to Lua under v.drawStretched!
* Even works in GL!
* Bugfix: Add SR_PLAYER to SOC's menutypes_list.
Stay tuned for the merge request, where I put the onus on the Music Team to finish this off...
2019-11-05 16:23:46 +00:00
|
|
|
MN_SR_SOUNDTEST,
|
2018-11-15 21:05:09 +00:00
|
|
|
|
2018-11-16 14:22:27 +00:00
|
|
|
// Addons (Part of MISC, but let's make it our own)
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_AD_MAIN,
|
2018-11-15 21:05:09 +00:00
|
|
|
|
2018-11-16 14:22:27 +00:00
|
|
|
// MISC
|
2018-11-16 14:56:22 +00:00
|
|
|
// MN_MESSAGE,
|
|
|
|
// MN_SPAUSE,
|
2018-11-15 21:05:09 +00:00
|
|
|
|
2018-11-16 14:56:22 +00:00
|
|
|
// MN_MPAUSE,
|
|
|
|
// MN_SCRAMBLETEAM,
|
|
|
|
// MN_CHANGETEAM,
|
|
|
|
// MN_CHANGELEVEL,
|
2018-11-15 21:05:09 +00:00
|
|
|
|
2018-11-16 14:56:22 +00:00
|
|
|
// MN_MAPAUSE,
|
|
|
|
// MN_HELP,
|
2018-11-15 21:05:09 +00:00
|
|
|
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_SPECIAL,
|
2018-11-16 14:46:32 +00:00
|
|
|
NUMMENUTYPES,
|
2018-11-16 14:56:22 +00:00
|
|
|
} menutype_t; // up to 63; MN_SPECIAL = 53
|
2018-11-15 20:51:29 +00:00
|
|
|
|
2018-11-16 17:07:47 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
char bgname[8]; // name for background gfx lump; lays over titlemap if this is set
|
2019-08-13 02:12:20 +00:00
|
|
|
SINT8 fadestrength; // darken background when displaying this menu, strength 0-31 or -1 for undefined
|
|
|
|
INT32 bgcolor; // fill color, overrides bg name. -1 means follow bg name rules.
|
2018-11-16 19:16:41 +00:00
|
|
|
INT32 titlescrollxspeed; // background gfx scroll per menu; inherits global setting
|
2018-11-16 17:07:47 +00:00
|
|
|
INT32 titlescrollyspeed; // y scroll
|
2018-11-20 22:28:26 +00:00
|
|
|
boolean bghide; // for titlemaps, hide the background.
|
2018-11-16 17:07:47 +00:00
|
|
|
|
2019-08-13 02:12:20 +00:00
|
|
|
SINT8 hidetitlepics; // hide title gfx per menu; -1 means undefined, inherits global setting
|
|
|
|
ttmode_enum ttmode; // title wing animation mode; default TTMODE_OLD
|
|
|
|
UINT8 ttscale; // scale of title wing gfx (FRACUNIT / ttscale); -1 means undefined, inherits global setting
|
|
|
|
char ttname[9]; // lump name of title wing gfx. If name length is <= 6, engine will attempt to load numbered frames (TTNAMExx)
|
|
|
|
INT16 ttx; // X position of title wing
|
|
|
|
INT16 tty; // Y position of title wing
|
|
|
|
INT16 ttloop; // # frame to loop; -1 means dont loop
|
|
|
|
UINT16 tttics; // # of tics per frame
|
2019-11-07 21:42:54 +00:00
|
|
|
|
2018-11-16 19:16:41 +00:00
|
|
|
char musname[7]; ///< Music track to play. "" for no music.
|
|
|
|
UINT16 mustrack; ///< Subsong to play. Only really relevant for music modules and specific formats supported by GME. 0 to ignore.
|
|
|
|
boolean muslooping; ///< Loop the music
|
2018-11-17 21:32:30 +00:00
|
|
|
boolean musstop; ///< Don't play any music
|
|
|
|
boolean musignore; ///< Let the current music keep playing
|
2018-11-16 19:16:41 +00:00
|
|
|
|
2018-11-17 21:32:30 +00:00
|
|
|
boolean enterbubble; // run all entrance line execs after common ancestor and up to child. If false, only run the child's exec
|
|
|
|
boolean exitbubble; // run all exit line execs from child and up to before common ancestor. If false, only run the child's exec
|
2018-11-16 17:07:47 +00:00
|
|
|
INT32 entertag; // line exec to run on menu enter, if titlemap
|
|
|
|
INT32 exittag; // line exec to run on menu exit, if titlemap
|
2018-11-17 21:32:30 +00:00
|
|
|
INT16 enterwipe; // wipe type to run on menu enter, -1 means default
|
|
|
|
INT16 exitwipe; // wipe type to run on menu exit, -1 means default
|
2018-11-25 20:08:12 +00:00
|
|
|
} menupres_t;
|
|
|
|
|
|
|
|
extern menupres_t menupres[NUMMENUTYPES];
|
|
|
|
extern UINT32 prevMenuId;
|
|
|
|
extern UINT32 activeMenuId;
|
|
|
|
|
|
|
|
void M_InitMenuPresTables(void);
|
2018-11-20 22:28:26 +00:00
|
|
|
UINT8 M_GetYoungestChildMenu(void);
|
2018-11-25 20:08:12 +00:00
|
|
|
void M_ChangeMenuMusic(const char *defaultmusname, boolean defaultmuslooping);
|
|
|
|
void M_SetMenuCurBackground(const char *defaultname);
|
|
|
|
void M_SetMenuCurFadeValue(UINT8 defaultvalue);
|
2019-08-13 02:12:20 +00:00
|
|
|
void M_SetMenuCurTitlePics(void);
|
2018-11-16 23:26:26 +00:00
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
// Called by main loop,
|
|
|
|
// saves config file and calls I_Quit when user exits.
|
|
|
|
// Even when the menu is not displayed,
|
|
|
|
// this can resize the view and change game parameters.
|
|
|
|
// Does all the real work of the menu interaction.
|
|
|
|
boolean M_Responder(event_t *ev);
|
|
|
|
|
|
|
|
// Called by main loop, only used for menu (skull cursor) animation.
|
|
|
|
void M_Ticker(void);
|
|
|
|
|
|
|
|
// Called by main loop, draws the menus directly into the screen buffer.
|
|
|
|
void M_Drawer(void);
|
|
|
|
|
|
|
|
// Called by D_SRB2Main, loads the config file.
|
|
|
|
void M_Init(void);
|
|
|
|
|
2019-01-27 04:16:49 +00:00
|
|
|
// Called by D_SRB2Main also, sets up the playermenu and description tables.
|
|
|
|
void M_InitCharacterTables(void);
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
// Called by intro code to force menu up upon a keypress,
|
|
|
|
// does nothing if menu is already up.
|
|
|
|
void M_StartControlPanel(void);
|
|
|
|
|
|
|
|
// Called upon end of a mode attack run
|
|
|
|
void M_EndModeAttackRun(void);
|
|
|
|
|
2014-03-17 12:13:16 +00:00
|
|
|
// Called on new server add, or other reasons
|
|
|
|
void M_SortServerList(void);
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
// Draws a box with a texture inside as background for messages
|
|
|
|
void M_DrawTextBox(INT32 x, INT32 y, INT32 width, INT32 boxlines);
|
|
|
|
|
|
|
|
// the function to show a message box typing with the string inside
|
|
|
|
// string must be static (not in the stack)
|
|
|
|
// routine is a function taking a INT32 in parameter
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
MM_NOTHING = 0, // is just displayed until the user do someting
|
|
|
|
MM_YESNO, // routine is called with only 'y' or 'n' in param
|
|
|
|
MM_EVENTHANDLER // the same of above but without 'y' or 'n' restriction
|
|
|
|
// and routine is void routine(event_t *) (ex: set control)
|
|
|
|
} menumessagetype_t;
|
|
|
|
void M_StartMessage(const char *string, void *routine, menumessagetype_t itemtype);
|
|
|
|
|
|
|
|
// Called by linux_x/i_video_xshm.c
|
|
|
|
void M_QuitResponse(INT32 ch);
|
|
|
|
|
2017-01-27 14:42:57 +00:00
|
|
|
// Determines whether to show a level in the list (platter version does not need to be exposed)
|
2014-03-15 16:59:03 +00:00
|
|
|
boolean M_CanShowLevelInList(INT32 mapnum, INT32 gt);
|
|
|
|
|
|
|
|
// flags for items in the menu
|
|
|
|
// menu handle (what we do when key is pressed
|
2019-12-31 05:40:13 +00:00
|
|
|
#define IT_TYPE 15 // (1+2+4+8)
|
2014-03-15 16:59:03 +00:00
|
|
|
#define IT_CALL 0 // call the function
|
2019-12-31 05:40:13 +00:00
|
|
|
#define IT_SPACE 1 // no handling
|
2014-03-15 16:59:03 +00:00
|
|
|
#define IT_ARROWS 2 // call function with 0 for left arrow and 1 for right arrow in param
|
|
|
|
#define IT_KEYHANDLER 4 // call with the key in param
|
|
|
|
#define IT_SUBMENU 6 // go to sub menu
|
|
|
|
#define IT_CVAR 8 // handle as a cvar
|
2019-12-31 05:40:13 +00:00
|
|
|
#define IT_PAIR 11 // no handling, define both sides of text
|
2016-07-17 14:56:31 +00:00
|
|
|
#define IT_MSGHANDLER 12 // same as key but with event and sometime can handle y/n key (special for message)
|
2014-03-15 16:59:03 +00:00
|
|
|
|
|
|
|
#define IT_DISPLAY (48+64+128) // 16+32+64+128
|
|
|
|
#define IT_NOTHING 0 // space
|
|
|
|
#define IT_PATCH 16 // a patch or a string with big font
|
|
|
|
#define IT_STRING 32 // little string (spaced with 10)
|
|
|
|
#define IT_WHITESTRING 48 // little string in white
|
|
|
|
#define IT_DYBIGSPACE 64 // same as noting
|
|
|
|
#define IT_DYLITLSPACE (16+64) // little space
|
|
|
|
#define IT_STRING2 (32+64) // a simple string
|
|
|
|
#define IT_GRAYPATCH (16+32+64) // grayed patch or big font string
|
|
|
|
#define IT_BIGSLIDER 128 // volume sound use this
|
|
|
|
#define IT_TRANSTEXT (16+128) // Transparent text
|
|
|
|
#define IT_TRANSTEXT2 (32+128) // used for control names
|
|
|
|
#define IT_HEADERTEXT (48+128) // Non-selectable header option, displays in yellow offset to the left a little
|
|
|
|
#define IT_QUESTIONMARKS (64+128) // Displays as question marks, used for secrets
|
|
|
|
#define IT_CENTER 256 // if IT_PATCH, center it on screen
|
|
|
|
|
|
|
|
//consvar specific
|
|
|
|
#define IT_CVARTYPE (512+1024+2048)
|
|
|
|
#define IT_CV_NORMAL 0
|
|
|
|
#define IT_CV_SLIDER 512
|
|
|
|
#define IT_CV_STRING 1024
|
|
|
|
#define IT_CV_NOPRINT 1536
|
|
|
|
#define IT_CV_NOMOD 2048
|
|
|
|
#define IT_CV_INVISSLIDER 2560
|
2019-12-06 18:31:31 +00:00
|
|
|
#define IT_CV_INTEGERSTEP 4096 // if IT_CV_NORMAL and cvar is CV_FLOAT, modify it by 1 instead of 0.0625
|
|
|
|
#define IT_CV_FLOATSLIDER 4608 // IT_CV_SLIDER, value modified by 0.0625 instead of 1 (for CV_FLOAT cvars)
|
2014-03-15 16:59:03 +00:00
|
|
|
|
|
|
|
//call/submenu specific
|
|
|
|
// There used to be a lot more here but ...
|
|
|
|
// A lot of them became redundant with the advent of the Pause menu, so they were removed
|
|
|
|
#define IT_CALLTYPE (512+1024)
|
|
|
|
#define IT_CALL_NORMAL 0
|
|
|
|
#define IT_CALL_NOTMODIFIED 512
|
|
|
|
|
|
|
|
// in INT16 for some common use
|
|
|
|
#define IT_BIGSPACE (IT_SPACE +IT_DYBIGSPACE)
|
|
|
|
#define IT_LITLSPACE (IT_SPACE +IT_DYLITLSPACE)
|
|
|
|
#define IT_CONTROL (IT_STRING2+IT_CALL)
|
|
|
|
#define IT_CVARMAX (IT_CVAR +IT_CV_NOMOD)
|
|
|
|
#define IT_DISABLED (IT_SPACE +IT_GRAYPATCH)
|
|
|
|
#define IT_GRAYEDOUT (IT_SPACE +IT_TRANSTEXT)
|
|
|
|
#define IT_GRAYEDOUT2 (IT_SPACE +IT_TRANSTEXT2)
|
|
|
|
#define IT_HEADER (IT_SPACE +IT_HEADERTEXT)
|
|
|
|
#define IT_SECRET (IT_SPACE +IT_QUESTIONMARKS)
|
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
#define MAXSTRINGLENGTH 32
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
typedef union
|
|
|
|
{
|
|
|
|
struct menu_s *submenu; // IT_SUBMENU
|
|
|
|
consvar_t *cvar; // IT_CVAR
|
|
|
|
void (*routine)(INT32 choice); // IT_CALL, IT_KEYHANDLER, IT_ARROWS
|
|
|
|
} itemaction_t;
|
|
|
|
|
|
|
|
//
|
|
|
|
// MENU TYPEDEFS
|
|
|
|
//
|
|
|
|
typedef struct menuitem_s
|
|
|
|
{
|
|
|
|
// show IT_xxx
|
|
|
|
UINT16 status;
|
|
|
|
|
|
|
|
const char *patch;
|
|
|
|
const char *text; // used when FONTBxx lump is found
|
|
|
|
|
|
|
|
// FIXME: should be itemaction_t
|
|
|
|
void *itemaction;
|
|
|
|
|
|
|
|
// hotkey in menu or y of the item
|
|
|
|
UINT8 alphaKey;
|
|
|
|
} menuitem_t;
|
|
|
|
|
|
|
|
typedef struct menu_s
|
|
|
|
{
|
2018-11-16 14:22:27 +00:00
|
|
|
UINT32 menuid; // ID to encode menu type and hierarchy
|
2014-03-15 16:59:03 +00:00
|
|
|
const char *menutitlepic;
|
|
|
|
INT16 numitems; // # of menu items
|
|
|
|
struct menu_s *prevMenu; // previous menu
|
|
|
|
menuitem_t *menuitems; // menu items
|
|
|
|
void (*drawroutine)(void); // draw routine
|
|
|
|
INT16 x, y; // x, y of menu
|
|
|
|
INT16 lastOn; // last item user was on in menu
|
|
|
|
boolean (*quitroutine)(void); // called before quit a menu return true if we can
|
|
|
|
} menu_t;
|
|
|
|
|
|
|
|
void M_SetupNextMenu(menu_t *menudef);
|
|
|
|
void M_ClearMenus(boolean callexitmenufunc);
|
|
|
|
|
2020-01-18 19:18:20 +00:00
|
|
|
// Maybe this goes here????? Who knows.
|
|
|
|
boolean M_MouseNeeded(void);
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
extern menu_t *currentMenu;
|
|
|
|
|
|
|
|
extern menu_t MainDef;
|
|
|
|
extern menu_t SP_LoadDef;
|
|
|
|
|
2018-12-06 15:54:58 +00:00
|
|
|
// Call upon joystick hotplug
|
|
|
|
void M_SetupJoystickMenu(INT32 choice);
|
|
|
|
extern menu_t OP_JoystickSetDef;
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
// Stuff for customizing the player select screen
|
|
|
|
typedef struct
|
|
|
|
{
|
2017-03-17 14:27:17 +00:00
|
|
|
boolean used;
|
2014-03-15 16:59:03 +00:00
|
|
|
char notes[441];
|
|
|
|
char picname[8];
|
|
|
|
char skinname[SKINNAMESIZE*2+2]; // skin&skin\0
|
2019-08-19 17:23:03 +00:00
|
|
|
patch_t *charpic;
|
2016-08-06 21:41:25 +00:00
|
|
|
UINT8 prev;
|
|
|
|
UINT8 next;
|
2019-10-14 05:24:44 +00:00
|
|
|
|
|
|
|
// new character select
|
|
|
|
char displayname[SKINNAMESIZE+1];
|
2019-10-19 17:15:54 +00:00
|
|
|
SINT8 skinnum[2];
|
2019-10-14 05:24:44 +00:00
|
|
|
UINT8 oppositecolor;
|
|
|
|
char nametag[8];
|
|
|
|
patch_t *namepic;
|
|
|
|
UINT8 tagtextcolor;
|
|
|
|
UINT8 tagoutlinecolor;
|
2014-03-15 16:59:03 +00:00
|
|
|
} description_t;
|
|
|
|
|
2017-03-06 19:03:05 +00:00
|
|
|
// level select platter
|
2017-01-26 19:14:52 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
char header[22+5]; // mapheader_t lvltttl max length + " ZONE"
|
|
|
|
INT32 maplist[3];
|
2017-02-02 12:52:39 +00:00
|
|
|
char mapnames[3][17+1];
|
2017-02-17 01:45:21 +00:00
|
|
|
boolean mapavailable[4]; // mapavailable[3] == wide or not
|
2017-01-26 19:14:52 +00:00
|
|
|
} levelselectrow_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
UINT8 numrows;
|
|
|
|
levelselectrow_t *rows;
|
|
|
|
} levelselect_t;
|
|
|
|
// experimental level select end
|
|
|
|
|
2017-02-18 17:09:03 +00:00
|
|
|
// descriptions for gametype select screen
|
|
|
|
typedef struct
|
|
|
|
{
|
2017-09-15 19:34:46 +00:00
|
|
|
UINT8 col[2];
|
2017-02-18 17:09:03 +00:00
|
|
|
char notes[441];
|
|
|
|
} gtdesc_t;
|
2019-12-18 16:24:10 +00:00
|
|
|
extern gtdesc_t gametypedesc[NUMGAMETYPES];
|
2017-02-18 17:09:03 +00:00
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
// mode descriptions for video mode menu
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
INT32 modenum; // video mode number in the vidmodes list
|
|
|
|
const char *desc; // XXXxYYY
|
|
|
|
UINT8 goodratio; // aspect correct if 1
|
|
|
|
} modedesc_t;
|
|
|
|
|
|
|
|
// savegame struct for save game menu
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
char levelname[32];
|
|
|
|
UINT8 skinnum;
|
|
|
|
UINT8 botskin;
|
|
|
|
UINT8 numemeralds;
|
2017-08-23 21:05:11 +00:00
|
|
|
UINT8 numgameovers;
|
2014-03-15 16:59:03 +00:00
|
|
|
INT32 lives;
|
|
|
|
INT32 continues;
|
|
|
|
INT32 gamemap;
|
|
|
|
} saveinfo_t;
|
|
|
|
|
2019-01-16 01:09:55 +00:00
|
|
|
extern description_t description[MAXSKINS];
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2019-03-11 21:57:11 +00:00
|
|
|
extern consvar_t cv_showfocuslost;
|
2014-03-15 16:59:03 +00:00
|
|
|
extern consvar_t cv_newgametype, cv_nextmap, cv_chooseskin, cv_serversort;
|
|
|
|
extern CV_PossibleValue_t gametype_cons_t[];
|
|
|
|
|
|
|
|
extern INT16 startmap;
|
|
|
|
extern INT32 ultimate_selectable;
|
2017-10-03 17:18:18 +00:00
|
|
|
extern INT16 char_on, startchar;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2018-06-13 23:58:28 +00:00
|
|
|
#define MAXSAVEGAMES 31
|
2017-08-20 22:18:47 +00:00
|
|
|
#define NOSAVESLOT 0 //slot where Play Without Saving appears
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2017-08-21 15:02:13 +00:00
|
|
|
#define BwehHehHe() S_StartSound(NULL, sfx_bewar1+M_RandomKey(4)) // Bweh heh he
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2018-11-11 14:21:10 +00:00
|
|
|
void M_TutorialSaveControlResponse(INT32 ch);
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
void M_ForceSaveSlotSelected(INT32 sslot);
|
|
|
|
|
|
|
|
void M_CheatActivationResponder(INT32 ch);
|
|
|
|
|
2018-06-13 23:58:28 +00:00
|
|
|
void M_ModeAttackRetry(INT32 choice);
|
|
|
|
|
2017-02-05 21:20:32 +00:00
|
|
|
// Level select updating
|
|
|
|
void Nextmap_OnChange(void);
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
// Screenshot menu updating
|
|
|
|
void Moviemode_mode_Onchange(void);
|
|
|
|
void Screenshot_option_Onchange(void);
|
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
// Addons menu updating
|
|
|
|
void Addons_option_Onchange(void);
|
|
|
|
|
2019-09-08 05:29:09 +00:00
|
|
|
// Moviemode menu updating
|
|
|
|
void Moviemode_option_Onchange(void);
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
// These defines make it a little easier to make menus
|
2018-11-16 14:22:27 +00:00
|
|
|
#define DEFAULTMENUSTYLE(id, header, source, prev, x, y)\
|
2014-03-15 16:59:03 +00:00
|
|
|
{\
|
2018-11-16 14:22:27 +00:00
|
|
|
id,\
|
2014-03-15 16:59:03 +00:00
|
|
|
header,\
|
|
|
|
sizeof(source)/sizeof(menuitem_t),\
|
|
|
|
prev,\
|
|
|
|
source,\
|
|
|
|
M_DrawGenericMenu,\
|
|
|
|
x, y,\
|
|
|
|
0,\
|
|
|
|
NULL\
|
|
|
|
}
|
|
|
|
|
2018-11-16 14:22:27 +00:00
|
|
|
#define DEFAULTSCROLLMENUSTYLE(id, header, source, prev, x, y)\
|
2017-04-29 15:40:07 +00:00
|
|
|
{\
|
2018-11-16 14:22:27 +00:00
|
|
|
id,\
|
2017-04-29 15:40:07 +00:00
|
|
|
header,\
|
|
|
|
sizeof(source)/sizeof(menuitem_t),\
|
|
|
|
prev,\
|
|
|
|
source,\
|
|
|
|
M_DrawGenericScrollMenu,\
|
|
|
|
x, y,\
|
|
|
|
0,\
|
|
|
|
NULL\
|
|
|
|
}
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
#define PAUSEMENUSTYLE(source, x, y)\
|
|
|
|
{\
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_SPECIAL,\
|
2014-03-15 16:59:03 +00:00
|
|
|
NULL,\
|
|
|
|
sizeof(source)/sizeof(menuitem_t),\
|
|
|
|
NULL,\
|
|
|
|
source,\
|
|
|
|
M_DrawPauseMenu,\
|
|
|
|
x, y,\
|
|
|
|
0,\
|
|
|
|
NULL\
|
|
|
|
}
|
|
|
|
|
2018-11-16 14:22:27 +00:00
|
|
|
#define CENTERMENUSTYLE(id, header, source, prev, y)\
|
2014-03-15 16:59:03 +00:00
|
|
|
{\
|
2018-11-16 14:22:27 +00:00
|
|
|
id,\
|
2014-03-15 16:59:03 +00:00
|
|
|
header,\
|
|
|
|
sizeof(source)/sizeof(menuitem_t),\
|
|
|
|
prev,\
|
|
|
|
source,\
|
|
|
|
M_DrawCenteredMenu,\
|
|
|
|
BASEVIDWIDTH/2, y,\
|
|
|
|
0,\
|
|
|
|
NULL\
|
|
|
|
}
|
|
|
|
|
2018-11-16 14:22:27 +00:00
|
|
|
#define MAPPLATTERMENUSTYLE(id, header, source)\
|
2014-03-15 16:59:03 +00:00
|
|
|
{\
|
2018-11-16 14:22:27 +00:00
|
|
|
id,\
|
2014-03-15 16:59:03 +00:00
|
|
|
header,\
|
|
|
|
sizeof (source)/sizeof (menuitem_t),\
|
2017-02-02 16:10:37 +00:00
|
|
|
&MainDef,\
|
2014-03-15 16:59:03 +00:00
|
|
|
source,\
|
2017-02-02 16:10:37 +00:00
|
|
|
M_DrawLevelPlatterMenu,\
|
|
|
|
0,0,\
|
2014-03-15 16:59:03 +00:00
|
|
|
0,\
|
|
|
|
NULL\
|
|
|
|
}
|
|
|
|
|
2018-11-16 14:22:27 +00:00
|
|
|
#define CONTROLMENUSTYLE(id, source, prev)\
|
2014-03-15 16:59:03 +00:00
|
|
|
{\
|
2018-11-16 14:22:27 +00:00
|
|
|
id,\
|
2014-03-15 16:59:03 +00:00
|
|
|
"M_CONTRO",\
|
|
|
|
sizeof (source)/sizeof (menuitem_t),\
|
|
|
|
prev,\
|
|
|
|
source,\
|
|
|
|
M_DrawControl,\
|
|
|
|
24, 40,\
|
|
|
|
0,\
|
|
|
|
NULL\
|
|
|
|
}
|
|
|
|
|
|
|
|
#define IMAGEDEF(source)\
|
|
|
|
{\
|
2018-11-16 14:56:22 +00:00
|
|
|
MN_SPECIAL,\
|
2014-03-15 16:59:03 +00:00
|
|
|
NULL,\
|
|
|
|
sizeof (source)/sizeof (menuitem_t),\
|
|
|
|
NULL,\
|
|
|
|
source,\
|
|
|
|
M_DrawImageDef,\
|
|
|
|
0, 0,\
|
|
|
|
0,\
|
|
|
|
NULL\
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //__X_MENU__
|