mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-24 04:09:15 +01:00
17fa36e898
-removed vipatch, country patch, private server and cheats defaults from wiiflow.ini. no need for default/global setting for those options. they all default to off internally in wiiflow. -now on file explorer menu pressing home btn returns you to device select so you don't have to keep backing up to get back to devices. -fixed a few minor problems with game configs, especially gc games. now all game config options should work properly. -now using bitwise operators and expressions on m_current_view to control which sources are selected. no more source= under each domain. just sources= under GENERAL. -replaced ocarina option from main settings pg3 with channels type option. no need for a global/default ocarina setting. channels type allows you to select real, emu, or both channels types for channels coverflow. which means no more pressing B on config icon to cycle thru the choices. -fixed a minor bug when downloading covers -changed newid.ini to use only one domain name "[NEWID]". this fixes a possible problem when downloading covers and using newid.ini and multisource. -added install wad option to nand emulation settings menu. I know you can do it via file explorer but this makes it easier for newbies to find. plus you can select which nand to install to. -fixed extract game saves. -fixed extract nand and install GC game by stopping music and controller input while doing these functions. -Install wii game is broke. added a error msg stating this and keeping users from using it. funny the code is almost identical to usbloader gx which works and wiiflow doesn't. -now showing all btns on game selected screen. if wiiflow is locked a error msg appears stating this. -changed makeDir to make the whole path not just one folder. thanks to usbloader gx code. -added .ciso extension to gamecube list maker so you can use them with nintendont.
117 lines
3.3 KiB
C++
117 lines
3.3 KiB
C++
|
|
#include <ogc/system.h>
|
|
#include <unistd.h>
|
|
|
|
#include "const_str.hpp"
|
|
#include "booter/external_booter.hpp"
|
|
#include "channel/nand.hpp"
|
|
#include "channel/nand_save.hpp"
|
|
#include "devicemounter/DeviceHandler.hpp"
|
|
#include "gecko/gecko.hpp"
|
|
#include "gui/video.hpp"
|
|
#include "gui/text.hpp"
|
|
#include "homebrew/homebrew.h"
|
|
#include "loader/alt_ios_gen.h"
|
|
#include "loader/wdvd.h"
|
|
#include "loader/alt_ios.h"
|
|
#include "loader/sys.h"
|
|
#include "loader/wbfs.h"
|
|
#include "loader/cios.h"
|
|
#include "loader/nk.h"
|
|
#include "menu/menu.hpp"
|
|
#include "memory/memory.h"
|
|
|
|
bool useMainIOS = false;
|
|
volatile bool NANDemuView = false;
|
|
volatile bool networkInit = false;
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
MEM_init(); //Inits both mem1lo and mem2
|
|
mainIOS = DOL_MAIN_IOS;// 249
|
|
__exception_setreload(10);
|
|
Gecko_Init(); //USB Gecko and SD/WiFi buffer
|
|
gprintf(" \nWelcome to %s!\nThis is the debug output.\n", VERSION_STRING.c_str());
|
|
|
|
m_vid.init(); // Init video
|
|
DeviceHandle.Init();
|
|
NandHandle.Init();
|
|
|
|
char *gameid = NULL;
|
|
bool iosOK = true;
|
|
|
|
for(u8 i = 0; i < argc; i++)
|
|
{
|
|
if(argv[i] != NULL && strcasestr(argv[i], "ios=") != NULL && strlen(argv[i]) > 4)
|
|
{
|
|
while(argv[i][0] && !isdigit(argv[i][0]))
|
|
argv[i]++;
|
|
if(atoi(argv[i]) < 254 && atoi(argv[i]) > 0)
|
|
mainIOS = atoi(argv[i]);
|
|
}
|
|
else if(strlen(argv[i]) == 6)
|
|
{
|
|
gameid = argv[i];
|
|
for(u8 i = 0; i < 5; i++)
|
|
{
|
|
if(!isalnum(gameid[i]))
|
|
gameid = NULL;
|
|
}
|
|
}
|
|
}
|
|
check_neek2o();
|
|
/* Init ISFS */
|
|
if(neek2o() || Sys_DolphinMode())
|
|
NandHandle.Init_ISFS();
|
|
else
|
|
NandHandle.LoadDefaultIOS(); /* safe reload to preferred IOS */
|
|
/* Maybe new IOS and Port settings */
|
|
if(InternalSave.CheckSave())
|
|
InternalSave.LoadSettings();
|
|
/* Handle (c)IOS Loading */
|
|
if(neek2o() || Sys_DolphinMode()) /* wont reload anythin */
|
|
iosOK = loadIOS(IOS_GetVersion(), false);
|
|
else if(useMainIOS && CustomIOS(IOS_GetType(mainIOS))) /* Requested */
|
|
iosOK = loadIOS(mainIOS, false) && CustomIOS(CurrentIOS.Type);
|
|
// Init
|
|
Sys_Init();
|
|
Sys_ExitTo(EXIT_TO_HBC);
|
|
|
|
DeviceHandle.MountAll();
|
|
m_vid.waitMessage(0.15f);
|
|
|
|
Open_Inputs();
|
|
mainMenu.init();
|
|
if(CurrentIOS.Version != mainIOS && !neek2o() && !Sys_DolphinMode())
|
|
{
|
|
if(useMainIOS || !DeviceHandle.UsablePartitionMounted())
|
|
{
|
|
useMainIOS = false;
|
|
mainMenu.TempLoadIOS();
|
|
iosOK = CustomIOS(CurrentIOS.Type);
|
|
}
|
|
}
|
|
if(CurrentIOS.Version == mainIOS)
|
|
useMainIOS = true; //Needed for later checks
|
|
if(!iosOK)
|
|
mainMenu.terror("errboot1", L"No cIOS found!\ncIOS d2x 249 base 56 and 250 base 57 are enough for all your games.");
|
|
else if(!DeviceHandle.UsablePartitionMounted())
|
|
mainMenu.terror("errboot2", L"Could not find a device to save configuration files on!");
|
|
else if(WDVD_Init() < 0)
|
|
mainMenu.terror("errboot3", L"Could not initialize the DIP module!");
|
|
else
|
|
{
|
|
writeStub();
|
|
if(gameid != NULL && strlen(gameid) == 6)
|
|
mainMenu.directlaunch(gameid);
|
|
else
|
|
mainMenu.main();
|
|
//if mainMenu.init set exit=true then mainMenu.main while loop does nothing and returns to here to exit wiiflow
|
|
}
|
|
//Exit WiiFlow, no game booted...
|
|
mainMenu.cleanup();// cleanup and clear memory
|
|
ShutdownBeforeExit();// unmount devices and close inputs
|
|
Sys_Exit();
|
|
return 0;
|
|
}
|