2009-10-01 01:10:58 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* USB Loader GX Team
|
|
|
|
*
|
|
|
|
* Main loadup of the application
|
|
|
|
*
|
|
|
|
* libwiigui
|
|
|
|
* Tantric 2009
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#include <gccore.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/dir.h>
|
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <unistd.h>
|
2009-10-15 16:13:13 +02:00
|
|
|
#include <locale.h>
|
2009-10-01 01:10:58 +02:00
|
|
|
#include <wiiuse/wpad.h>
|
2009-12-15 09:39:45 +01:00
|
|
|
//#include <debug.h>
|
2010-02-09 11:59:55 +01:00
|
|
|
extern "C"
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
extern void __exception_setreload(int t);
|
2009-12-10 21:27:36 +01:00
|
|
|
}
|
2009-12-03 02:06:09 +01:00
|
|
|
|
2010-01-19 11:48:50 +01:00
|
|
|
|
2009-12-03 02:06:09 +01:00
|
|
|
#include <di/di.h>
|
|
|
|
#include <sys/iosupport.h>
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
#include "libwiigui/gui.h"
|
|
|
|
#include "usbloader/wbfs.h"
|
|
|
|
#include "settings/cfg.h"
|
|
|
|
#include "language/gettext.h"
|
|
|
|
#include "mload/mload.h"
|
2010-02-15 00:22:52 +01:00
|
|
|
#include "mload/mload_modules.h"
|
2009-10-01 01:10:58 +02:00
|
|
|
#include "FreeTypeGX.h"
|
|
|
|
#include "video.h"
|
|
|
|
#include "audio.h"
|
|
|
|
#include "menu.h"
|
|
|
|
#include "input.h"
|
|
|
|
#include "filelist.h"
|
|
|
|
#include "listfiles.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "fatmounter.h"
|
|
|
|
#include "sys.h"
|
|
|
|
#include "wpad.h"
|
|
|
|
#include "fat.h"
|
2009-10-20 13:46:55 +02:00
|
|
|
#include "gecko.h"
|
2009-10-21 01:00:19 +02:00
|
|
|
#include "svnrev.h"
|
2009-12-03 02:06:09 +01:00
|
|
|
#include "wad/title.h"
|
2009-11-15 22:30:44 +01:00
|
|
|
#include "usbloader/partition_usbloader.h"
|
2010-02-22 22:29:47 +01:00
|
|
|
#include "usbloader/usbstorage2.h"
|
2009-12-04 16:05:20 +01:00
|
|
|
#include "memory/mem2.h"
|
2009-12-10 21:27:36 +01:00
|
|
|
#include "lstub.h"
|
2009-10-20 13:46:55 +02:00
|
|
|
|
|
|
|
extern bool geckoinit;
|
2009-12-03 02:06:09 +01:00
|
|
|
extern bool textVideoInit;
|
|
|
|
extern char headlessID[8];
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
/* Constants */
|
2010-01-19 11:48:50 +01:00
|
|
|
#define CONSOLE_XCOORD 260
|
|
|
|
#define CONSOLE_YCOORD 115
|
|
|
|
#define CONSOLE_WIDTH 340
|
|
|
|
#define CONSOLE_HEIGHT 218
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2009-10-19 22:34:54 +02:00
|
|
|
FreeTypeGX *fontSystem=0;
|
|
|
|
FreeTypeGX *fontClock=0;
|
2010-01-19 11:48:50 +01:00
|
|
|
PartList partitions;
|
2009-12-24 09:33:53 +01:00
|
|
|
|
2010-01-19 11:48:50 +01:00
|
|
|
u8 dbvideo =0;
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
static void BootUpProblems()
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
s32 ret2;
|
|
|
|
|
|
|
|
// load main font from file, or default to built-in font
|
|
|
|
fontSystem = new FreeTypeGX();
|
|
|
|
fontSystem->loadFont(NULL, font_ttf, font_ttf_size, 0);
|
|
|
|
fontSystem->setCompatibilityMode(FTGX_COMPATIBILITY_DEFAULT_TEVOP_GX_PASSCLR | FTGX_COMPATIBILITY_DEFAULT_VTXDESC_GX_NONE);
|
|
|
|
|
|
|
|
GuiImageData bootimageData(gxlogo_png);
|
|
|
|
GuiImage bootimage(&bootimageData);
|
2010-02-09 11:59:55 +01:00
|
|
|
GuiText boottext(NULL, 20, (GXColor) {255, 255, 255, 255}
|
|
|
|
);
|
2010-01-19 11:48:50 +01:00
|
|
|
boottext.SetPosition(200, 240-1.2*bootimage.GetHeight()/2+250);
|
|
|
|
bootimage.SetPosition(320-1.2*bootimage.GetWidth()/2, 240-1.2*bootimage.GetHeight()/2);
|
|
|
|
bootimage.SetScale(1.2);
|
|
|
|
|
|
|
|
GuiImageData usbimageData(usbport_png);
|
|
|
|
GuiImage usbimage(&usbimageData);
|
|
|
|
usbimage.SetPosition(400,300);
|
|
|
|
usbimage.SetScale(.7);
|
|
|
|
usbimage.SetAlpha(200);
|
|
|
|
|
2010-01-07 00:07:35 +01:00
|
|
|
time_t curtime;
|
2010-01-19 11:48:50 +01:00
|
|
|
time_t endtime = time(0) + 30;
|
2010-02-09 11:59:55 +01:00
|
|
|
do
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
USBDevice_deInit();
|
|
|
|
USBDevice_Init();
|
|
|
|
ret2 = WBFS_Init(WBFS_DEVICE_USB);
|
2010-02-09 11:59:55 +01:00
|
|
|
if (ret2 >= 0)
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
boottext.SetText("Loading...");
|
|
|
|
bootimage.Draw();
|
|
|
|
boottext.Draw();
|
|
|
|
Menu_Render();
|
|
|
|
break;
|
|
|
|
}
|
2009-12-30 10:52:24 +01:00
|
|
|
curtime = time(0);
|
2010-01-19 11:48:50 +01:00
|
|
|
boottext.SetTextf("Waiting for your slow USB Device: %i secs...", int(endtime-curtime));
|
2010-02-09 11:59:55 +01:00
|
|
|
while(curtime == time(0))
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
boottext.Draw();
|
|
|
|
bootimage.Draw();
|
|
|
|
if (endtime-curtime<15)usbimage.Draw();
|
|
|
|
Menu_Render();
|
2009-12-30 10:52:24 +01:00
|
|
|
}
|
2010-02-09 11:59:55 +01:00
|
|
|
} while((endtime-time(0)) > 0);
|
2010-01-19 11:48:50 +01:00
|
|
|
|
|
|
|
/*if(ret2 < 0) {
|
|
|
|
boottext.SetText("ERROR: USB device could not be loaded!");
|
|
|
|
usbimage.Draw();
|
|
|
|
bootimage.Draw();
|
|
|
|
boottext.Draw();
|
|
|
|
Menu_Render();
|
|
|
|
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
|
|
|
|
}*/
|
|
|
|
|
|
|
|
///delete font to load up custom if set
|
2010-02-09 11:59:55 +01:00
|
|
|
if(fontSystem)
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
delete fontSystem;
|
|
|
|
fontSystem = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
unsigned int *xfb = NULL;
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
void InitTextVideo ()
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
gprintf("\nInitTextVideo ()");
|
2010-02-09 11:59:55 +01:00
|
|
|
if (textVideoInit)
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
gprintf("...0");
|
|
|
|
return;
|
2009-10-19 22:34:54 +02:00
|
|
|
}
|
2010-01-19 11:48:50 +01:00
|
|
|
dbvideo=1;
|
|
|
|
VIDEO_Init();
|
2010-04-10 11:15:22 +02:00
|
|
|
|
|
|
|
// get default video mode
|
2010-01-19 11:48:50 +01:00
|
|
|
GXRModeObj *vmode = VIDEO_GetPreferredMode(NULL);
|
|
|
|
|
|
|
|
// widescreen fix
|
|
|
|
VIDEO_Configure (vmode);
|
|
|
|
|
|
|
|
// Allocate the video buffers
|
|
|
|
xfb = (u32 *) MEM_K0_TO_K1 (SYS_AllocateFramebuffer (vmode));
|
|
|
|
|
|
|
|
// A console is always useful while debugging
|
|
|
|
console_init (xfb, 20, 64, vmode->fbWidth, vmode->xfbHeight, vmode->fbWidth * 2);
|
|
|
|
|
|
|
|
// Clear framebuffers etc.
|
|
|
|
VIDEO_ClearFrameBuffer (vmode, xfb, COLOR_BLACK);
|
|
|
|
VIDEO_SetNextFramebuffer (xfb);
|
|
|
|
|
|
|
|
VIDEO_SetBlack (FALSE);
|
|
|
|
VIDEO_Flush ();
|
|
|
|
VIDEO_WaitVSync ();
|
|
|
|
if (vmode->viTVMode & VI_NON_INTERLACE)
|
|
|
|
VIDEO_WaitVSync ();
|
|
|
|
|
|
|
|
//send console output to the gecko
|
|
|
|
if (geckoinit)CON_EnableGecko(1, true);
|
|
|
|
textVideoInit = true;
|
|
|
|
gprintf("...1");
|
|
|
|
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
|
|
|
|
2010-01-19 11:48:50 +01:00
|
|
|
|
|
|
|
int
|
2010-02-09 11:59:55 +01:00
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
setlocale(LC_ALL, "en.UTF-8");
|
|
|
|
geckoinit = InitGecko();
|
2009-11-17 23:57:41 +01:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
if (hbcStubAvailable() || geckoinit)
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
InitTextVideo();
|
|
|
|
}
|
2009-11-17 23:57:41 +01:00
|
|
|
|
2010-01-19 11:48:50 +01:00
|
|
|
// DEBUG_Init(GDBSTUB_DEVICE_USB, 1);
|
|
|
|
//_break();
|
2009-11-17 23:57:41 +01:00
|
|
|
|
2010-01-19 11:48:50 +01:00
|
|
|
__exception_setreload(5); //auto reset code dump nobody gives us codedump info anyways.
|
|
|
|
|
|
|
|
gprintf("\n\n------------------");
|
|
|
|
gprintf("\nUSB Loader GX rev%s",GetRev());
|
|
|
|
gprintf("\nmain(%d", argc);
|
|
|
|
for (int i=0;i<argc;i++)
|
|
|
|
gprintf(", %s",argv[i]?argv[i]:"<NULL>");
|
2009-12-30 10:52:24 +01:00
|
|
|
gprintf(")");
|
|
|
|
|
|
|
|
// This part is added, because we need a identify patched ios
|
2010-01-19 11:48:50 +01:00
|
|
|
// printf("\n\tReloading into ios 236");
|
2010-02-09 11:59:55 +01:00
|
|
|
if (IOS_ReloadIOSsafe(236) < 0)
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
// printf("\n\tIOS 236 not found, reloading into 36");
|
|
|
|
IOS_ReloadIOSsafe(36);
|
|
|
|
}
|
2009-12-30 10:52:24 +01:00
|
|
|
|
2010-01-19 11:48:50 +01:00
|
|
|
printf("\n\tStarting up");
|
2009-12-30 10:52:24 +01:00
|
|
|
|
2010-01-19 11:48:50 +01:00
|
|
|
MEM2_init(36); // Initialize 36 MB
|
|
|
|
MEM2_takeBigOnes(true);
|
2009-10-15 16:13:13 +02:00
|
|
|
|
2010-01-19 11:48:50 +01:00
|
|
|
s32 ret;
|
|
|
|
bool startupproblem = false;
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
bool bootDevice_found=false;
|
2010-02-09 11:59:55 +01:00
|
|
|
if (argc >= 1)
|
|
|
|
{
|
|
|
|
if (!strncasecmp(argv[0], "usb:/", 5))
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
strcpy(bootDevice, "USB:");
|
|
|
|
bootDevice_found = true;
|
|
|
|
} else if (!strncasecmp(argv[0], "sd:/", 4))
|
2010-02-09 11:59:55 +01:00
|
|
|
bootDevice_found = true;
|
2010-01-19 11:48:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
printf("\n\tInitializing controllers");
|
|
|
|
|
|
|
|
/** PAD_Init has to be before InitVideo don't move that **/
|
|
|
|
PAD_Init(); // initialize PAD/WPAD
|
|
|
|
|
|
|
|
printf("\n\tInitialize USB (wake up)");
|
|
|
|
|
|
|
|
USBDevice_Init(); // seems enough to wake up some HDDs if they are in sleep mode when the loader starts (tested with WD MyPassport Essential 2.5")
|
|
|
|
|
|
|
|
gprintf("\n\tChecking for stub IOS");
|
|
|
|
ios222rev = getIOSrev(0x00000001000000dell);
|
|
|
|
ios249rev = getIOSrev(0x00000001000000f9ll);
|
|
|
|
|
|
|
|
//if we don't like either of the cIOS then scram
|
2010-02-15 00:22:52 +01:00
|
|
|
if (!(ios222rev==4 || ios222rev==5 || (ios249rev>=9 && ios249rev<65280)))
|
2010-02-09 11:59:55 +01:00
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
InitTextVideo();
|
|
|
|
printf("\x1b[2J");
|
2010-02-09 11:59:55 +01:00
|
|
|
if ((ios222rev < 0 && ios222rev != WII_EINSTALL) && (ios249rev < 0 && ios249rev != WII_EINSTALL))
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
printf("\n\n\n\tWARNING!");
|
|
|
|
printf("\n\tUSB Loader GX needs unstubbed cIOS 222 v4 or 249 v9+");
|
|
|
|
printf("\n\n\tWe cannot determine the versions on your system,\n\tsince you have no patched ios 36 or 236 installed.");
|
|
|
|
printf("\n\tTherefor, if loading of USB Loader GX fails, you\n\tprobably have installed the 4.2 update,");
|
|
|
|
printf("\n\tand you should go figure out how to get some cios action going on\n\tin your Wii.");
|
|
|
|
printf("\n\n\tThis message will show every time.");
|
|
|
|
sleep(5);
|
2010-02-09 11:59:55 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
printf("\n\n\n\tERROR!");
|
|
|
|
printf("\n\tUSB Loader GX needs unstubbed cIOS 222 v4 or 249 v9+");
|
|
|
|
printf("\n\n\tI found \n\t\t222 = %d%s",ios222rev,ios222rev==65280?" (Stubbed by 4.2 update)":"");
|
|
|
|
printf("\n\t\t249 = %d%s",ios249rev,ios249rev==65280?" (Stubbed by 4.2 update)":"");
|
|
|
|
printf("\n\n\tGo figure out how to get some cIOS action going on\n\tin your Wii and come back and see me.");
|
|
|
|
|
|
|
|
sleep(15);
|
|
|
|
printf("\n\n\tBye");
|
|
|
|
|
|
|
|
USBDevice_deInit();
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("\n\tReloading ios 249...");
|
|
|
|
ret = IOS_ReloadIOSsafe(249);
|
|
|
|
|
|
|
|
printf("%d", ret);
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2010-04-10 11:15:22 +02:00
|
|
|
printf("\n\tIOS 249 failed, reloading ios 222...");
|
2010-01-19 11:48:50 +01:00
|
|
|
ret = IOS_ReloadIOSsafe(222);
|
|
|
|
printf("%d", ret);
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
printf("\n\tIOS 222 failed, reloading ios 250...");
|
|
|
|
ret = IOS_ReloadIOSsafe(250);
|
|
|
|
printf("%d", ret);
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
if(ret < 0)
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
printf("\n\tIOS 250 failed, reloading ios 223...");
|
|
|
|
ret = IOS_ReloadIOSsafe(223);
|
|
|
|
printf("%d", ret);
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
printf("\n\tERROR: cIOS could not be loaded!\n");
|
|
|
|
sleep(5);
|
|
|
|
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-04-10 11:15:22 +02:00
|
|
|
load_ehc_module();
|
2010-01-19 11:48:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
printf("\n\tInit wbfs...");
|
|
|
|
ret = WBFS_Init(WBFS_DEVICE_USB);
|
|
|
|
printf("%d", ret);
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
printf("\n\tYou have issues with a slow disc, or a difficult disc\n\tReloading 222...");
|
|
|
|
ret = IOS_ReloadIOSsafe(222);
|
|
|
|
printf("%d", ret);
|
|
|
|
printf("\n\tLoad ehc module");
|
|
|
|
load_ehc_module();
|
|
|
|
|
|
|
|
printf("\n\tInitialize wbfs...");
|
|
|
|
USBDevice_deInit();
|
|
|
|
USBDevice_Init();
|
|
|
|
ret = WBFS_Init(WBFS_DEVICE_USB);
|
|
|
|
printf("%d", ret);
|
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
if(ret < 0)
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
// printf("\n\tSleeping for 4 seconds");
|
|
|
|
// sleep(4);
|
|
|
|
InitVideo(); // Initialise video
|
|
|
|
Menu_Render();
|
|
|
|
BootUpProblems();
|
|
|
|
startupproblem = true;
|
|
|
|
ret = 1;
|
|
|
|
}
|
2009-10-01 01:10:58 +02:00
|
|
|
}
|
2009-12-30 10:52:24 +01:00
|
|
|
|
2010-01-19 11:48:50 +01:00
|
|
|
printf("\n\tInitialize sd card");
|
|
|
|
SDCard_Init(); // mount SD for loading cfg's
|
|
|
|
|
|
|
|
//this should have already been done by now in order to WBFS_Init().
|
|
|
|
printf("\n\tInitialize usb device");
|
|
|
|
USBDevice_Init(); // and mount USB:/
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-02-09 11:59:55 +01:00
|
|
|
if (!bootDevice_found)
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
printf("\n\tSearch for configuration file");
|
|
|
|
|
2009-10-01 01:10:58 +02:00
|
|
|
//try USB
|
|
|
|
//left in all the dol and elf files in this check in case this is the first time running the app and they dont have the config
|
|
|
|
if (checkfile((char*) "USB:/config/GXglobal.cfg") || (checkfile((char*) "USB:/apps/usbloader_gx/boot.elf"))
|
2010-02-09 11:59:55 +01:00
|
|
|
|| checkfile((char*) "USB:/apps/usbloadergx/boot.dol") || (checkfile((char*) "USB:/apps/usbloadergx/boot.elf"))
|
|
|
|
|| checkfile((char*) "USB:/apps/usbloader_gx/boot.dol"))
|
2009-10-01 01:10:58 +02:00
|
|
|
strcpy(bootDevice, "USB:");
|
2009-11-17 23:57:41 +01:00
|
|
|
|
2010-01-19 11:48:50 +01:00
|
|
|
printf("\n\tConfiguration file is on %s", bootDevice);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try opening and closing the configuration file here
|
|
|
|
// to prevent a crash dump later on - giantpune
|
|
|
|
char GXGlobal_cfg[26];
|
|
|
|
sprintf(GXGlobal_cfg, "%s/config/GXGlobal.cfg", bootDevice);
|
|
|
|
FILE *fp = fopen(GXGlobal_cfg, "r");
|
2010-02-09 11:59:55 +01:00
|
|
|
if (fp)
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
fclose(fp);
|
2009-12-30 10:52:24 +01:00
|
|
|
}
|
2009-12-19 15:05:31 +01:00
|
|
|
|
2009-10-01 01:10:58 +02:00
|
|
|
gettextCleanUp();
|
2010-01-17 10:49:26 +01:00
|
|
|
printf("\n\tLoading configuration...");
|
2009-10-01 01:10:58 +02:00
|
|
|
CFG_Load();
|
2010-01-17 10:49:26 +01:00
|
|
|
printf("done");
|
2010-01-19 11:48:50 +01:00
|
|
|
// gprintf("\n\tbootDevice = %s",bootDevice);
|
2009-11-15 20:52:58 +01:00
|
|
|
|
2010-01-19 11:48:50 +01:00
|
|
|
/* Load Custom IOS */
|
2010-04-10 11:15:22 +02:00
|
|
|
if (Settings.cios != IOS_GetVersion())
|
|
|
|
{
|
|
|
|
printf("\n\tReloading IOS to config setting (%d)...", ciosSetting2Cios(Settings.cios));
|
|
|
|
if (Sys_IosReload(ciosSetting2Cios(Settings.cios)) < 0) {
|
|
|
|
int alt_ios = (Settings.cios == ios222 || Settings.cios == ios223) ? 249 : 222;
|
|
|
|
ret = Sys_IosReload(alt_ios);
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
printf("\nERROR: cIOS could not be loaded!");
|
|
|
|
sleep(5);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
2010-01-19 11:48:50 +01:00
|
|
|
SDCard_Init();
|
2010-04-10 11:15:22 +02:00
|
|
|
}
|
2010-01-19 11:48:50 +01:00
|
|
|
|
2010-01-17 10:49:26 +01:00
|
|
|
printf("\n\tcIOS = %u (Rev %u)",IOS_GetVersion(), IOS_GetRevision());
|
2009-12-30 10:52:24 +01:00
|
|
|
|
2010-01-19 11:48:50 +01:00
|
|
|
//if a ID was passed via args copy it and try to boot it after the partition is mounted
|
|
|
|
//its not really a headless mode. more like hairless.
|
2010-02-09 11:59:55 +01:00
|
|
|
if (argc > 1 && argv[1])
|
|
|
|
{
|
2010-01-19 11:48:50 +01:00
|
|
|
if (strlen(argv[1])==6)
|
|
|
|
strncpy(headlessID, argv[1], sizeof(headlessID));
|
|
|
|
}
|
2010-01-18 00:59:59 +01:00
|
|
|
|
2009-10-01 01:10:58 +02:00
|
|
|
//! Init the rest of the System
|
|
|
|
Sys_Init();
|
|
|
|
Wpad_Init();
|
2010-02-09 11:59:55 +01:00
|
|
|
if(!startupproblem)
|
2010-01-19 11:48:50 +01:00
|
|
|
InitVideo();
|
|
|
|
InitAudio(); // Initialize audio
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
WPAD_SetDataFormat(WPAD_CHAN_ALL,WPAD_FMT_BTNS_ACC_IR);
|
|
|
|
WPAD_SetVRes(WPAD_CHAN_ALL, screenwidth, screenheight);
|
|
|
|
|
2009-10-19 22:34:54 +02:00
|
|
|
// load main font from file, or default to built-in font
|
|
|
|
fontSystem = new FreeTypeGX();
|
2009-10-01 01:10:58 +02:00
|
|
|
char *fontPath = NULL;
|
|
|
|
asprintf(&fontPath, "%sfont.ttf", CFG.theme_path);
|
2009-10-19 22:34:54 +02:00
|
|
|
fontSystem->loadFont(fontPath, font_ttf, font_ttf_size, 0);
|
|
|
|
fontSystem->setCompatibilityMode(FTGX_COMPATIBILITY_DEFAULT_TEVOP_GX_PASSCLR | FTGX_COMPATIBILITY_DEFAULT_VTXDESC_GX_NONE);
|
2009-10-01 01:10:58 +02:00
|
|
|
free(fontPath);
|
|
|
|
|
2009-10-19 22:34:54 +02:00
|
|
|
fontClock = new FreeTypeGX();
|
|
|
|
fontClock->loadFont(NULL, clock_ttf, clock_ttf_size, 0);
|
|
|
|
fontClock->setCompatibilityMode(FTGX_COMPATIBILITY_DEFAULT_TEVOP_GX_PASSCLR | FTGX_COMPATIBILITY_DEFAULT_VTXDESC_GX_NONE);
|
|
|
|
|
2010-01-19 11:48:50 +01:00
|
|
|
gprintf("\n\tEnd of Main()");
|
2009-10-01 01:10:58 +02:00
|
|
|
InitGUIThreads();
|
2010-01-19 11:48:50 +01:00
|
|
|
MainMenu(MENU_CHECK);
|
2009-10-01 01:10:58 +02:00
|
|
|
return 0;
|
|
|
|
}
|