2008-09-02 03:57:21 +02:00
|
|
|
/****************************************************************************
|
2009-07-22 04:05:49 +02:00
|
|
|
* FCE Ultra
|
2008-09-02 03:57:21 +02:00
|
|
|
* Nintendo Wii/Gamecube Port
|
|
|
|
*
|
2009-03-28 18:23:08 +01:00
|
|
|
* Tantric 2008-2009
|
2008-09-02 03:57:21 +02:00
|
|
|
*
|
2009-03-28 18:23:08 +01:00
|
|
|
* fceugx.cpp
|
2008-09-02 03:57:21 +02:00
|
|
|
*
|
|
|
|
* This file controls overall program flow. Most things start and end here!
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2008-10-01 07:25:38 +02:00
|
|
|
#include <string.h>
|
2008-09-02 03:57:21 +02:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <gctypes.h>
|
|
|
|
#include <ogc/system.h>
|
|
|
|
#include <fat.h>
|
|
|
|
#include <wiiuse/wpad.h>
|
2009-02-07 01:57:39 +01:00
|
|
|
#include <malloc.h>
|
2009-09-25 20:51:12 +02:00
|
|
|
#include <sys/iosupport.h>
|
2008-09-02 03:57:21 +02:00
|
|
|
|
2010-03-22 00:49:24 +01:00
|
|
|
#ifdef HW_RVL
|
|
|
|
#include <di/di.h>
|
|
|
|
#endif
|
|
|
|
|
2008-11-17 01:09:31 +01:00
|
|
|
#include "fceugx.h"
|
2008-09-02 03:57:21 +02:00
|
|
|
#include "fceuload.h"
|
2008-10-21 09:50:37 +02:00
|
|
|
#include "fceustate.h"
|
|
|
|
#include "fceuram.h"
|
2009-07-17 19:27:04 +02:00
|
|
|
#include "fceusupport.h"
|
2008-09-02 03:57:21 +02:00
|
|
|
#include "menu.h"
|
|
|
|
#include "preferences.h"
|
2008-11-17 01:09:31 +01:00
|
|
|
#include "fileop.h"
|
2009-03-28 18:23:08 +01:00
|
|
|
#include "filebrowser.h"
|
2008-12-24 08:58:23 +01:00
|
|
|
#include "networkop.h"
|
2008-09-04 04:46:04 +02:00
|
|
|
#include "gcaudio.h"
|
2008-10-21 09:50:37 +02:00
|
|
|
#include "gcvideo.h"
|
|
|
|
#include "pad.h"
|
2009-03-28 18:23:08 +01:00
|
|
|
#include "filelist.h"
|
|
|
|
#include "gui/gui.h"
|
2010-03-22 00:49:24 +01:00
|
|
|
#include "utils/usb2storage.h"
|
|
|
|
#include "utils/mload.h"
|
|
|
|
#include "utils/FreeTypeGX.h"
|
2008-09-02 03:57:21 +02:00
|
|
|
|
2010-03-22 00:49:24 +01:00
|
|
|
#include "fceultra/types.h"
|
2009-01-25 07:53:21 +01:00
|
|
|
|
|
|
|
void FCEUD_Update(uint8 *XBuf, int32 *Buffer, int Count);
|
|
|
|
|
2009-09-25 20:45:18 +02:00
|
|
|
extern "C" {
|
|
|
|
extern void __exception_setreload(int t);
|
|
|
|
}
|
|
|
|
|
2009-04-09 09:49:28 +02:00
|
|
|
static int fskipc = 0;
|
2009-10-02 10:05:20 +02:00
|
|
|
static int fskip = 0;
|
2009-07-28 07:09:36 +02:00
|
|
|
static uint8 *gfx=0;
|
|
|
|
static int32 *sound=0;
|
|
|
|
static int32 ssize=0;
|
2009-05-25 08:48:28 +02:00
|
|
|
int ScreenshotRequested = 0;
|
2008-10-21 09:50:37 +02:00
|
|
|
int ConfigRequested = 0;
|
2008-11-17 01:09:31 +01:00
|
|
|
int ShutdownRequested = 0;
|
2009-05-25 08:48:28 +02:00
|
|
|
int ResetRequested = 0;
|
2009-03-28 18:23:08 +01:00
|
|
|
int ExitRequested = 0;
|
2009-10-02 00:21:25 +02:00
|
|
|
char appPath[1024] = { 0 };
|
2009-12-23 01:26:54 +01:00
|
|
|
char loadedFile[1024] = { 0 };
|
2008-11-04 09:28:52 +01:00
|
|
|
int frameskip = 0;
|
2009-10-02 10:05:20 +02:00
|
|
|
int turbomode = 0;
|
2009-04-09 09:49:28 +02:00
|
|
|
unsigned char * nesrom = NULL;
|
2008-09-02 03:57:21 +02:00
|
|
|
|
2008-11-17 01:09:31 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Shutdown / Reboot / Exit
|
|
|
|
***************************************************************************/
|
|
|
|
|
2008-12-30 01:05:57 +01:00
|
|
|
static void ExitCleanup()
|
2008-12-19 23:04:55 +01:00
|
|
|
{
|
2009-03-28 18:23:08 +01:00
|
|
|
ShutdownAudio();
|
|
|
|
StopGX();
|
|
|
|
|
2009-05-06 19:27:20 +02:00
|
|
|
HaltDeviceThread();
|
2008-12-19 23:04:55 +01:00
|
|
|
UnmountAllFAT();
|
|
|
|
|
|
|
|
#ifdef HW_RVL
|
|
|
|
DI_Close();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-11-17 01:09:31 +01:00
|
|
|
#ifdef HW_DOL
|
|
|
|
#define PSOSDLOADID 0x7c6000a6
|
|
|
|
int *psoid = (int *) 0x80001800;
|
|
|
|
void (*PSOReload) () = (void (*)()) 0x80001800;
|
|
|
|
#endif
|
|
|
|
|
2009-03-28 18:23:08 +01:00
|
|
|
void ExitApp()
|
2008-11-17 01:09:31 +01:00
|
|
|
{
|
2009-10-06 08:38:32 +02:00
|
|
|
#ifdef HW_RVL
|
|
|
|
ShutoffRumble();
|
|
|
|
#endif
|
|
|
|
|
2009-07-07 06:47:36 +02:00
|
|
|
SavePrefs(SILENT);
|
|
|
|
|
|
|
|
if (romLoaded && !ConfigRequested && GCSettings.AutoSave == 1)
|
2009-10-02 00:21:25 +02:00
|
|
|
SaveRAMAuto(SILENT);
|
2009-07-07 06:47:36 +02:00
|
|
|
|
2008-12-19 23:04:55 +01:00
|
|
|
ExitCleanup();
|
2008-11-17 01:09:31 +01:00
|
|
|
|
2009-07-07 06:47:36 +02:00
|
|
|
if(ShutdownRequested)
|
|
|
|
SYS_ResetSystem(SYS_POWEROFF, 0, 0);
|
|
|
|
|
2009-05-20 07:26:32 +02:00
|
|
|
#ifdef HW_RVL
|
|
|
|
if(GCSettings.ExitAction == 0) // Auto
|
2009-03-28 18:23:08 +01:00
|
|
|
{
|
2009-05-20 07:26:32 +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-03-28 18:23:08 +01:00
|
|
|
}
|
2009-05-20 07:26:32 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if(GCSettings.ExitAction == 1) // Exit to Menu
|
2009-03-28 18:23:08 +01: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:26:32 +02:00
|
|
|
else if(GCSettings.ExitAction == 2) // Shutdown Wii
|
2009-03-28 18:23:08 +01:00
|
|
|
{
|
|
|
|
SYS_ResetSystem(SYS_POWEROFF, 0, 0);
|
|
|
|
}
|
2009-05-20 07:26:32 +02:00
|
|
|
else // Exit to Loader
|
|
|
|
{
|
|
|
|
#ifdef HW_RVL
|
|
|
|
exit(0);
|
|
|
|
#else
|
|
|
|
if (psoid[0] == PSOSDLOADID)
|
|
|
|
PSOReload();
|
|
|
|
#endif
|
|
|
|
}
|
2008-11-17 01:09:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HW_RVL
|
|
|
|
void ShutdownCB()
|
|
|
|
{
|
2010-04-17 05:04:21 +02:00
|
|
|
if(!inNetworkInit)
|
|
|
|
ShutdownRequested = 1;
|
2008-11-17 01:09:31 +01:00
|
|
|
}
|
|
|
|
void ResetCB()
|
|
|
|
{
|
2010-04-17 05:04:21 +02:00
|
|
|
if(!inNetworkInit)
|
|
|
|
ResetRequested = 1;
|
2008-11-17 01:09:31 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HW_DOL
|
2008-10-21 10:08:40 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* ipl_set_config
|
|
|
|
* lowlevel Qoob Modchip disable
|
|
|
|
***************************************************************************/
|
|
|
|
|
2008-12-30 01:05:57 +01:00
|
|
|
static void ipl_set_config(unsigned char c)
|
2008-10-21 10:08:40 +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:31 +01:00
|
|
|
#endif
|
2008-10-21 10:08:40 +02:00
|
|
|
|
2010-03-11 07:02:06 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* IOS 202
|
|
|
|
***************************************************************************/
|
|
|
|
#ifdef HW_RVL
|
|
|
|
static bool FindIOS(u32 ios)
|
|
|
|
{
|
|
|
|
s32 ret;
|
|
|
|
u32 n;
|
|
|
|
|
|
|
|
u64 *titles = NULL;
|
|
|
|
u32 num_titles=0;
|
|
|
|
|
|
|
|
ret = ES_GetNumTitles(&num_titles);
|
|
|
|
if (ret < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if(num_titles < 1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
titles = (u64 *)memalign(32, num_titles * sizeof(u64) + 32);
|
|
|
|
if (!titles)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
ret = ES_GetTitles(titles, num_titles);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
free(titles);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(n=0; n < num_titles; n++)
|
|
|
|
{
|
|
|
|
if((titles[n] & 0xFFFFFFFF)==ios)
|
|
|
|
{
|
|
|
|
free(titles);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(titles);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
2009-09-25 20:45:18 +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)
|
|
|
|
{
|
|
|
|
u32 level;
|
|
|
|
|
|
|
|
if (!ptr || len <= 0 || !gecko)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
|
|
|
void USBGeckoOutput()
|
|
|
|
{
|
|
|
|
LWP_MutexInit(&gecko_mutex, false);
|
|
|
|
gecko = usb_isgeckoalive(1);
|
|
|
|
|
|
|
|
devoptab_list[STD_OUT] = &gecko_out;
|
|
|
|
devoptab_list[STD_ERR] = &gecko_out;
|
|
|
|
}
|
|
|
|
|
2008-10-21 09:50:37 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* main
|
|
|
|
* This is where it all happens!
|
|
|
|
***************************************************************************/
|
|
|
|
|
2008-09-02 03:57:21 +02:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2009-09-25 20:45:18 +02:00
|
|
|
//USBGeckoOutput(); // uncomment to enable USB gecko output
|
|
|
|
__exception_setreload(8);
|
|
|
|
|
2008-11-17 08:59:24 +01:00
|
|
|
#ifdef HW_DOL
|
2008-10-21 10:08:40 +02:00
|
|
|
ipl_set_config(6); // disable Qoob modchip
|
2008-11-17 08:59:24 +01:00
|
|
|
#endif
|
2008-09-02 03:57:21 +02:00
|
|
|
|
2008-12-30 01:05:57 +01:00
|
|
|
#ifdef HW_RVL
|
2010-03-11 07:02:06 +01:00
|
|
|
// try to load IOS 202
|
2010-06-05 03:45:53 +02:00
|
|
|
if(FindIOS(202))
|
2010-03-11 07:02:06 +01:00
|
|
|
IOS_ReloadIOS(202);
|
2010-06-05 03:45:53 +02:00
|
|
|
else if(IOS_GetVersion() < 61 && FindIOS(61))
|
|
|
|
IOS_ReloadIOS(61);
|
2010-03-11 07:02:06 +01:00
|
|
|
|
2010-03-11 19:17:35 +01:00
|
|
|
if(IOS_GetVersion() == 202)
|
|
|
|
{
|
|
|
|
DI_LoadDVDX(false);
|
|
|
|
DI_Init();
|
|
|
|
|
|
|
|
// load usb2 driver
|
|
|
|
if(mload_init() >= 0 && load_ehci_module())
|
|
|
|
USB2Enable(true);
|
|
|
|
}
|
2008-11-17 08:59:24 +01:00
|
|
|
#endif
|
2008-09-02 03:57:21 +02:00
|
|
|
|
2008-12-22 09:38:49 +01:00
|
|
|
InitDeviceThread();
|
2009-10-13 06:52:28 +02:00
|
|
|
InitGCVideo (); // Initialize video
|
2009-10-13 02:40:02 +02:00
|
|
|
SetupPads();
|
2008-12-22 09:38:49 +01:00
|
|
|
ResetVideo_Menu (); // change to menu video mode
|
2010-06-21 06:29:24 +02:00
|
|
|
MountAllFAT(); // Initialize libFAT for SD and USB
|
2008-12-22 09:38:49 +01:00
|
|
|
|
2008-11-17 08:59:24 +01:00
|
|
|
#ifdef HW_RVL
|
2008-11-17 01:09:31 +01:00
|
|
|
// Wii Power/Reset buttons
|
|
|
|
WPAD_SetPowerButtonCallback((WPADShutdownCallback)ShutdownCB);
|
|
|
|
SYS_SetPowerCallback(ShutdownCB);
|
|
|
|
SYS_SetResetCallback(ResetCB);
|
2008-11-17 08:59:24 +01:00
|
|
|
#endif
|
2008-11-17 01:09:31 +01:00
|
|
|
|
2008-12-22 09:38:49 +01:00
|
|
|
// Initialize DVD subsystem (GameCube only)
|
2008-11-17 08:59:24 +01:00
|
|
|
#ifdef HW_DOL
|
|
|
|
DVD_Init ();
|
|
|
|
#endif
|
2008-09-02 03:57:21 +02:00
|
|
|
|
2009-03-28 18:23:08 +01:00
|
|
|
// store path app was loaded from
|
2009-10-02 00:21:25 +02:00
|
|
|
#ifdef HW_RVL
|
2009-03-28 18:23:08 +01:00
|
|
|
if(argc > 0 && argv[0] != NULL)
|
|
|
|
CreateAppPath(argv[0]);
|
2009-10-02 00:21:25 +02:00
|
|
|
#endif
|
2009-03-28 18:23:08 +01:00
|
|
|
|
2009-03-31 09:13:20 +02:00
|
|
|
DefaultSettings(); // Set defaults
|
2009-03-28 18:23:08 +01:00
|
|
|
InitialiseAudio();
|
2009-10-28 01:11:43 +01:00
|
|
|
InitFreeType((u8*)font_ttf, font_ttf_size); // Initialize font system
|
2010-06-08 20:21:09 +02:00
|
|
|
gameScreenPng = (u8 *)malloc(512*1024);
|
2009-03-28 18:23:08 +01:00
|
|
|
InitGUIThreads();
|
|
|
|
|
2008-12-22 09:38:49 +01:00
|
|
|
// allocate memory to store rom
|
2010-01-13 06:53:42 +01:00
|
|
|
nesrom = (unsigned char *)memalign(32,1024*1024*4); // 4 MB should be plenty
|
2008-10-01 08:03:16 +02:00
|
|
|
|
2008-12-22 09:38:49 +01:00
|
|
|
/*** Minimal Emulation Loop ***/
|
2009-03-28 18:23:08 +01:00
|
|
|
if (!FCEUI_Initialize())
|
|
|
|
ExitApp();
|
2008-09-02 03:57:21 +02:00
|
|
|
|
2009-07-29 08:33:17 +02:00
|
|
|
FCEUI_SetGameGenie(1); // 0 - OFF, 1 - ON
|
2008-09-02 03:57:21 +02:00
|
|
|
|
2008-12-22 09:38:49 +01:00
|
|
|
memset(FDSBIOS, 0, sizeof(FDSBIOS)); // clear FDS BIOS memory
|
2008-09-02 03:57:21 +02:00
|
|
|
|
2008-11-07 06:28:40 +01:00
|
|
|
FCEUI_SetSoundQuality(1); // 0 - low, 1 - high, 2 - high (alt.)
|
2009-05-01 02:51:08 +02:00
|
|
|
int currentTiming = 0;
|
2008-11-07 06:28:40 +01:00
|
|
|
|
2008-10-21 09:50:37 +02:00
|
|
|
while (1) // main loop
|
2008-09-02 03:57:21 +02:00
|
|
|
{
|
2009-03-28 18:23:08 +01:00
|
|
|
// go back to checking if devices were inserted/removed
|
2008-12-19 23:04:55 +01:00
|
|
|
// since we're entering the menu
|
2009-05-06 19:27:20 +02:00
|
|
|
ResumeDeviceThread();
|
2008-12-19 23:04:55 +01:00
|
|
|
|
2009-03-28 18:23:08 +01:00
|
|
|
SwitchAudioMode(1);
|
|
|
|
|
|
|
|
if(!romLoaded)
|
|
|
|
MainMenu(MENU_GAMESELECTION);
|
|
|
|
else
|
|
|
|
MainMenu(MENU_GAME);
|
|
|
|
|
2010-06-23 01:30:29 +02:00
|
|
|
if(currentTiming != GCSettings.timing)
|
|
|
|
{
|
|
|
|
GameInfo->vidsys=(EGIV)GCSettings.timing;
|
|
|
|
FCEU_ResetVidSys(); // causes a small 'pop' in the audio
|
|
|
|
}
|
2009-05-01 02:51:08 +02:00
|
|
|
|
2009-05-28 06:16:11 +02:00
|
|
|
currentTiming = GCSettings.timing;
|
2009-03-28 18:23:08 +01:00
|
|
|
ConfigRequested = 0;
|
2009-05-30 08:45:57 +02:00
|
|
|
ScreenshotRequested = 0;
|
2009-03-28 18:23:08 +01:00
|
|
|
SwitchAudioMode(0);
|
2008-10-21 09:50:37 +02:00
|
|
|
|
2008-12-19 23:04:55 +01:00
|
|
|
// stop checking if devices were removed/inserted
|
|
|
|
// since we're starting emulation again
|
2009-05-06 19:27:20 +02:00
|
|
|
HaltDeviceThread();
|
2008-12-19 23:04:55 +01:00
|
|
|
|
2008-11-07 06:28:40 +01:00
|
|
|
ResetVideo_Emu();
|
2009-04-01 10:02:59 +02:00
|
|
|
SetControllers();
|
2008-10-21 09:50:37 +02:00
|
|
|
setFrameTimer(); // set frametimer method before emulation
|
2008-11-05 09:36:01 +01:00
|
|
|
SetPalette();
|
2009-04-22 00:08:23 +02:00
|
|
|
FCEUI_DisableSpriteLimitation(GCSettings.spritelimit ^ 1);
|
2008-10-21 09:50:37 +02:00
|
|
|
|
2009-10-02 10:05:20 +02:00
|
|
|
fskip=0;
|
2009-04-09 09:49:28 +02:00
|
|
|
fskipc=0;
|
2009-10-02 10:05:20 +02:00
|
|
|
frameskip=0;
|
2008-11-04 09:28:52 +01:00
|
|
|
|
2008-10-21 09:50:37 +02:00
|
|
|
while(1) // emulation loop
|
|
|
|
{
|
2009-10-02 10:05:20 +02:00
|
|
|
fskip = 0;
|
|
|
|
|
|
|
|
if(turbomode)
|
|
|
|
{
|
|
|
|
fskip = 1;
|
|
|
|
|
|
|
|
if(fskipc >= 18)
|
|
|
|
{
|
|
|
|
fskipc = 0;
|
|
|
|
fskip = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fskipc++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(frameskip > 0)
|
|
|
|
{
|
|
|
|
fskip = 1;
|
|
|
|
|
|
|
|
if(fskipc >= frameskip)
|
|
|
|
{
|
|
|
|
fskipc = 0;
|
|
|
|
fskip = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fskipc++;
|
|
|
|
}
|
|
|
|
}
|
2008-11-04 09:28:52 +01:00
|
|
|
|
2009-10-02 10:05:20 +02:00
|
|
|
FCEUI_Emulate(&gfx, &sound, &ssize, fskip);
|
2009-07-28 07:09:36 +02:00
|
|
|
FCEUD_Update(gfx, sound, ssize);
|
2009-10-02 10:05:20 +02:00
|
|
|
SyncSpeed();
|
2008-10-21 09:50:37 +02:00
|
|
|
|
2008-11-17 01:09:31 +01:00
|
|
|
if(ResetRequested)
|
|
|
|
{
|
|
|
|
PowerNES(); // reset game
|
|
|
|
ResetRequested = 0;
|
|
|
|
}
|
2008-10-21 09:50:37 +02:00
|
|
|
if(ConfigRequested)
|
|
|
|
{
|
2009-06-15 10:21:53 +02:00
|
|
|
ConfigRequested = 0;
|
|
|
|
ResetVideo_Menu();
|
|
|
|
break;
|
2008-10-21 09:50:37 +02:00
|
|
|
}
|
2009-07-07 06:47:36 +02:00
|
|
|
#ifdef HW_RVL
|
|
|
|
if(ShutdownRequested)
|
|
|
|
ExitApp();
|
|
|
|
#endif
|
|
|
|
|
2009-03-28 18:23:08 +01:00
|
|
|
} // emulation loop
|
|
|
|
} // main loop
|
2008-09-02 03:57:21 +02:00
|
|
|
}
|