2012-01-21 21:57:41 +01:00
|
|
|
#ifndef __MENU_HPP
|
|
|
|
#define __MENU_HPP
|
2012-08-14 17:42:34 +02:00
|
|
|
//#define SHOWMEM
|
2012-02-17 22:45:30 +01:00
|
|
|
//#define SHOWMEMGECKO
|
2012-08-05 15:48:15 +02:00
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
#include <ogc/pad.h>
|
2012-05-06 14:03:43 +02:00
|
|
|
#include <vector>
|
2012-01-21 21:57:41 +01:00
|
|
|
#include <map>
|
|
|
|
|
2012-08-05 15:48:15 +02:00
|
|
|
#include "btnmap.h"
|
|
|
|
#include "channel/banner.h"
|
|
|
|
#include "channel/channels.h"
|
|
|
|
#include "cheats/gct.h"
|
|
|
|
#include "devicemounter/DeviceHandler.hpp"
|
|
|
|
#include "gecko/gecko.h"
|
|
|
|
#include "gui/coverflow.hpp"
|
|
|
|
#include "gui/cursor.hpp"
|
|
|
|
#include "gui/fanart.hpp"
|
|
|
|
#include "gui/gui.hpp"
|
|
|
|
#include "list/cachedlist.hpp"
|
|
|
|
#include "loader/disc.h"
|
|
|
|
#include "loader/gc_disc_dump.hpp"
|
|
|
|
#include "loader/wbfs.h"
|
|
|
|
#include "music/gui_sound.h"
|
|
|
|
#include "music/musicplayer.h"
|
|
|
|
#include "plugin/plugin.hpp"
|
|
|
|
#include "wiiuse/wpad.h"
|
2012-01-21 21:57:41 +01:00
|
|
|
|
2012-05-06 14:03:43 +02:00
|
|
|
using namespace std;
|
|
|
|
|
2012-08-24 20:01:40 +02:00
|
|
|
extern "C" { extern u8 currentPartition; }
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
class CMenu
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CMenu(CVideo &vid);
|
|
|
|
~CMenu(void) {cleanup();}
|
|
|
|
void init(void);
|
|
|
|
void error(const wstringEx &msg);
|
2012-07-07 00:38:21 +02:00
|
|
|
void terror(const char *key, const wchar_t *msg) { error(_fmt(key, msg)); }
|
2012-07-05 21:57:28 +02:00
|
|
|
void exitHandler(int ExitTo);
|
2012-01-21 21:57:41 +01:00
|
|
|
int main(void);
|
2012-08-24 20:01:40 +02:00
|
|
|
void cleanup(void);
|
2012-07-05 15:15:23 +02:00
|
|
|
u8 m_current_view;
|
2012-01-21 21:57:41 +01:00
|
|
|
private:
|
|
|
|
struct SZone
|
|
|
|
{
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int w;
|
|
|
|
int h;
|
|
|
|
bool hide;
|
|
|
|
};
|
|
|
|
CVideo &m_vid;
|
|
|
|
CCursor m_cursor[WPAD_MAX_WIIMOTES];
|
|
|
|
CButtonsMgr m_btnMgr;
|
|
|
|
CCoverFlow m_cf;
|
|
|
|
CFanart m_fa;
|
2012-08-16 16:09:02 +02:00
|
|
|
CachedList m_gameList;
|
2012-01-21 21:57:41 +01:00
|
|
|
Config m_cfg;
|
|
|
|
Config m_loc;
|
|
|
|
Config m_cat;
|
|
|
|
Config m_gcfg1;
|
|
|
|
Config m_gcfg2;
|
|
|
|
Config m_theme;
|
|
|
|
Config m_titles;
|
|
|
|
Config m_version;
|
2012-04-10 19:12:38 +02:00
|
|
|
Plugin m_plugin;
|
2012-05-06 14:59:09 +02:00
|
|
|
vector<string> m_homebrewArgs;
|
2012-09-07 20:13:04 +02:00
|
|
|
u8 *m_base_font;
|
2012-01-21 21:57:41 +01:00
|
|
|
u32 m_base_font_size;
|
2012-09-07 20:13:04 +02:00
|
|
|
u8 *m_wbf1_font;
|
|
|
|
u8 *m_wbf2_font;
|
2012-01-21 21:57:41 +01:00
|
|
|
u8 m_aa;
|
2012-07-10 14:02:06 +02:00
|
|
|
bool m_bnr_settings;
|
2012-01-21 21:57:41 +01:00
|
|
|
bool m_directLaunch;
|
|
|
|
bool m_locked;
|
|
|
|
bool m_favorites;
|
|
|
|
s16 m_showtimer;
|
2012-05-06 14:59:09 +02:00
|
|
|
string m_curLanguage;
|
|
|
|
string m_curGameId;
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
u8 m_numCFVersions;
|
2012-03-06 22:04:23 +01:00
|
|
|
|
2012-05-06 14:59:09 +02:00
|
|
|
string m_themeDataDir;
|
|
|
|
string m_appDir;
|
|
|
|
string m_dataDir;
|
|
|
|
string m_pluginsDir;
|
2012-07-05 18:18:23 +02:00
|
|
|
string m_customBnrDir;
|
2012-05-06 14:59:09 +02:00
|
|
|
string m_picDir;
|
|
|
|
string m_boxPicDir;
|
|
|
|
string m_boxcPicDir;
|
|
|
|
string m_cacheDir;
|
2012-07-05 18:18:23 +02:00
|
|
|
string m_listCacheDir;
|
|
|
|
string m_bnrCacheDir;
|
2012-05-06 14:59:09 +02:00
|
|
|
string m_themeDir;
|
|
|
|
string m_musicDir;
|
|
|
|
string m_txtCheatDir;
|
|
|
|
string m_cheatDir;
|
|
|
|
string m_wipDir;
|
|
|
|
string m_videoDir;
|
|
|
|
string m_fanartDir;
|
|
|
|
string m_screenshotDir;
|
|
|
|
string m_settingsDir;
|
|
|
|
string m_languagesDir;
|
|
|
|
string m_DMLgameDir;
|
|
|
|
string m_helpDir;
|
2012-05-25 16:21:43 +02:00
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
/* Updates */
|
2012-03-17 21:25:17 +01:00
|
|
|
char m_app_update_drive[6];
|
2012-01-21 21:57:41 +01:00
|
|
|
const char* m_app_update_url;
|
|
|
|
const char* m_data_update_url;
|
2012-05-06 14:59:09 +02:00
|
|
|
string m_dol;
|
|
|
|
string m_app_update_zip;
|
2012-01-21 21:57:41 +01:00
|
|
|
u32 m_app_update_size;
|
2012-05-06 14:59:09 +02:00
|
|
|
string m_data_update_zip;
|
2012-01-21 21:57:41 +01:00
|
|
|
u32 m_data_update_size;
|
2012-05-06 14:59:09 +02:00
|
|
|
string m_ver;
|
2012-01-21 21:57:41 +01:00
|
|
|
/* End Updates */
|
|
|
|
//
|
|
|
|
STexture m_prevBg;
|
|
|
|
STexture m_nextBg;
|
|
|
|
STexture m_curBg;
|
|
|
|
STexture m_lqBg;
|
|
|
|
u8 m_bgCrossFade;
|
|
|
|
//
|
|
|
|
STexture m_errorBg;
|
|
|
|
STexture m_mainBg;
|
|
|
|
STexture m_configBg;
|
|
|
|
STexture m_config3Bg;
|
|
|
|
STexture m_configScreenBg;
|
|
|
|
STexture m_config4Bg;
|
|
|
|
STexture m_configAdvBg;
|
|
|
|
STexture m_configSndBg;
|
|
|
|
STexture m_downloadBg;
|
|
|
|
STexture m_gameBg;
|
|
|
|
STexture m_codeBg;
|
|
|
|
STexture m_aboutBg;
|
|
|
|
STexture m_systemBg;
|
|
|
|
STexture m_wbfsBg;
|
|
|
|
STexture m_gameSettingsBg;
|
|
|
|
STexture m_gameBgLQ;
|
|
|
|
STexture m_mainBgLQ;
|
|
|
|
//Main Coverflow
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_mainBtnConfig;
|
|
|
|
s16 m_mainBtnInfo;
|
|
|
|
s16 m_mainBtnFavoritesOn;
|
|
|
|
s16 m_mainBtnFavoritesOff;
|
|
|
|
s16 m_mainLblLetter;
|
2012-01-21 21:57:41 +01:00
|
|
|
#ifdef SHOWMEM
|
|
|
|
u32 m_mem2FreeSize;
|
2012-01-30 15:29:40 +01:00
|
|
|
#endif
|
|
|
|
#ifdef SHOWMEMGECKO
|
|
|
|
unsigned int mem1old;
|
|
|
|
unsigned int mem1;
|
|
|
|
unsigned int mem2old;
|
|
|
|
unsigned int mem2;
|
2012-01-21 21:57:41 +01:00
|
|
|
#endif
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_mainLblNotice;
|
|
|
|
s16 m_mainBtnNext;
|
|
|
|
s16 m_mainBtnPrev;
|
|
|
|
s16 m_mainBtnQuit;
|
|
|
|
s16 m_mainBtnDVD;
|
|
|
|
s16 m_mainBtnDML;
|
|
|
|
s16 m_mainBtnEmu;
|
|
|
|
s16 m_mainBtnUsb;
|
|
|
|
s16 m_mainBtnChannel;
|
|
|
|
s16 m_mainBtnHomebrew;
|
|
|
|
s16 m_mainBtnInit;
|
|
|
|
s16 m_mainBtnInit2;
|
|
|
|
s16 m_mainLblInit;
|
|
|
|
s16 m_mainLblUser[6];
|
2012-06-23 20:54:18 +02:00
|
|
|
u8 m_show_dml;
|
2012-07-12 17:53:04 +02:00
|
|
|
bool m_devo_installed;
|
2012-03-10 17:54:57 +01:00
|
|
|
bool m_new_dml;
|
2012-07-19 22:47:49 +02:00
|
|
|
bool m_new_dm_cfg;
|
2012-02-01 23:26:51 +01:00
|
|
|
bool m_GameTDBLoaded;
|
2012-01-21 21:57:41 +01:00
|
|
|
//Main Config menus
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_configLblPage;
|
|
|
|
s16 m_configBtnPageM;
|
|
|
|
s16 m_configBtnPageP;
|
|
|
|
s16 m_configBtnBack;
|
|
|
|
s16 m_configLblTitle;
|
|
|
|
s16 m_configLblDownload;
|
|
|
|
s16 m_configBtnDownload;
|
|
|
|
s16 m_configLblParental;
|
|
|
|
s16 m_configBtnUnlock;
|
|
|
|
s16 m_configBtnSetCode;
|
|
|
|
s16 m_configLblPartitionName;
|
|
|
|
s16 m_configLblPartition;
|
|
|
|
s16 m_configBtnPartitionP;
|
|
|
|
s16 m_configBtnPartitionM;
|
|
|
|
s16 m_configLblCfg4;
|
|
|
|
s16 m_configBtnCfg4;
|
|
|
|
s16 m_configLblUser[4];
|
|
|
|
s16 m_configAdvLblTheme;
|
|
|
|
s16 m_configAdvLblCurTheme;
|
|
|
|
s16 m_configAdvBtnCurThemeM;
|
|
|
|
s16 m_configAdvBtnCurThemeP;
|
|
|
|
s16 m_configAdvLblLanguage;
|
|
|
|
s16 m_configAdvLblCurLanguage;
|
|
|
|
s16 m_configAdvBtnCurLanguageM;
|
|
|
|
s16 m_configAdvBtnCurLanguageP;
|
|
|
|
s16 m_configAdvLblCFTheme;
|
|
|
|
s16 m_configAdvBtnCFTheme;
|
|
|
|
s16 m_configAdvLblInstall;
|
|
|
|
s16 m_configAdvBtnInstall;
|
|
|
|
s16 m_configAdvLblUser[4];
|
|
|
|
s16 m_config3LblGameLanguage;
|
|
|
|
s16 m_config3LblLanguage;
|
|
|
|
s16 m_config3BtnLanguageP;
|
|
|
|
s16 m_config3BtnLanguageM;
|
|
|
|
s16 m_config3LblGameVideo;
|
|
|
|
s16 m_config3LblVideo;
|
|
|
|
s16 m_config3BtnVideoP;
|
|
|
|
s16 m_config3BtnVideoM;
|
2012-03-04 22:33:14 +01:00
|
|
|
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_config3LblDMLGameLanguage;
|
|
|
|
s16 m_config3LblDMLLanguage;
|
|
|
|
s16 m_config3BtnDMLLanguageP;
|
|
|
|
s16 m_config3BtnDMLLanguageM;
|
|
|
|
s16 m_config3LblDMLGameVideo;
|
|
|
|
s16 m_config3LblDMLVideo;
|
|
|
|
s16 m_config3BtnDMLVideoP;
|
|
|
|
s16 m_config3BtnDMLVideoM;
|
2012-03-04 22:33:14 +01:00
|
|
|
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_config3LblOcarina;
|
|
|
|
s16 m_config3BtnOcarina;
|
|
|
|
s16 m_config3LblAsyncNet;
|
|
|
|
s16 m_config3BtnAsyncNet;
|
|
|
|
s16 m_config3LblUser[4];
|
|
|
|
s16 m_config4LblReturnTo;
|
|
|
|
s16 m_config4LblReturnToVal;
|
|
|
|
s16 m_config4BtnReturnToM;
|
|
|
|
s16 m_config4BtnReturnToP;
|
|
|
|
s16 m_config4LblHome;
|
|
|
|
s16 m_config4BtnHome;
|
|
|
|
s16 m_config4LblSaveFavMode;
|
|
|
|
s16 m_config4BtnSaveFavMode;
|
|
|
|
s16 m_config4LblCategoryOnBoot;
|
|
|
|
s16 m_config4BtnCategoryOnBoot;
|
|
|
|
s16 m_config4LblUser[4];
|
|
|
|
s16 m_configSndLblBnrVol;
|
|
|
|
s16 m_configSndLblBnrVolVal;
|
|
|
|
s16 m_configSndBtnBnrVolP;
|
|
|
|
s16 m_configSndBtnBnrVolM;
|
|
|
|
s16 m_configSndLblMusicVol;
|
|
|
|
s16 m_configSndLblMusicVolVal;
|
|
|
|
s16 m_configSndBtnMusicVolP;
|
|
|
|
s16 m_configSndBtnMusicVolM;
|
|
|
|
s16 m_configSndLblGuiVol;
|
|
|
|
s16 m_configSndLblGuiVolVal;
|
|
|
|
s16 m_configSndBtnGuiVolP;
|
|
|
|
s16 m_configSndBtnGuiVolM;
|
|
|
|
s16 m_configSndLblCFVol;
|
|
|
|
s16 m_configSndLblCFVolVal;
|
|
|
|
s16 m_configSndBtnCFVolP;
|
|
|
|
s16 m_configSndBtnCFVolM;
|
|
|
|
s16 m_configSndLblUser[4];
|
|
|
|
s16 m_configScreenLblTVHeight;
|
|
|
|
s16 m_configScreenLblTVHeightVal;
|
|
|
|
s16 m_configScreenBtnTVHeightP;
|
|
|
|
s16 m_configScreenBtnTVHeightM;
|
|
|
|
s16 m_configScreenLblTVWidth;
|
|
|
|
s16 m_configScreenLblTVWidthVal;
|
|
|
|
s16 m_configScreenBtnTVWidthP;
|
|
|
|
s16 m_configScreenBtnTVWidthM;
|
|
|
|
s16 m_configScreenLblTVX;
|
|
|
|
s16 m_configScreenLblTVXVal;
|
|
|
|
s16 m_configScreenBtnTVXM;
|
|
|
|
s16 m_configScreenBtnTVXP;
|
|
|
|
s16 m_configScreenLblTVY;
|
|
|
|
s16 m_configScreenLblTVYVal;
|
|
|
|
s16 m_configScreenBtnTVYM;
|
|
|
|
s16 m_configScreenBtnTVYP;
|
|
|
|
s16 m_configScreenLblUser[4];
|
2012-01-21 21:57:41 +01:00
|
|
|
//Download menu
|
2012-02-12 02:43:31 +01:00
|
|
|
enum CoverPrio
|
|
|
|
{
|
|
|
|
C_TYPE_PRIOA = (1<<0),
|
|
|
|
C_TYPE_PRIOB = (1<<1),
|
|
|
|
C_TYPE_EN = (1<<2),
|
|
|
|
C_TYPE_JA = (1<<3),
|
|
|
|
C_TYPE_FR = (1<<4),
|
|
|
|
C_TYPE_DE = (1<<5),
|
|
|
|
C_TYPE_ES = (1<<6),
|
|
|
|
C_TYPE_IT = (1<<7),
|
|
|
|
C_TYPE_NL = (1<<8),
|
|
|
|
C_TYPE_PT = (1<<9),
|
|
|
|
C_TYPE_RU = (1<<10),
|
|
|
|
C_TYPE_KO = (1<<11),
|
|
|
|
C_TYPE_ZHCN = (1<<12),
|
|
|
|
C_TYPE_AU = (1<<13),
|
|
|
|
C_TYPE_ONOR = (1<<14),
|
|
|
|
C_TYPE_ONCU = (1<<15),
|
|
|
|
|
|
|
|
};
|
|
|
|
enum CoverType
|
|
|
|
{
|
|
|
|
BOX = 1,
|
|
|
|
CBOX,
|
|
|
|
FLAT,
|
|
|
|
CFLAT,
|
|
|
|
};
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_downloadPrioVal;
|
|
|
|
s16 m_downloadLblTitle;
|
|
|
|
s16 m_downloadPBar;
|
|
|
|
s16 m_downloadBtnCancel;
|
|
|
|
s16 m_downloadBtnAll;
|
|
|
|
s16 m_downloadBtnMissing;
|
|
|
|
s16 m_downloadBtnGameTDBDownload;
|
|
|
|
s16 m_downloadLblGameTDBDownload;
|
|
|
|
s16 m_downloadLblMessage[2];
|
|
|
|
s16 m_downloadLblCovers;
|
|
|
|
s16 m_downloadLblGameTDB;
|
|
|
|
s16 m_downloadLblUser[4];
|
|
|
|
s16 m_downloadLblCoverPrio;
|
|
|
|
s16 m_downloadLblPrio;
|
|
|
|
s16 m_downloadBtnPrioM;
|
|
|
|
s16 m_downloadBtnPrioP;
|
|
|
|
s16 m_downloadBtnVersion;
|
|
|
|
s16 m_downloadLblCoverSet;
|
|
|
|
s16 m_downloadBtnCoverSet;
|
|
|
|
s16 m_downloadLblSetTitle;
|
|
|
|
s16 m_downloadLblRegion;
|
2012-02-12 02:43:31 +01:00
|
|
|
enum Regions
|
|
|
|
{
|
|
|
|
EN = 1,
|
|
|
|
JA,
|
|
|
|
FR,
|
|
|
|
DE,
|
|
|
|
ES,
|
|
|
|
IT,
|
|
|
|
NL,
|
|
|
|
PT,
|
|
|
|
RU,
|
|
|
|
KO,
|
|
|
|
ZHCN,
|
|
|
|
AU,
|
|
|
|
};
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_downloadBtnEN;
|
|
|
|
s16 m_downloadBtnJA;
|
|
|
|
s16 m_downloadBtnFR;
|
|
|
|
s16 m_downloadBtnDE;
|
|
|
|
s16 m_downloadBtnES;
|
|
|
|
s16 m_downloadBtnIT;
|
|
|
|
s16 m_downloadBtnNL;
|
|
|
|
s16 m_downloadBtnPT;
|
|
|
|
s16 m_downloadBtnRU;
|
|
|
|
s16 m_downloadBtnKO;
|
|
|
|
s16 m_downloadBtnZHCN;
|
|
|
|
s16 m_downloadBtnAU;
|
|
|
|
s16 m_downloadBtnENs;
|
|
|
|
s16 m_downloadBtnJAs;
|
|
|
|
s16 m_downloadBtnFRs;
|
|
|
|
s16 m_downloadBtnDEs;
|
|
|
|
s16 m_downloadBtnESs;
|
|
|
|
s16 m_downloadBtnITs;
|
|
|
|
s16 m_downloadBtnNLs;
|
|
|
|
s16 m_downloadBtnPTs;
|
|
|
|
s16 m_downloadBtnRUs;
|
|
|
|
s16 m_downloadBtnKOs;
|
|
|
|
s16 m_downloadBtnZHCNs;
|
|
|
|
s16 m_downloadBtnAUs;
|
|
|
|
s16 m_downloadBtnBack;
|
2012-01-21 21:57:41 +01:00
|
|
|
static s8 _versionDownloaderInit(CMenu *m);
|
|
|
|
static s8 _versionTxtDownloaderInit(CMenu *m);
|
|
|
|
s8 _versionDownloader();
|
|
|
|
s8 _versionTxtDownloader();
|
|
|
|
//Game menu
|
2012-05-06 14:59:09 +02:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
LOAD_IOS_FAILED = 0,
|
|
|
|
LOAD_IOS_SUCCEEDED,
|
|
|
|
LOAD_IOS_NOT_NEEDED
|
|
|
|
};
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_gameLblInfo;
|
|
|
|
s16 m_gameBtnFavoriteOn;
|
|
|
|
s16 m_gameBtnFavoriteOff;
|
|
|
|
s16 m_gameBtnAdultOn;
|
|
|
|
s16 m_gameBtnAdultOff;
|
|
|
|
s16 m_gameBtnPlay;
|
|
|
|
s16 m_gameBtnDelete;
|
|
|
|
s16 m_gameBtnSettings;
|
|
|
|
s16 m_gameBtnBack;
|
|
|
|
s16 m_gameLblUser[4];
|
2012-01-21 21:57:41 +01:00
|
|
|
// Parental code menu
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_codeLblTitle;
|
|
|
|
s16 m_codeBtnKey[10];
|
|
|
|
s16 m_codeBtnBack;
|
|
|
|
s16 m_codeBtnErase;
|
|
|
|
s16 m_codeBtnAge;
|
|
|
|
s16 m_codeLblAge;
|
|
|
|
s16 m_codeLblUser[4];
|
2012-01-21 21:57:41 +01:00
|
|
|
//menu_wbfs
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_wbfsLblTitle;
|
|
|
|
s16 m_wbfsPBar;
|
|
|
|
s16 m_wbfsBtnBack;
|
|
|
|
s16 m_wbfsBtnGo;
|
|
|
|
s16 m_wbfsLblDialog;
|
|
|
|
s16 m_wbfsLblMessage;
|
|
|
|
s16 m_wbfsLblUser[4];
|
2012-01-21 21:57:41 +01:00
|
|
|
//Theme Adjust menus
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_cfThemeBtnAlt;
|
|
|
|
s16 m_cfThemeBtnSelect;
|
|
|
|
s16 m_cfThemeBtnWide;
|
|
|
|
s16 m_cfThemeLblParam;
|
|
|
|
s16 m_cfThemeBtnParamM;
|
|
|
|
s16 m_cfThemeBtnParamP;
|
|
|
|
s16 m_cfThemeBtnCopy;
|
|
|
|
s16 m_cfThemeBtnPaste;
|
|
|
|
s16 m_cfThemeBtnSave;
|
|
|
|
s16 m_cfThemeBtnCancel;
|
|
|
|
s16 m_cfThemeLblVal[4 * 4];
|
|
|
|
s16 m_cfThemeBtnValM[4 * 4];
|
|
|
|
s16 m_cfThemeBtnValP[4 * 4];
|
|
|
|
s16 m_cfThemeLblValTxt[4];
|
2012-01-21 21:57:41 +01:00
|
|
|
//Game Settings menus
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_gameSettingsLblPage;
|
|
|
|
s16 m_gameSettingsBtnPageM;
|
|
|
|
s16 m_gameSettingsBtnPageP;
|
|
|
|
s16 m_gameSettingsBtnBack;
|
|
|
|
s16 m_gameSettingsLblTitle;
|
|
|
|
s16 m_gameSettingsLblGameLanguage;
|
|
|
|
s16 m_gameSettingsLblLanguage;
|
|
|
|
s16 m_gameSettingsBtnLanguageP;
|
|
|
|
s16 m_gameSettingsBtnLanguageM;
|
|
|
|
s16 m_gameSettingsLblGameVideo;
|
|
|
|
s16 m_gameSettingsLblVideo;
|
|
|
|
s16 m_gameSettingsBtnVideoP;
|
|
|
|
s16 m_gameSettingsBtnVideoM;
|
2012-01-27 12:43:31 +01:00
|
|
|
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_gameSettingsLblDMLGameVideo;
|
|
|
|
s16 m_gameSettingsLblDMLVideo;
|
|
|
|
s16 m_gameSettingsBtnDMLVideoP;
|
|
|
|
s16 m_gameSettingsBtnDMLVideoM;
|
2012-02-02 23:22:46 +01:00
|
|
|
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_gameSettingsLblGClanguageVal;
|
|
|
|
s16 m_gameSettingsLblGClanguage;
|
|
|
|
s16 m_gameSettingsBtnGClanguageP;
|
|
|
|
s16 m_gameSettingsBtnGClanguageM;
|
2012-01-27 12:43:31 +01:00
|
|
|
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_gameSettingsLblIOSreloadBlock;
|
|
|
|
s16 m_gameSettingsBtnIOSreloadBlock;
|
2012-01-27 12:43:31 +01:00
|
|
|
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_gameSettingsLblAspectRatio;
|
|
|
|
s16 m_gameSettingsLblAspectRatioVal;
|
|
|
|
s16 m_gameSettingsBtnAspectRatioP;
|
|
|
|
s16 m_gameSettingsBtnAspectRatioM;
|
2012-03-12 17:14:56 +01:00
|
|
|
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_gameSettingsLblNMM;
|
|
|
|
s16 m_gameSettingsLblNMM_Val;
|
|
|
|
s16 m_gameSettingsBtnNMM_P;
|
|
|
|
s16 m_gameSettingsBtnNMM_M;
|
2012-03-12 17:14:56 +01:00
|
|
|
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_gameSettingsLblNoDVD;
|
|
|
|
s16 m_gameSettingsLblNoDVD_Val;
|
|
|
|
s16 m_gameSettingsBtnNoDVD_P;
|
|
|
|
s16 m_gameSettingsBtnNoDVD_M;
|
2012-03-17 17:52:17 +01:00
|
|
|
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_gameSettingsLblDevoMemcardEmu;
|
|
|
|
s16 m_gameSettingsBtnDevoMemcardEmu;
|
2012-07-13 22:00:54 +02:00
|
|
|
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_gameSettingsLblDM_Widescreen;
|
|
|
|
s16 m_gameSettingsBtnDM_Widescreen;
|
2012-07-22 20:39:34 +02:00
|
|
|
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_gameSettingsLblGCLoader;
|
|
|
|
s16 m_gameSettingsLblGCLoader_Val;
|
|
|
|
s16 m_gameSettingsBtnGCLoader_P;
|
|
|
|
s16 m_gameSettingsBtnGCLoader_M;
|
2012-07-15 00:44:57 +02:00
|
|
|
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_gameSettingsLblCustom;
|
|
|
|
s16 m_gameSettingsBtnCustom;
|
|
|
|
s16 m_gameSettingsLblLaunchNK;
|
|
|
|
s16 m_gameSettingsBtnLaunchNK;
|
2012-01-30 06:25:56 +01:00
|
|
|
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_gameSettingsLblOcarina;
|
|
|
|
s16 m_gameSettingsBtnOcarina;
|
|
|
|
s16 m_gameSettingsLblVipatch;
|
|
|
|
s16 m_gameSettingsBtnVipatch;
|
|
|
|
s16 m_gameSettingsLblCountryPatch;
|
|
|
|
s16 m_gameSettingsBtnCountryPatch;
|
|
|
|
s16 m_gameSettingsLblCover;
|
|
|
|
s16 m_gameSettingsBtnCover;
|
|
|
|
s16 m_gameSettingsLblPatchVidModes;
|
|
|
|
s16 m_gameSettingsLblPatchVidModesVal;
|
|
|
|
s16 m_gameSettingsBtnPatchVidModesM;
|
|
|
|
s16 m_gameSettingsBtnPatchVidModesP;
|
|
|
|
s16 m_gameSettingsLblUser[3 * 2];
|
|
|
|
s16 m_gameSettingsLblHooktype;
|
|
|
|
s16 m_gameSettingsLblHooktypeVal;
|
|
|
|
s16 m_gameSettingsBtnHooktypeM;
|
|
|
|
s16 m_gameSettingsBtnHooktypeP;
|
|
|
|
s16 m_gameSettingsLblEmulationVal;
|
|
|
|
s16 m_gameSettingsBtnEmulationP;
|
|
|
|
s16 m_gameSettingsBtnEmulationM;
|
|
|
|
s16 m_gameSettingsLblEmulation;
|
|
|
|
s16 m_gameSettingsLblDebugger;
|
|
|
|
s16 m_gameSettingsLblDebuggerV;
|
|
|
|
s16 m_gameSettingsBtnDebuggerP;
|
|
|
|
s16 m_gameSettingsBtnDebuggerM;
|
|
|
|
s16 m_gameSettingsLblCheat;
|
|
|
|
s16 m_gameSettingsBtnCheat;
|
|
|
|
s16 m_gameSettingsLblCategoryMain;
|
|
|
|
s16 m_gameSettingsBtnCategoryMain;
|
|
|
|
s16 m_gameSettingsLblGameIOS;
|
|
|
|
s16 m_gameSettingsLblIOS;
|
|
|
|
s16 m_gameSettingsBtnIOSP;
|
|
|
|
s16 m_gameSettingsBtnIOSM;
|
|
|
|
s16 m_gameSettingsLblExtractSave;
|
|
|
|
s16 m_gameSettingsBtnExtractSave;
|
|
|
|
s16 m_gameSettingsLblFlashSave;
|
|
|
|
s16 m_gameSettingsBtnFlashSave;
|
2012-01-21 21:57:41 +01:00
|
|
|
// System Menu
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_systemBtnBack;
|
|
|
|
s16 m_systemLblTitle;
|
|
|
|
s16 m_systemLblVersionTxt;
|
|
|
|
s16 m_systemLblVersion;
|
|
|
|
s16 m_systemLblVersionRev;
|
|
|
|
s16 m_systemLblUser[4];
|
|
|
|
s16 m_systemBtnDownload;
|
|
|
|
s16 m_systemLblInfo;
|
|
|
|
s16 m_systemLblVerSelectVal;
|
|
|
|
s16 m_systemBtnVerSelectM;
|
|
|
|
s16 m_systemBtnVerSelectP;
|
2012-01-21 21:57:41 +01:00
|
|
|
//Cheat menu
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_cheatBtnBack;
|
|
|
|
s16 m_cheatBtnApply;
|
|
|
|
s16 m_cheatBtnDownload;
|
|
|
|
s16 m_cheatLblTitle;
|
|
|
|
s16 m_cheatLblPage;
|
|
|
|
s16 m_cheatBtnPageM;
|
|
|
|
s16 m_cheatBtnPageP;
|
|
|
|
s16 m_cheatLblItem[4];
|
|
|
|
s16 m_cheatBtnItem[4];
|
|
|
|
s16 m_cheatLblUser[4];
|
2012-01-21 21:57:41 +01:00
|
|
|
STexture m_cheatBg;
|
|
|
|
GCTCheats m_cheatfile;
|
|
|
|
// Gameinfo menu
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 m_gameinfoLblTitle;
|
|
|
|
s16 m_gameinfoLblID;
|
|
|
|
s16 m_gameinfoLblSynopsis;
|
|
|
|
s16 m_gameinfoLblDev;
|
|
|
|
s16 m_gameinfoLblRegion;
|
|
|
|
s16 m_gameinfoLblPublisher;
|
|
|
|
s16 m_gameinfoLblRlsdate;
|
|
|
|
s16 m_gameinfoLblGenre;
|
|
|
|
s16 m_gameinfoLblRating;
|
|
|
|
s16 m_gameinfoLblWifiplayers;
|
|
|
|
s16 m_gameinfoLblUser[5];
|
|
|
|
s16 m_gameinfoLblControlsReq[4];
|
|
|
|
s16 m_gameinfoLblControls[4];
|
2012-01-21 21:57:41 +01:00
|
|
|
STexture m_gameinfoBg;
|
|
|
|
STexture m_rating;
|
|
|
|
STexture m_wifi;
|
|
|
|
STexture m_controlsreq[4];
|
|
|
|
STexture m_controls[4];
|
2012-06-08 15:05:21 +02:00
|
|
|
// NandEmulation
|
2012-05-06 14:59:09 +02:00
|
|
|
string m_saveExtGameId;
|
2012-05-03 01:08:11 +02:00
|
|
|
bool m_forceext;
|
2012-06-07 02:34:47 +02:00
|
|
|
bool m_tempView;
|
2012-06-08 15:05:21 +02:00
|
|
|
s32 m_partRequest;
|
2012-01-21 21:57:41 +01:00
|
|
|
// Zones
|
|
|
|
SZone m_mainPrevZone;
|
|
|
|
SZone m_mainNextZone;
|
|
|
|
SZone m_mainButtonsZone;
|
|
|
|
SZone m_mainButtonsZone2;
|
|
|
|
SZone m_mainButtonsZone3;
|
|
|
|
SZone m_gameButtonsZone;
|
|
|
|
bool m_reload;
|
2012-08-26 14:05:04 +02:00
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
WPADData *wd[WPAD_MAX_WIIMOTES];
|
|
|
|
void LeftStick();
|
|
|
|
u8 pointerhidedelay[WPAD_MAX_WIIMOTES];
|
|
|
|
u16 stickPointer_x[WPAD_MAX_WIIMOTES];
|
|
|
|
u16 stickPointer_y[WPAD_MAX_WIIMOTES];
|
|
|
|
|
|
|
|
u8 m_wpadLeftDelay;
|
|
|
|
u8 m_wpadDownDelay;
|
|
|
|
u8 m_wpadRightDelay;
|
|
|
|
u8 m_wpadUpDelay;
|
|
|
|
u8 m_wpadADelay;
|
|
|
|
//u8 m_wpadBDelay;
|
|
|
|
|
|
|
|
u8 m_padLeftDelay;
|
|
|
|
u8 m_padDownDelay;
|
|
|
|
u8 m_padRightDelay;
|
|
|
|
u8 m_padUpDelay;
|
|
|
|
u8 m_padADelay;
|
|
|
|
//u8 m_padBDelay;
|
|
|
|
|
|
|
|
u32 wii_btnsPressed;
|
|
|
|
u32 wii_btnsHeld;
|
|
|
|
u32 gc_btnsPressed;
|
|
|
|
u32 gc_btnsHeld;
|
|
|
|
|
|
|
|
bool m_show_pointer[WPAD_MAX_WIIMOTES];
|
|
|
|
float left_stick_angle[WPAD_MAX_WIIMOTES];
|
|
|
|
float left_stick_mag[WPAD_MAX_WIIMOTES];
|
|
|
|
float right_stick_angle[WPAD_MAX_WIIMOTES];
|
|
|
|
float right_stick_mag[WPAD_MAX_WIIMOTES];
|
|
|
|
float wmote_roll[WPAD_MAX_WIIMOTES];
|
|
|
|
s32 right_stick_skip[WPAD_MAX_WIIMOTES];
|
|
|
|
s32 wmote_roll_skip[WPAD_MAX_WIIMOTES];
|
|
|
|
bool enable_wmote_roll;
|
|
|
|
|
2012-05-04 05:46:18 +02:00
|
|
|
bool m_cfNeedsUpdate;
|
|
|
|
|
2012-05-25 21:48:35 +02:00
|
|
|
void SetupInput(bool reset_pos = false);
|
2012-01-21 21:57:41 +01:00
|
|
|
void ScanInput(void);
|
|
|
|
|
|
|
|
void ButtonsPressed(void);
|
|
|
|
void ButtonsHeld(void);
|
|
|
|
|
|
|
|
bool lStick_Up(void);
|
|
|
|
bool lStick_Right(void);
|
|
|
|
bool lStick_Down(void);
|
|
|
|
bool lStick_Left(void);
|
|
|
|
|
|
|
|
bool rStick_Up(void);
|
|
|
|
bool rStick_Right(void);
|
|
|
|
bool rStick_Down(void);
|
|
|
|
bool rStick_Left(void);
|
|
|
|
|
|
|
|
bool wRoll_Left(void);
|
|
|
|
bool wRoll_Right(void);
|
|
|
|
|
|
|
|
bool wii_btnRepeat(s64 btn);
|
|
|
|
bool gc_btnRepeat(s64 btn);
|
|
|
|
|
|
|
|
bool WPadIR_Valid(int chan);
|
|
|
|
bool WPadIR_ANY(void);
|
|
|
|
|
|
|
|
void ShowZone(SZone zone, bool &showZone);
|
|
|
|
void ShowMainZone(void);
|
|
|
|
void ShowMainZone2(void);
|
|
|
|
void ShowMainZone3(void);
|
|
|
|
void ShowPrevZone(void);
|
|
|
|
void ShowNextZone(void);
|
|
|
|
void ShowGameZone(void);
|
|
|
|
bool m_show_zone_main;
|
|
|
|
bool m_show_zone_main2;
|
|
|
|
bool m_show_zone_main3;
|
|
|
|
bool m_show_zone_prev;
|
|
|
|
bool m_show_zone_next;
|
|
|
|
bool m_show_zone_game;
|
|
|
|
|
|
|
|
volatile bool m_exit;
|
|
|
|
volatile bool m_networkInit;
|
|
|
|
volatile bool m_thrdStop;
|
|
|
|
volatile bool m_thrdWorking;
|
|
|
|
volatile bool m_thrdNetwork;
|
|
|
|
float m_thrdStep;
|
|
|
|
float m_thrdStepLen;
|
2012-05-06 14:59:09 +02:00
|
|
|
string m_coverDLGameId;
|
2012-01-21 21:57:41 +01:00
|
|
|
mutex_t m_mutex;
|
|
|
|
wstringEx m_thrdMessage;
|
|
|
|
volatile float m_thrdProgress;
|
2012-05-03 01:08:11 +02:00
|
|
|
volatile float m_fileProgress;
|
2012-01-21 21:57:41 +01:00
|
|
|
volatile bool m_thrdMessageAdded;
|
|
|
|
volatile bool m_gameSelected;
|
2012-08-16 00:33:54 +02:00
|
|
|
GuiSound m_gameSound;
|
2012-01-21 21:57:41 +01:00
|
|
|
SmartGuiSound m_cameraSound;
|
|
|
|
dir_discHdr *m_gameSoundHdr;
|
|
|
|
lwp_t m_gameSoundThread;
|
|
|
|
bool m_gamesound_changed;
|
|
|
|
u8 m_bnrSndVol;
|
- Categories update.
- now you can have as many categories as you want.
- copied the idea of selected, hidden, and required categories from USB Loader GX. Thanks Cyan. Checkmark = selected, X = Hidden, and + = Required.
- redid categories.ini layout and renamed it categories_v4.ini so you can copy and paste settings from the old one to the new one. Each view (USB,DML,EMU,NAND,HOMEBREW) has it's own numcategories, category names, and category settings. All games are now seperated based on the view. Don't forget to add 1 to numcategories for the show All mode.
- Replaced All checkbox with CLEAR button which clears all checkboxes so no category is selected and all games will be shown.
- Added features to the Game Selected Categories Menu. Now the title is the title of the current game. You can now press plus(+) and minus(-) on wiimote to go to the next or previous games without going back to previous screen making it easier to setup categories for your games.
- note: all changes will not be saved in categories_v4.ini unless you exit wiiflow or launch a game.
2012-08-31 19:51:49 +02:00
|
|
|
u8 m_max_categories;
|
2012-01-21 21:57:41 +01:00
|
|
|
bool m_video_playing;
|
|
|
|
|
|
|
|
private:
|
2012-05-06 14:59:09 +02:00
|
|
|
enum WBFS_OP
|
|
|
|
{
|
|
|
|
WO_ADD_GAME,
|
|
|
|
WO_REMOVE_GAME,
|
|
|
|
WO_FORMAT,
|
|
|
|
WO_COPY_GAME,
|
|
|
|
};
|
|
|
|
typedef pair<string, u32> FontDesc;
|
|
|
|
typedef map<FontDesc, SFont> FontSet;
|
|
|
|
typedef map<string, STexture> TexSet;
|
2012-07-18 01:14:05 +02:00
|
|
|
typedef map<string, SmartGuiSound> SoundSet;
|
2012-01-21 21:57:41 +01:00
|
|
|
struct SThemeData
|
|
|
|
{
|
|
|
|
TexSet texSet;
|
|
|
|
FontSet fontSet;
|
|
|
|
SoundSet soundSet;
|
|
|
|
SFont btnFont;
|
|
|
|
SFont lblFont;
|
|
|
|
SFont titleFont;
|
|
|
|
SFont txtFont;
|
|
|
|
CColor btnFontColor;
|
|
|
|
CColor lblFontColor;
|
|
|
|
CColor txtFontColor;
|
|
|
|
CColor titleFontColor;
|
2012-02-12 02:43:31 +01:00
|
|
|
CColor selubtnFontColor;
|
|
|
|
CColor selsbtnFontColor;
|
2012-01-21 21:57:41 +01:00
|
|
|
STexture bg;
|
|
|
|
STexture btnTexL;
|
|
|
|
STexture btnTexR;
|
|
|
|
STexture btnTexC;
|
|
|
|
STexture btnTexLS;
|
|
|
|
STexture btnTexRS;
|
|
|
|
STexture btnTexCS;
|
2012-02-12 02:43:31 +01:00
|
|
|
STexture btnTexLH;
|
|
|
|
STexture btnTexRH;
|
|
|
|
STexture btnTexCH;
|
|
|
|
STexture btnTexLSH;
|
|
|
|
STexture btnTexRSH;
|
|
|
|
STexture btnTexCSH;
|
2012-02-15 21:18:15 +01:00
|
|
|
STexture btnAUOn;
|
|
|
|
STexture btnAUOns;
|
|
|
|
STexture btnAUOff;
|
|
|
|
STexture btnAUOffs;
|
|
|
|
STexture btnENOn;
|
|
|
|
STexture btnENOns;
|
|
|
|
STexture btnENOff;
|
|
|
|
STexture btnENOffs;
|
|
|
|
STexture btnJAOn;
|
|
|
|
STexture btnJAOns;
|
|
|
|
STexture btnJAOff;
|
|
|
|
STexture btnJAOffs;
|
|
|
|
STexture btnFROn;
|
|
|
|
STexture btnFROns;
|
|
|
|
STexture btnFROff;
|
|
|
|
STexture btnFROffs;
|
|
|
|
STexture btnDEOn;
|
|
|
|
STexture btnDEOns;
|
|
|
|
STexture btnDEOff;
|
|
|
|
STexture btnDEOffs;
|
|
|
|
STexture btnESOn;
|
|
|
|
STexture btnESOns;
|
|
|
|
STexture btnESOff;
|
|
|
|
STexture btnESOffs;
|
|
|
|
STexture btnITOn;
|
|
|
|
STexture btnITOns;
|
|
|
|
STexture btnITOff;
|
|
|
|
STexture btnITOffs;
|
|
|
|
STexture btnNLOn;
|
|
|
|
STexture btnNLOns;
|
|
|
|
STexture btnNLOff;
|
|
|
|
STexture btnNLOffs;
|
|
|
|
STexture btnPTOn;
|
|
|
|
STexture btnPTOns;
|
|
|
|
STexture btnPTOff;
|
|
|
|
STexture btnPTOffs;
|
|
|
|
STexture btnRUOn;
|
|
|
|
STexture btnRUOns;
|
|
|
|
STexture btnRUOff;
|
|
|
|
STexture btnRUOffs;
|
|
|
|
STexture btnKOOn;
|
|
|
|
STexture btnKOOns;
|
|
|
|
STexture btnKOOff;
|
|
|
|
STexture btnKOOffs;
|
|
|
|
STexture btnZHCNOn;
|
|
|
|
STexture btnZHCNOns;
|
|
|
|
STexture btnZHCNOff;
|
|
|
|
STexture btnZHCNOffs;
|
2012-04-08 16:48:50 +02:00
|
|
|
STexture checkboxoff;
|
|
|
|
STexture checkboxoffs;
|
|
|
|
STexture checkboxon;
|
|
|
|
STexture checkboxons;
|
- Categories update.
- now you can have as many categories as you want.
- copied the idea of selected, hidden, and required categories from USB Loader GX. Thanks Cyan. Checkmark = selected, X = Hidden, and + = Required.
- redid categories.ini layout and renamed it categories_v4.ini so you can copy and paste settings from the old one to the new one. Each view (USB,DML,EMU,NAND,HOMEBREW) has it's own numcategories, category names, and category settings. All games are now seperated based on the view. Don't forget to add 1 to numcategories for the show All mode.
- Replaced All checkbox with CLEAR button which clears all checkboxes so no category is selected and all games will be shown.
- Added features to the Game Selected Categories Menu. Now the title is the title of the current game. You can now press plus(+) and minus(-) on wiimote to go to the next or previous games without going back to previous screen making it easier to setup categories for your games.
- note: all changes will not be saved in categories_v4.ini unless you exit wiiflow or launch a game.
2012-08-31 19:51:49 +02:00
|
|
|
STexture checkboxHid;
|
|
|
|
STexture checkboxHids;
|
|
|
|
STexture checkboxReq;
|
|
|
|
STexture checkboxReqs;
|
2012-01-21 21:57:41 +01:00
|
|
|
STexture pbarTexL;
|
|
|
|
STexture pbarTexR;
|
|
|
|
STexture pbarTexC;
|
|
|
|
STexture pbarTexLS;
|
|
|
|
STexture pbarTexRS;
|
|
|
|
STexture pbarTexCS;
|
|
|
|
STexture btnTexPlus;
|
|
|
|
STexture btnTexPlusS;
|
|
|
|
STexture btnTexMinus;
|
|
|
|
STexture btnTexMinusS;
|
|
|
|
SmartGuiSound clickSound;
|
|
|
|
SmartGuiSound hoverSound;
|
|
|
|
SmartGuiSound cameraSound;
|
|
|
|
};
|
2012-07-18 01:14:05 +02:00
|
|
|
SThemeData theme;
|
2012-01-21 21:57:41 +01:00
|
|
|
struct SCFParamDesc
|
|
|
|
{
|
2012-05-06 14:59:09 +02:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PDT_EMPTY,
|
|
|
|
PDT_FLOAT,
|
|
|
|
PDT_V3D,
|
|
|
|
PDT_COLOR,
|
|
|
|
PDT_BOOL,
|
|
|
|
PDT_INT,
|
|
|
|
PDT_TXTSTYLE,
|
|
|
|
} paramType[4];
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PDD_BOTH,
|
|
|
|
PDD_NORMAL,
|
|
|
|
PDD_SELECTED,
|
|
|
|
} domain;
|
2012-01-21 21:57:41 +01:00
|
|
|
bool scrnFmt;
|
|
|
|
const char name[32];
|
|
|
|
const char valName[4][64];
|
|
|
|
const char key[4][48];
|
|
|
|
float step[4];
|
|
|
|
float minMaxVal[4][2];
|
|
|
|
};
|
|
|
|
//
|
|
|
|
bool _loadList(void);
|
|
|
|
bool _loadGameList(void);
|
2012-04-08 17:54:34 +02:00
|
|
|
bool _loadDmlList(void);
|
|
|
|
bool _loadChannelList(void);
|
|
|
|
bool _loadEmuList(void);
|
|
|
|
bool _loadHomebrewList(void);
|
2012-01-21 21:57:41 +01:00
|
|
|
void _initCF(void);
|
|
|
|
//
|
|
|
|
void _initMainMenu(SThemeData &theme);
|
|
|
|
void _initErrorMenu(SThemeData &theme);
|
|
|
|
void _initConfigMenu(SThemeData &theme);
|
|
|
|
void _initConfigAdvMenu(SThemeData &theme);
|
|
|
|
void _initConfig3Menu(SThemeData &theme);
|
|
|
|
void _initConfig4Menu(SThemeData &theme);
|
|
|
|
void _initConfigSndMenu(SThemeData &theme);
|
|
|
|
void _initConfigScreenMenu(SThemeData &theme);
|
|
|
|
void _initGameMenu(SThemeData &theme);
|
|
|
|
void _initDownloadMenu(SThemeData &theme);
|
|
|
|
void _initCodeMenu(SThemeData &theme);
|
|
|
|
void _initAboutMenu(SThemeData &theme);
|
|
|
|
void _initWBFSMenu(SThemeData &theme);
|
|
|
|
void _initCFThemeMenu(SThemeData &theme);
|
|
|
|
void _initGameSettingsMenu(SThemeData &theme);
|
|
|
|
void _initCheatSettingsMenu(SThemeData &theme);
|
|
|
|
void _initCheatButtons();
|
2012-05-25 16:21:43 +02:00
|
|
|
void _initSourceMenu(SThemeData &theme);
|
2012-05-05 22:07:54 +02:00
|
|
|
void _initPluginSettingsMenu(SThemeData &theme);
|
2012-01-21 21:57:41 +01:00
|
|
|
void _initCategorySettingsMenu(SThemeData &theme);
|
|
|
|
void _initSystemMenu(SThemeData &theme);
|
|
|
|
void _initGameInfoMenu(SThemeData &theme);
|
2012-05-03 01:08:11 +02:00
|
|
|
void _initNandEmuMenu(CMenu::SThemeData &theme);
|
2012-07-05 21:57:28 +02:00
|
|
|
void _initHomeAndExitToMenu(CMenu::SThemeData &theme);
|
2012-01-21 21:57:41 +01:00
|
|
|
//
|
2012-05-25 16:21:43 +02:00
|
|
|
void _textSource(void);
|
2012-05-05 22:07:54 +02:00
|
|
|
void _textPluginSettings(void);
|
2012-01-21 21:57:41 +01:00
|
|
|
void _textCategorySettings(void);
|
|
|
|
void _textCheatSettings(void);
|
|
|
|
void _textSystem(void);
|
|
|
|
void _textMain(void);
|
|
|
|
void _textError(void);
|
|
|
|
void _textYesNo(void);
|
|
|
|
void _textConfig(void);
|
|
|
|
void _textConfig3(void);
|
|
|
|
void _textConfigScreen(void);
|
|
|
|
void _textConfig4(void);
|
|
|
|
void _textConfigAdv(void);
|
|
|
|
void _textConfigSnd(void);
|
|
|
|
void _textGame(void);
|
|
|
|
void _textDownload(void);
|
|
|
|
void _textCode(void);
|
|
|
|
void _textAbout(void);
|
|
|
|
void _textWBFS(void);
|
|
|
|
void _textGameSettings(void);
|
|
|
|
void _textGameInfo(void);
|
2012-05-03 01:08:11 +02:00
|
|
|
void _textNandEmu(void);
|
2012-06-21 19:28:46 +02:00
|
|
|
void _textHome(void);
|
2012-07-05 21:57:28 +02:00
|
|
|
void _textExitTo(void);
|
2012-01-21 21:57:41 +01:00
|
|
|
//
|
|
|
|
void _hideCheatSettings(bool instant = false);
|
|
|
|
void _hideError(bool instant = false);
|
|
|
|
void _hideMain(bool instant = false);
|
2012-05-04 05:46:18 +02:00
|
|
|
void _hideConfigCommon(bool instant = false);
|
2012-01-21 21:57:41 +01:00
|
|
|
void _hideConfig(bool instant = false);
|
|
|
|
void _hideConfig3(bool instant = false);
|
|
|
|
void _hideConfigScreen(bool instant = false);
|
|
|
|
void _hideConfig4(bool instant = false);
|
|
|
|
void _hideConfigAdv(bool instant = false);
|
|
|
|
void _hideConfigSnd(bool instant = false);
|
|
|
|
void _hideGame(bool instant = false);
|
|
|
|
void _hideDownload(bool instant = false);
|
2012-02-12 02:43:31 +01:00
|
|
|
void _hideSettings(bool instant = false);
|
2012-01-21 21:57:41 +01:00
|
|
|
void _hideCode(bool instant = false);
|
|
|
|
void _hideAbout(bool instant = false);
|
|
|
|
void _hideWBFS(bool instant = false);
|
|
|
|
void _hideCFTheme(bool instant = false);
|
|
|
|
void _hideGameSettings(bool instant = false);
|
2012-05-25 16:21:43 +02:00
|
|
|
void _hideSource(bool instant = false);
|
2012-05-05 22:07:54 +02:00
|
|
|
void _hidePluginSettings(bool instant = false);
|
2012-01-21 21:57:41 +01:00
|
|
|
void _hideCategorySettings(bool instant = false);
|
|
|
|
void _hideSystem(bool instant = false);
|
|
|
|
void _hideGameInfo(bool instant = false);
|
|
|
|
void _hideCheatDownload(bool instant = false);
|
2012-05-03 01:08:11 +02:00
|
|
|
void _hideNandEmu(bool instant = false);
|
2012-06-21 19:28:46 +02:00
|
|
|
void _hideHome(bool instant = false);
|
2012-07-05 21:57:28 +02:00
|
|
|
void _hideExitTo(bool instant = false);
|
2012-01-21 21:57:41 +01:00
|
|
|
//
|
|
|
|
void _showError(void);
|
|
|
|
void _showMain(void);
|
2012-05-04 05:46:18 +02:00
|
|
|
void _showConfigCommon(const STexture & bg, int page);
|
2012-01-21 21:57:41 +01:00
|
|
|
void _showConfig(void);
|
|
|
|
void _showConfig3(void);
|
|
|
|
void _showConfigScreen(void);
|
|
|
|
void _showConfig4(void);
|
|
|
|
void _showConfigAdv(void);
|
|
|
|
void _showConfigSnd(void);
|
2012-02-02 12:18:09 +01:00
|
|
|
void _enableNandEmu(bool fromconfig);
|
2012-01-21 21:57:41 +01:00
|
|
|
void _showGame(void);
|
|
|
|
void _showDownload(void);
|
2012-02-12 02:43:31 +01:00
|
|
|
void _showSettings();
|
2012-01-21 21:57:41 +01:00
|
|
|
void _showCode(void);
|
|
|
|
void _showAbout(void);
|
2012-05-25 16:21:43 +02:00
|
|
|
void _showSource(void);
|
|
|
|
void _showSourceNotice(void);
|
2012-05-05 22:07:54 +02:00
|
|
|
void _showPluginSettings(void);
|
2012-01-21 21:57:41 +01:00
|
|
|
void _showCategorySettings(void);
|
|
|
|
void _showCheatSettings(void);
|
|
|
|
void _showSystem(void);
|
|
|
|
void _showGameInfo(void);
|
|
|
|
void _showWBFS(WBFS_OP op);
|
|
|
|
void _showCFTheme(u32 curParam, int version, bool wide);
|
|
|
|
void _showGameSettings(void);
|
|
|
|
void _showCheatDownload(void);
|
2012-06-21 19:28:46 +02:00
|
|
|
void _showHome(void);
|
2012-07-05 21:57:28 +02:00
|
|
|
void _showExitTo(void);
|
2012-05-25 16:21:43 +02:00
|
|
|
void _updateSourceBtns(void);
|
2012-05-05 22:07:54 +02:00
|
|
|
void _updatePluginCheckboxes(void);
|
2012-04-08 16:48:50 +02:00
|
|
|
void _updateCheckboxes(void);
|
2012-09-13 23:11:41 +02:00
|
|
|
void _getIDCats(void);
|
|
|
|
void _setIDCats(void);
|
2012-01-21 21:57:41 +01:00
|
|
|
void _setBg(const STexture &tex, const STexture &lqTex);
|
|
|
|
void _updateBg(void);
|
|
|
|
void _drawBg(void);
|
|
|
|
void _updateText(void);
|
2012-05-03 01:08:11 +02:00
|
|
|
void _showNandEmu(void);
|
2012-05-04 05:46:18 +02:00
|
|
|
//
|
2012-01-21 21:57:41 +01:00
|
|
|
void _config(int page);
|
2012-05-04 05:46:18 +02:00
|
|
|
int _configCommon(void);
|
2012-01-21 21:57:41 +01:00
|
|
|
int _config1(void);
|
|
|
|
int _config3(void);
|
|
|
|
int _configScreen(void);
|
|
|
|
int _config4(void);
|
|
|
|
int _configAdv(void);
|
|
|
|
int _configSnd(void);
|
2012-05-03 01:08:11 +02:00
|
|
|
int _NandEmuCfg(void);
|
|
|
|
int _AutoCreateNand(void);
|
|
|
|
int _AutoExtractSave(string gameId);
|
2012-05-11 01:38:34 +02:00
|
|
|
int _FlashSave(string gameId);
|
2012-05-04 05:46:18 +02:00
|
|
|
enum configPageChanges
|
|
|
|
{
|
|
|
|
CONFIG_PAGE_DEC = -1,
|
|
|
|
CONFIG_PAGE_NO_CHANGE = 0,
|
|
|
|
CONFIG_PAGE_INC = 1,
|
|
|
|
CONFIG_PAGE_BACK,
|
|
|
|
};
|
|
|
|
void _cfNeedsUpdate(void);
|
2012-02-01 23:26:51 +01:00
|
|
|
void _game(bool launch = false);
|
2012-05-06 14:59:09 +02:00
|
|
|
void _download(string gameId = string());
|
2012-05-14 07:37:10 +02:00
|
|
|
void _code(void);
|
2012-08-14 17:42:34 +02:00
|
|
|
void _about(bool help = false);
|
2012-01-21 21:57:41 +01:00
|
|
|
bool _wbfsOp(WBFS_OP op);
|
|
|
|
void _cfTheme(void);
|
|
|
|
void _system(void);
|
|
|
|
void _gameinfo(void);
|
|
|
|
void _gameSettings(void);
|
|
|
|
void _CheatSettings();
|
2012-06-21 14:25:47 +02:00
|
|
|
bool _Source();
|
2012-05-05 22:07:54 +02:00
|
|
|
void _PluginSettings();
|
2012-08-14 17:42:34 +02:00
|
|
|
void _CategorySettings(bool fromGameSet = false);
|
2012-06-21 19:28:46 +02:00
|
|
|
bool _Home();
|
2012-07-05 21:57:28 +02:00
|
|
|
bool _ExitTo();
|
2012-01-21 21:57:41 +01:00
|
|
|
//
|
2012-09-09 20:35:15 +02:00
|
|
|
void _mainLoopCommon(bool withCF = false, bool adjusting = false);
|
2012-01-21 21:57:41 +01:00
|
|
|
//
|
2012-05-06 14:03:43 +02:00
|
|
|
vector<dir_discHdr> _searchGamesByID(const char *gameId);
|
|
|
|
/* vector<dir_discHdr> _searchGamesByTitle(wchar_t letter);
|
|
|
|
vector<dir_discHdr> _searchGamesByType(const char type);
|
|
|
|
vector<dir_discHdr> _searchGamesByRegion(const char region); */
|
2012-01-21 21:57:41 +01:00
|
|
|
public:
|
2012-07-07 21:09:56 +02:00
|
|
|
void directlaunch(const string &id);
|
2012-01-21 21:57:41 +01:00
|
|
|
private:
|
2012-05-12 19:14:25 +02:00
|
|
|
bool m_use_wifi_gecko;
|
|
|
|
void _reload_wifi_gecko();
|
2012-01-21 21:57:41 +01:00
|
|
|
bool _loadFile(SmartBuf &buffer, u32 &size, const char *path, const char *file);
|
2012-08-25 17:10:57 +02:00
|
|
|
int _loadIOS(u8 ios, int userIOS, string id);
|
2012-01-21 21:57:41 +01:00
|
|
|
void _launch(dir_discHdr *hdr);
|
|
|
|
void _launchGame(dir_discHdr *hdr, bool dvd);
|
|
|
|
void _launchChannel(dir_discHdr *hdr);
|
2012-05-06 14:59:09 +02:00
|
|
|
void _launchHomebrew(const char *filepath, vector<string> arguments);
|
2012-07-14 18:55:14 +02:00
|
|
|
void _launchGC(dir_discHdr *hdr, bool disc);
|
2012-01-21 21:57:41 +01:00
|
|
|
void _setAA(int aa);
|
|
|
|
void _loadCFCfg(SThemeData &theme);
|
|
|
|
void _loadCFLayout(int version, bool forceAA = false, bool otherScrnFmt = false);
|
2012-05-06 14:59:09 +02:00
|
|
|
Vector3D _getCFV3D(const string &domain, const string &key, const Vector3D &def, bool otherScrnFmt = false);
|
|
|
|
int _getCFInt(const string &domain, const string &key, int def, bool otherScrnFmt = false);
|
|
|
|
float _getCFFloat(const string &domain, const string &key, float def, bool otherScrnFmt = false);
|
2012-01-21 21:57:41 +01:00
|
|
|
void _cfParam(bool inc, int i, const SCFParamDesc &p, int cfVersion, bool wide);
|
|
|
|
void _buildMenus(void);
|
|
|
|
void _loadDefaultFont(bool korean);
|
|
|
|
void _cleanupDefaultFont();
|
2012-09-11 14:01:07 +02:00
|
|
|
string _getId(void);
|
2012-01-21 21:57:41 +01:00
|
|
|
const char *_domainFromView(void);
|
2012-04-15 15:47:42 +02:00
|
|
|
const char *_cfDomain(bool selected = false);
|
2012-01-21 21:57:41 +01:00
|
|
|
void UpdateCache(u32 view = COVERFLOW_MAX);
|
2012-06-23 20:54:18 +02:00
|
|
|
int MIOSisDML();
|
2012-02-05 01:07:07 +01:00
|
|
|
void RemoveCover( char * id );
|
2012-01-21 21:57:41 +01:00
|
|
|
SFont _font(CMenu::FontSet &fontSet, const char *domain, const char *key, u32 fontSize, u32 lineSpacing, u32 weight, u32 index, const char *genKey);
|
|
|
|
STexture _texture(TexSet &texSet, const char *domain, const char *key, STexture def);
|
2012-05-06 14:03:43 +02:00
|
|
|
vector<STexture> _textures(TexSet &texSet, const char *domain, const char *key);
|
2012-01-21 21:57:41 +01:00
|
|
|
void _showWaitMessage();
|
|
|
|
public:
|
2012-01-30 15:29:40 +01:00
|
|
|
void _hideWaitMessage();
|
2012-04-08 17:54:34 +02:00
|
|
|
bool m_Emulator_boot;
|
2012-01-21 21:57:41 +01:00
|
|
|
private:
|
|
|
|
SmartGuiSound _sound(CMenu::SoundSet &soundSet, const char *domain, const char *key, const u8 * snd, u32 len, string name, bool isAllocated);
|
|
|
|
SmartGuiSound _sound(CMenu::SoundSet &soundSet, const char *domain, const char *key, string name);
|
|
|
|
u16 _textStyle(const char *domain, const char *key, u16 def);
|
2012-09-13 16:54:17 +02:00
|
|
|
s16 _addButton(SThemeData &theme, const char *domain, SFont font, const wstringEx &text, int x, int y, u32 width, u32 height, const CColor &color);
|
|
|
|
s16 _addSelButton(SThemeData &theme, const char *domain, SFont font, const wstringEx &text, int x, int y, u32 width, u32 height, const CColor &color);
|
|
|
|
s16 _addPicButton(SThemeData &theme, const char *domain, STexture &texNormal, STexture &texSelected, int x, int y, u32 width, u32 height);
|
|
|
|
s16 _addTitle(SThemeData &theme, const char *domain, SFont font, const wstringEx &text, int x, int y, u32 width, u32 height, const CColor &color, s16 style);
|
|
|
|
s16 _addText(SThemeData &theme, const char *domain, SFont font, const wstringEx &text, int x, int y, u32 width, u32 height, const CColor &color, s16 style);
|
|
|
|
s16 _addLabel(SThemeData &theme, const char *domain, SFont font, const wstringEx &text, int x, int y, u32 width, u32 height, const CColor &color, s16 style);
|
|
|
|
s16 _addLabel(SThemeData &theme, const char *domain, SFont font, const wstringEx &text, int x, int y, u32 width, u32 height, const CColor &color, s16 style, STexture &bg);
|
|
|
|
s16 _addProgressBar(SThemeData &theme, const char *domain, int x, int y, u32 width, u32 height);
|
|
|
|
void _setHideAnim(s16 id, const char *domain, int dx, int dy, float scaleX, float scaleY);
|
|
|
|
void _addUserLabels(CMenu::SThemeData &theme, s16 *ids, u32 size, const char *domain);
|
|
|
|
void _addUserLabels(CMenu::SThemeData &theme, s16 *ids, u32 start, u32 size, const char *domain);
|
2012-01-21 21:57:41 +01:00
|
|
|
//
|
|
|
|
const wstringEx _t(const char *key, const wchar_t *def = L"") { return m_loc.getWString(m_curLanguage, key, def); }
|
|
|
|
const wstringEx _fmt(const char *key, const wchar_t *def);
|
|
|
|
wstringEx _getNoticeTranslation(int sorting, wstringEx curLetter);
|
|
|
|
//
|
|
|
|
void _setThrdMsg(const wstringEx &msg, float progress);
|
2012-05-03 01:08:11 +02:00
|
|
|
void _setDumpMsg(const wstringEx &msg, float progress, float fileprog);
|
2012-01-21 21:57:41 +01:00
|
|
|
int _coverDownloader(bool missingOnly);
|
|
|
|
static int _coverDownloaderAll(CMenu *m);
|
|
|
|
static int _coverDownloaderMissing(CMenu *m);
|
|
|
|
static bool _downloadProgress(void *obj, int size, int position);
|
|
|
|
static int _gametdbDownloader(CMenu *m);
|
|
|
|
int _gametdbDownloaderAsync();
|
|
|
|
|
|
|
|
static s32 _networkComplete(s32 result, void *usrData);
|
|
|
|
void _initAsyncNetwork();
|
|
|
|
bool _isNetworkAvailable();
|
|
|
|
int _initNetwork();
|
|
|
|
void _deinitNetwork();
|
|
|
|
void LoadView(void);
|
|
|
|
void _getGrabStatus(void);
|
|
|
|
static void _addDiscProgress(int status, int total, void *user_data);
|
2012-02-29 01:19:50 +01:00
|
|
|
static void _Messenger(int message, int info, char *cinfo, void *user_data);
|
2012-05-03 01:08:11 +02:00
|
|
|
static void _ShowProgress(int dumpstat, int dumpprog, int filestat, int fileprog, int files, int folders, char *tmess, void *user_data);
|
2012-02-29 01:19:50 +01:00
|
|
|
static int _gameInstaller(void *obj);
|
|
|
|
static int _GCgameInstaller(void *obj);
|
2012-02-27 17:05:10 +01:00
|
|
|
static int _GCcopyGame(void *obj);
|
2012-05-03 01:08:11 +02:00
|
|
|
float m_progress;
|
|
|
|
float m_fprogress;
|
|
|
|
int m_fileprog;
|
|
|
|
int m_filesize;
|
|
|
|
int m_dumpsize;
|
|
|
|
int m_filesdone;
|
|
|
|
int m_foldersdone;
|
|
|
|
int m_nandexentry;
|
2012-01-21 21:57:41 +01:00
|
|
|
wstringEx _optBoolToString(int b);
|
|
|
|
void _stopSounds(void);
|
2012-05-03 01:08:11 +02:00
|
|
|
static int _NandDumper(void *obj);
|
2012-05-11 01:38:34 +02:00
|
|
|
static int _NandFlasher(void *obj);
|
2012-06-07 02:34:47 +02:00
|
|
|
int _FindEmuPart(string *emuPath, int part, bool searchvalid);
|
2012-05-11 01:38:34 +02:00
|
|
|
bool _checkSave(string id, bool nand);
|
2012-06-07 02:34:47 +02:00
|
|
|
bool _TestEmuNand(int epart, const char *path, bool indept);
|
2012-02-17 22:40:38 +01:00
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
static u32 _downloadCheatFileAsync(void *obj);
|
2012-02-17 22:40:38 +01:00
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
void _playGameSound(void);
|
2012-02-17 22:40:38 +01:00
|
|
|
void CheckGameSoundThread(void);
|
2012-05-19 14:29:24 +02:00
|
|
|
void ClearGameSoundThreadStack(void);
|
2012-01-21 21:57:41 +01:00
|
|
|
static void _gameSoundThread(CMenu *m);
|
2012-02-17 22:40:38 +01:00
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
static void _load_installed_cioses();
|
2012-09-05 17:52:32 +02:00
|
|
|
void _TempLoadIOS(int IOS = 0);
|
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
struct SOption { const char id[10]; const wchar_t text[16]; };
|
|
|
|
static const string _translations[23];
|
|
|
|
static const SOption _languages[11];
|
2012-06-28 15:05:31 +02:00
|
|
|
|
|
|
|
static const SOption _GlobalVideoModes[6];
|
|
|
|
static const SOption _VideoModes[7];
|
2012-03-04 22:33:14 +01:00
|
|
|
|
2012-03-25 21:52:35 +02:00
|
|
|
static const SOption _GlobalDMLvideoModes[6];
|
2012-03-04 22:33:14 +01:00
|
|
|
static const SOption _GlobalGClanguages[7];
|
2012-03-25 21:52:35 +02:00
|
|
|
static const SOption _DMLvideoModes[7];
|
2012-03-04 22:33:14 +01:00
|
|
|
static const SOption _GClanguages[8];
|
|
|
|
|
2012-06-07 02:34:47 +02:00
|
|
|
static const SOption _NandEmu[2];
|
2012-03-13 00:57:59 +01:00
|
|
|
static const SOption _SaveEmu[5];
|
|
|
|
static const SOption _GlobalSaveEmu[4];
|
2012-01-27 14:59:36 +01:00
|
|
|
static const SOption _AspectRatio[3];
|
2012-03-12 17:14:56 +01:00
|
|
|
static const SOption _NMM[4];
|
2012-03-17 17:52:17 +01:00
|
|
|
static const SOption _NoDVD[3];
|
2012-07-15 00:44:57 +02:00
|
|
|
static const SOption _GCLoader[3];
|
2012-01-21 21:57:41 +01:00
|
|
|
static const SOption _vidModePatch[4];
|
|
|
|
static const SOption _hooktype[8];
|
2012-09-09 20:35:15 +02:00
|
|
|
static const SOption _exitTo[5];
|
2012-05-06 14:59:09 +02:00
|
|
|
static map<u8, u8> _installed_cios;
|
|
|
|
typedef map<u8, u8>::iterator CIOSItr;
|
2012-01-21 21:57:41 +01:00
|
|
|
static int _version[9];
|
|
|
|
static const SCFParamDesc _cfParams[];
|
|
|
|
static const int _nbCfgPages;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define ARRAY_SIZE(a) (sizeof a / sizeof a[0])
|
|
|
|
|
|
|
|
#endif // !defined(__MENU_HPP)
|