usbloadergx/source/prompts/DiscBrowser.cpp

505 lines
15 KiB
C++
Raw Normal View History

/****************************************************************************
* DiscBrowser
* USB Loader GX 2009
*
* DiscBrowser.h
***************************************************************************/
#include "language/gettext.h"
#include "libwiigui/gui.h"
#include "libwiigui/gui_customoptionbrowser.h"
#include "prompts/PromptWindows.h"
#include "filelist.h"
#include "menu.h"
#include "usbloader/disc.h"
#include "usbloader/fstfile.h"
#include "usbloader/wdvd.h"
#include "usbloader/wbfs.h"
#include "libs/libwbfs/libwbfs.h"
#include "libs/libwbfs/wiidisc.h"
#include "main.h"
#include "sys.h"
#include "settings/GameTitles.h"
#include "themes/CTheme.h"
#include "memory/memory.h"
#include "../gecko.h"
#include "../patches/dvd_broadway.h"
/*** Extern functions ***/
extern void ResumeGui();
extern void HaltGui();
/*** Extern variables ***/
extern GuiWindow * mainWindow;
extern u8 shutdown;
extern u8 reset;
/********************************************************************************
2010-09-24 02:48:03 +02:00
*Disk Browser
*********************************************************************************/
int DiscBrowse(const char * GameID, char * alternatedname, int alternatedname_size)
{
2010-09-24 02:48:03 +02:00
gprintf("\nDiscBrowser() started");
bool exit = false;
int ret = 0, choice;
HaltGui();
wbfs_disc_t *disc = WBFS_OpenDisc((u8 *) GameID);
if (!disc)
{
ResumeGui();
2010-09-24 02:48:03 +02:00
WindowPrompt(tr( "ERROR:" ), tr( "Could not open Disc" ), tr( "OK" ));
return ret;
}
wiidisc_t *wdisc = wd_open_disc((int(*)(void *, u32, u32, void *)) wbfs_disc_read, disc);
if (!wdisc)
{
ResumeGui();
WindowPrompt(tr( "ERROR:" ), tr( "Could not open Disc" ), tr( "OK" ));
return ret;
}
FST_ENTRY * fstbuffer = (FST_ENTRY *) wd_get_fst(wdisc, ONLY_GAME_PARTITION);
if (!fstbuffer)
{
ResumeGui();
2010-09-24 02:48:03 +02:00
WindowPrompt(tr( "ERROR:" ), tr( "Not enough free memory." ), tr( "OK" ));
return -1;
}
wd_close_disc(wdisc);
WBFS_CloseDisc(disc);
u32 discfilecount = fstbuffer[0].filelen;
OptionList options3;
2010-09-24 02:48:03 +02:00
for (u32 i = 0; i < discfilecount; i++)
{
//don't add files that aren't .dol to the list
const char * filename = fstfiles(fstbuffer, i);
const char * fileext = NULL;
if(filename)
fileext = strrchr(filename, '.');
if (fileext && strcasecmp(fileext, ".dol") == 0)
{
2010-09-24 02:48:03 +02:00
options3.SetName(i, "%i", i);
options3.SetValue(i, fstfiles(fstbuffer, i));
}
}
gprintf("\n%i alt dols found", options3.GetLength()+1);
if (options3.GetLength() <= 0)
{
2010-09-24 02:48:03 +02:00
WindowPrompt(tr( "ERROR" ), tr( "No DOL file found on disc." ), tr( "OK" ));
free(fstbuffer);
return -1;
}
GuiImageData btnOutline(Resources::GetFile("button_dialogue_box.png"), Resources::GetFileSize("button_dialogue_box.png"));
GuiImageData settingsbg(Resources::GetFile("settings_background.png"), Resources::GetFileSize("settings_background.png"));
GuiTrigger trigA;
2010-09-24 02:48:03 +02:00
trigA.SetSimpleTrigger(-1, WPAD_BUTTON_A | WPAD_CLASSIC_BUTTON_A, PAD_BUTTON_A);
GuiTrigger trigHome;
2010-09-24 02:48:03 +02:00
trigHome.SetButtonOnlyTrigger(-1, WPAD_BUTTON_HOME | WPAD_CLASSIC_BUTTON_HOME, 0);
GuiTrigger trigB;
2010-09-24 02:48:03 +02:00
trigB.SetButtonOnlyTrigger(-1, WPAD_BUTTON_B | WPAD_CLASSIC_BUTTON_B, PAD_BUTTON_B);
GuiText titleTxt(GameTitles.GetTitle(GameID), 28, ( GXColor ) {0, 0, 0, 255});
2010-09-24 02:48:03 +02:00
titleTxt.SetAlignment(ALIGN_CENTRE, ALIGN_TOP);
titleTxt.SetPosition(12, 40);
titleTxt.SetMaxWidth(356, SCROLL_HORIZONTAL);
GuiImage settingsbackground(&settingsbg);
GuiButton settingsbackgroundbtn(settingsbackground.GetWidth(), settingsbackground.GetHeight());
settingsbackgroundbtn.SetAlignment(ALIGN_LEFT, ALIGN_TOP);
settingsbackgroundbtn.SetPosition(0, 0);
settingsbackgroundbtn.SetImage(&settingsbackground);
GuiText cancelBtnTxt(tr( "Back" ), 22, Theme.prompttext);
2010-09-24 02:48:03 +02:00
cancelBtnTxt.SetMaxWidth(btnOutline.GetWidth() - 30);
GuiImage cancelBtnImg(&btnOutline);
2010-10-27 16:45:27 +02:00
if (Settings.wsprompt == ON)
{
2010-09-24 02:48:03 +02:00
cancelBtnTxt.SetWidescreen(Settings.widescreen);
cancelBtnImg.SetWidescreen(Settings.widescreen);
}
GuiButton cancelBtn(&cancelBtnImg, &cancelBtnImg, 2, 3, 180, 400, &trigA, btnSoundOver, btnSoundClick2, 1);
2010-09-24 02:48:03 +02:00
cancelBtn.SetScale(0.9);
cancelBtn.SetLabel(&cancelBtnTxt);
cancelBtn.SetTrigger(&trigB);
GuiCustomOptionBrowser optionBrowser3(396, 280, &options3, "bg_options_gamesettings.png");
2010-09-24 02:48:03 +02:00
optionBrowser3.SetPosition(0, 90);
optionBrowser3.SetAlignment(ALIGN_CENTRE, ALIGN_TOP);
HaltGui();
2010-09-24 02:48:03 +02:00
GuiWindow w(screenwidth, screenheight);
w.Append(&settingsbackgroundbtn);
w.Append(&titleTxt);
w.Append(&cancelBtn);
w.Append(&optionBrowser3);
2010-09-24 02:48:03 +02:00
mainWindow->Append(&w);
ResumeGui();
2010-09-24 02:48:03 +02:00
while (!exit)
{
VIDEO_WaitVSync();
2010-09-24 02:48:03 +02:00
if (shutdown == 1) Sys_Shutdown();
if (reset == 1) Sys_Reboot();
ret = optionBrowser3.GetClickedOption();
2010-09-24 02:48:03 +02:00
if (ret > 0)
{
char temp[100];
strlcpy(temp, fstfiles(fstbuffer, ret), sizeof(temp));
2010-09-24 02:48:03 +02:00
choice = WindowPrompt(temp, tr( "Load this DOL as alternate DOL?" ), tr( "OK" ), tr( "Cancel" ));
if (choice)
{
//ret = offsetselect[ret];
2010-10-27 16:45:27 +02:00
strlcpy(alternatedname, temp, alternatedname_size);
exit = true;
}
}
2010-09-24 02:48:03 +02:00
if (cancelBtn.GetState() == STATE_CLICKED)
{
ret = 696969;
exit = true;
}
}
HaltGui();
2010-09-24 02:48:03 +02:00
mainWindow->Remove(&w);
ResumeGui();
//free not needed list buffer anymore
2010-09-24 02:48:03 +02:00
free(fstbuffer);
return ret;
}
2010-09-24 02:48:03 +02:00
int autoSelectDol(const char *id, bool force)
{
2010-09-24 02:48:03 +02:00
gprintf("\nautoSelectDol() started");
char id4[10];
2010-09-24 02:48:03 +02:00
sprintf(id4, "%c%c%c%c", id[0], id[1], id[2], id[3]);
2010-09-24 02:48:03 +02:00
////// games that can be forced (always need alt dol)
//Boogie
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RBOP69") == 0) return 675;//previous value was 657
if (strcmp(id, "RBOE69") == 0) return 675;//starstremr
//Fifa 08
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RF8E69") == 0) return 439;//from isostar
if (strcmp(id, "RF8P69") == 0) return 463;//from isostar
if (strcmp(id, "RF8X69") == 0) return 464;//from isostar
//Madden NFL07
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RMDP69") == 0) return 39;//from isostar
//Madden NFL08
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RNFP69") == 0) return 1079;//from isostar
//Medal of Honor: Heroes 2
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RM2X69") == 0) return 601;//dj_skual
if (strcmp(id, "RM2P69") == 0) return 517;//MZottel
if (strcmp(id, "RM2E69") == 0) return 492;//Old8oy
//Mortal Kombat
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RKMP5D") == 0) return 290;//from isostar
if (strcmp(id, "RKME5D") == 0) return 290;//starstremr
//NBA 08
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RNBX69") == 0) return 964;//from isostar
//Pangya! Golf with Style
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RPYP9B") == 0) return 12490;//from isostar
//Redsteel
2010-09-24 02:48:03 +02:00
if (strcmp(id, "REDP41") == 0) return 1957;//from isostar
if (strcmp(id, "REDE41") == 0) return 1957;//starstremr
//SSX
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RSXP69") == 0) return 377;//previous value was 337
if (strcmp(id, "RSXE69") == 0) return 377;//previous value was 337
//Wii Sports Resort, needs alt dol one time only, to show the Motion Plus video
//if (strcmp(id,"RZTP01") == 0 && CheckForSave(id4)==0) return 952;//from isostar
//if (strcmp(id,"RZTE01") == 0 && CheckForSave(id4)==0) return 674;//from starstremr
//as well as Grand Slam Tennis, Tiger Woods 10, Virtual Tennis 2009
2010-09-24 02:48:03 +02:00
///// games that can't be forced (alt dol is not always needed)
if (!force)
{
//Grand Slam Tennis
2010-09-24 02:48:03 +02:00
if (strcmp(id, "R5TP69") == 0) return 1493;//from isostar
if (strcmp(id, "R5TE69") == 0) return 1493;//starstremr
//Medal of Honor Heroes
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RMZX69") == 0) return 492;//from isostar
if (strcmp(id, "RMZP69") == 0) return 492;//from isostar
if (strcmp(id, "RMZE69") == 0) return 492;//starstremr
//Tiger Woods 10
2010-09-24 02:48:03 +02:00
if (strcmp(id, "R9OP69") == 0) return 1991;//from isostar
if (strcmp(id, "R9OE69") == 0) return 1973;//starstremr
//Virtual Tennis 2009
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RVUP8P") == 0) return 16426;//from isostar
if (strcmp(id, "RVUE8P") == 0) return 16405;//from isostar
//Wii Sports Resort
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RZTP01") == 0) return 952;//from isostar
if (strcmp(id, "RZTE01") == 0) return 674;//from starstremr
}
return -1;
}
2010-09-24 02:48:03 +02:00
int autoSelectDolMenu(const char *id, bool force)
{
/*
2010-09-24 02:48:03 +02:00
char id4[10];
sprintf(id4,"%c%c%c%c",id[0],id[1],id[2],id[3]);
switch (CheckForSave(id4)) {
case 0:
WindowPrompt(tr("NO save"),0,tr("OK"));
break;
case 1:
WindowPrompt(tr("save"),0,tr("OK"));
break;
default:
char test[10];
sprintf(test,"%d",CheckForSave(id4));
WindowPrompt(test,0,tr("OK"));
break;
}
return -1;
*/
//Indiana Jones and the Staff of Kings (Fate of Atlantis)
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RJ8E64") == 0)
{
int choice = WindowPrompt(tr( "Select a DOL" ), 0, "Fate of Atlantis", tr( "Cancel" ));
2010-09-24 02:48:03 +02:00
switch (choice)
{
case 1:
choice = 8; //from starstremr
break;
default: // no alt dol
choice = 0;
break;
}
return choice;
}
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RJ8P64") == 0)
{
int choice = WindowPrompt(tr( "Select a DOL" ), 0, "Fate of Atlantis", tr( "Cancel" ));
2010-09-24 02:48:03 +02:00
switch (choice)
{
case 1:
choice = 8; //from isostar
break;
default: // no alt dol
choice = 0;
break;
}
return choice;
}
//Metal Slug Anthology (Metal Slug 6)
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RMLEH4") == 0)
{
int choice = WindowPrompt(tr( "Select a DOL" ), 0, "Metal Slug 6", tr( "Cancel" ));
2010-09-24 02:48:03 +02:00
switch (choice)
{
case 1:
choice = 54; //from lustar
break;
default: // no alt dol
choice = 0;
break;
}
return choice;
}
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RMLP7U") == 0)
{
int choice = WindowPrompt(tr( "Select a DOL" ), 0, "Metal Slug 6", tr( "Cancel" ));
2010-09-24 02:48:03 +02:00
switch (choice)
{
case 1:
choice = 56; //from isostar
break;
default: // no alt dol
choice = 0;
break;
}
return choice;
}
//Metroid Prime Trilogy
2010-09-24 02:48:03 +02:00
if (strcmp(id, "R3ME01") == 0)
{
//do not use any alt dol if there is no save game in the nand
/*
2010-09-24 02:48:03 +02:00
if (CheckForSave(id4)==0 && force) {
WindowPrompt(0,tr("You need to start this game one time to create a save file, then exit and start it again."),tr("OK"));
return -1;
}
*/
int choice = WindowPrompt(tr( "Select a DOL" ), 0, "Metroid Prime", "Metroid Prime 2", "Metroid Prime 3", tr( "Cancel" ));
2010-09-24 02:48:03 +02:00
switch (choice)
{
case 1:
choice = 780;
break;
case 2:
choice = 781;
break;
case 3:
choice = 782;
break;
default: // no alt dol
choice = 0;
break;
}
return choice;
}
2010-09-24 02:48:03 +02:00
if (strcmp(id, "R3MP01") == 0)
{
/*
2010-09-24 02:48:03 +02:00
if (CheckForSave(id4)==0 && force) {
WindowPrompt(0,tr("You need to start this game one time to create a save file, then exit and start it again."),tr("OK"));
return -1;
}
*/
int choice = WindowPrompt(tr( "Select a DOL" ), 0, "Metroid Prime", "Metroid Prime 2", "Metroid Prime 3", tr( "Cancel" ));
2010-09-24 02:48:03 +02:00
switch (choice)
{
case 1:
choice = 782;
break;
case 2:
choice = 783;
break;
case 3:
choice = 784;
break;
default: // no alt dol
choice = 0;
break;
}
return choice;
}
//Rampage: Total Destruction (M1.dol=Rampage, jarvos.dol=Rampage World Tour)
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RPGP5D") == 0)
{
int choice = WindowPrompt(tr( "Select a DOL" ), 0, "Rampage", "World Tour", tr( "Cancel" ));
2010-09-24 02:48:03 +02:00
switch (choice)
{
case 1:
choice = 369; //from Ramzee
break;
case 2:
choice = 368; //from Ramzee
break;
default: // no alt dol
choice = 0;
break;
}
return choice;
}
//The House Of The Dead 2 & 3 Return (only to play 2)
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RHDE8P") == 0)
{
int choice = WindowPrompt(tr( "Select a DOL" ), 0, "HotD 2", tr( "Cancel" ));
2010-09-24 02:48:03 +02:00
switch (choice)
{
case 1:
choice = 149; //from starstremr
break;
default: // no alt dol
choice = 0;
break;
}
return choice;
}
2010-09-24 02:48:03 +02:00
if (strcmp(id, "RHDP8P") == 0)
{
int choice = WindowPrompt(tr( "Select a DOL" ), 0, "HotD 2", tr( "Cancel" ));
2010-09-24 02:48:03 +02:00
switch (choice)
{
case 1:
choice = 149; //from isostar
break;
default: // no alt dol
choice = 0;
break;
}
return choice;
}
return -1;
}
/********************************************************************************
2010-09-24 02:48:03 +02:00
* Mount a DVD, get the type and ID.
*********************************************************************************/
static vu32 dvddone = 0;
2010-09-24 02:48:03 +02:00
static dvddiskid *g_diskID = (dvddiskid*) 0x80000000; // If you change this address, the read functions will FAIL!
void __dvd_readidcb(s32 result)
{
dvddone = result;
}
2010-09-24 02:48:03 +02:00
u8 DiscMount(discHdr *header)
{
2010-09-24 02:48:03 +02:00
gprintf("\nDiscMount() ");
int ret;
HaltGui();
2010-09-24 02:48:03 +02:00
u8 *tmpBuff = (u8 *) malloc(0x60);
memcpy(tmpBuff, g_diskID, 0x60); // Make a backup of the first 96 bytes at 0x80000000
ret = bwDVD_LowInit();
dvddone = 0;
2010-09-24 02:48:03 +02:00
ret = bwDVD_LowReset(__dvd_readidcb);
while (ret >= 0 && dvddone == 0)
;
dvddone = 0;
2010-09-24 02:48:03 +02:00
ret = bwDVD_LowReadID(g_diskID, __dvd_readidcb); // Leave this one here, or you'll get an IOCTL error
while (ret >= 0 && dvddone == 0)
;
dvddone = 0;
2010-09-24 02:48:03 +02:00
ret = bwDVD_LowUnencryptedRead(g_diskID, 0x60, 0x00, __dvd_readidcb); // Overwrite the g_diskID thing
while (ret >= 0 && dvddone == 0)
;
2010-09-24 02:48:03 +02:00
memcpy(header, g_diskID, 0x60);
memcpy(g_diskID, tmpBuff, 0x60); // Put the backup back, or games won't load
free(tmpBuff);
ResumeGui();
2010-09-24 02:48:03 +02:00
if (dvddone != 1)
{
return 0;
}
2010-09-24 02:48:03 +02:00
return (header->magic == 0x5D1C9EA3) ? 1 : 2; // Don't check gamecube magic (0xC2339F3D)
}