-cleaned up code from last commit

-cleaned up and rewrote some of the startup code.
-Note: This is cleanest and smoothest i've seen wiiflow run. I haven't even noticed any messed up covers.
This commit is contained in:
fledge68 2016-04-03 01:03:39 +00:00
parent 8678a77eb0
commit abcd42885b
7 changed files with 70 additions and 176 deletions

View File

@ -72,7 +72,6 @@ CMenu::CMenu()
m_wbf2_font = NULL; m_wbf2_font = NULL;
m_current_view = COVERFLOW_WII; m_current_view = COVERFLOW_WII;
m_Emulator_boot = false; m_Emulator_boot = false;
m_music_info = true;
m_prevBg = NULL; m_prevBg = NULL;
m_nextBg = NULL; m_nextBg = NULL;
m_lqBg = NULL; m_lqBg = NULL;
@ -80,7 +79,6 @@ CMenu::CMenu()
m_use_wifi_gecko = false; m_use_wifi_gecko = false;
init_network = false; init_network = false;
m_use_source = true; m_use_source = true;
m_multisource = false;
m_sourceflow = false; m_sourceflow = false;
m_numPlugins = 0; m_numPlugins = 0;
m_clearCats = true; m_clearCats = true;
@ -120,57 +118,36 @@ void CMenu::init()
{ {
SoundHandle.Init(); SoundHandle.Init();
m_gameSound.SetVoice(1); m_gameSound.SetVoice(1);
const char *drive = "empty";
const char *check = "empty";
struct stat dummy;
/* Clear Playlog */ /* Clear Playlog */
Playlog_Delete(); Playlog_Delete();
for(int i = SD; i <= USB8; i++) //Find the first partition with a wiiflow.ini const char *drive = "empty";
if (DeviceHandle.IsInserted(i) && DeviceHandle.GetFSType(i) != PART_FS_WBFS && stat(fmt("%s:/%s/" CFG_FILENAME, DeviceName[i], APPDATA_DIR2), &dummy) == 0) const char *check = "empty";
struct stat dummy;
for(int i = SD; i <= USB8; i++) //Find the first partition with apps/wiiflow folder
{
if(DeviceHandle.IsInserted(i) && DeviceHandle.GetFSType(i) != PART_FS_WBFS && stat(fmt("%s:/%s", DeviceName[i], APPDATA_DIR2), &dummy) == 0)
{ {
drive = DeviceName[i]; drive = DeviceName[i];
break; break;
} }
}
if(drive == check) //No wiiflow.ini found
for(int i = SD; i <= USB8; i++) //Find the first partition with a boot.dol
if (DeviceHandle.IsInserted(i) && DeviceHandle.GetFSType(i) != PART_FS_WBFS && stat(fmt("%s:/%s/boot.dol", DeviceName[i], APPDATA_DIR2), &dummy) == 0)
{
drive = DeviceName[i];
break;
}
if(drive == check) //No boot.dol found
for(int i = SD; i <= USB8; i++) //Find the first partition with apps/wiiflow folder
if (DeviceHandle.IsInserted(i) && DeviceHandle.GetFSType(i) != PART_FS_WBFS && stat(fmt("%s:/%s", DeviceName[i], APPDATA_DIR2), &dummy) == 0)
{
drive = DeviceName[i];
break;
}
if(drive == check) //No apps/wiiflow folder found
for(int i = SD; i <= USB8; i++) // Find the first writable partition
if (DeviceHandle.IsInserted(i) && DeviceHandle.GetFSType(i) != PART_FS_WBFS)
{
drive = DeviceName[i];
break;
}
loadDefaultFont(); loadDefaultFont();
if(drive == check) // Should not happen if(drive == check) // Should not happen
{ {
_buildMenus(); _buildMenus();
error(_fmt("errboot4", L"No available partitions found!")); error(_fmt("errboot4", L"No apps/wiiflow directory found!"));
m_exit = true; m_exit = true;
return; return;
} }
/* Handle apps dir first, so handling wiiflow.ini does not fail */ /* Handle apps dir first, so handling wiiflow.ini does not fail */
m_appDir = fmt("%s:/%s", drive, APPDATA_DIR2); m_appDir = fmt("%s:/%s", drive, APPDATA_DIR2);
gprintf("Wiiflow boot.dol Location: %s\n", m_appDir.c_str()); gprintf("Wiiflow boot.dol Location: %s\n", m_appDir.c_str());
fsop_MakeFolder(m_appDir.c_str()); fsop_MakeFolder(m_appDir.c_str());
/* Load/Create our wiiflow.ini */
/* Load/Create wiiflow.ini so we can get settings to start Gecko, FTP, and Network*/
m_cfg.load(fmt("%s/" CFG_FILENAME, m_appDir.c_str())); m_cfg.load(fmt("%s/" CFG_FILENAME, m_appDir.c_str()));
/* Check if we want WiFi Gecko */ /* Check if we want WiFi Gecko */
m_use_wifi_gecko = m_cfg.getBool("DEBUG", "wifi_gecko", false); m_use_wifi_gecko = m_cfg.getBool("DEBUG", "wifi_gecko", false);
@ -186,15 +163,11 @@ void CMenu::init()
/* Init Network if wanted */ /* Init Network if wanted */
init_network = (m_cfg.getBool("GENERAL", "async_network") || has_enabled_providers() || m_use_wifi_gecko || m_init_ftp); init_network = (m_cfg.getBool("GENERAL", "async_network") || has_enabled_providers() || m_use_wifi_gecko || m_init_ftp);
_netInit(); _netInit();
/* Our Wii game dir */
memset(wii_games_dir, 0, 64); /* Try to find/make the wiiflow data directory */
strncpy(wii_games_dir, m_cfg.getString(WII_DOMAIN, "wii_games_dir", GAMES_DIR).c_str(), 64);
if(strncmp(wii_games_dir, "%s:/", 4) != 0)
strcpy(wii_games_dir, GAMES_DIR);
gprintf("Wii Games Directory: %s\n", wii_games_dir);
/* Do our USB HDD Checks */
bool onUSB = m_cfg.getBool("GENERAL", "data_on_usb", strncmp(drive, "usb", 3) == 0); bool onUSB = m_cfg.getBool("GENERAL", "data_on_usb", strncmp(drive, "usb", 3) == 0);
drive = check; //reset the drive variable for the check drive = check; //reset the drive variable for the check
//check for wiiflow data directory on USB or SD based on data_on_usb
if(onUSB) if(onUSB)
{ {
for(u8 i = USB1; i <= USB8; i++) //Look for first partition with a wiiflow folder in root for(u8 i = USB1; i <= USB8; i++) //Look for first partition with a wiiflow folder in root
@ -206,48 +179,43 @@ void CMenu::init()
} }
} }
} }
else if(DeviceHandle.IsInserted(SD)) if(!onUSB && DeviceHandle.IsInserted(SD) && stat(fmt("%s:/%s", DeviceName[SD], APPDATA_DIR), &dummy) == 0)
drive = DeviceName[SD]; drive = DeviceName[SD];
if(drive == check)//if wiiflow data directory not found then check just for a USB partition or SD card
if(drive == check && onUSB) //No wiiflow folder found in root of any usb partition, and data_on_usb=yes
{ {
for(u8 i = USB1; i <= USB8; i++) // Try first USB partition with wbfs folder. if(onUSB)
{ {
if(DeviceHandle.IsInserted(i) && DeviceHandle.GetFSType(i) != PART_FS_WBFS && stat(fmt(GAMES_DIR, DeviceName[i]), &dummy) == 0) for(u8 i = USB1; i <= USB8; i++)
{ {
if(DeviceHandle.IsInserted(i) && DeviceHandle.GetFSType(i) != PART_FS_WBFS)
drive = DeviceName[i]; drive = DeviceName[i];
break; break;
} }
} if(drive == check)//if no available USB partition then force SD
}
if(drive == check && onUSB) // No wbfs folder found and data_on_usb=yes
{
for(u8 i = USB1; i <= USB8; i++) // Try first available USB partition.
{
if(DeviceHandle.IsInserted(i) && DeviceHandle.GetFSType(i) != PART_FS_WBFS)
{ {
drive = DeviceName[i]; _buildMenus();
break; error(_fmt("errboot5", L"data_on_usb=yes and No available usb partitions for data!\nUsing SD."));
drive = DeviceName[SD];
} }
} }
}
if(drive == check)
{
_buildMenus();
if(DeviceHandle.IsInserted(SD))
{
error(_fmt("errboot5", L"data_on_usb=yes and No available usb partitions for data!\nUsing SD."));
drive = DeviceName[SD];
}
else else
{ {
error(_fmt("errboot6", L"No available usb partitions for data and no SD inserted!\nExiting.")); if(DeviceHandle.IsInserted(SD))
m_exit = true; drive = DeviceName[SD];
return; else
drive = DeviceName[USB1];//if no SD insterted then force USB. may set this to the wf boot.dol partition
} }
} }
m_allow_random = m_cfg.getBool("GENERAL", "allow_b_on_questionmark", true); m_dataDir = fmt("%s:/%s", drive, APPDATA_DIR);
m_multisource = m_cfg.getBool("GENERAL", "multisource", false); gprintf("Data Directory: %s\n", m_dataDir.c_str());
snprintf(m_app_update_drive, sizeof(m_app_update_drive), "%s:/", drive);
/* Our Wii game dir */
memset(wii_games_dir, 0, 64);
strncpy(wii_games_dir, m_cfg.getString(WII_DOMAIN, "wii_games_dir", GAMES_DIR).c_str(), 64);
if(strncmp(wii_games_dir, "%s:/", 4) != 0)
strcpy(wii_games_dir, GAMES_DIR);
gprintf("Wii Games Directory: %s\n", wii_games_dir);
/* GameCube stuff */ /* GameCube stuff */
m_devo_installed = DEVO_Installed(m_dataDir.c_str()); m_devo_installed = DEVO_Installed(m_dataDir.c_str());
m_nintendont_installed = Nintendont_Installed(); m_nintendont_installed = Nintendont_Installed();
@ -268,10 +236,6 @@ void CMenu::init()
else else
_installed_cios[CurrentIOS.Version] = CurrentIOS.Version; _installed_cios[CurrentIOS.Version] = CurrentIOS.Version;
/* Path Settings */ /* Path Settings */
snprintf(m_app_update_drive, sizeof(m_app_update_drive), "%s:/", drive);
m_dataDir = fmt("%s:/%s", drive, APPDATA_DIR);
gprintf("Data Directory: %s\n", m_dataDir.c_str());
m_dol = fmt("%s/boot.dol", m_appDir.c_str()); m_dol = fmt("%s/boot.dol", m_appDir.c_str());
m_ver = fmt("%s/versions", m_appDir.c_str()); m_ver = fmt("%s/versions", m_appDir.c_str());
m_app_update_zip = fmt("%s/update.zip", m_appDir.c_str()); m_app_update_zip = fmt("%s/update.zip", m_appDir.c_str());
@ -305,37 +269,29 @@ void CMenu::init()
m_helpDir = m_cfg.getString("GENERAL", "dir_help", fmt("%s/help", m_dataDir.c_str())); m_helpDir = m_cfg.getString("GENERAL", "dir_help", fmt("%s/help", m_dataDir.c_str()));
/* Cache Reload Checks */ /* Cache Reload Checks */
/*Disabled for now
int ini_rev = m_cfg.getInt("GENERAL", "ini_rev", 0); int ini_rev = m_cfg.getInt("GENERAL", "ini_rev", 0);
if(ini_rev != SVN_REV_NUM) if(ini_rev != SVN_REV_NUM)
fsop_deleteFolder(m_listCacheDir.c_str()); fsop_deleteFolder(m_listCacheDir.c_str());
m_cfg.setInt("GENERAL", "ini_rev", SVN_REV_NUM); m_cfg.setInt("GENERAL", "ini_rev", SVN_REV_NUM);*/
//DeviceHandler::SetWatchdog(m_cfg.getUInt("GENERAL", "watchdog_timeout", 10));
/* Check to make sure wii games partition is ok */
const char *domain = _domainFromView(); const char *domain = _domainFromView();
const char *checkDir = m_current_view == COVERFLOW_HOMEBREW ? HOMEBREW_DIR : GAMES_DIR; u8 partition = m_cfg.getInt(domain, "partition", 0);
if(partition > USB8 || !DeviceHandle.IsInserted(partition))//if not ok then find wbfs folder or wbfs partition
u8 partition = m_cfg.getInt(domain, "partition", 0); //Auto find a valid partition and fix old ini partition settings.
if(m_current_view != COVERFLOW_CHANNEL && (partition > USB8 || !DeviceHandle.IsInserted(partition)))
{ {
m_cfg.remove(domain, "partition"); m_cfg.remove(domain, "partition");
for(int i = SD; i <= USB8+1; i++) // Find a usb partition with the wbfs folder or wbfs file system, else leave it blank (defaults to 1 later) for(int i = SD; i <= USB8; i++) // Find a usb partition with a wbfs folder or wbfs file system, else leave it blank (defaults to usb1 later)
{ {
if(i > USB8) if(DeviceHandle.IsInserted(i) && (DeviceHandle.GetFSType(i) == PART_FS_WBFS || stat(fmt(GAMES_DIR, DeviceName[i]), &dummy) == 0))
{ {
m_current_view = COVERFLOW_CHANNEL; gprintf("Setting Wii games partition to: %i\n", i);
break;
}
if (DeviceHandle.IsInserted(i)
&& ((m_current_view == COVERFLOW_WII && DeviceHandle.GetFSType(i) == PART_FS_WBFS)
|| stat(fmt(checkDir, DeviceName[i]), &dummy) == 0))
{
gprintf("Setting Emu NAND to Partition: %i\n",currentPartition);
m_cfg.setInt(domain, "partition", i); m_cfg.setInt(domain, "partition", i);
break; break;
} }
} }
} }
CoverFlow.init(m_base_font, m_base_font_size, m_vid.vid_50hz()); CoverFlow.init(m_base_font, m_base_font_size, m_vid.vid_50hz());
/* Create our Folder Structure */ /* Create our Folder Structure */
@ -365,16 +321,16 @@ void CMenu::init()
fsop_MakeFolder(m_screenshotDir.c_str()); fsop_MakeFolder(m_screenshotDir.c_str());
fsop_MakeFolder(m_helpDir.c_str()); fsop_MakeFolder(m_helpDir.c_str());
// INI files //load categories and theme INI files
m_cat.load(fmt("%s/" CAT_FILENAME, m_settingsDir.c_str())); m_cat.load(fmt("%s/" CAT_FILENAME, m_settingsDir.c_str()));
string themeName = m_cfg.getString("GENERAL", "theme", "default"); string themeName = m_cfg.getString("GENERAL", "theme", "default");
m_themeDataDir = fmt("%s/%s", m_themeDir.c_str(), themeName.c_str()); m_themeDataDir = fmt("%s/%s", m_themeDir.c_str(), themeName.c_str());
m_theme.load(fmt("%s.ini", m_themeDataDir.c_str())); m_theme.load(fmt("%s.ini", m_themeDataDir.c_str()));
m_plugin.init(m_pluginsDir);
// get plugin ini files if plugin view enabled /*Get plugin ini files if plugin view enabled*/
if(!m_cfg.getBool(PLUGIN_DOMAIN, "disable", false)) if(!m_cfg.getBool(PLUGIN_DOMAIN, "disable", false))
{ {
m_plugin.init(m_pluginsDir);
Config m_plugin_cfg; Config m_plugin_cfg;
INI_List.clear(); INI_List.clear();
GetFiles(m_pluginsDir.c_str(), stringToVector(".ini", '|'), GrabINIFiles, false, 1); GetFiles(m_pluginsDir.c_str(), stringToVector(".ini", '|'), GrabINIFiles, false, 1);
@ -393,7 +349,7 @@ void CMenu::init()
} }
m_plugin.EndAdd(); m_plugin.EndAdd();
} }
/*Set wiiflow language*/
const char *defLang = "Default"; const char *defLang = "Default";
switch (CONF_GetLanguage()) switch (CONF_GetLanguage())
{ {
@ -435,12 +391,10 @@ void CMenu::init()
m_cfg.setString("GENERAL", "language", m_curLanguage.c_str()); m_cfg.setString("GENERAL", "language", m_curLanguage.c_str());
m_loc.unload(); m_loc.unload();
} }
m_tempView = false;
m_gameList.Init(m_settingsDir.c_str(), m_loc.getString(m_curLanguage, "gametdb_code", "EN").c_str()); m_gameList.Init(m_settingsDir.c_str(), m_loc.getString(m_curLanguage, "gametdb_code", "EN").c_str());
m_aa = 3; m_aa = 3;
CColor pShadowColor = m_theme.getColor("GENERAL", "pointer_shadow_color", CColor(0x3F000000)); CColor pShadowColor = m_theme.getColor("GENERAL", "pointer_shadow_color", CColor(0x3F000000));
float pShadowX = m_theme.getFloat("GENERAL", "pointer_shadow_x", 3.f); float pShadowX = m_theme.getFloat("GENERAL", "pointer_shadow_x", 3.f);
float pShadowY = m_theme.getFloat("GENERAL", "pointer_shadow_y", 3.f); float pShadowY = m_theme.getFloat("GENERAL", "pointer_shadow_y", 3.f);
@ -2623,8 +2577,6 @@ const char *CMenu::getBlankCoverPath(const dir_discHdr *element)
blankCoverKey = "gamecube"; blankCoverKey = "gamecube";
break; break;
case TYPE_PLUGIN: case TYPE_PLUGIN:
//char PluginMagicWord[9];
//memset(PluginMagicWord, 0, sizeof(PluginMagicWord));
strncpy(m_plugin.PluginMagicWord, fmt("%08x", element->settings[0]), 8); strncpy(m_plugin.PluginMagicWord, fmt("%08x", element->settings[0]), 8);
blankCoverKey = m_plugin.PluginMagicWord; blankCoverKey = m_plugin.PluginMagicWord;
break; break;

