2009-07-11 09:21:38 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "title.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "video.h"
|
|
|
|
#include "wad.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "prompts/PromptWindows.h"
|
|
|
|
#include "libwiigui/gui.h"
|
|
|
|
#include "language/gettext.h"
|
|
|
|
#include "menu.h"
|
|
|
|
#include "filelist.h"
|
|
|
|
/*** Extern functions ***/
|
|
|
|
extern void ResumeGui();
|
|
|
|
extern void HaltGui();
|
|
|
|
/*** Extern variables ***/
|
|
|
|
extern GuiWindow * mainWindow;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 'WAD Header' structure */
|
|
|
|
typedef struct {
|
|
|
|
/* Header length */
|
|
|
|
u32 header_len;
|
|
|
|
|
|
|
|
/* WAD type */
|
|
|
|
u16 type;
|
|
|
|
|
|
|
|
u16 padding;
|
|
|
|
|
|
|
|
/* Data length */
|
|
|
|
u32 certs_len;
|
|
|
|
u32 crl_len;
|
|
|
|
u32 tik_len;
|
|
|
|
u32 tmd_len;
|
|
|
|
u32 data_len;
|
|
|
|
u32 footer_len;
|
|
|
|
} ATTRIBUTE_PACKED wadHeader;
|
|
|
|
|
|
|
|
/* Variables */
|
|
|
|
static u8 wadBuffer[BLOCK_SIZE] ATTRIBUTE_ALIGN(32);
|
|
|
|
|
|
|
|
|
|
|
|
s32 __Wad_ReadFile(FILE *fp, void *outbuf, u32 offset, u32 len)
|
|
|
|
{
|
|
|
|
s32 ret;
|
|
|
|
|
|
|
|
/* Seek to offset */
|
|
|
|
fseek(fp, offset, SEEK_SET);
|
|
|
|
|
|
|
|
/* Read data */
|
|
|
|
ret = fread(outbuf, len, 1, fp);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
s32 __Wad_ReadAlloc(FILE *fp, void **outbuf, u32 offset, u32 len)
|
|
|
|
{
|
|
|
|
void *buffer = NULL;
|
|
|
|
s32 ret;
|
|
|
|
|
|
|
|
/* Allocate memory */
|
|
|
|
buffer = memalign(32, len);
|
|
|
|
if (!buffer)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Read file */
|
|
|
|
ret = __Wad_ReadFile(fp, buffer, offset, len);
|
|
|
|
if (ret < 0) {
|
|
|
|
free(buffer);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set pointer */
|
|
|
|
*outbuf = buffer;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
s32 __Wad_GetTitleID(FILE *fp, wadHeader *header, u64 *tid)
|
|
|
|
{
|
|
|
|
//signed_blob *p_tik = NULL;
|
2009-07-31 22:15:55 +02:00
|
|
|
void *p_tik = NULL;
|
2009-07-11 09:21:38 +02:00
|
|
|
tik *tik_data = NULL;
|
|
|
|
|
|
|
|
u32 offset = 0;
|
|
|
|
s32 ret;
|
|
|
|
|
|
|
|
/* Ticket offset */
|
|
|
|
offset += round_up(header->header_len, 64);
|
|
|
|
offset += round_up(header->certs_len, 64);
|
|
|
|
offset += round_up(header->crl_len, 64);
|
|
|
|
|
|
|
|
/* Read ticket */
|
|
|
|
ret = __Wad_ReadAlloc(fp, &p_tik, offset, header->tik_len);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/* Ticket data */
|
|
|
|
tik_data = (tik *)SIGNATURE_PAYLOAD((signed_blob *)p_tik);
|
|
|
|
|
|
|
|
/* Copy title ID */
|
|
|
|
*tid = tik_data->titleid;
|
|
|
|
|
|
|
|
out:
|
|
|
|
/* Free memory */
|
|
|
|
if (p_tik)
|
|
|
|
free(p_tik);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
s32 Wad_Install(FILE *fp)
|
|
|
|
{
|
|
|
|
//////start the gui shit
|
2009-11-10 00:03:13 +01:00
|
|
|
GuiWindow promptWindow(472,320);
|
2009-07-11 09:21:38 +02:00
|
|
|
promptWindow.SetAlignment(ALIGN_CENTRE, ALIGN_MIDDLE);
|
|
|
|
promptWindow.SetPosition(0, -10);
|
|
|
|
|
2009-11-10 00:03:13 +01:00
|
|
|
GuiSound btnSoundOver(button_over_pcm, button_over_pcm_size, Settings.sfxvolume);
|
|
|
|
// because destroy GuiSound must wait while sound playing is finished, we use a global sound
|
|
|
|
if(!btnClick2) btnClick2=new GuiSound(button_click2_pcm, button_click2_pcm_size, Settings.sfxvolume);
|
|
|
|
// GuiSound btnClick(button_click2_pcm, button_click2_pcm_size, Settings.sfxvolume);
|
2009-07-11 09:21:38 +02:00
|
|
|
|
|
|
|
char imgPath[100];
|
|
|
|
snprintf(imgPath, sizeof(imgPath), "%sbutton_dialogue_box.png", CFG.theme_path);
|
|
|
|
GuiImageData btnOutline(imgPath, button_dialogue_box_png);
|
|
|
|
snprintf(imgPath, sizeof(imgPath), "%sdialogue_box.png", CFG.theme_path);
|
|
|
|
GuiImageData dialogBox(imgPath, dialogue_box_png);
|
|
|
|
GuiTrigger trigA;
|
|
|
|
trigA.SetSimpleTrigger(-1, WPAD_BUTTON_A | WPAD_CLASSIC_BUTTON_A, PAD_BUTTON_A);
|
|
|
|
|
|
|
|
GuiImage dialogBoxImg(&dialogBox);
|
|
|
|
if (Settings.wsprompt == yes){
|
|
|
|
dialogBoxImg.SetWidescreen(CFG.widescreen);}
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-10-01 05:55:07 +02:00
|
|
|
GuiText btn1Txt(tr("OK"), 22, THEME.prompttext);
|
2009-07-11 09:21:38 +02:00
|
|
|
GuiImage btn1Img(&btnOutline);
|
2009-10-19 22:34:54 +02:00
|
|
|
if (Settings.wsprompt == yes){
|
|
|
|
btn1Txt.SetWidescreen(CFG.widescreen);
|
|
|
|
btn1Img.SetWidescreen(CFG.widescreen);}
|
2009-11-10 00:03:13 +01:00
|
|
|
GuiButton btn1(&btn1Img,&btn1Img, 2, 4, 0, -35, &trigA, &btnSoundOver, btnClick2,1);
|
2009-07-11 09:21:38 +02:00
|
|
|
btn1.SetLabel(&btn1Txt);
|
|
|
|
btn1.SetState(STATE_SELECTED);
|
|
|
|
|
|
|
|
snprintf(imgPath, sizeof(imgPath), "%sprogressbar_outline.png", CFG.theme_path);
|
|
|
|
GuiImageData progressbarOutline(imgPath, progressbar_outline_png);
|
|
|
|
GuiImage progressbarOutlineImg(&progressbarOutline);
|
|
|
|
if (Settings.wsprompt == yes){
|
|
|
|
progressbarOutlineImg.SetWidescreen(CFG.widescreen);}
|
|
|
|
progressbarOutlineImg.SetAlignment(ALIGN_LEFT, ALIGN_MIDDLE);
|
|
|
|
progressbarOutlineImg.SetPosition(25, 50);
|
|
|
|
|
|
|
|
snprintf(imgPath, sizeof(imgPath), "%sprogressbar_empty.png", CFG.theme_path);
|
|
|
|
GuiImageData progressbarEmpty(imgPath, progressbar_empty_png);
|
|
|
|
GuiImage progressbarEmptyImg(&progressbarEmpty);
|
|
|
|
progressbarEmptyImg.SetAlignment(ALIGN_LEFT, ALIGN_MIDDLE);
|
|
|
|
progressbarEmptyImg.SetPosition(25, 50);
|
|
|
|
progressbarEmptyImg.SetTile(100);
|
|
|
|
|
|
|
|
snprintf(imgPath, sizeof(imgPath), "%sprogressbar.png", CFG.theme_path);
|
|
|
|
GuiImageData progressbar(imgPath, progressbar_png);
|
|
|
|
GuiImage progressbarImg(&progressbar);
|
|
|
|
progressbarImg.SetAlignment(ALIGN_LEFT, ALIGN_MIDDLE);
|
|
|
|
progressbarImg.SetPosition(25, 50);
|
|
|
|
|
|
|
|
char title[50];
|
|
|
|
sprintf(title, "%s", tr("Installing wad"));
|
2009-09-27 20:19:53 +02:00
|
|
|
GuiText titleTxt(title, 26, THEME.prompttext);
|
2009-07-11 09:21:38 +02:00
|
|
|
titleTxt.SetAlignment(ALIGN_CENTRE, ALIGN_TOP);
|
|
|
|
titleTxt.SetPosition(0,40);
|
|
|
|
char msg[50];
|
|
|
|
sprintf(msg, " ");
|
|
|
|
// sprintf(msg, "%s", tr("Initializing Network"));
|
2009-09-27 20:19:53 +02:00
|
|
|
GuiText msg1Txt(NULL, 20, THEME.prompttext);
|
2009-07-11 09:21:38 +02:00
|
|
|
msg1Txt.SetAlignment(ALIGN_LEFT, ALIGN_TOP);
|
|
|
|
msg1Txt.SetPosition(50,75);
|
|
|
|
// char msg2[50] = " ";
|
2009-09-27 20:19:53 +02:00
|
|
|
GuiText msg2Txt(NULL, 20, THEME.prompttext);
|
2009-07-11 09:21:38 +02:00
|
|
|
msg2Txt.SetAlignment(ALIGN_LEFT, ALIGN_TOP);
|
|
|
|
msg2Txt.SetPosition(50, 98);
|
|
|
|
|
2009-09-27 20:19:53 +02:00
|
|
|
GuiText msg3Txt(NULL, 20, THEME.prompttext);
|
2009-07-11 09:21:38 +02:00
|
|
|
msg3Txt.SetAlignment(ALIGN_LEFT, ALIGN_TOP);
|
|
|
|
msg3Txt.SetPosition(50, 121);
|
|
|
|
|
2009-09-27 20:19:53 +02:00
|
|
|
GuiText msg4Txt(NULL, 20, THEME.prompttext);
|
2009-07-11 09:21:38 +02:00
|
|
|
msg4Txt.SetAlignment(ALIGN_LEFT, ALIGN_TOP);
|
|
|
|
msg4Txt.SetPosition(50, 144);
|
|
|
|
|
2009-09-27 20:19:53 +02:00
|
|
|
GuiText msg5Txt(NULL, 20, THEME.prompttext);
|
2009-07-11 09:21:38 +02:00
|
|
|
msg5Txt.SetAlignment(ALIGN_LEFT, ALIGN_TOP);
|
|
|
|
msg5Txt.SetPosition(50, 167);
|
|
|
|
|
2009-09-27 20:19:53 +02:00
|
|
|
GuiText prTxt(NULL, 26, THEME.prompttext);
|
2009-07-11 09:21:38 +02:00
|
|
|
prTxt.SetAlignment(ALIGN_CENTRE, ALIGN_MIDDLE);
|
|
|
|
prTxt.SetPosition(0, 50);
|
|
|
|
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
if ((Settings.wsprompt == yes) && (CFG.widescreen)){/////////////adjust for widescreen
|
|
|
|
progressbarOutlineImg.SetAlignment(ALIGN_CENTRE, ALIGN_MIDDLE);
|
|
|
|
progressbarOutlineImg.SetPosition(0, 50);
|
|
|
|
progressbarEmptyImg.SetPosition(80,50);
|
|
|
|
progressbarEmptyImg.SetTile(78);
|
|
|
|
progressbarImg.SetPosition(80, 50);
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
msg1Txt.SetPosition(90,75);
|
|
|
|
msg2Txt.SetPosition(90, 98);
|
|
|
|
msg3Txt.SetPosition(90, 121);
|
|
|
|
msg4Txt.SetPosition(90, 144);
|
|
|
|
msg5Txt.SetPosition(90, 167);
|
|
|
|
|
|
|
|
}
|
|
|
|
promptWindow.Append(&dialogBoxImg);
|
|
|
|
promptWindow.Append(&titleTxt);
|
|
|
|
promptWindow.Append(&msg5Txt);
|
|
|
|
promptWindow.Append(&msg4Txt);
|
|
|
|
promptWindow.Append(&msg3Txt);
|
|
|
|
promptWindow.Append(&msg1Txt);
|
|
|
|
promptWindow.Append(&msg2Txt);
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
//promptWindow.SetEffect(EFFECT_SLIDE_TOP | EFFECT_SLIDE_IN, 50);
|
|
|
|
|
|
|
|
HaltGui();
|
|
|
|
mainWindow->SetState(STATE_DISABLED);
|
|
|
|
mainWindow->Append(&promptWindow);
|
|
|
|
mainWindow->ChangeFocus(&promptWindow);
|
|
|
|
//sleep(1);
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
|
|
|
|
///start the wad shit
|
2009-08-04 09:35:53 +02:00
|
|
|
bool fail = false;
|
2009-07-11 09:21:38 +02:00
|
|
|
wadHeader *header = NULL;
|
2009-09-27 20:19:53 +02:00
|
|
|
void *pvoid;
|
2009-07-11 09:21:38 +02:00
|
|
|
signed_blob *p_certs = NULL, *p_crl = NULL, *p_tik = NULL, *p_tmd = NULL;
|
|
|
|
|
|
|
|
tmd *tmd_data = NULL;
|
|
|
|
|
|
|
|
u32 cnt, offset = 0;
|
|
|
|
s32 ret = 666;
|
|
|
|
|
|
|
|
|
|
|
|
ResumeGui();
|
|
|
|
msg1Txt.SetText(tr(">> Reading WAD data..."));
|
2009-07-31 22:15:55 +02:00
|
|
|
HaltGui();
|
2009-09-27 20:19:53 +02:00
|
|
|
#define SetPointer(a, p) a=(typeof(a))p
|
2009-07-31 22:15:55 +02:00
|
|
|
// WAD header
|
2009-07-11 09:21:38 +02:00
|
|
|
//ret = __Wad_ReadAlloc(fp, (void *)header, offset, sizeof(wadHeader));
|
2009-09-27 20:19:53 +02:00
|
|
|
ret = __Wad_ReadAlloc(fp, &pvoid, offset, sizeof(wadHeader));
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
if (ret < 0)
|
|
|
|
goto err;
|
2009-09-27 20:19:53 +02:00
|
|
|
SetPointer(header, pvoid);
|
|
|
|
offset += round_up(header->header_len, 64);
|
2009-07-11 09:21:38 +02:00
|
|
|
|
2009-07-31 22:15:55 +02:00
|
|
|
// WAD certificates
|
2009-07-11 09:21:38 +02:00
|
|
|
//ret = __Wad_ReadAlloc(fp, (void *)&p_certs, offset, header->certs_len);
|
2009-09-27 20:19:53 +02:00
|
|
|
ret = __Wad_ReadAlloc(fp, &pvoid, offset, header->certs_len);
|
2009-07-11 09:21:38 +02:00
|
|
|
if (ret < 0)
|
|
|
|
goto err;
|
2009-09-27 20:19:53 +02:00
|
|
|
SetPointer(p_certs, pvoid);
|
|
|
|
offset += round_up(header->certs_len, 64);
|
2009-07-11 09:21:38 +02:00
|
|
|
|
2009-07-31 22:15:55 +02:00
|
|
|
// WAD crl
|
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
if (header->crl_len) {
|
|
|
|
//ret = __Wad_ReadAlloc(fp, (void *)&p_crl, offset, header->crl_len);
|
2009-09-27 20:19:53 +02:00
|
|
|
ret = __Wad_ReadAlloc(fp, &pvoid, offset, header->crl_len);
|
2009-07-11 09:21:38 +02:00
|
|
|
if (ret < 0)
|
|
|
|
goto err;
|
2009-09-27 20:19:53 +02:00
|
|
|
SetPointer(p_crl, pvoid);
|
|
|
|
offset += round_up(header->crl_len, 64);
|
2009-07-11 09:21:38 +02:00
|
|
|
}
|
|
|
|
|
2009-07-31 22:15:55 +02:00
|
|
|
// WAD ticket
|
2009-07-11 09:21:38 +02:00
|
|
|
//ret = __Wad_ReadAlloc(fp, (void *)&p_tik, offset, header->tik_len);
|
2009-09-27 20:19:53 +02:00
|
|
|
ret = __Wad_ReadAlloc(fp, &pvoid, offset, header->tik_len);
|
2009-07-11 09:21:38 +02:00
|
|
|
if (ret < 0)
|
|
|
|
goto err;
|
2009-09-27 20:19:53 +02:00
|
|
|
SetPointer(p_tik, pvoid);
|
|
|
|
offset += round_up(header->tik_len, 64);
|
2009-07-11 09:21:38 +02:00
|
|
|
|
2009-07-31 22:15:55 +02:00
|
|
|
// WAD TMD
|
2009-07-11 09:21:38 +02:00
|
|
|
//ret = __Wad_ReadAlloc(fp, (void *)&p_tmd, offset, header->tmd_len);
|
2009-09-27 20:19:53 +02:00
|
|
|
ret = __Wad_ReadAlloc(fp, &pvoid, offset, header->tmd_len);
|
2009-07-11 09:21:38 +02:00
|
|
|
if (ret < 0)
|
|
|
|
goto err;
|
2009-09-27 20:19:53 +02:00
|
|
|
SetPointer(p_tmd, pvoid);
|
|
|
|
offset += round_up(header->tmd_len, 64);
|
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
ResumeGui();
|
|
|
|
msg1Txt.SetText(tr("Reading WAD data... Ok!"));
|
|
|
|
msg2Txt.SetText(tr(">> Installing ticket..."));
|
|
|
|
HaltGui();
|
2009-07-31 22:15:55 +02:00
|
|
|
// Install ticket
|
2009-07-11 09:21:38 +02:00
|
|
|
ret = ES_AddTicket(p_tik, header->tik_len, p_certs, header->certs_len, p_crl, header->crl_len);
|
|
|
|
if (ret < 0)
|
|
|
|
goto err;
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
ResumeGui();
|
|
|
|
msg2Txt.SetText(tr("Installing ticket... Ok!"));
|
|
|
|
msg3Txt.SetText(tr(">> Installing title..."));
|
|
|
|
//WindowPrompt(">> Installing title...",0,0,0,0,0,200);
|
|
|
|
HaltGui();
|
2009-07-31 22:15:55 +02:00
|
|
|
// Install title
|
2009-07-11 09:21:38 +02:00
|
|
|
ret = ES_AddTitleStart(p_tmd, header->tmd_len, p_certs, header->certs_len, p_crl, header->crl_len);
|
|
|
|
if (ret < 0)
|
|
|
|
goto err;
|
|
|
|
|
2009-07-31 22:15:55 +02:00
|
|
|
// Get TMD info
|
2009-07-11 09:21:38 +02:00
|
|
|
tmd_data = (tmd *)SIGNATURE_PAYLOAD(p_tmd);
|
|
|
|
|
2009-07-31 22:15:55 +02:00
|
|
|
// Install contents
|
2009-07-11 09:21:38 +02:00
|
|
|
//ResumeGui();
|
|
|
|
//HaltGui();
|
|
|
|
promptWindow.Append(&progressbarEmptyImg);
|
|
|
|
promptWindow.Append(&progressbarImg);
|
|
|
|
promptWindow.Append(&progressbarOutlineImg);
|
|
|
|
promptWindow.Append(&prTxt);
|
|
|
|
ResumeGui();
|
|
|
|
msg3Txt.SetText(tr("Installing title... Ok!"));
|
|
|
|
for (cnt = 0; cnt < tmd_data->num_contents; cnt++) {
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
tmd_content *content = &tmd_data->contents[cnt];
|
|
|
|
|
|
|
|
u32 idx = 0, len;
|
|
|
|
s32 cfd;
|
|
|
|
ResumeGui();
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
//printf("\r\t\t>> Installing content #%02d...", content->cid);
|
2009-07-31 22:15:55 +02:00
|
|
|
// Encrypted content size
|
2009-07-11 09:21:38 +02:00
|
|
|
len = round_up(content->size, 64);
|
|
|
|
|
2009-07-31 22:15:55 +02:00
|
|
|
// Install content
|
2009-07-11 09:21:38 +02:00
|
|
|
cfd = ES_AddContentStart(tmd_data->title_id, content->cid);
|
|
|
|
if (cfd < 0) {
|
|
|
|
ret = cfd;
|
|
|
|
goto err;
|
|
|
|
}
|
2009-08-01 03:05:02 +02:00
|
|
|
snprintf(imgPath, sizeof(imgPath), "%s%d...",tr(">> Installing content #"),content->cid);
|
|
|
|
msg4Txt.SetText(imgPath);
|
2009-07-31 22:15:55 +02:00
|
|
|
// Install content data
|
|
|
|
while (idx < len) {
|
|
|
|
|
2009-08-01 03:05:02 +02:00
|
|
|
//VIDEO_WaitVSync ();
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
u32 size;
|
|
|
|
|
2009-07-31 22:15:55 +02:00
|
|
|
// Data length
|
2009-07-11 09:21:38 +02:00
|
|
|
size = (len - idx);
|
|
|
|
if (size > BLOCK_SIZE)
|
|
|
|
size = BLOCK_SIZE;
|
|
|
|
|
2009-07-31 22:15:55 +02:00
|
|
|
// Read data
|
2009-07-11 09:21:38 +02:00
|
|
|
ret = __Wad_ReadFile(fp, &wadBuffer, offset, size);
|
|
|
|
if (ret < 0)
|
|
|
|
goto err;
|
|
|
|
|
2009-07-31 22:15:55 +02:00
|
|
|
// Install data
|
2009-07-11 09:21:38 +02:00
|
|
|
ret = ES_AddContentData(cfd, wadBuffer, size);
|
|
|
|
if (ret < 0)
|
|
|
|
goto err;
|
|
|
|
|
2009-07-31 22:15:55 +02:00
|
|
|
// Increase variables
|
2009-07-11 09:21:38 +02:00
|
|
|
idx += size;
|
|
|
|
offset += size;
|
2009-10-19 22:34:54 +02:00
|
|
|
|
2009-08-01 03:05:02 +02:00
|
|
|
//snprintf(imgPath, sizeof(imgPath), "%s%d (%d)...",tr(">> Installing content #"),content->cid,idx);
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-08-01 03:05:02 +02:00
|
|
|
//msg4Txt.SetText(imgPath);
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
prTxt.SetTextf("%i%%", 100*(cnt*len+idx)/(tmd_data->num_contents*len));
|
|
|
|
if ((Settings.wsprompt == yes) && (CFG.widescreen)) {
|
|
|
|
progressbarImg.SetTile(78*(cnt*len+idx)/(tmd_data->num_contents*len));
|
|
|
|
} else {
|
|
|
|
progressbarImg.SetTile(100*(cnt*len+idx)/(tmd_data->num_contents*len));
|
|
|
|
}
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
}
|
|
|
|
|
2009-07-31 22:15:55 +02:00
|
|
|
// Finish content installation
|
2009-07-11 09:21:38 +02:00
|
|
|
ret = ES_AddContentFinish(cfd);
|
|
|
|
if (ret < 0)
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
msg4Txt.SetText(tr("Installing content... Ok!"));
|
|
|
|
msg5Txt.SetText(tr(">> Finishing installation..."));
|
|
|
|
|
2009-07-31 22:15:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
// Finish title install
|
2009-07-11 09:21:38 +02:00
|
|
|
ret = ES_AddTitleFinish();
|
|
|
|
if (ret >= 0) {
|
|
|
|
// printf(" OK!\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
err:
|
|
|
|
//char titties[100];
|
2009-08-04 09:35:53 +02:00
|
|
|
ResumeGui();
|
2009-07-11 09:21:38 +02:00
|
|
|
prTxt.SetTextf("%s%d", tr("Error..."),ret);
|
2009-08-04 09:35:53 +02:00
|
|
|
promptWindow.Append(&prTxt);
|
|
|
|
fail = true;
|
2009-07-11 09:21:38 +02:00
|
|
|
//snprintf(titties, sizeof(titties), "%d", ret);
|
|
|
|
//printf(" ERROR! (ret = %d)\n", ret);
|
|
|
|
//WindowPrompt("ERROR!",titties,"Back",0,0);
|
2009-07-31 22:15:55 +02:00
|
|
|
// Cancel install
|
2009-07-11 09:21:38 +02:00
|
|
|
ES_AddTitleCancel();
|
|
|
|
goto exit;
|
|
|
|
//return ret;
|
|
|
|
|
|
|
|
out:
|
2009-07-31 22:15:55 +02:00
|
|
|
// Free memory
|
2009-07-11 09:21:38 +02:00
|
|
|
if (header)
|
|
|
|
free(header);
|
|
|
|
if (p_certs)
|
|
|
|
free(p_certs);
|
|
|
|
if (p_crl)
|
|
|
|
free(p_crl);
|
|
|
|
if (p_tik)
|
|
|
|
free(p_tik);
|
|
|
|
if (p_tmd)
|
|
|
|
free(p_tmd);
|
|
|
|
goto exit;
|
2009-07-31 22:15:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
exit:
|
2009-08-04 09:35:53 +02:00
|
|
|
if (!fail)msg5Txt.SetText(tr("Finishing installation... Ok!"));
|
2009-07-11 09:21:38 +02:00
|
|
|
promptWindow.Append(&btn1);
|
|
|
|
while(btn1.GetState() != STATE_CLICKED){
|
|
|
|
}
|
2009-07-31 22:15:55 +02:00
|
|
|
|
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
HaltGui();
|
|
|
|
mainWindow->Remove(&promptWindow);
|
|
|
|
mainWindow->SetState(STATE_DEFAULT);
|
|
|
|
ResumeGui();
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-07-28 13:04:15 +02:00
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
s32 Wad_Uninstall(FILE *fp)
|
|
|
|
{
|
2009-07-28 13:04:15 +02:00
|
|
|
//////start the gui shit
|
|
|
|
GuiWindow promptWindow(472,320);
|
|
|
|
promptWindow.SetAlignment(ALIGN_CENTRE, ALIGN_MIDDLE);
|
|
|
|
promptWindow.SetPosition(0, -10);
|
|
|
|
|
2009-11-10 00:03:13 +01:00
|
|
|
GuiSound btnSoundOver(button_over_pcm, button_over_pcm_size, Settings.sfxvolume);
|
|
|
|
// because destroy GuiSound must wait while sound playing is finished, we use a global sound
|
|
|
|
if(!btnClick2) btnClick2=new GuiSound(button_click2_pcm, button_click2_pcm_size, Settings.sfxvolume);
|
|
|
|
// GuiSound btnClick(button_click2_pcm, button_click2_pcm_size, Settings.sfxvolume);
|
2009-07-28 13:04:15 +02:00
|
|
|
|
|
|
|
char imgPath[100];
|
|
|
|
snprintf(imgPath, sizeof(imgPath), "%sbutton_dialogue_box.png", CFG.theme_path);
|
|
|
|
GuiImageData btnOutline(imgPath, button_dialogue_box_png);
|
|
|
|
snprintf(imgPath, sizeof(imgPath), "%sdialogue_box.png", CFG.theme_path);
|
|
|
|
GuiImageData dialogBox(imgPath, dialogue_box_png);
|
|
|
|
GuiTrigger trigA;
|
|
|
|
trigA.SetSimpleTrigger(-1, WPAD_BUTTON_A | WPAD_CLASSIC_BUTTON_A, PAD_BUTTON_A);
|
|
|
|
|
|
|
|
GuiImage dialogBoxImg(&dialogBox);
|
|
|
|
if (Settings.wsprompt == yes){
|
|
|
|
dialogBoxImg.SetWidescreen(CFG.widescreen);}
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-10-01 05:55:07 +02:00
|
|
|
GuiText btn1Txt(tr("OK"), 22, THEME.prompttext);
|
2009-07-28 13:04:15 +02:00
|
|
|
GuiImage btn1Img(&btnOutline);
|
2009-10-19 22:34:54 +02:00
|
|
|
if (Settings.wsprompt == yes){
|
|
|
|
btn1Txt.SetWidescreen(CFG.widescreen);
|
|
|
|
btn1Img.SetWidescreen(CFG.widescreen);}
|
2009-11-10 00:03:13 +01:00
|
|
|
GuiButton btn1(&btn1Img,&btn1Img, 2, 4, 0, -55, &trigA, &btnSoundOver, btnClick2,1);
|
2009-07-28 13:04:15 +02:00
|
|
|
btn1.SetLabel(&btn1Txt);
|
|
|
|
btn1.SetState(STATE_SELECTED);
|
|
|
|
|
|
|
|
char title[50];
|
|
|
|
sprintf(title, "%s", tr("Uninstalling wad"));
|
2009-09-27 20:19:53 +02:00
|
|
|
GuiText titleTxt(title, 26, THEME.prompttext);
|
2009-07-28 13:04:15 +02:00
|
|
|
titleTxt.SetAlignment(ALIGN_CENTRE, ALIGN_TOP);
|
|
|
|
titleTxt.SetPosition(0,40);
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-09-27 20:19:53 +02:00
|
|
|
GuiText msg1Txt(NULL, 18, THEME.prompttext);
|
2009-07-28 13:04:15 +02:00
|
|
|
msg1Txt.SetAlignment(ALIGN_LEFT, ALIGN_TOP);
|
|
|
|
msg1Txt.SetPosition(50,75);
|
|
|
|
|
2009-09-27 20:19:53 +02:00
|
|
|
GuiText msg2Txt(NULL, 18, THEME.prompttext);
|
2009-07-28 13:04:15 +02:00
|
|
|
msg2Txt.SetAlignment(ALIGN_LEFT, ALIGN_TOP);
|
|
|
|
msg2Txt.SetPosition(50, 98);
|
|
|
|
|
2009-09-27 20:19:53 +02:00
|
|
|
GuiText msg3Txt(NULL, 18, THEME.prompttext);
|
2009-07-28 13:04:15 +02:00
|
|
|
msg3Txt.SetAlignment(ALIGN_LEFT, ALIGN_TOP);
|
|
|
|
msg3Txt.SetPosition(50, 121);
|
|
|
|
|
2009-09-27 20:19:53 +02:00
|
|
|
GuiText msg4Txt(NULL, 18, THEME.prompttext);
|
2009-07-28 13:04:15 +02:00
|
|
|
msg4Txt.SetAlignment(ALIGN_LEFT, ALIGN_TOP);
|
|
|
|
msg4Txt.SetPosition(50, 144);
|
|
|
|
|
2009-09-27 20:19:53 +02:00
|
|
|
GuiText msg5Txt(NULL, 18, THEME.prompttext);
|
2009-07-28 13:04:15 +02:00
|
|
|
msg5Txt.SetAlignment(ALIGN_LEFT, ALIGN_TOP);
|
|
|
|
msg5Txt.SetPosition(50, 167);
|
|
|
|
|
|
|
|
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-07-28 13:04:15 +02:00
|
|
|
if ((Settings.wsprompt == yes) && (CFG.widescreen)){/////////////adjust for widescreen
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-07-28 13:04:15 +02:00
|
|
|
msg1Txt.SetPosition(70,95);
|
|
|
|
msg2Txt.SetPosition(70, 118);
|
|
|
|
msg3Txt.SetPosition(70, 141);
|
|
|
|
msg4Txt.SetPosition(70, 164);
|
|
|
|
msg5Txt.SetPosition(70, 187);
|
|
|
|
|
|
|
|
}
|
|
|
|
promptWindow.Append(&dialogBoxImg);
|
|
|
|
promptWindow.Append(&titleTxt);
|
|
|
|
promptWindow.Append(&msg5Txt);
|
|
|
|
promptWindow.Append(&msg4Txt);
|
|
|
|
promptWindow.Append(&msg3Txt);
|
|
|
|
promptWindow.Append(&msg1Txt);
|
|
|
|
promptWindow.Append(&msg2Txt);
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-07-28 13:04:15 +02:00
|
|
|
HaltGui();
|
|
|
|
mainWindow->SetState(STATE_DISABLED);
|
|
|
|
mainWindow->Append(&promptWindow);
|
|
|
|
mainWindow->ChangeFocus(&promptWindow);
|
|
|
|
ResumeGui();
|
|
|
|
//sleep(3);
|
|
|
|
|
|
|
|
///start the wad shit
|
2009-09-27 20:19:53 +02:00
|
|
|
wadHeader *header = NULL;
|
|
|
|
void *pvoid = NULL;
|
2009-07-11 09:21:38 +02:00
|
|
|
tikview *viewData = NULL;
|
|
|
|
|
|
|
|
u64 tid;
|
|
|
|
u32 viewCnt;
|
|
|
|
s32 ret;
|
2009-07-28 13:04:15 +02:00
|
|
|
|
|
|
|
msg1Txt.SetText(tr(">> Reading WAD data..."));
|
2009-07-31 22:15:55 +02:00
|
|
|
|
|
|
|
// WAD header
|
2009-09-27 20:19:53 +02:00
|
|
|
ret = __Wad_ReadAlloc(fp, &pvoid, 0, sizeof(wadHeader));
|
2009-07-11 09:21:38 +02:00
|
|
|
if (ret < 0) {
|
2009-07-28 13:04:15 +02:00
|
|
|
char errTxt[50];
|
|
|
|
sprintf(errTxt,"%sret = %d",tr(">> Reading WAD data...ERROR! "),ret);
|
|
|
|
msg1Txt.SetText(errTxt);
|
2009-07-11 09:21:38 +02:00
|
|
|
//printf(" ERROR! (ret = %d)\n", ret);
|
|
|
|
goto out;
|
|
|
|
}
|
2009-09-27 20:19:53 +02:00
|
|
|
SetPointer(header, pvoid);
|
2009-07-31 22:15:55 +02:00
|
|
|
|
|
|
|
// Get title ID
|
2009-07-11 09:21:38 +02:00
|
|
|
ret = __Wad_GetTitleID(fp, header, &tid);
|
|
|
|
if (ret < 0) {
|
|
|
|
//printf(" ERROR! (ret = %d)\n", ret);
|
2009-07-28 13:04:15 +02:00
|
|
|
char errTxt[50];
|
|
|
|
sprintf(errTxt,"%sret = %d",tr(">> Reading WAD data...ERROR! "),ret);
|
|
|
|
msg1Txt.SetText(errTxt);
|
2009-07-11 09:21:38 +02:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2009-07-28 13:04:15 +02:00
|
|
|
msg1Txt.SetText(tr(">> Reading WAD data...Ok!"));
|
|
|
|
msg2Txt.SetText(tr(">> Deleting tickets..."));
|
2009-07-31 22:15:55 +02:00
|
|
|
|
|
|
|
// Get ticket views
|
2009-07-11 09:21:38 +02:00
|
|
|
ret = Title_GetTicketViews(tid, &viewData, &viewCnt);
|
2009-07-28 13:04:15 +02:00
|
|
|
if (ret < 0){
|
|
|
|
char errTxt[50];
|
|
|
|
sprintf(errTxt,"%sret = %d",tr(">> Deleting tickets...ERROR! "),ret);
|
|
|
|
msg2Txt.SetText(errTxt);
|
2009-07-11 09:21:38 +02:00
|
|
|
//printf(" ERROR! (ret = %d)\n", ret);
|
2009-07-28 13:04:15 +02:00
|
|
|
}
|
2009-07-31 22:15:55 +02:00
|
|
|
// Delete tickets
|
2009-07-11 09:21:38 +02:00
|
|
|
if (ret >= 0) {
|
|
|
|
u32 cnt;
|
|
|
|
|
2009-07-31 22:15:55 +02:00
|
|
|
// Delete all tickets
|
2009-07-11 09:21:38 +02:00
|
|
|
for (cnt = 0; cnt < viewCnt; cnt++) {
|
|
|
|
ret = ES_DeleteTicket(&viewData[cnt]);
|
|
|
|
if (ret < 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-07-28 13:04:15 +02:00
|
|
|
if (ret < 0){
|
|
|
|
char errTxt[50];
|
|
|
|
sprintf(errTxt,"%sret = %d",tr(">> Deleting tickets...ERROR! "),ret);
|
|
|
|
msg2Txt.SetText(errTxt);}
|
2009-07-11 09:21:38 +02:00
|
|
|
//printf(" ERROR! (ret = %d\n", ret);
|
2009-07-28 13:04:15 +02:00
|
|
|
else
|
2009-07-11 09:21:38 +02:00
|
|
|
//printf(" OK!\n");
|
2009-07-28 13:04:15 +02:00
|
|
|
msg2Txt.SetText(tr(">> Deleting tickets...Ok! "));
|
2009-07-31 22:15:55 +02:00
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
}
|
|
|
|
|
2009-07-28 13:04:15 +02:00
|
|
|
msg3Txt.SetText(tr(">> Deleting title contents..."));
|
2009-07-11 09:21:38 +02:00
|
|
|
//WindowPrompt(">> Deleting title contents...",0,"Back",0,0);
|
|
|
|
|
2009-07-28 13:04:15 +02:00
|
|
|
// Delete title contents
|
2009-07-11 09:21:38 +02:00
|
|
|
ret = ES_DeleteTitleContent(tid);
|
2009-07-28 13:04:15 +02:00
|
|
|
if (ret < 0){
|
|
|
|
char errTxt[50];
|
|
|
|
sprintf(errTxt,"%sret = %d",tr(">> Deleting title contents...ERROR! "),ret);
|
|
|
|
msg3Txt.SetText(errTxt);}
|
2009-07-11 09:21:38 +02:00
|
|
|
//printf(" ERROR! (ret = %d)\n", ret);
|
2009-07-28 13:04:15 +02:00
|
|
|
else
|
2009-07-11 09:21:38 +02:00
|
|
|
//printf(" OK!\n");
|
2009-07-28 13:04:15 +02:00
|
|
|
msg3Txt.SetText(tr(">> Deleting title contents...Ok!"));
|
2009-07-11 09:21:38 +02:00
|
|
|
|
2009-07-28 13:04:15 +02:00
|
|
|
msg4Txt.SetText(tr(">> Deleting title..."));
|
2009-07-31 22:15:55 +02:00
|
|
|
// Delete title
|
2009-07-11 09:21:38 +02:00
|
|
|
ret = ES_DeleteTitle(tid);
|
2009-07-28 13:04:15 +02:00
|
|
|
if (ret < 0){
|
|
|
|
char errTxt[50];
|
|
|
|
sprintf(errTxt,"%sret = %d",tr(">> Deleting title ...ERROR! "),ret);
|
|
|
|
msg4Txt.SetText(errTxt);}
|
2009-07-11 09:21:38 +02:00
|
|
|
//printf(" ERROR! (ret = %d)\n", ret);
|
2009-07-28 13:04:15 +02:00
|
|
|
else
|
2009-07-11 09:21:38 +02:00
|
|
|
//printf(" OK!\n");
|
2009-07-28 13:04:15 +02:00
|
|
|
msg4Txt.SetText(tr(">> Deleting title ...Ok!"));
|
2009-07-11 09:21:38 +02:00
|
|
|
|
|
|
|
out:
|
2009-07-31 22:15:55 +02:00
|
|
|
// Free memory
|
2009-07-11 09:21:38 +02:00
|
|
|
if (header)
|
|
|
|
free(header);
|
|
|
|
|
2009-07-28 13:04:15 +02:00
|
|
|
goto exit;
|
2009-07-31 22:15:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
exit:
|
2009-07-28 13:04:15 +02:00
|
|
|
msg5Txt.SetText(tr("Done!"));
|
|
|
|
promptWindow.Append(&btn1);
|
|
|
|
while(btn1.GetState() != STATE_CLICKED){
|
|
|
|
}
|
2009-07-31 22:15:55 +02:00
|
|
|
|
|
|
|
|
2009-07-28 13:04:15 +02:00
|
|
|
HaltGui();
|
|
|
|
mainWindow->Remove(&promptWindow);
|
|
|
|
mainWindow->SetState(STATE_DEFAULT);
|
|
|
|
ResumeGui();
|
|
|
|
|
2009-07-11 09:21:38 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|