fceugx/source/ngc/menu.c

899 lines
20 KiB
C
Raw Normal View History

2008-09-02 03:57:21 +02:00
/****************************************************************************
* FCE Ultra 0.98.12
* Nintendo Wii/Gamecube Port
*
* Tantric September 2008
*
* menu.c
*
* Main menu flow control
****************************************************************************/
#include <gccore.h>
#include <ogcsys.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wiiuse/wpad.h>
#ifdef HW_RVL
2008-09-02 03:57:21 +02:00
#include <di/di.h>
#endif
#include "common.h"
#include "fceugx.h"
2008-09-02 03:57:21 +02:00
#include "fceuconfig.h"
#include "pad.h"
#include "button_mapping.h"
#include "filesel.h"
#include "gcunzip.h"
2008-12-24 08:58:23 +01:00
#include "networkop.h"
2008-09-02 03:57:21 +02:00
#include "memcardop.h"
#include "fileop.h"
#include "dvd.h"
#include "menudraw.h"
#include "fceustate.h"
#include "gcvideo.h"
#include "preferences.h"
#include "fceuram.h"
2008-09-06 20:24:52 +02:00
#include "fceuload.h"
2008-09-02 03:57:21 +02:00
extern void ResetNES(void);
extern void PowerNES(void);
2008-09-02 03:57:21 +02:00
extern int menu;
extern bool romLoaded;
/****************************************************************************
* Load Manager
****************************************************************************/
int
LoadManager ()
{
int loadROM = OpenROM(GCSettings.LoadMethod);
if ( loadROM == 1 ) // if ROM was loaded
{
// load the RAM
2008-09-02 03:57:21 +02:00
if (GCSettings.AutoLoad == 1)
LoadRAM(GCSettings.SaveMethod, SILENT);
2008-09-06 20:24:52 +02:00
else if (GCSettings.AutoLoad == 2)
2008-09-02 03:57:21 +02:00
LoadState(GCSettings.SaveMethod, SILENT);
ResetNES();
2008-09-02 03:57:21 +02:00
}
return loadROM;
}
/****************************************************************************
2008-10-24 07:38:46 +02:00
* Video Options Menu
2008-09-02 03:57:21 +02:00
****************************************************************************/
2008-11-19 08:11:06 +01:00
static void
2008-10-24 07:38:46 +02:00
VideoOptions ()
2008-09-02 03:57:21 +02:00
{
int videomenuCount = 8;
char videomenu[][50] = {
"Video Rendering",
"Video Scaling",
"Video Cropping",
"Palette",
"Enable Zooming",
"Timing",
"8 Sprite Limit",
"Back to Preferences Menu"
};
2008-09-02 03:57:21 +02:00
int ret = 0;
int quit = 0;
int oldmenu = menu;
menu = 0;
while (quit == 0)
{
// don't allow original render mode if progressive video mode detected
if (GCSettings.render==0 && progressive)
GCSettings.render++;
2008-11-10 04:36:21 +01:00
if (GCSettings.render == 0)
2008-10-24 07:38:46 +02:00
sprintf (videomenu[0], "Video Rendering Original");
2008-11-10 04:36:21 +01:00
if (GCSettings.render == 1)
2008-10-24 07:38:46 +02:00
sprintf (videomenu[0], "Video Rendering Filtered");
2008-11-10 04:36:21 +01:00
if (GCSettings.render == 2)
2008-10-24 07:38:46 +02:00
sprintf (videomenu[0], "Video Rendering Unfiltered");
2008-10-24 07:38:46 +02:00
sprintf (videomenu[1], "Video Scaling %s",
GCSettings.widescreen == true ? "16:9 Correction" : "Default");
2008-09-02 03:57:21 +02:00
2008-11-10 04:36:21 +01:00
if (GCSettings.hideoverscan == 0)
sprintf (videomenu[2], "Video Cropping Off");
if (GCSettings.hideoverscan == 1)
sprintf (videomenu[2], "Video Cropping Hide Vertical");
if (GCSettings.hideoverscan == 2)
sprintf (videomenu[2], "Video Cropping Hide All");
sprintf (videomenu[3], "Palette - %s",
2008-09-02 03:57:21 +02:00
GCSettings.currpal ? palettes[GCSettings.currpal-1].name : "Default");
2008-11-10 04:36:21 +01:00
sprintf (videomenu[4], "Enable Zooming %s",
2008-10-24 07:38:46 +02:00
GCSettings.Zoom == true ? " ON" : "OFF");
2008-09-02 03:57:21 +02:00
2008-11-10 04:36:21 +01:00
sprintf (videomenu[5], "Timing - %s",
2008-09-02 03:57:21 +02:00
GCSettings.timing == true ? " PAL" : "NTSC");
2008-11-10 04:36:21 +01:00
sprintf (videomenu[6], "8 Sprite Limit - %s",
GCSettings.slimit == true ? " ON" : "OFF");
ret = RunMenu (videomenu, videomenuCount, "Video Options", 20, -1);
2008-09-02 03:57:21 +02:00
switch (ret)
{
case 0:
GCSettings.render++;
2008-11-10 04:36:21 +01:00
if (GCSettings.render > 2)
GCSettings.render = 0;
// reset zoom
zoom_reset ();
2008-09-02 03:57:21 +02:00
break;
case 1:
GCSettings.widescreen ^= 1;
break;
2008-11-10 04:36:21 +01:00
case 2:
GCSettings.hideoverscan++;
if (GCSettings.hideoverscan > 2)
GCSettings.hideoverscan = 0;
break;
case 3: // palette
2008-09-02 03:57:21 +02:00
if ( ++GCSettings.currpal > MAXPAL )
GCSettings.currpal = 0;
break;
2008-11-10 04:36:21 +01:00
case 4:
2008-10-24 07:38:46 +02:00
GCSettings.Zoom ^= 1;
2008-09-02 03:57:21 +02:00
break;
2008-11-10 04:36:21 +01:00
case 5: // timing
2008-09-02 03:57:21 +02:00
GCSettings.timing ^= 1;
2008-11-07 06:28:40 +01:00
FCEUI_SetVidSystem(GCSettings.timing); // causes a small 'pop' in the audio
2008-09-02 03:57:21 +02:00
break;
2008-11-10 04:36:21 +01:00
case 6: // 8 sprite limit
GCSettings.slimit ^=1;
FCEUI_DisableSpriteLimitation(GCSettings.slimit);
break;
2008-09-02 03:57:21 +02:00
case -1: // Button B
2008-11-10 04:36:21 +01:00
case 7:
2008-09-02 03:57:21 +02:00
quit = 1;
break;
}
}
menu = oldmenu;
}
/****************************************************************************
2008-10-24 07:38:46 +02:00
* File Options Menu
2008-09-02 03:57:21 +02:00
****************************************************************************/
static void
FileOptions()
{
int filemenuCount = 8;
char filemenu[][50] = {
2008-09-02 03:57:21 +02:00
"Load Method",
"Load Folder",
"Save Method",
"Save Folder",
2008-09-02 03:57:21 +02:00
"Auto Load",
"Auto Save",
"Verify MC Saves",
"Back to Preferences Menu"
};
2008-09-02 03:57:21 +02:00
int ret = 0;
int quit = 0;
int oldmenu = menu;
menu = 0;
while (quit == 0)
{
// some load/save methods are not implemented - here's where we skip them
// they need to be skipped in the order they were enumerated in snes9xGX.h
// no USB ports on GameCube
#ifndef HW_RVL
if(GCSettings.LoadMethod == METHOD_USB)
GCSettings.LoadMethod++;
if(GCSettings.SaveMethod == METHOD_USB)
GCSettings.SaveMethod++;
#endif
// saving to DVD is impossible
if(GCSettings.SaveMethod == METHOD_DVD)
GCSettings.SaveMethod++;
// disable SMB in GC mode (stalls out)
#ifndef HW_RVL
if(GCSettings.LoadMethod == METHOD_SMB)
GCSettings.LoadMethod++;
if(GCSettings.SaveMethod == METHOD_SMB)
GCSettings.SaveMethod++;
#endif
// disable MC saving in Wii mode - does not work for some reason!
#ifdef HW_RVL
if(GCSettings.SaveMethod == METHOD_MC_SLOTA)
GCSettings.SaveMethod++;
if(GCSettings.SaveMethod == METHOD_MC_SLOTB)
GCSettings.SaveMethod++;
2008-10-24 07:38:46 +02:00
filemenu[6][0] = '\0';
2008-10-09 06:25:35 +02:00
#else
2008-10-24 07:38:46 +02:00
sprintf (filemenu[6], "Verify MC Saves %s",
2008-10-09 06:25:35 +02:00
GCSettings.VerifySaves == true ? " ON" : "OFF");
2008-09-02 03:57:21 +02:00
#endif
// correct load/save methods out of bounds
if(GCSettings.LoadMethod > 4)
GCSettings.LoadMethod = 0;
if(GCSettings.SaveMethod > 6)
GCSettings.SaveMethod = 0;
2008-10-24 07:38:46 +02:00
if (GCSettings.LoadMethod == METHOD_AUTO) sprintf (filemenu[0],"Load Method AUTO");
else if (GCSettings.LoadMethod == METHOD_SD) sprintf (filemenu[0],"Load Method SD");
else if (GCSettings.LoadMethod == METHOD_USB) sprintf (filemenu[0],"Load Method USB");
else if (GCSettings.LoadMethod == METHOD_DVD) sprintf (filemenu[0],"Load Method DVD");
else if (GCSettings.LoadMethod == METHOD_SMB) sprintf (filemenu[0],"Load Method Network");
2008-09-02 03:57:21 +02:00
2008-10-24 07:38:46 +02:00
sprintf (filemenu[1], "Load Folder %s", GCSettings.LoadFolder);
2008-09-02 03:57:21 +02:00
2008-10-24 07:38:46 +02:00
if (GCSettings.SaveMethod == METHOD_AUTO) sprintf (filemenu[2],"Save Method AUTO");
else if (GCSettings.SaveMethod == METHOD_SD) sprintf (filemenu[2],"Save Method SD");
else if (GCSettings.SaveMethod == METHOD_USB) sprintf (filemenu[2],"Save Method USB");
else if (GCSettings.SaveMethod == METHOD_SMB) sprintf (filemenu[2],"Save Method Network");
else if (GCSettings.SaveMethod == METHOD_MC_SLOTA) sprintf (filemenu[2],"Save Method MC Slot A");
else if (GCSettings.SaveMethod == METHOD_MC_SLOTB) sprintf (filemenu[2],"Save Method MC Slot B");
2008-09-02 03:57:21 +02:00
2008-10-24 07:38:46 +02:00
sprintf (filemenu[3], "Save Folder %s", GCSettings.SaveFolder);
2008-09-02 03:57:21 +02:00
// disable changing load/save directories for now
2008-10-24 07:38:46 +02:00
filemenu[1][0] = '\0';
filemenu[3][0] = '\0';
2008-09-02 03:57:21 +02:00
2008-10-24 07:38:46 +02:00
if (GCSettings.AutoLoad == 0) sprintf (filemenu[4],"Auto Load OFF");
else if (GCSettings.AutoLoad == 1) sprintf (filemenu[4],"Auto Load RAM");
else if (GCSettings.AutoLoad == 2) sprintf (filemenu[4],"Auto Load STATE");
2008-09-02 03:57:21 +02:00
2008-10-24 07:38:46 +02:00
if (GCSettings.AutoSave == 0) sprintf (filemenu[5],"Auto Save OFF");
else if (GCSettings.AutoSave == 1) sprintf (filemenu[5],"Auto Save RAM");
else if (GCSettings.AutoSave == 2) sprintf (filemenu[5],"Auto Save STATE");
else if (GCSettings.AutoSave == 3) sprintf (filemenu[5],"Auto Save BOTH");
2008-09-02 03:57:21 +02:00
ret = RunMenu (filemenu, filemenuCount, "Save/Load Options", 20, -1);
2008-09-02 03:57:21 +02:00
switch (ret)
{
case 0:
GCSettings.LoadMethod ++;
break;
case 1:
break;
case 2:
GCSettings.SaveMethod ++;
break;
case 3:
break;
case 4:
GCSettings.AutoLoad ++;
if (GCSettings.AutoLoad > 2)
2008-09-02 03:57:21 +02:00
GCSettings.AutoLoad = 0;
break;
case 5:
GCSettings.AutoSave ++;
if (GCSettings.AutoSave > 3)
2008-09-02 03:57:21 +02:00
GCSettings.AutoSave = 0;
break;
case 6:
GCSettings.VerifySaves ^= 1;
break;
case -1: // Button B
2008-10-24 07:38:46 +02:00
case 7:
2008-09-02 03:57:21 +02:00
quit = 1;
break;
}
}
menu = oldmenu;
}
/****************************************************************************
* Game Options Menu
****************************************************************************/
static int
2008-09-02 03:57:21 +02:00
GameMenu ()
{
2008-10-24 07:38:46 +02:00
int gamemenuCount = 9;
2008-09-02 03:57:21 +02:00
char gamemenu[][50] = {
"Return to Game",
"Reset Game",
"ROM Information",
"Load RAM", "Save RAM",
2008-09-02 03:57:21 +02:00
"Load State", "Save State",
2008-10-24 07:38:46 +02:00
"Reset Zoom",
2008-09-02 03:57:21 +02:00
"Back to Main Menu"
};
int ret, retval = 0;
int quit = 0;
int oldmenu = menu;
menu = 0;
while (quit == 0)
{
2008-10-09 06:51:14 +02:00
if(nesGameType == 4) // FDS game
2008-10-09 06:25:35 +02:00
{
2008-10-09 06:51:14 +02:00
// disable RAM saving/loading
2008-10-09 06:25:35 +02:00
gamemenu[3][0] = '\0';
gamemenu[4][0] = '\0';
2008-10-09 06:51:14 +02:00
// disable ROM Information
gamemenu[2][0] = '\0';
2008-10-09 06:25:35 +02:00
}
// disable RAM/STATE saving/loading if AUTO is on
if (GCSettings.AutoLoad == 1) // Auto Load RAM
2008-09-02 03:57:21 +02:00
gamemenu[3][0] = '\0';
else if (GCSettings.AutoLoad == 2) // Auto Load STATE
gamemenu[5][0] = '\0';
if (GCSettings.AutoSave == 1) // Auto Save RAM
gamemenu[4][0] = '\0';
else if (GCSettings.AutoSave == 2) // Auto Save STATE
gamemenu[6][0] = '\0';
else if (GCSettings.AutoSave == 3) // Auto Save BOTH
{
2008-09-02 03:57:21 +02:00
gamemenu[4][0] = '\0';
gamemenu[6][0] = '\0';
}
2008-09-02 03:57:21 +02:00
2008-10-24 07:38:46 +02:00
// disable Reset Zoom if Zooming is off
if(!GCSettings.Zoom)
gamemenu[7][0] = '\0';
ret = RunMenu (gamemenu, gamemenuCount, "Game Menu", 20, -1);
2008-09-02 03:57:21 +02:00
switch (ret)
{
case 0: // Return to Game
quit = retval = 1;
break;
case 1: // Reset Game
PowerNES();
2008-09-02 03:57:21 +02:00
quit = retval = 1;
break;
case 2: // ROM Information
RomInfo();
WaitButtonA ();
break;
case 3: // Load RAM
quit = retval = LoadRAM(GCSettings.SaveMethod, NOTSILENT);
break;
case 4: // Save RAM
SaveRAM(GCSettings.SaveMethod, NOTSILENT);
break;
case 5: // Load State
2008-09-02 03:57:21 +02:00
quit = retval = LoadState(GCSettings.SaveMethod, NOTSILENT);
break;
case 6: // Save State
2008-09-02 03:57:21 +02:00
SaveState(GCSettings.SaveMethod, NOTSILENT);
break;
2008-10-24 07:38:46 +02:00
case 7:
zoom_reset ();
2008-10-24 07:42:35 +02:00
quit = retval = 1;
2008-10-24 07:38:46 +02:00
break;
2008-09-02 03:57:21 +02:00
case -1: // Button B
2008-10-24 07:38:46 +02:00
case 8: // Return to previous menu
2008-09-02 03:57:21 +02:00
retval = 0;
quit = 1;
break;
}
}
menu = oldmenu;
return retval;
}
/****************************************************************************
* Controller Configuration
*
* Snes9x 1.50 uses a cmd system to work out which button has been pressed.
* Here, I simply move the designated value to the gcpadmaps array, which saves
* on updating the cmd sequences.
****************************************************************************/
static u32
2008-09-02 03:57:21 +02:00
GetInput (u16 ctrlr_type)
{
//u32 exp_type;
u32 pressed;
pressed=0;
s8 gc_px = 0;
while( PAD_ButtonsHeld(0)
#ifdef HW_RVL
| WPAD_ButtonsHeld(0)
#endif
) VIDEO_WaitVSync(); // button 'debounce'
while (pressed == 0)
{
VIDEO_WaitVSync();
// get input based on controller type
if (ctrlr_type == CTRLR_GCPAD)
{
pressed = PAD_ButtonsHeld (0);
gc_px = PAD_SubStickX (0);
}
#ifdef HW_RVL
else
{
// if ( WPAD_Probe( 0, &exp_type) == 0) // check wiimote and expansion status (first if wiimote is connected & no errors)
// {
pressed = WPAD_ButtonsHeld (0);
// if (ctrlr_type != CTRLR_WIIMOTE && exp_type != ctrlr_type+1) // if we need input from an expansion, and its not connected...
// pressed = 0;
// }
}
#endif
/*** check for exit sequence (c-stick left OR home button) ***/
if ( (gc_px < -70) || (pressed & WPAD_BUTTON_HOME) || (pressed & WPAD_CLASSIC_BUTTON_HOME) )
return 0;
} // end while
while( pressed == (PAD_ButtonsHeld(0)
#ifdef HW_RVL
| WPAD_ButtonsHeld(0)
#endif
) ) VIDEO_WaitVSync();
return pressed;
} // end GetInput()
static u32
2008-09-02 03:57:21 +02:00
GetButtonMap(u16 ctrlr_type, char* btn_name)
{
int cfg_text_count = 7;
char cfg_text[][50] = {
"Remapping ",
"Press Any Button",
"on the",
" ", // identify controller
" ",
"Press C-Left or",
"Home to exit"
};
2008-09-02 03:57:21 +02:00
u32 pressed, previous;
char temp[50] = "";
uint k;
pressed = 0; previous = 1;
switch (ctrlr_type) {
case CTRLR_NUNCHUK:
strncpy (cfg_text[3], "NUNCHUK", 7);
2008-09-02 03:57:21 +02:00
break;
case CTRLR_CLASSIC:
strncpy (cfg_text[3], "CLASSIC", 7);
2008-09-02 03:57:21 +02:00
break;
case CTRLR_GCPAD:
strncpy (cfg_text[3], "GC PAD", 7);
2008-09-02 03:57:21 +02:00
break;
case CTRLR_WIIMOTE:
strncpy (cfg_text[3], "WIIMOTE", 7);
2008-09-02 03:57:21 +02:00
break;
};
/*** note which button we are remapping ***/
sprintf (temp, "Remapping ");
2008-09-02 03:57:21 +02:00
for (k=0; k<9-strlen(btn_name); k++) strcat(temp, " "); // add whitespace padding to align text
strncat (temp, btn_name, 9); // nes button we are remapping
strncpy (cfg_text[0], temp, 19); // copy this all back to the text we wish to display
DrawMenu(&cfg_text[0], NULL, cfg_text_count, 1, 20, -1); // display text
// while (previous != pressed && pressed == 0); // get two consecutive button presses (which are the same)
// {
// previous = pressed;
// VIDEO_WaitVSync(); // slow things down a bit so we don't overread the pads
pressed = GetInput(ctrlr_type);
// }
return pressed;
} // end getButtonMap()
static void
2008-09-02 03:57:21 +02:00
ConfigureButtons (u16 ctrlr_type)
{
int cfg_btns_count = 12;
char cfg_btns_menu[][50] = {
"B - ",
"A - ",
"RAPID B - ",
"RAPID A - ",
"SELECT - ",
"START - ",
"UP - ",
"DOWN - ",
"LEFT - ",
"RIGHT - ",
"SPECIAL - ",
"Return to previous"
};
2008-09-02 03:57:21 +02:00
int quit = 0;
int ret = 0;
int oldmenu = menu;
menu = 0;
char menu_title[50];
2008-09-02 03:57:21 +02:00
u32 pressed;
unsigned int* currentpadmap = 0;
char temp[50] = "";
int i, j;
uint k;
/*** Update Menu Title (based on controller we're configuring) ***/
switch (ctrlr_type) {
case CTRLR_NUNCHUK:
sprintf(menu_title, "NES - NUNCHUK");
2008-09-02 03:57:21 +02:00
currentpadmap = ncpadmap;
break;
case CTRLR_CLASSIC:
sprintf(menu_title, "NES - CLASSIC");
2008-09-02 03:57:21 +02:00
currentpadmap = ccpadmap;
break;
case CTRLR_GCPAD:
sprintf(menu_title, "NES - GC PAD");
2008-09-02 03:57:21 +02:00
currentpadmap = gcpadmap;
break;
case CTRLR_WIIMOTE:
sprintf(menu_title, "NES - WIIMOTE");
2008-09-02 03:57:21 +02:00
currentpadmap = wmpadmap;
break;
};
while (quit == 0)
{
/*** Update Menu with Current ButtonMap ***/
for (i=0; i<MAXJP; i++) // nes pad has 8 buttons to config (plus VS coin insert)
2008-09-02 03:57:21 +02:00
{
// get current padmap button name to display
for ( j=0;
j < ctrlr_def[ctrlr_type].num_btns &&
currentpadmap[i] != ctrlr_def[ctrlr_type].map[j].btn // match padmap button press with button names
; j++ );
memset (temp, 0, sizeof(temp));
strncpy (temp, cfg_btns_menu[i], 12); // copy snes button information
if (currentpadmap[i] == ctrlr_def[ctrlr_type].map[j].btn) // check if a match was made
{
for (k=0; k<7-strlen(ctrlr_def[ctrlr_type].map[j].name) ;k++) strcat(temp, " "); // add whitespace padding to align text
strncat (temp, ctrlr_def[ctrlr_type].map[j].name, 6); // update button map display
}
else
strcat (temp, "---"); // otherwise, button is 'unmapped'
2008-09-02 03:57:21 +02:00
strncpy (cfg_btns_menu[i], temp, 19); // move back updated information
}
2008-11-19 08:11:06 +01:00
ret = RunMenu (cfg_btns_menu, cfg_btns_count, menu_title, 14, -1);
2008-09-02 03:57:21 +02:00
switch (ret)
{
case 0:
case 1:
case 2:
case 3:
case 4:
case 5:
case 6:
case 7:
case 8:
case 9:
case 10:
2008-09-02 03:57:21 +02:00
/*** Change button map ***/
// wait for input
memset (temp, 0, sizeof(temp));
strncpy(temp, cfg_btns_menu[ret], 6); // get the name of the snes button we're changing
pressed = GetButtonMap(ctrlr_type, temp); // get a button selection from user
// FIX: check if input is valid for this controller
if (pressed != 0) // check if a the button was configured, or if the user exited.
currentpadmap[ret] = pressed; // update mapping
break;
case -1: /*** Button B ***/
case 11:
2008-09-02 03:57:21 +02:00
/*** Return ***/
quit = 1;
break;
}
}
menu = oldmenu;
} // end configurebuttons()
static void
2008-09-02 03:57:21 +02:00
ConfigureControllers ()
{
int ctlrmenucount = 8;
char ctlrmenu[][50] = {
"Four Score",
"Zapper",
"Zapper Crosshair",
"Nunchuk",
"Classic Controller",
"Wiimote",
"Gamecube Pad",
"Back to Preferences Menu"
};
2008-09-02 03:57:21 +02:00
int quit = 0;
int ret = 0;
int oldmenu = menu;
menu = 0;
// disable unavailable controller options if in GC mode
#ifndef HW_RVL
2008-10-29 07:07:39 +01:00
ctlrmenu[3][0] = 0;
ctlrmenu[4][0] = 0;
ctlrmenu[5][0] = 0;
2008-09-02 03:57:21 +02:00
#endif
while (quit == 0)
{
sprintf (ctlrmenu[0], "Four Score - %s",
2008-11-24 08:33:57 +01:00
GCSettings.FourScore == true ? " ON" : "OFF");
if (GCSettings.zapper == 0) sprintf (ctlrmenu[1],"Zapper - Disabled");
else if (GCSettings.zapper == 1) sprintf (ctlrmenu[1],"Zapper - Port 1");
else if (GCSettings.zapper == 2) sprintf (ctlrmenu[1],"Zapper - Port 2");
sprintf (ctlrmenu[2], "Zapper Crosshair - %s",
GCSettings.crosshair == true ? " ON" : "OFF");
2008-09-02 03:57:21 +02:00
/*** Controller Config Menu ***/
ret = RunMenu (ctlrmenu, ctlrmenucount, "Configure Controllers", 20, -1);
2008-09-02 03:57:21 +02:00
switch (ret)
{
case 0: // four score
2008-11-24 08:33:57 +01:00
GCSettings.FourScore ^= 1;
ToggleFourScore(GCSettings.FourScore, romLoaded);
break;
case 1: // zapper
GCSettings.zapper -= 1; // we do this so Port 2 is first option shown
if(GCSettings.zapper < 0)
GCSettings.zapper = 2;
2008-10-04 01:31:17 +02:00
ToggleZapper(GCSettings.zapper, romLoaded);
break;
case 2: // zapper crosshair
GCSettings.crosshair ^= 1;
break;
2008-10-04 01:31:17 +02:00
case 3:
2008-09-02 03:57:21 +02:00
/*** Configure Nunchuk ***/
ConfigureButtons (CTRLR_NUNCHUK);
break;
case 4:
2008-09-02 03:57:21 +02:00
/*** Configure Classic ***/
ConfigureButtons (CTRLR_CLASSIC);
break;
case 5:
2008-09-02 03:57:21 +02:00
/*** Configure Wiimote ***/
ConfigureButtons (CTRLR_WIIMOTE);
break;
case 6:
2008-09-02 03:57:21 +02:00
/*** Configure GC Pad ***/
ConfigureButtons (CTRLR_GCPAD);
break;
2008-10-24 07:38:46 +02:00
case -1: /*** Button B ***/
case 7:
2008-10-24 07:38:46 +02:00
/*** Return ***/
quit = 1;
break;
}
}
menu = oldmenu;
}
/****************************************************************************
* Preferences Menu
***************************************************************************/
void
PreferencesMenu ()
{
int prefmenuCount = 5;
char prefmenu[][50] = {
"Controllers",
"Video",
"Saving / Loading",
"Reset Preferences",
"Back to Main Menu"
};
2008-10-24 07:38:46 +02:00
int ret = 0;
int quit = 0;
int oldmenu = menu;
menu = 0;
while (quit == 0)
{
ret = RunMenu (prefmenu, prefmenuCount, "Preferences", 20, -1);
2008-10-24 07:38:46 +02:00
switch (ret)
{
case 0:
ConfigureControllers ();
break;
case 1:
VideoOptions ();
break;
case 2:
FileOptions ();
break;
case 3:
DefaultSettings ();
WaitPrompt("Preferences Reset");
2008-09-02 03:57:21 +02:00
break;
case -1: /*** Button B ***/
2008-10-24 07:38:46 +02:00
case 4:
SavePrefs(SILENT);
2008-09-02 03:57:21 +02:00
quit = 1;
break;
2008-10-24 07:38:46 +02:00
2008-09-02 03:57:21 +02:00
}
}
menu = oldmenu;
}
/****************************************************************************
* Main Menu
****************************************************************************/
void
MainMenu (int selectedMenu)
{
int menucount = 7;
char menuitems[][50] = {
"Choose Game",
"Preferences",
"Game Menu",
"Credits",
"DVD Motor Off",
"Reset System",
"Return to Loader"
};
2008-09-02 03:57:21 +02:00
int quit = 0;
int ret;
2008-11-13 09:01:25 +01:00
#ifdef HW_RVL
// don't show dvd motor off on the wii
menuitems[4][0] = 0;
// rename reset/exit items
sprintf (menuitems[5], "Return to Wii Menu");
sprintf (menuitems[6], "Return to Homebrew Channel");
#endif
2008-09-02 03:57:21 +02:00
VIDEO_WaitVSync ();
while (quit == 0)
{
// disable game-specific menu items if a ROM isn't loaded
if(!romLoaded)
2008-10-24 07:38:46 +02:00
menuitems[2][0] = '\0';
2008-09-02 03:57:21 +02:00
else
2008-10-29 07:07:39 +01:00
sprintf (menuitems[2], "Game Menu");
2008-09-02 03:57:21 +02:00
if(selectedMenu >= 0)
{
ret = selectedMenu;
selectedMenu = -1; // default back to main menu
}
else
{
ret = RunMenu (menuitems, menucount, "Main Menu", 20, -1);
2008-09-02 03:57:21 +02:00
}
switch (ret)
{
case 0:
// Load ROM Menu
quit = LoadManager ();
break;
case 1:
// Preferences
PreferencesMenu ();
break;
2008-10-24 07:38:46 +02:00
case 2:
2008-09-02 03:57:21 +02:00
// Game Options
quit = GameMenu ();
break;
2008-10-24 07:38:46 +02:00
case 3:
2008-09-02 03:57:21 +02:00
// Credits
Credits ();
WaitButtonA ();
break;
2008-10-24 07:38:46 +02:00
case 4:
2008-11-13 09:01:25 +01:00
// turn the dvd motor off (GC only)
#ifdef HW_DOL
dvd_motor_off ();
#endif
2008-11-20 18:59:18 +01:00
break;
2008-11-13 09:01:25 +01:00
case 5:
2008-09-02 03:57:21 +02:00
// Reset the Gamecube/Wii
Reboot();
break;
2008-11-13 09:01:25 +01:00
case 6:
2008-10-24 07:38:46 +02:00
ExitToLoader();
2008-09-02 03:57:21 +02:00
break;
case -1: // Button B
// Return to Game
if(romLoaded)
quit = 1;
break;
}
}
2008-10-04 04:32:54 +02:00
// Wait for buttons to be released
int count = 0; // how long we've been waiting for the user to release the button
while(count < 50 && (
PAD_ButtonsHeld(0)
#ifdef HW_RVL
|| WPAD_ButtonsHeld(0)
#endif
))
{
VIDEO_WaitVSync();
count++;
}
2008-09-02 03:57:21 +02:00
}