View File

@ -599,7 +599,7 @@ private:
// NandEmulation // NandEmulation
string m_saveExtGameId; string m_saveExtGameId;
bool m_forceext; bool m_forceext;
bool m_tempView; bool m_emuSaveNand;
s32 m_partRequest; s32 m_partRequest;
// Zones // Zones
SZone m_mainPrevZone; SZone m_mainPrevZone;

View File

@ -59,8 +59,8 @@ void CMenu::_showConfig(void)
m_btnMgr.show(m_configLblDownload); m_btnMgr.show(m_configLblDownload);
m_btnMgr.show(m_configBtnDownload); m_btnMgr.show(m_configBtnDownload);
bool disable = (m_current_view == COVERFLOW_CHANNEL) && (m_cfg.getBool(CHANNEL_DOMAIN, "disable", true) || neek2o()) && !m_tempView; bool disable = (m_current_view == COVERFLOW_CHANNEL) && (m_cfg.getBool(CHANNEL_DOMAIN, "disable", true) || neek2o()) && !m_emuSaveNand;
const char *partitionname = disable ? CHANNEL_DOMAIN : DeviceName[m_tempView ? m_cfg.getInt(WII_DOMAIN, "savepartition", 0) : m_cfg.getInt(_domainFromView(), "partition", 0)]; const char *partitionname = disable ? CHANNEL_DOMAIN : DeviceName[m_emuSaveNand ? m_cfg.getInt(WII_DOMAIN, "savepartition", 0) : m_cfg.getInt(_domainFromView(), "partition", 0)];
for(u8 i = 0; i < ARRAY_SIZE(m_configLblUser); ++i) for(u8 i = 0; i < ARRAY_SIZE(m_configLblUser); ++i)
if(m_configLblUser[i] != -1) if(m_configLblUser[i] != -1)

