2008-09-16 07:42:21 +02:00
|
|
|
/****************************************************************************
|
2008-09-17 04:27:55 +02:00
|
|
|
* Visual Boy Advance GX
|
|
|
|
*
|
|
|
|
* Tantric September 2008
|
|
|
|
*
|
2010-03-31 04:45:09 +02:00
|
|
|
* vbagx.cpp
|
2008-09-17 04:27:55 +02:00
|
|
|
*
|
|
|
|
* This file controls overall program flow. Most things start and end here!
|
|
|
|
***************************************************************************/
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
#include <gccore.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <wiiuse/wpad.h>
|
2016-06-05 00:59:43 +02:00
|
|
|
#include <wupc/wupc.h>
|
2009-09-25 20:50:57 +02:00
|
|
|
#include <sys/iosupport.h>
|
2016-12-11 05:20:35 +01:00
|
|
|
#include <string>
|
2008-09-16 07:42:21 +02:00
|
|
|
|
2008-12-30 01:10:12 +01:00
|
|
|
#ifdef HW_RVL
|
2008-09-16 07:42:21 +02:00
|
|
|
#include <di/di.h>
|
|
|
|
#endif
|
|
|
|
|
2010-03-22 00:49:59 +01:00
|
|
|
#include "vbagx.h"
|
2008-09-16 07:42:21 +02:00
|
|
|
#include "vbasupport.h"
|
2008-09-17 03:54:21 +02:00
|
|
|
#include "preferences.h"
|
2008-09-16 07:42:21 +02:00
|
|
|
#include "audio.h"
|
2008-12-24 08:52:35 +01:00
|
|
|
#include "networkop.h"
|
2009-04-08 09:08:12 +02:00
|
|
|
#include "filebrowser.h"
|
2008-11-17 01:09:38 +01:00
|
|
|
#include "fileop.h"
|
2008-09-16 07:42:21 +02:00
|
|
|
#include "menu.h"
|
|
|
|
#include "input.h"
|
|
|
|
#include "video.h"
|
2009-06-01 09:20:23 +02:00
|
|
|
#include "gamesettings.h"
|
2010-07-17 08:54:28 +02:00
|
|
|
#include "mem2.h"
|
2010-03-22 00:49:59 +01:00
|
|
|
#include "utils/FreeTypeGX.h"
|
|
|
|
|
|
|
|
#include "vba/gba/Globals.h"
|
|
|
|
#include "vba/gba/Sound.h"
|
2008-09-16 07:42:21 +02:00
|
|
|
|
2009-09-25 20:46:25 +02:00
|
|
|
extern "C" {
|
|
|
|
extern void __exception_setreload(int t);
|
|
|
|
}
|
|
|
|
|
2008-09-16 07:42:21 +02:00
|
|
|
extern int emulating;
|
2009-06-01 09:20:23 +02:00
|
|
|
void StopColorizing();
|
|
|
|
void gbSetPalette(u32 RRGGBB[]);
|
2009-05-25 08:45:42 +02:00
|
|
|
int ScreenshotRequested = 0;
|
2008-10-18 22:40:48 +02:00
|
|
|
int ConfigRequested = 0;
|
2008-11-17 01:09:38 +01:00
|
|
|
int ShutdownRequested = 0;
|
|
|
|
int ResetRequested = 0;
|
2009-04-08 09:08:12 +02:00
|
|
|
int ExitRequested = 0;
|
2009-10-02 00:42:02 +02:00
|
|
|
char appPath[1024] = { 0 };
|
2016-06-05 00:59:43 +02:00
|
|
|
|
|
|
|
|
2008-09-16 07:42:21 +02:00
|
|
|
|
2008-11-17 01:09:38 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Shutdown / Reboot / Exit
|
|
|
|
***************************************************************************/
|
|
|
|
|
2008-12-30 01:10:12 +01:00
|
|
|
static void ExitCleanup()
|
2008-12-18 19:58:30 +01:00
|
|
|
{
|
2009-04-08 09:08:12 +02:00
|
|
|
ShutdownAudio();
|
|
|
|
StopGX();
|
2009-05-06 19:28:50 +02:00
|
|
|
HaltDeviceThread();
|
2008-12-18 19:58:30 +01:00
|
|
|
UnmountAllFAT();
|
|
|
|
|
|
|
|
#ifdef HW_RVL
|
|
|
|
DI_Close();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-11-17 01:09:38 +01:00
|
|
|
#ifdef HW_DOL
|
|
|
|
#define PSOSDLOADID 0x7c6000a6
|
|
|
|
int *psoid = (int *) 0x80001800;
|
|
|
|
void (*PSOReload) () = (void (*)()) 0x80001800;
|
|
|
|
#endif
|
|
|
|
|
2016-12-11 05:20:35 +01:00
|
|
|
void ExitToWiiflow()
|
|
|
|
{
|
|
|
|
ShutoffRumble();
|
|
|
|
SavePrefs(SILENT);
|
|
|
|
if (ROMLoaded && !ConfigRequested && GCSettings.AutoSave == 1)
|
|
|
|
SaveBatteryOrStateAuto(FILE_SRAM, SILENT);
|
|
|
|
ExitCleanup();
|
|
|
|
|
|
|
|
if( !!*(u32*)0x80001800 )
|
|
|
|
{
|
|
|
|
// Were we launched via HBC? (or via wiiflows stub replacement? :P)
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Wii channel support
|
|
|
|
SYS_ResetSystem( SYS_RETURNTOMENU, 0, 0 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-08 09:08:12 +02:00
|
|
|
void ExitApp()
|
2008-11-17 01:09:38 +01:00
|
|
|
{
|
2009-10-06 09:17:52 +02:00
|
|
|
#ifdef HW_RVL
|
|
|
|
ShutoffRumble();
|
|
|
|
#endif
|
|
|
|
|
2009-07-07 06:48:37 +02:00
|
|
|
SavePrefs(SILENT);
|
|
|
|
|
|
|
|
if (ROMLoaded && !ConfigRequested && GCSettings.AutoSave == 1)
|
2009-10-02 00:42:02 +02:00
|
|
|
SaveBatteryOrStateAuto(FILE_SRAM, SILENT);
|
2009-07-07 06:48:37 +02:00
|
|
|
|
2008-12-18 19:58:30 +01:00
|
|
|
ExitCleanup();
|
2008-11-17 01:09:38 +01:00
|
|
|
|
2009-07-07 06:48:37 +02:00
|
|
|
if(ShutdownRequested)
|
2016-12-10 21:47:27 +01:00
|
|
|
SYS_ResetSystem(SYS_POWEROFF_STANDBY, 0, 0);
|
2009-07-07 06:48:37 +02:00
|
|
|
|
2009-05-20 07:23:49 +02:00
|
|
|
#ifdef HW_RVL
|
|
|
|
if(GCSettings.ExitAction == 0) // Auto
|
2009-04-08 09:08:12 +02:00
|
|
|
{
|
2009-05-20 07:23:49 +02:00
|
|
|
char * sig = (char *)0x80001804;
|
|
|
|
if(
|
|
|
|
sig[0] == 'S' &&
|
|
|
|
sig[1] == 'T' &&
|
|
|
|
sig[2] == 'U' &&
|
|
|
|
sig[3] == 'B' &&
|
|
|
|
sig[4] == 'H' &&
|
|
|
|
sig[5] == 'A' &&
|
|
|
|
sig[6] == 'X' &&
|
|
|
|
sig[7] == 'X')
|
|
|
|
GCSettings.ExitAction = 3; // Exit to HBC
|
|
|
|
else
|
|
|
|
GCSettings.ExitAction = 1; // HBC not found
|
2009-04-08 09:08:12 +02:00
|
|
|
}
|
2009-05-20 07:23:49 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if(GCSettings.ExitAction == 1) // Exit to Menu
|
2009-04-08 09:08:12 +02:00
|
|
|
{
|
|
|
|
#ifdef HW_RVL
|
|
|
|
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
|
|
|
|
#else
|
|
|
|
#define SOFTRESET_ADR ((volatile u32*)0xCC003024)
|
|
|
|
*SOFTRESET_ADR = 0x00000000;
|
|
|
|
#endif
|
|
|
|
}
|
2009-05-20 07:23:49 +02:00
|
|
|
else if(GCSettings.ExitAction == 2) // Shutdown Wii
|
2009-04-08 09:08:12 +02:00
|
|
|
{
|
2016-12-10 21:47:27 +01:00
|
|
|
SYS_ResetSystem(SYS_POWEROFF_STANDBY, 0, 0);
|
2009-04-08 09:08:12 +02:00
|
|
|
}
|
2009-05-20 07:23:49 +02:00
|
|
|
else // Exit to Loader
|
|
|
|
{
|
|
|
|
#ifdef HW_RVL
|
|
|
|
exit(0);
|
|
|
|
#else
|
|
|
|
if (psoid[0] == PSOSDLOADID)
|
|
|
|
PSOReload();
|
|
|
|
#endif
|
|
|
|
}
|
2008-11-17 01:09:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HW_RVL
|
|
|
|
void ShutdownCB()
|
|
|
|
{
|
2010-08-18 02:15:41 +02:00
|
|
|
ShutdownRequested = 1;
|
2008-11-17 01:09:38 +01:00
|
|
|
}
|
|
|
|
void ResetCB()
|
|
|
|
{
|
2010-08-18 02:15:41 +02:00
|
|
|
ResetRequested = 1;
|
2008-11-17 01:09:38 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HW_DOL
|
2008-10-21 10:09:18 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* ipl_set_config
|
|
|
|
* lowlevel Qoob Modchip disable
|
|
|
|
***************************************************************************/
|
|
|
|
|
2008-12-30 01:10:12 +01:00
|
|
|
static void ipl_set_config(unsigned char c)
|
2008-10-21 10:09:18 +02:00
|
|
|
{
|
|
|
|
volatile unsigned long* exi = (volatile unsigned long*)0xCC006800;
|
|
|
|
unsigned long val,addr;
|
|
|
|
addr=0xc0000000;
|
|
|
|
val = c << 24;
|
|
|
|
exi[0] = ((((exi[0]) & 0x405) | 256) | 48); //select IPL
|
|
|
|
//write addr of IPL
|
|
|
|
exi[0 * 5 + 4] = addr;
|
|
|
|
exi[0 * 5 + 3] = ((4 - 1) << 4) | (1 << 2) | 1;
|
|
|
|
while (exi[0 * 5 + 3] & 1);
|
|
|
|
//write the ipl we want to send
|
|
|
|
exi[0 * 5 + 4] = val;
|
|
|
|
exi[0 * 5 + 3] = ((4 - 1) << 4) | (1 << 2) | 1;
|
|
|
|
while (exi[0 * 5 + 3] & 1);
|
|
|
|
|
|
|
|
exi[0] &= 0x405; //deselect IPL
|
|
|
|
}
|
2008-11-17 01:09:38 +01:00
|
|
|
#endif
|
2008-10-21 10:09:18 +02:00
|
|
|
|
2010-03-11 07:04:53 +01:00
|
|
|
/****************************************************************************
|
2010-08-09 05:52:29 +02:00
|
|
|
* IOS Check
|
2010-03-11 07:04:53 +01:00
|
|
|
***************************************************************************/
|
|
|
|
#ifdef HW_RVL
|
2010-12-18 17:05:06 +01:00
|
|
|
bool SupportedIOS(u32 ios)
|
|
|
|
{
|
|
|
|
if(ios == 58 || ios == 61)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SaneIOS(u32 ios)
|
2010-08-09 05:52:29 +02:00
|
|
|
{
|
|
|
|
bool res = false;
|
|
|
|
u32 num_titles=0;
|
|
|
|
u32 tmd_size;
|
2010-08-09 20:15:44 +02:00
|
|
|
|
|
|
|
if(ios > 200)
|
|
|
|
return false;
|
2010-08-09 05:52:29 +02:00
|
|
|
|
|
|
|
if (ES_GetNumTitles(&num_titles) < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if(num_titles < 1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
u64 *titles = (u64 *)memalign(32, num_titles * sizeof(u64) + 32);
|
2010-08-14 07:57:22 +02:00
|
|
|
|
|
|
|
if(!titles)
|
|
|
|
return false;
|
2010-08-09 05:52:29 +02:00
|
|
|
|
|
|
|
if (ES_GetTitles(titles, num_titles) < 0)
|
|
|
|
{
|
|
|
|
free(titles);
|
|
|
|
return false;
|
|
|
|
}
|
2010-08-14 07:57:22 +02:00
|
|
|
|
|
|
|
u32 *tmdbuffer = (u32 *)memalign(32, MAX_SIGNED_TMD_SIZE);
|
|
|
|
|
|
|
|
if(!tmdbuffer)
|
|
|
|
{
|
|
|
|
free(titles);
|
|
|
|
return false;
|
|
|
|
}
|
2010-08-09 05:52:29 +02:00
|
|
|
|
|
|
|
for(u32 n=0; n < num_titles; n++)
|
|
|
|
{
|
|
|
|
if((titles[n] & 0xFFFFFFFF) != ios)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (ES_GetStoredTMDSize(titles[n], &tmd_size) < 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (tmd_size > 4096)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (ES_GetStoredTMD(titles[n], (signed_blob *)tmdbuffer, tmd_size) < 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (tmdbuffer[1] || tmdbuffer[2])
|
|
|
|
{
|
|
|
|
res = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-08-14 07:57:22 +02:00
|
|
|
free(tmdbuffer);
|
2010-08-09 05:52:29 +02:00
|
|
|
free(titles);
|
|
|
|
return res;
|
|
|
|
}
|
2010-03-11 07:04:53 +01:00
|
|
|
#endif
|
2009-09-25 20:46:25 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* USB Gecko Debugging
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
static bool gecko = false;
|
|
|
|
static mutex_t gecko_mutex = 0;
|
|
|
|
|
|
|
|
static ssize_t __out_write(struct _reent *r, int fd, const char *ptr, size_t len)
|
|
|
|
{
|
2012-07-07 19:47:16 +02:00
|
|
|
if (!gecko || len == 0)
|
|
|
|
return len;
|
|
|
|
|
|
|
|
if(!ptr || len < 0)
|
2009-09-25 20:46:25 +02:00
|
|
|
return -1;
|
|
|
|
|
2012-07-07 19:47:16 +02:00
|
|
|
u32 level;
|
2009-09-25 20:46:25 +02:00
|
|
|
LWP_MutexLock(gecko_mutex);
|
|
|
|
level = IRQ_Disable();
|
|
|
|
usb_sendbuffer(1, ptr, len);
|
|
|
|
IRQ_Restore(level);
|
|
|
|
LWP_MutexUnlock(gecko_mutex);
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
const devoptab_t gecko_out = {
|
|
|
|
"stdout", // device name
|
|
|
|
0, // size of file structure
|
|
|
|
NULL, // device open
|
|
|
|
NULL, // device close
|
|
|
|
__out_write,// device write
|
|
|
|
NULL, // device read
|
|
|
|
NULL, // device seek
|
|
|
|
NULL, // device fstat
|
|
|
|
NULL, // device stat
|
|
|
|
NULL, // device link
|
|
|
|
NULL, // device unlink
|
|
|
|
NULL, // device chdir
|
|
|
|
NULL, // device rename
|
|
|
|
NULL, // device mkdir
|
|
|
|
0, // dirStateSize
|
|
|
|
NULL, // device diropen_r
|
|
|
|
NULL, // device dirreset_r
|
|
|
|
NULL, // device dirnext_r
|
|
|
|
NULL, // device dirclose_r
|
|
|
|
NULL // device statvfs_r
|
|
|
|
};
|
|
|
|
|
2012-07-07 19:47:16 +02:00
|
|
|
static void USBGeckoOutput()
|
2009-09-25 20:46:25 +02:00
|
|
|
{
|
|
|
|
gecko = usb_isgeckoalive(1);
|
2012-07-07 19:47:16 +02:00
|
|
|
LWP_MutexInit(&gecko_mutex, false);
|
|
|
|
|
2009-09-25 20:46:25 +02:00
|
|
|
devoptab_list[STD_OUT] = &gecko_out;
|
|
|
|
devoptab_list[STD_ERR] = &gecko_out;
|
|
|
|
}
|
|
|
|
|
2012-07-07 19:47:16 +02:00
|
|
|
extern "C" {
|
|
|
|
s32 __STM_Close();
|
|
|
|
s32 __STM_Init();
|
|
|
|
}
|
|
|
|
|
2008-09-16 07:42:21 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* main
|
|
|
|
*
|
|
|
|
* Program entry
|
|
|
|
****************************************************************************/
|
2008-11-17 09:02:22 +01:00
|
|
|
int main(int argc, char *argv[])
|
2008-09-16 07:42:21 +02:00
|
|
|
{
|
2012-07-07 19:47:16 +02:00
|
|
|
#ifdef HW_RVL
|
2011-06-21 04:20:59 +02:00
|
|
|
L2Enhance();
|
|
|
|
|
2010-12-18 17:05:06 +01:00
|
|
|
u32 ios = IOS_GetVersion();
|
|
|
|
|
|
|
|
if(!SupportedIOS(ios))
|
|
|
|
{
|
|
|
|
s32 preferred = IOS_GetPreferredVersion();
|
|
|
|
|
|
|
|
if(SupportedIOS(preferred))
|
|
|
|
IOS_ReloadIOS(preferred);
|
|
|
|
}
|
2012-07-07 19:47:16 +02:00
|
|
|
#else
|
2008-10-21 10:09:18 +02:00
|
|
|
ipl_set_config(6); // disable Qoob modchip
|
|
|
|
#endif
|
2012-07-07 19:47:16 +02:00
|
|
|
|
|
|
|
USBGeckoOutput(); // uncomment to enable USB gecko output
|
|
|
|
__exception_setreload(8);
|
|
|
|
|
2009-04-08 09:08:12 +02:00
|
|
|
InitializeVideo();
|
2009-02-20 10:36:05 +01:00
|
|
|
ResetVideo_Menu (); // change to menu video mode
|
2010-06-08 20:00:58 +02:00
|
|
|
|
2009-02-20 10:36:05 +01:00
|
|
|
#ifdef HW_RVL
|
2008-11-17 01:09:38 +01:00
|
|
|
// Wii Power/Reset buttons
|
2012-07-07 19:47:16 +02:00
|
|
|
__STM_Close();
|
|
|
|
__STM_Init();
|
|
|
|
__STM_Close();
|
|
|
|
__STM_Init();
|
2008-11-17 01:09:38 +01:00
|
|
|
SYS_SetPowerCallback(ShutdownCB);
|
|
|
|
SYS_SetResetCallback(ResetCB);
|
2012-07-07 19:47:16 +02:00
|
|
|
|
2016-06-05 00:59:43 +02:00
|
|
|
WUPC_Init();
|
2012-07-07 19:47:16 +02:00
|
|
|
WPAD_Init();
|
|
|
|
WPAD_SetPowerButtonCallback((WPADShutdownCallback)ShutdownCB);
|
|
|
|
DI_Init();
|
|
|
|
USBStorage_Initialize();
|
|
|
|
StartNetworkThread();
|
|
|
|
#else
|
|
|
|
DVD_Init (); // Initialize DVD subsystem (GameCube only)
|
2008-11-17 09:02:22 +01:00
|
|
|
#endif
|
2012-07-07 19:47:16 +02:00
|
|
|
|
|
|
|
SetupPads();
|
|
|
|
InitDeviceThread();
|
2009-04-08 09:08:12 +02:00
|
|
|
MountAllFAT(); // Initialize libFAT for SD and USB
|
2012-07-07 19:47:16 +02:00
|
|
|
|
|
|
|
#ifdef HW_RVL
|
|
|
|
// store path app was loaded from
|
|
|
|
if(argc > 0 && argv[0] != NULL)
|
|
|
|
CreateAppPath(argv[0]);
|
|
|
|
#endif
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
InitialiseSound();
|
|
|
|
InitialisePalette();
|
2009-04-08 09:08:12 +02:00
|
|
|
DefaultSettings (); // Set defaults
|
2010-07-17 08:54:28 +02:00
|
|
|
InitFreeType((u8*)font_ttf, font_ttf_size); // Initialize font system
|
2009-10-02 00:42:02 +02:00
|
|
|
#ifdef HW_RVL
|
2010-07-17 08:54:28 +02:00
|
|
|
InitMem2Manager();
|
|
|
|
savebuffer = (unsigned char *)mem2_malloc(SAVEBUFFERSIZE);
|
|
|
|
browserList = (BROWSERENTRY *)mem2_malloc(sizeof(BROWSERENTRY)*MAX_BROWSER_SIZE);
|
|
|
|
rom = (u8 *)mem2_malloc(1024*1024*32); // allocate 32 MB to GBA ROM
|
|
|
|
#else
|
|
|
|
savebuffer = (unsigned char *)malloc(SAVEBUFFERSIZE);
|
|
|
|
browserList = (BROWSERENTRY *)malloc(sizeof(BROWSERENTRY)*MAX_BROWSER_SIZE);
|
2009-10-02 00:42:02 +02:00
|
|
|
#endif
|
2010-07-17 08:54:28 +02:00
|
|
|
gameScreenPng = (u8 *)malloc(512*1024);
|
|
|
|
InitGUIThreads();
|
2008-11-17 09:02:22 +01:00
|
|
|
|
2016-12-11 05:20:35 +01:00
|
|
|
bool autoboot = false;
|
|
|
|
if(argc > 3 && argv[1] != NULL && argv[2] != NULL && argv[3] != NULL)
|
|
|
|
{
|
|
|
|
autoboot = true;
|
|
|
|
ResetBrowser();
|
|
|
|
LoadPrefs();
|
|
|
|
if(strcasestr(argv[1], "sd:/") != NULL)
|
|
|
|
{
|
|
|
|
GCSettings.SaveMethod = DEVICE_SD;
|
|
|
|
GCSettings.LoadMethod = DEVICE_SD;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GCSettings.SaveMethod = DEVICE_USB;
|
|
|
|
GCSettings.LoadMethod = DEVICE_USB;
|
|
|
|
}
|
|
|
|
SavePrefs(SILENT);
|
|
|
|
selectLoadedFile = 1;
|
|
|
|
std::string dir(argv[1]);
|
|
|
|
dir.assign(&dir[dir.find_last_of(":") + 2]);
|
|
|
|
char arg_filename[1024];
|
|
|
|
strncpy(arg_filename, argv[2], sizeof(arg_filename));
|
|
|
|
strncpy(GCSettings.LoadFolder, dir.c_str(), sizeof(GCSettings.LoadFolder));
|
|
|
|
OpenGameList();
|
|
|
|
strncpy(GCSettings.Exit_Dol_File, argv[3], sizeof(GCSettings.Exit_Dol_File));
|
|
|
|
if(argc > 5 && argv[4] != NULL && argv[5] != NULL)
|
|
|
|
{
|
|
|
|
sscanf(argv[4], "%08x", &GCSettings.Exit_Channel[0]);
|
|
|
|
sscanf(argv[5], "%08x", &GCSettings.Exit_Channel[1]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GCSettings.Exit_Channel[0] = 0x00010008;
|
|
|
|
GCSettings.Exit_Channel[1] = 0x57494948;
|
|
|
|
}
|
|
|
|
if(argc > 6 && argv[6] != NULL)
|
|
|
|
strncpy(GCSettings.LoaderName, argv[6], sizeof(GCSettings.LoaderName));
|
|
|
|
else
|
|
|
|
snprintf(GCSettings.LoaderName, sizeof(GCSettings.LoaderName), "WiiFlow");
|
|
|
|
for(int i = 0; i < browser.numEntries; i++)
|
|
|
|
{
|
|
|
|
// Skip it
|
|
|
|
if (strcmp(browserList[i].filename, ".") == 0 || strcmp(browserList[i].filename, "..") == 0)
|
|
|
|
continue;
|
|
|
|
if(strcasestr(browserList[i].filename, arg_filename) != NULL)
|
|
|
|
{
|
|
|
|
browser.selIndex = i;
|
|
|
|
if(IsSz())
|
|
|
|
{
|
|
|
|
BrowserLoadSz();
|
|
|
|
browser.selIndex = 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
BrowserLoadFile();
|
|
|
|
}
|
|
|
|
|
2008-10-21 09:17:07 +02:00
|
|
|
while(1) // main loop
|
2008-09-16 07:42:21 +02:00
|
|
|
{
|
2008-12-19 00:21:51 +01:00
|
|
|
// go back to checking if devices were inserted/removed
|
|
|
|
// since we're entering the menu
|
2009-05-06 19:28:50 +02:00
|
|
|
ResumeDeviceThread();
|
2008-12-19 00:21:51 +01:00
|
|
|
|
2009-04-08 09:08:12 +02:00
|
|
|
SwitchAudioMode(1);
|
|
|
|
|
2016-12-11 05:20:35 +01:00
|
|
|
if(!autoboot)
|
|
|
|
{
|
|
|
|
if(!ROMLoaded)
|
|
|
|
MainMenu(MENU_GAMESELECTION);
|
|
|
|
else
|
|
|
|
MainMenu(MENU_GAME);
|
|
|
|
|
|
|
|
ConfigRequested = 0;
|
|
|
|
ScreenshotRequested = 0;
|
|
|
|
}
|
|
|
|
else if(ROMLoaded && autoboot)
|
|
|
|
autoboot = false;
|
2009-04-08 09:08:12 +02:00
|
|
|
else
|
2016-12-11 05:20:35 +01:00
|
|
|
ExitApp();
|
2009-04-08 09:08:12 +02:00
|
|
|
|
|
|
|
SwitchAudioMode(0);
|
2008-10-18 22:40:48 +02:00
|
|
|
|
2008-12-19 00:21:51 +01:00
|
|
|
// stop checking if devices were removed/inserted
|
|
|
|
// since we're starting emulation again
|
2009-05-06 19:28:50 +02:00
|
|
|
HaltDeviceThread();
|
2008-12-19 00:21:51 +01:00
|
|
|
|
2008-10-24 08:16:15 +02:00
|
|
|
ResetVideo_Emu();
|
|
|
|
|
2009-06-01 09:20:23 +02:00
|
|
|
// GB colorizing - set palette
|
2009-06-17 09:47:22 +02:00
|
|
|
if(IsGameboyGame())
|
2009-06-01 09:20:23 +02:00
|
|
|
{
|
|
|
|
if(GCSettings.colorize && strcmp(RomTitle, "MEGAMAN") != 0)
|
|
|
|
gbSetPalette(CurrentPalette.palette);
|
|
|
|
else
|
|
|
|
StopColorizing();
|
|
|
|
}
|
|
|
|
|
2008-10-21 09:17:07 +02:00
|
|
|
while (emulating) // emulation loop
|
2008-09-16 07:42:21 +02:00
|
|
|
{
|
|
|
|
emulator.emuMain(emulator.emuCount);
|
2008-10-18 22:40:48 +02:00
|
|
|
|
2008-11-17 01:09:38 +01:00
|
|
|
if(ResetRequested)
|
|
|
|
{
|
|
|
|
emulator.emuReset(); // reset game
|
|
|
|
ResetRequested = 0;
|
|
|
|
}
|
2008-10-18 22:40:48 +02:00
|
|
|
if(ConfigRequested)
|
|
|
|
{
|
2009-04-08 09:08:12 +02:00
|
|
|
ResetVideo_Menu();
|
|
|
|
break; // leave emulation loop
|
2008-10-18 22:40:48 +02:00
|
|
|
}
|
2009-07-07 06:48:37 +02:00
|
|
|
#ifdef HW_RVL
|
|
|
|
if(ShutdownRequested)
|
|
|
|
ExitApp();
|
|
|
|
#endif
|
2009-04-08 09:08:12 +02:00
|
|
|
} // emulation loop
|
|
|
|
} // main loop
|
2009-05-27 19:31:18 +02:00
|
|
|
return 0;
|
2008-09-16 07:42:21 +02:00
|
|
|
}
|