2009-05-03 20:53:31 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* libwiigui Template
|
|
|
|
* Tantric 2009
|
|
|
|
*
|
|
|
|
* demo.cpp
|
|
|
|
* Basic template/demonstration of libwiigui capabilities. For a
|
|
|
|
* full-featured app using many more extensions, check out Snes9x GX.
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#include <gccore.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <wiiuse/wpad.h>
|
|
|
|
|
|
|
|
#include "FreeTypeGX.h"
|
|
|
|
#include "video.h"
|
|
|
|
#include "audio.h"
|
|
|
|
#include "menu.h"
|
|
|
|
#include "input.h"
|
|
|
|
#include "filelist.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "http.h"
|
|
|
|
#include "dns.h"
|
2009-05-15 22:03:19 +02:00
|
|
|
#include "fatmounter.h"
|
2009-05-03 20:53:31 +02:00
|
|
|
#include "disc.h"
|
|
|
|
#include "wbfs.h"
|
|
|
|
#include "sys.h"
|
|
|
|
#include "video2.h"
|
|
|
|
#include "wpad.h"
|
|
|
|
#include "cfg.h"
|
2009-05-16 21:12:36 +02:00
|
|
|
#include "language.h"
|
2009-05-03 20:53:31 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Constants */
|
|
|
|
#define CONSOLE_XCOORD 260
|
|
|
|
#define CONSOLE_YCOORD 115
|
|
|
|
#define CONSOLE_WIDTH 340
|
|
|
|
#define CONSOLE_HEIGHT 218
|
|
|
|
|
2009-05-04 23:50:46 +02:00
|
|
|
FreeTypeGX *fontSystem=0;
|
|
|
|
FreeTypeGX *fontClock=0;
|
2009-05-03 20:53:31 +02:00
|
|
|
int ExitRequested = 0;
|
|
|
|
bool netcheck = false;
|
|
|
|
|
2009-05-11 15:57:19 +02:00
|
|
|
|
2009-05-03 20:53:31 +02:00
|
|
|
/*Networking - Forsaekn*/
|
|
|
|
int Net_Init(char *ip){
|
|
|
|
|
|
|
|
s32 res;
|
|
|
|
while ((res = net_init()) == -EAGAIN)
|
|
|
|
{
|
|
|
|
usleep(100 * 1000); //100ms
|
|
|
|
}
|
|
|
|
|
|
|
|
if (if_config(ip, NULL, NULL, true) < 0) {
|
|
|
|
printf(" Error reading IP address, exiting");
|
|
|
|
usleep(1000 * 1000 * 1); //1 sec
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExitApp()
|
|
|
|
{
|
|
|
|
ShutoffRumble();
|
|
|
|
StopGX();
|
2009-05-06 12:23:58 +02:00
|
|
|
ShutdownAudio();
|
|
|
|
|
2009-05-15 22:03:19 +02:00
|
|
|
SDCard_deInit();
|
2009-05-06 12:23:58 +02:00
|
|
|
|
2009-05-03 20:53:31 +02:00
|
|
|
//WPAD_Flush(0);
|
|
|
|
//WPAD_Disconnect(0);
|
|
|
|
//WPAD_Shutdown();
|
|
|
|
//exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DefaultSettings()
|
|
|
|
{
|
|
|
|
Settings.video = discdefault;
|
|
|
|
Settings.vpatch = off;
|
|
|
|
Settings.language = ConsoleLangDefault;
|
|
|
|
Settings.ocarina = off;
|
|
|
|
Settings.hddinfo = HDDInfo;
|
|
|
|
Settings.sinfo = ((THEME.showID) ? GameID : Neither);
|
|
|
|
Settings.rumble = RumbleOn;
|
|
|
|
if (THEME.showRegion)
|
|
|
|
{
|
|
|
|
Settings.sinfo = ((Settings.sinfo == GameID) ? Both : GameRegion);
|
|
|
|
}
|
|
|
|
Settings.volume = v80;
|
|
|
|
Settings.tooltips = TooltipsOn;
|
|
|
|
snprintf(Settings.unlockCode, sizeof(Settings.unlockCode), "ab121b");
|
|
|
|
Settings.parentalcontrol = 0;
|
2009-05-05 08:24:23 +02:00
|
|
|
Settings.cios = ios249;
|
|
|
|
Settings.xflip = no;
|
|
|
|
Settings.qboot = no;
|
2009-05-03 20:53:31 +02:00
|
|
|
|
|
|
|
CFG_LoadGlobal();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
|
|
|
|
s32 ret2;
|
2009-05-11 20:45:33 +02:00
|
|
|
|
2009-05-15 22:03:19 +02:00
|
|
|
SDCard_Init();
|
2009-05-16 17:38:52 +02:00
|
|
|
lang_default();
|
2009-05-16 21:12:36 +02:00
|
|
|
CFG_Load();
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2009-05-16 17:38:52 +02:00
|
|
|
DefaultSettings();
|
2009-05-16 21:12:36 +02:00
|
|
|
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2009-05-15 22:03:19 +02:00
|
|
|
SDCard_deInit();
|
2009-05-03 20:53:31 +02:00
|
|
|
|
|
|
|
/* Load Custom IOS */
|
|
|
|
if(Settings.cios == ios222) {
|
|
|
|
ret2 = IOS_ReloadIOS(222);
|
|
|
|
if (ret2 < 0) {
|
|
|
|
Settings.cios = ios249;
|
|
|
|
ret2 = IOS_ReloadIOS(249);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ret2 = IOS_ReloadIOS(249);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret2 < 0) {
|
|
|
|
printf("ERROR: cIOS could not be loaded!");
|
|
|
|
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
|
|
|
|
}
|
|
|
|
|
2009-05-15 22:03:19 +02:00
|
|
|
SDCard_Init();
|
2009-05-06 12:23:58 +02:00
|
|
|
|
2009-05-03 20:53:31 +02:00
|
|
|
Sys_Init();
|
|
|
|
//Video_SetMode();
|
|
|
|
//Con_Init(CONSOLE_XCOORD, CONSOLE_YCOORD, CONSOLE_WIDTH, CONSOLE_HEIGHT);
|
|
|
|
//Wpad_Init();
|
|
|
|
|
|
|
|
PAD_Init();
|
|
|
|
InitVideo(); // Initialise video
|
|
|
|
InitAudio(); // Initialize audio
|
|
|
|
|
|
|
|
|
|
|
|
fontSystem = new FreeTypeGX();
|
|
|
|
fontSystem->loadFont(font_ttf, font_ttf_size, 0);
|
|
|
|
fontSystem->setCompatibilityMode(FTGX_COMPATIBILITY_DEFAULT_TEVOP_GX_PASSCLR | FTGX_COMPATIBILITY_DEFAULT_VTXDESC_GX_NONE);
|
|
|
|
|
2009-05-04 23:50:46 +02:00
|
|
|
fontClock = new FreeTypeGX();
|
|
|
|
fontClock->loadFont(clock_ttf, clock_ttf_size, 0);
|
|
|
|
fontClock->setCompatibilityMode(FTGX_COMPATIBILITY_DEFAULT_TEVOP_GX_PASSCLR | FTGX_COMPATIBILITY_DEFAULT_VTXDESC_GX_NONE);
|
|
|
|
|
2009-05-03 20:53:31 +02:00
|
|
|
InitGUIThreads();
|
|
|
|
MainMenu(MENU_CHECK);
|
|
|
|
return 0;
|
|
|
|
}
|