-fixed wii game just froze on reloading ios

-fixed emu nand codedump on ios reload as well
This commit is contained in:
fix94.1 2012-07-10 11:25:27 +00:00
parent 5797a6cee6
commit 1b7d76177e
5 changed files with 34 additions and 85 deletions

View File

@ -224,7 +224,7 @@ bool Identify_GenerateTik(signed_blob **outbuf, u32 *outlen)
return true; return true;
} }
bool Identify(u64 titleid, u32 *ios) bool Identify(u64 titleid)
{ {
char filepath[ISFS_MAXPATH] ATTRIBUTE_ALIGN(32); char filepath[ISFS_MAXPATH] ATTRIBUTE_ALIGN(32);
@ -239,8 +239,6 @@ bool Identify(u64 titleid, u32 *ios)
} }
gprintf("Success!\n"); gprintf("Success!\n");
*ios = (u32)(tmdBuffer[0x18b]);
u32 tikSize; u32 tikSize;
signed_blob *tikBuffer = NULL; signed_blob *tikBuffer = NULL;

View File

@ -15,7 +15,7 @@ void PatchChannel(u8 vidMode, GXRModeObj *vmode, bool vipatch, bool countryStrin
u8 *GetDol(u64 title, u32 bootcontent); u8 *GetDol(u64 title, u32 bootcontent);
bool Identify(u64 titleid, u32 *ios); bool Identify(u64 titleid);
bool Identify_GenerateTik(signed_blob **outbuf, u32 *outlen); bool Identify_GenerateTik(signed_blob **outbuf, u32 *outlen);
#ifdef __cplusplus #ifdef __cplusplus

View File

@ -73,7 +73,7 @@ Channels::~Channels()
{ {
} }
u32 Channels::Load(u64 title, u32 *ios) u32 Channels::Load(u64 title)
{ {
char app[ISFS_MAXPATH] ATTRIBUTE_ALIGN(32); char app[ISFS_MAXPATH] ATTRIBUTE_ALIGN(32);
u32 bootcontent; u32 bootcontent;
@ -84,7 +84,7 @@ u32 Channels::Load(u64 title, u32 *ios)
u8 *data = GetDol(title, bootcontent); u8 *data = GetDol(title, bootcontent);
Identify(title, ios); Identify(title);
entry = LoadChannel(data); entry = LoadChannel(data);
free(data); free(data);
@ -107,7 +107,7 @@ u8 Channels::GetRequestedIOS(u64 title)
IOS = titleTMD[0x18B]; IOS = titleTMD[0x18B];
MEM2_free(titleTMD); MEM2_free(titleTMD);
gprintf("Requested Game IOS: %i\n", IOS);
return IOS; return IOS;
} }

View File

@ -54,7 +54,7 @@ class Channels
void Init(u32 channelType, string lang, bool reload = false); void Init(u32 channelType, string lang, bool reload = false);
u32 Load(u64 title, u32 *ios); u32 Load(u64 title);
u8 GetRequestedIOS(u64 title); u8 GetRequestedIOS(u64 title);
int Count(); int Count();

View File

@ -963,7 +963,7 @@ static const char systems[11] = { 'C', 'E', 'F', 'J', 'L', 'M', 'N', 'P', 'Q', '
void CMenu::_launchChannel(dir_discHdr *hdr) void CMenu::_launchChannel(dir_discHdr *hdr)
{ {
Channels channel; Channels channel;
u32 ios = 0; u32 gameIOS = 0;
u32 entry = 0; u32 entry = 0;
Nand::Instance()->Disable_Emu(); Nand::Instance()->Disable_Emu();
string id = string(hdr->id); string id = string(hdr->id);
@ -1028,6 +1028,22 @@ void CMenu::_launchChannel(dir_discHdr *hdr)
m_cfg.save(true); m_cfg.save(true);
cleanup(); cleanup();
if(!forwarder)
{
if(!emu_disabled)
{
Nand::Instance()->Init(emuPath.c_str(), emuPartition, false);
Nand::Instance()->Enable_Emu();
}
gameIOS = channel.GetRequestedIOS(gameTitle);
if(!emu_disabled)
{
Nand::Instance()->Disable_Emu();
usleep(1000);
}
if(_loadIOS(gameIOS, userIOS, id) == LOAD_IOS_FAILED)
return;
}
if(!emu_disabled) if(!emu_disabled)
{ {
Nand::Instance()->Init(emuPath.c_str(), emuPartition, false); Nand::Instance()->Init(emuPath.c_str(), emuPartition, false);
@ -1042,86 +1058,20 @@ void CMenu::_launchChannel(dir_discHdr *hdr)
{ {
Nand::Instance()->Disable_Emu(); Nand::Instance()->Disable_Emu();
error(_t("errgame5", L"Enabling emu failed!")); error(_t("errgame5", L"Enabling emu failed!"));
return; return;
} }
} }
if(!forwarder) if(!forwarder)
{ {
entry = channel.Load(gameTitle, &ios); entry = channel.Load(gameTitle);
setLanguage(language); setLanguage(language);
SmartBuf cheatFile; SmartBuf cheatFile;
u32 cheatSize = 0; u32 cheatSize = 0;
if (cheat) if(cheat)
_loadFile(cheatFile, cheatSize, m_cheatDir.c_str(), fmt("%s.gct", id.c_str())); _loadFile(cheatFile, cheatSize, m_cheatDir.c_str(), fmt("%s.gct", id.c_str()));
ocarina_load_code(cheatFile.get(), cheatSize); ocarina_load_code(cheatFile.get(), cheatSize);
int gameIOS = userIOS == 0 ? ios : userIOS;
gprintf("%s IOS %u\n", userIOS == 0 ? "Game requested" : "User requested", gameIOS);
if (gameIOS != mainIOS && gameIOS <= 0x50)
{
u8 IOS[3];
IOS[0] = gameIOS;
IOS[1] = 56;
IOS[2] = 57;
bool found = false;
for(u8 num = 0; num < 3; num++)
{
if(found)
break;
if(IOS[num] == 0)
continue;
for(CIOSItr itr = _installed_cios.begin(); itr != _installed_cios.end(); itr++)
{
if(itr->second == IOS[num] || itr->first == IOS[num])
{
gameIOS = itr->first;
found = true;
break;
}
}
}
if(!found)
{
error(sfmt("errgame3", L"Couldn't find a cIOS using base %i, or 56/57", IOS[0]));
return;
}
} }
if(gameIOS != mainIOS)
{
gprintf("Reloading IOS into %d\n", gameIOS);
if(!loadIOS(gameIOS, false))
{
_reload_wifi_gecko();
error(sfmt("errgame4", L"Couldn't reload to cIOS %i", gameIOS));
return;
}
if(!emu_disabled)
{
Nand::Instance()->Init(emuPath.c_str(), emuPartition, false);
DeviceHandler::Instance()->UnMount(emuPartition);
if(emulate_mode == 1)
Nand::Instance()->Set_FullMode(true);
else
Nand::Instance()->Set_FullMode(false);
if(Nand::Instance()->Enable_Emu() < 0)
{
Nand::Instance()->Disable_Emu();
error(_t("errgame6", L"Enabling emu after reload failed!"));
Sys_LoadMenu();
return;
}
}
}
}
ISFS_Deinitialize(); ISFS_Deinitialize();
if(rtrn != NULL && strlen(rtrn) == 4) if(rtrn != NULL && strlen(rtrn) == 4)
{ {
@ -1144,7 +1094,7 @@ void CMenu::_launchChannel(dir_discHdr *hdr)
if(WII_LaunchTitle(gameTitle) < 0) if(WII_LaunchTitle(gameTitle) < 0)
Sys_LoadMenu(); Sys_LoadMenu();
} }
if(!BootChannel(entry, gameTitle, ios, videoMode, vipatch, countryPatch, patchVidMode, aspectRatio)) else if(!BootChannel(entry, gameTitle, gameIOS, videoMode, vipatch, countryPatch, patchVidMode, aspectRatio))
Sys_LoadMenu(); Sys_LoadMenu();
} }
@ -1331,6 +1281,7 @@ void CMenu::_launchGame(dir_discHdr *hdr, bool dvd)
m_cat.save(true); m_cat.save(true);
m_cfg.save(true); m_cfg.save(true);
cleanup(); // wifi and sd gecko doesnt work anymore after cleanup cleanup(); // wifi and sd gecko doesnt work anymore after cleanup
ISFS_Deinitialize();
bool iosLoaded = false; bool iosLoaded = false;
@ -1405,7 +1356,7 @@ void CMenu::_launchGame(dir_discHdr *hdr, bool dvd)
} }
} }
IOSReloadBlock(IOS_GetVersion(), true); IOSReloadBlock(IOS_GetVersion(), true);
ISFS_Deinitialize();
USBStorage_Deinit(); USBStorage_Deinit();
if(currentPartition == 0) if(currentPartition == 0)
SDHC_Init(); SDHC_Init();