View File

@ -209,7 +209,7 @@ u8 banner_title[84];
static inline int loopNum(int i, int s) static inline int loopNum(int i, int s)
{ {
return i < 0 ? (s - (-i % s)) % s : i % s; return (i + s) % s;
} }
@ -376,10 +376,8 @@ static const char *getVideoPath(const string &videoDir, const char *videoId)
static const char *getVideoDefaultPath(const string &videoDir) static const char *getVideoDefaultPath(const string &videoDir)
{ {
char PluginMagicWord[9]; strncpy(m_plugin.PluginMagicWord, fmt("%08x", CoverFlow.getHdr()->settings[0]), 8);
memset(PluginMagicWord, 0, sizeof(PluginMagicWord)); const char *videoPath = fmt("%s/%s", videoDir.c_str(), m_plugin.PluginMagicWord);
strncpy(PluginMagicWord, fmt("%08x", CoverFlow.getHdr()->settings[0]), 8);
const char *videoPath = fmt("%s/%s", videoDir.c_str(), PluginMagicWord);
return videoPath; return videoPath;
} }
@ -597,10 +595,8 @@ void CMenu::_game(bool launch)
m_plugin.GetEnabledPlugins(m_cfg, &enabledPluginsCount); m_plugin.GetEnabledPlugins(m_cfg, &enabledPluginsCount);
if(enabledPluginsCount == 1) if(enabledPluginsCount == 1)
{ {
char PluginMagicWord[9]; strncpy(m_plugin.PluginMagicWord, fmt("%08x", hdr->settings[0]), 8);
memset(PluginMagicWord, 0, sizeof(PluginMagicWord)); currentPartition = m_cfg.getInt("PLUGINS_PARTITION", m_plugin.PluginMagicWord, 1);
strncpy(PluginMagicWord, fmt("%08x", hdr->settings[0]), 8);
currentPartition = m_cfg.getInt("PLUGINS_PARTITION", PluginMagicWord, 1);
m_cfg.setInt(PLUGIN_DOMAIN, "partition", currentPartition); m_cfg.setInt(PLUGIN_DOMAIN, "partition", currentPartition);
} }
currentPartition = m_cfg.getInt(PLUGIN_DOMAIN, "partition", 1); currentPartition = m_cfg.getInt(PLUGIN_DOMAIN, "partition", 1);
@ -925,8 +921,8 @@ void CMenu::_launchGC(dir_discHdr *hdr, bool disc)
{ {
u8 emuMC = min((u32)m_gcfg2.getInt(id, "emu_memcard", m_cfg.getInt(GC_DOMAIN, "emu_memcard", 1)), ARRAY_SIZE(CMenu::_NinEmuCard) - 1u); u8 emuMC = min((u32)m_gcfg2.getInt(id, "emu_memcard", m_cfg.getInt(GC_DOMAIN, "emu_memcard", 1)), ARRAY_SIZE(CMenu::_NinEmuCard) - 1u);
emuMC = (emuMC == 0) ? m_cfg.getInt(GC_DOMAIN, "emu_memcard", 1) : emuMC-1; emuMC = (emuMC == 0) ? m_cfg.getInt(GC_DOMAIN, "emu_memcard", 1) : emuMC-1;
bool usb_hid = m_gcfg2.getBool(id, "USB_HID", m_cfg.getBool(GC_DOMAIN, "USB_HID", false)); bool usb_hid = m_gcfg2.getBool(id, "usb_hid", m_cfg.getBool(GC_DOMAIN, "usb_hid", false));
bool native_ctl = m_gcfg2.getBool(id, "NATIVE_CTL", m_cfg.getBool(GC_DOMAIN, "NATIVE_CTL", false)); bool native_ctl = m_gcfg2.getBool(id, "native_ctl", m_cfg.getBool(GC_DOMAIN, "native_ctl", false));
bool deflicker = m_gcfg2.getBool(id, "Deflicker", m_cfg.getBool(GC_DOMAIN, "Deflicker", false)); bool deflicker = m_gcfg2.getBool(id, "Deflicker", m_cfg.getBool(GC_DOMAIN, "Deflicker", false));
if(disc == true) if(disc == true)
{ {

View File

@ -250,10 +250,12 @@ int CMenu::main(void)
show_channel = !m_cfg.getBool("GENERAL", "hidechannel", false); show_channel = !m_cfg.getBool("GENERAL", "hidechannel", false);
show_plugin = !m_cfg.getBool(PLUGIN_DOMAIN, "disable", false); show_plugin = !m_cfg.getBool(PLUGIN_DOMAIN, "disable", false);
show_gamecube = m_show_gc; show_gamecube = m_show_gc;
m_allow_random = m_cfg.getBool("GENERAL", "allow_b_on_questionmark", true);
m_multisource = m_cfg.getBool("GENERAL", "multisource", false);
m_use_source = m_cfg.getBool("GENERAL", "use_source", true); m_use_source = m_cfg.getBool("GENERAL", "use_source", true);
bool bheld = false; bool bheld = false;
bool bUsed = false; bool bUsed = false;
m_emuSaveNand = false;
m_reload = false; m_reload = false;
u32 disc_check = 0; u32 disc_check = 0;
@ -324,7 +326,6 @@ int CMenu::main(void)
{ {
if(BTN_B_HELD) if(BTN_B_HELD)
bUsed = true; bUsed = true;
//_initCF();may not need this
_showMain(); _showMain();
} }
} }
@ -515,7 +516,6 @@ int CMenu::main(void)
{ {
if(BTN_B_HELD) if(BTN_B_HELD)
bUsed = true; bUsed = true;
//_initCF();may not need this one either
_showMain(); _showMain();
} }
} }
@ -1114,7 +1114,7 @@ void CMenu::_setPartition(s8 direction)
m_cfg.setBool(CHANNEL_DOMAIN, "disable", true); m_cfg.setBool(CHANNEL_DOMAIN, "disable", true);
} }
} }
if(m_tempView) if(m_emuSaveNand)
m_cfg.setInt(WII_DOMAIN, "savepartition", currentPartition); m_cfg.setInt(WII_DOMAIN, "savepartition", currentPartition);
else else
{ {
@ -1130,8 +1130,6 @@ void CMenu::_setPartition(s8 direction)
if(plugin_list[i] == true) if(plugin_list[i] == true)
break; break;
} }
//char PluginMagicWord[9];
//memset(PluginMagicWord, 0, sizeof(PluginMagicWord));
strncpy(m_plugin.PluginMagicWord, fmt("%08x", m_plugin.getPluginMagic(i)), 8); strncpy(m_plugin.PluginMagicWord, fmt("%08x", m_plugin.getPluginMagic(i)), 8);
m_cfg.setInt("PLUGINS_PARTITION", m_plugin.PluginMagicWord, currentPartition); m_cfg.setInt("PLUGINS_PARTITION", m_plugin.PluginMagicWord, currentPartition);
} }

