homebrewfilter/main/source/main.cpp

359 lines
7.9 KiB
C++
Raw Normal View History

2011-09-25 19:47:02 +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 <algorithm>
#include <ogcsys.h>
#include <unistd.h>
#include <wiiuse/wpad.h>
#include <dirent.h>
2011-09-25 19:47:02 +02:00
#include "filelist.h"
#include "FreeTypeGX.h"
#include "input.h"
#include "main.h"
#include "menu.h"
#include "libwiigui/gui.h"
#include "Tools/FontSystem.h"
#include "Tools/load.h"
#include "Tools/load_channel.h"
#include "Tools/RuntimeIOSPatch.h"
#include "Tools/save.h"
#include "Tools/SelectIos.h"
#include "Tools/throbber.h"
#include "Network/network.h"
#include "Network/tcp.h"
#include "BootHomebrew/BootHomebrew.h"
#include "BootHomebrew/dolloader.h"
#include "DiskOperations/di2.h"
2012-04-07 21:20:28 +02:00
#include "gecko.h"
#include "xprintf.h"
2012-04-07 21:20:28 +02:00
#include "Network/wiiload_gecko.h"
2012-04-08 19:28:15 +02:00
#include "Neek/uneek_fs.h"
2012-05-03 21:30:32 +02:00
#include "Neek/bootneek.h"
2011-09-25 19:47:02 +02:00
#define HAVE_AHBPROT ((*(vu32*)0xcd800064 == 0xFFFFFFFF) ? 1 : 0)
/*** Extern variables ***/
extern GuiWindow * mainWindow;
extern GuiImageData * pointer;
/*** Extern functions ***/
extern void ResumeGui();
std::vector<homebrew_list> vechomebrew_list_category[99];
std::vector<homebrew_list> vechomebrew_list_unassigned;
std::vector<homebrew_list> vechomebrew_list_choice;
std::vector<app_ios> appios;
struct SSettings Settings;
struct SOptions Options;
int ExitRequested = 0;
s8 PowerOff = -1;
bool boothomebrew = false;
bool boot_buffer = false;
2012-03-24 20:01:26 +01:00
bool wiiload = false;
2012-04-08 19:28:15 +02:00
bool goneek2o = false;
bool gorealnand = false;
bool restarthbf = false;
bool updatehbf = false;
bool gosegui = false;
const char* segui_loc;
2012-04-07 21:20:28 +02:00
bool runaway = false;
bool gecko_connected;
2012-05-03 21:30:32 +02:00
bool in_neek;
2011-09-25 19:47:02 +02:00
// kopiere ios f<>r app in einen vector
void addAppIos(string foldername, int ios)
{
if(appios.size() == 0)
appios.push_back(app_ios(foldername, ios));
else
{
bool found = false;
int i;
for(i = 0; i < (signed)appios.size(); i++)
{
if(appios[i].foldername == foldername)
{
found = true;
break;
}
}
if(found)
appios[i].ios = ios;
if(!found)
appios.push_back(app_ios(foldername, ios));
2011-09-25 19:47:02 +02:00
}
}
void ExitApp()
{
xprintf("Running ExitApp()\n");
2011-09-25 19:47:02 +02:00
ShutdownPads();
StopGX();
2012-08-30 00:53:45 +02:00
xprintf("Saving Settings\n");
2012-04-07 21:20:28 +02:00
save();
2012-08-30 00:53:45 +02:00
xprintf("Unmount Devices and NAND\n");
2012-04-07 21:20:28 +02:00
UnmountAllDevices();
exit_uneek_fs();
2011-09-25 19:47:02 +02:00
ISFS_Deinitialize();
}
static void WiiResetPressed()
{
xprintf("Reset button pressed \n");
2012-04-07 21:20:28 +02:00
runaway = true;
2011-09-25 19:47:02 +02:00
PowerOff = SYS_RETURNTOMENU;
}
static void WiiPowerPressed()
{
2012-05-03 21:30:32 +02:00
if(runaway == false)
{
xprintf("Power button pressed \n");
2012-05-03 21:30:32 +02:00
runaway = true;
PowerOff = SYS_POWEROFF_STANDBY;
}
2011-09-25 19:47:02 +02:00
}
static void WiimotePowerPressed(s32 chan)
{
WiiPowerPressed();
}
void
DefaultSettings()
{
2012-08-30 00:53:45 +02:00
xprintf("Loading factory defaults 1/2\n");
2011-09-25 19:47:02 +02:00
Settings.sd_insert = SDCard_Inserted();
Settings.usb_insert = USBDevice_Inserted();
Settings.dvd_insert = DVD_Inserted();
Settings.gca_insert = GCA_Inserted();
Settings.gcb_insert = GCB_Inserted();
2011-09-25 19:47:02 +02:00
Settings.category_name_all = "All";
sprintf (Settings.new_category_name, "New Category");
Settings.current_category = 0;
Settings.current_page = 1;
Settings.last_app_pos = -1;
Settings.checkrev = -1;
sprintf (Settings.code, "NULL");
2011-09-25 19:47:02 +02:00
Settings.Apps_from = EFFECT_SLIDE_TOP; // Apps kommen von "EFFECT_SLIDE_TOP", "EFFECT_SLIDE_BOTTOM", "EFFECT_SLIDE_RIGHT", "EFFECT_SLIDE_LEFT"
Settings.Apps_to = 0; // Apps geht nach "EFFECT_SLIDE_TOP", "EFFECT_SLIDE_BOTTOM", "EFFECT_SLIDE_RIGHT", "EFFECT_SLIDE_LEFT"
Settings.grid = false;
Settings.system = 1;
Settings.device = "sd1";
Settings.device_dat = "sd1";
}
void
DefaultOptions()
{
2012-08-30 00:53:45 +02:00
xprintf("Loading factory defaults 2/2\n");
2011-09-25 19:47:02 +02:00
sprintf (Options.theme, tr("STANDARD"));
sprintf (Options.language, tr("STANDARD"));
sprintf (Options.font, tr("STANDARD"));
sprintf (Options.temp_code, "NULL");
2011-09-25 19:47:02 +02:00
Options.slide_effect = 1;
2012-05-12 17:02:05 +02:00
Options.wiiload_ios = 58;
2011-09-25 19:47:02 +02:00
Options.last_category = 1;
Options.apps = 4;
Options.quick_start = 0;
Options.show_all = 1;
Options.navigation = 0;
2011-09-25 19:47:02 +02:00
Options.temp_network = 0;
2012-08-29 23:18:45 +02:00
Options.temp_wifigecko = 0;
2011-09-25 19:47:02 +02:00
Options.temp_newrevtext = 1;
}
int
main(int argc, char *argv[])
{
2012-03-17 21:15:38 +01:00
2012-04-07 21:20:28 +02:00
gecko_connected = InitGecko();
2011-09-25 19:47:02 +02:00
InitVideo(); // Initialize video
SetupPads(); // Initialize input
InitGUIThreads(); // Initialize GUI
2012-04-07 21:20:28 +02:00
2012-05-03 21:30:32 +02:00
in_neek = init_uneek_fs(ISFS_OPEN_READ|ISFS_OPEN_WRITE);
2012-04-07 21:20:28 +02:00
2011-09-25 19:47:02 +02:00
MountAllDevices();
InitNetworkThread(); // Initialize Network
InitTcpThread();
2012-04-07 21:20:28 +02:00
if (gecko_connected)
InitGeckoThread();
2011-09-25 19:47:02 +02:00
InitThrobberThread(); // Initialize Throbber
ISFS_Initialize(); // Initialize Nand
LoadHBF();
2011-09-25 19:47:02 +02:00
DefaultSettings();
DefaultOptions();
DefaultTheme();
load();
2012-04-07 21:20:28 +02:00
if (gecko_connected)
ResumeGeckoThread();
2011-09-25 19:47:02 +02:00
SetFont();
2012-04-07 21:20:28 +02:00
SYS_SetResetCallback(WiiResetPressed);
SYS_SetPowerCallback(WiiPowerPressed);
WPAD_SetPowerButtonCallback(WiimotePowerPressed);
2011-09-25 19:47:02 +02:00
#ifdef HW_RVL
pointer = new GuiImageData(Theme.player_point);
#endif
2011-09-25 19:47:02 +02:00
mainWindow = new GuiWindow(screenwidth, screenheight);
2011-09-25 19:47:02 +02:00
GuiTrigger trigA;
trigA.SetSimpleTrigger(-1, WPAD_BUTTON_A | WPAD_CLASSIC_BUTTON_A, PAD_BUTTON_A);
2011-09-25 19:47:02 +02:00
ResumeGui();
stretch(Settings.top, Settings.bottom, Settings.left, Settings.right);
2012-05-03 21:30:32 +02:00
if(!check_uneek_fs())
2012-04-07 21:20:28 +02:00
{
2012-05-03 21:30:32 +02:00
if(HAVE_AHBPROT)
{
runtimePatchApply();
}
else
{
xprintf("Warning: no AHBPROT\n");
2012-05-03 21:30:32 +02:00
}
2012-04-07 21:20:28 +02:00
}
2012-03-20 12:22:36 +01:00
DI2_Init(); // Init DVD
2011-09-25 19:47:02 +02:00
if(strstr(Options.language, tr("STANDARD")))
translate();
2011-09-25 19:47:02 +02:00
AvailableCategory.categories[0] = tr(Settings.category_name_all);
check_device();
MainMenu(MENU_NONE);
2011-09-25 19:47:02 +02:00
if(boothomebrew)
{
2012-08-30 00:53:45 +02:00
xprintf("selected from homebrew list:\n %s\n", Settings.forwarder_path.c_str());
2012-03-17 21:15:38 +01:00
if(strstr(Settings.forwarder_path.c_str(), ":/apps/") != 0)
BootHomebrew();
else if(strstr(Settings.forwarder_path.c_str(), ":/gc_apps/") != 0)
BootGameCubeHomebrew();
}
2011-09-25 19:47:02 +02:00
else if(boot_buffer)
2012-03-24 20:01:26 +01:00
if(wiiload)
{
2012-03-24 20:01:26 +01:00
BootHomebrew();
}
2011-09-25 19:47:02 +02:00
if(get_bootmii() == 2)
2012-04-07 21:20:28 +02:00
{
if(!check_uneek_fs())
{
2012-08-30 00:53:45 +02:00
xprintf("Start BootMii\n");
2012-04-07 21:20:28 +02:00
IOS_ReloadIOS(254);
}
else
{
//we can't launch bootmii from within neek2o I assume
//so we should do something else
2012-08-30 00:53:45 +02:00
xprintf("We're in neek2o, not entering BootMii, but SystemMenu\n");
2012-04-07 21:20:28 +02:00
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
}
}
if(get_nandemu() == 2)
{
if (opendir(check_path("sd1:/apps/NANDEmu-Boot").c_str()) != NULL)
{
2012-08-30 00:53:45 +02:00
xprintf("Booting NANDEmu from SD\n");
LoadHomebrew ("sd1:/apps/NANDEmu-Boot/boot.dol");
BootHomebrew ();
}
else if (opendir(check_path("usb1:/apps/NANDEmu-Boot").c_str()) != NULL)
{
2012-08-30 00:53:45 +02:00
xprintf("Booting NANDEmu from USB\n");
LoadHomebrew ("usb1:/apps/NANDEmu-Boot/boot.dol");
2012-03-14 16:05:44 +01:00
BootHomebrew ();
}
}
if(get_priiloader() == 2)
{
2012-08-30 00:53:45 +02:00
xprintf("Entering magic key\n");
*(vu32*)0x8132FFFB = 0x4461636f;
DCFlushRange((void*)0x8132FFFB, 4);
2012-08-30 00:53:45 +02:00
xprintf("Starting Priiloader");
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
}
if(restarthbf)
2012-08-30 00:53:45 +02:00
{
xprintf("Relaunching myself\n");
WII_LaunchTitle(0x0001000154484246);
2012-08-30 00:53:45 +02:00
}
if(updatehbf)
{
2012-08-30 00:53:45 +02:00
xprintf("Setting force_reload to NORELOAD\n");
Settings.force_reload = "NORELOAD";
2012-08-30 00:53:45 +02:00
xprintf("Loading boot.dol from online update\n");
LoadHomebrew ((Settings.device_dat + ":/apps/HomebrewFilter/boot.dol").c_str());
BootHomebrew();
}
if(gosegui)
{
2012-08-30 00:53:45 +02:00
xprintf("Launching Settings Editor GUI\n");
LoadHomebrew(segui_loc);
BootHomebrew();
}
2012-04-08 19:28:15 +02:00
if(goneek2o)
{
2012-08-30 00:53:45 +02:00
xprintf("Entering neek2o\n");
2012-04-08 19:28:15 +02:00
boot_neek2o();
2012-05-03 21:30:32 +02:00
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
2012-04-08 19:28:15 +02:00
}
if(gorealnand)
{
2012-08-30 00:53:45 +02:00
xprintf("Entering real NAND\n");
SYS_ResetSystem(SYS_RESTART, 0, 0);
}
if(PowerOff == SYS_RETURNTOMENU)
{
2012-08-30 00:53:45 +02:00
xprintf("Entering magic key\n");
*(vu32*)0x8132FFFB = 0x50756E65;
DCFlushRange((void*)0x8132FFFB, 4);
2012-08-30 00:53:45 +02:00
xprintf("Entering SystemMenu\n");
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
}
else if(PowerOff != -1)
2012-08-30 00:53:45 +02:00
{
xprintf("Full Stop!\n");
2011-09-25 19:47:02 +02:00
SYS_ResetSystem(PowerOff, 0, 0);
2012-08-30 00:53:45 +02:00
}
2011-09-25 19:47:02 +02:00
return 0;
}