2008-09-02 03:57:21 +02:00
|
|
|
/****************************************************************************
|
2009-07-22 04:05:49 +02:00
|
|
|
* FCE Ultra
|
2008-09-02 03:57:21 +02:00
|
|
|
* Nintendo Wii/Gamecube Port
|
|
|
|
*
|
2009-03-28 18:23:08 +01:00
|
|
|
* Tantric 2008-2009
|
2008-09-02 03:57:21 +02:00
|
|
|
*
|
|
|
|
* menu.h
|
|
|
|
*
|
|
|
|
* Main menu flow control
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _NGCMENU_
|
|
|
|
#define _NGCMENU_
|
|
|
|
|
2009-03-28 18:23:08 +01:00
|
|
|
#include <ogcsys.h>
|
|
|
|
|
2009-07-20 08:18:06 +02:00
|
|
|
bool GuiLoaded();
|
2009-03-28 18:23:08 +01:00
|
|
|
void InitGUIThreads();
|
|
|
|
void MainMenu (int menuitem);
|
|
|
|
void ErrorPrompt(const char * msg);
|
|
|
|
int ErrorPromptRetry(const char * msg);
|
|
|
|
void InfoPrompt(const char * msg);
|
|
|
|
void ShowAction (const char *msg);
|
|
|
|
void CancelAction();
|
|
|
|
void ShowProgress (const char *msg, int done, int total);
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
MENU_EXIT = -1,
|
|
|
|
MENU_NONE,
|
|
|
|
MENU_SETTINGS,
|
|
|
|
MENU_SETTINGS_FILE,
|
|
|
|
MENU_SETTINGS_MENU,
|
|
|
|
MENU_SETTINGS_NETWORK,
|
|
|
|
MENU_GAMESELECTION,
|
|
|
|
MENU_GAME,
|
|
|
|
MENU_GAME_SAVE,
|
|
|
|
MENU_GAME_LOAD,
|
2009-04-13 21:48:24 +02:00
|
|
|
MENU_GAMESETTINGS,
|
|
|
|
MENU_GAMESETTINGS_MAPPINGS,
|
|
|
|
MENU_GAMESETTINGS_MAPPINGS_CTRL,
|
|
|
|
MENU_GAMESETTINGS_MAPPINGS_MAP,
|
|
|
|
MENU_GAMESETTINGS_VIDEO,
|
|
|
|
MENU_GAMESETTINGS_CHEATS
|
2009-03-28 18:23:08 +01:00
|
|
|
};
|
2008-09-02 03:57:21 +02:00
|
|
|
|
|
|
|
#endif
|