View File

@ -756,7 +756,7 @@ int CMenu::_AutoCreateNand(void)
m_thrdStop = false; m_thrdStop = false;
m_thrdMessageAdded = false; m_thrdMessageAdded = false;
m_nandext = false; m_nandext = false;
m_tempView = false; m_emuSaveNand = false;
bool lock_part_change = false; bool lock_part_change = false;
m_btnMgr.setText(m_nandemuBtnExtract, _t("cfgne5", L"Extract NAND")); m_btnMgr.setText(m_nandemuBtnExtract, _t("cfgne5", L"Extract NAND"));
@ -806,15 +806,15 @@ int CMenu::_AutoCreateNand(void)
{ {
if(m_current_view == COVERFLOW_WII) if(m_current_view == COVERFLOW_WII)
{ {
m_tempView = true; m_emuSaveNand = true;
m_current_view = COVERFLOW_CHANNEL; m_current_view = COVERFLOW_CHANNEL;
} }
_hideNandEmu(); _hideNandEmu();
_config(1); _config(1);
if(m_tempView) if(m_emuSaveNand)
{ {
m_current_view = COVERFLOW_WII; m_current_view = COVERFLOW_WII;
m_tempView = false; m_emuSaveNand = false;
return 0; return 0;
} }
return 1; return 1;

View File

@ -220,32 +220,7 @@ void CMenu::_createSFList()
void CMenu::_sourceFlow() void CMenu::_sourceFlow()
{ {
//u8 numPlugins = 0, k;
u8 k; u8 k;
/*if(!m_cfg.getBool(PLUGIN_DOMAIN, "disable", false))
{
Config m_plugin_cfg;
DIR *pdir;
struct dirent *pent;
pdir = opendir(m_pluginsDir.c_str());
while((pent = readdir(pdir)) != NULL)
{
if(pent->d_name[0] == '.'|| strcasecmp(pent->d_name, "scummvm.ini") == 0)
continue;
if(strcasestr(pent->d_name, ".ini") != NULL)
{
m_plugin_cfg.load(fmt("%s/%s", m_pluginsDir.c_str(), pent->d_name));
if (m_plugin_cfg.loaded())
{
numPlugins++;
m_plugin.AddPlugin(m_plugin_cfg);
}
m_plugin_cfg.unload();
}
}
closedir(pdir);
m_plugin.EndAdd();
}*/
const dir_discHdr *hdr = CoverFlow.getHdr(); const dir_discHdr *hdr = CoverFlow.getHdr();
if(m_cfg.getBool("SOURCEFLOW", "remember_last_item", true)) if(m_cfg.getBool("SOURCEFLOW", "remember_last_item", true))
m_cfg.setString("SOURCEFLOW", "current_item", strrchr(hdr->path, '/') + 1); m_cfg.setString("SOURCEFLOW", "current_item", strrchr(hdr->path, '/') + 1);
@ -392,7 +367,6 @@ bool CMenu::_Source()
bool noChanges = true; bool noChanges = true;
bool updateSource = false; bool updateSource = false;
exitSource = false; exitSource = false;
//u8 numPlugins = 0;
m_showtimer = 0; m_showtimer = 0;
source_curPage = 1; source_curPage = 1;
source_Pages = 1; source_Pages = 1;
@ -420,30 +394,6 @@ bool CMenu::_Source()
break; break;
} }
} }
/*if(show_emu)
{
Config m_plugin_cfg;
DIR *pdir;
struct dirent *pent;
pdir = opendir(m_pluginsDir.c_str());
while((pent = readdir(pdir)) != NULL)
{
if(pent->d_name[0] == '.'|| strcasecmp(pent->d_name, "scummvm.ini") == 0)
continue;
if(strcasestr(pent->d_name, ".ini") != NULL)
{
m_plugin_cfg.load(fmt("%s/%s", m_pluginsDir.c_str(), pent->d_name));
if (m_plugin_cfg.loaded())
{
numPlugins++;
m_plugin.AddPlugin(m_plugin_cfg);
}
m_plugin_cfg.unload();
}
}
closedir(pdir);
m_plugin.EndAdd();
}*/
_updateSourceBtns(); _updateSourceBtns();
} }
@ -485,8 +435,6 @@ bool CMenu::_Source()
if(plugin_list[i] == true) if(plugin_list[i] == true)
break; break;
} }
//char PluginMagicWord[9];
//memset(PluginMagicWord, 0, sizeof(PluginMagicWord));
strncpy(m_plugin.PluginMagicWord, fmt("%08x", m_plugin.getPluginMagic(i)), 8); strncpy(m_plugin.PluginMagicWord, fmt("%08x", m_plugin.getPluginMagic(i)), 8);
currentPartition = m_cfg.getInt("PLUGINS_PARTITION", m_plugin.PluginMagicWord, 1); currentPartition = m_cfg.getInt("PLUGINS_PARTITION", m_plugin.PluginMagicWord, 1);
m_cfg.setInt(PLUGIN_DOMAIN, "partition", currentPartition); m_cfg.setInt(PLUGIN_DOMAIN, "partition", currentPartition);