2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
2008-09-12 07:28:40 +02:00
|
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
|
|
|
* softdev July 2006
|
|
|
|
* crunchy2 May 2007-July 2007
|
2008-09-23 06:13:33 +02:00
|
|
|
* Michniewski 2008
|
2008-09-12 07:28:40 +02:00
|
|
|
* Tantric September 2008
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
|
|
|
* snes9xGX.cpp
|
|
|
|
*
|
|
|
|
* This file controls overall program flow. Most things start and end here!
|
2008-09-12 07:28:40 +02:00
|
|
|
***************************************************************************/
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#include <gccore.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2008-08-06 03:39:43 +02:00
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <wiiuse/wpad.h>
|
2008-08-07 05:25:02 +02:00
|
|
|
#include <fat.h>
|
2009-01-30 03:20:43 +01:00
|
|
|
#include <debug.h>
|
2008-08-06 03:39:43 +02:00
|
|
|
|
2008-08-19 08:05:57 +02:00
|
|
|
#ifdef WII_DVD
|
2008-08-23 05:20:54 +02:00
|
|
|
extern "C" {
|
2008-08-19 08:05:57 +02:00
|
|
|
#include <di/di.h>
|
2008-08-23 05:20:54 +02:00
|
|
|
}
|
|
|
|
#endif
|
2008-08-19 08:05:57 +02:00
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
#include "snes9x.h"
|
|
|
|
#include "memmap.h"
|
2009-01-30 03:20:43 +01:00
|
|
|
#include "s9xdebug.h"
|
2008-08-06 03:09:59 +02:00
|
|
|
#include "cpuexec.h"
|
|
|
|
#include "ppu.h"
|
|
|
|
#include "apu.h"
|
|
|
|
#include "display.h"
|
|
|
|
#include "gfx.h"
|
|
|
|
#include "soundux.h"
|
|
|
|
#include "spc700.h"
|
|
|
|
#include "spc7110.h"
|
|
|
|
#include "controls.h"
|
|
|
|
|
|
|
|
#include "snes9xGX.h"
|
2008-09-27 09:13:52 +02:00
|
|
|
#include "aram.h"
|
2008-08-06 03:09:59 +02:00
|
|
|
#include "dvd.h"
|
2008-12-24 09:02:04 +01:00
|
|
|
#include "networkop.h"
|
2008-08-06 03:09:59 +02:00
|
|
|
#include "video.h"
|
2008-08-07 07:19:17 +02:00
|
|
|
#include "menudraw.h"
|
2008-08-06 03:09:59 +02:00
|
|
|
#include "s9xconfig.h"
|
|
|
|
#include "audio.h"
|
|
|
|
#include "menu.h"
|
|
|
|
#include "sram.h"
|
2008-08-12 05:25:16 +02:00
|
|
|
#include "freeze.h"
|
2008-08-06 03:09:59 +02:00
|
|
|
#include "preferences.h"
|
2008-08-06 03:45:56 +02:00
|
|
|
#include "button_mapping.h"
|
2008-08-07 07:19:17 +02:00
|
|
|
#include "fileop.h"
|
2008-08-20 06:07:38 +02:00
|
|
|
#include "input.h"
|
2008-08-06 03:09:59 +02:00
|
|
|
|
2008-09-09 05:02:11 +02:00
|
|
|
#include "gui.h"
|
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
int ConfigRequested = 0;
|
2008-11-17 01:08:51 +01:00
|
|
|
int ShutdownRequested = 0;
|
|
|
|
int ResetRequested = 0;
|
2008-11-17 09:01:05 +01:00
|
|
|
char appPath[1024];
|
2008-09-23 05:49:57 +02:00
|
|
|
FILE* debughandle;
|
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
extern int FrameTimer;
|
|
|
|
|
2008-08-06 03:39:43 +02:00
|
|
|
extern long long prev;
|
2008-08-06 03:09:59 +02:00
|
|
|
extern unsigned int timediffallowed;
|
|
|
|
|
2008-11-17 01:08:51 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Shutdown / Reboot / Exit
|
|
|
|
***************************************************************************/
|
|
|
|
|
2008-12-18 19:36:30 +01:00
|
|
|
void ExitCleanup()
|
|
|
|
{
|
2008-12-24 09:02:04 +01:00
|
|
|
LWP_SuspendThread (devicethread);
|
2008-12-18 19:36:30 +01:00
|
|
|
UnmountAllFAT();
|
|
|
|
|
|
|
|
#ifdef HW_RVL
|
2009-02-08 23:30:42 +01:00
|
|
|
CloseShare();
|
2008-12-18 19:36:30 +01:00
|
|
|
DI_Close();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-11-17 01:08:51 +01:00
|
|
|
#ifdef HW_DOL
|
|
|
|
#define PSOSDLOADID 0x7c6000a6
|
|
|
|
int *psoid = (int *) 0x80001800;
|
|
|
|
void (*PSOReload) () = (void (*)()) 0x80001800;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void Reboot()
|
|
|
|
{
|
2008-12-18 19:36:30 +01:00
|
|
|
ExitCleanup();
|
2008-11-17 01:08:51 +01:00
|
|
|
#ifdef HW_RVL
|
|
|
|
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
|
|
|
|
#else
|
|
|
|
#define SOFTRESET_ADR ((volatile u32*)0xCC003024)
|
|
|
|
*SOFTRESET_ADR = 0x00000000;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExitToLoader()
|
|
|
|
{
|
2008-12-18 19:36:30 +01:00
|
|
|
ExitCleanup();
|
2008-11-17 01:08:51 +01:00
|
|
|
// Exit to Loader
|
|
|
|
#ifdef HW_RVL
|
|
|
|
exit(0);
|
|
|
|
#else // gamecube
|
|
|
|
if (psoid[0] == PSOSDLOADID)
|
|
|
|
PSOReload ();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HW_RVL
|
|
|
|
void ShutdownCB()
|
|
|
|
{
|
|
|
|
ConfigRequested = 1;
|
|
|
|
ShutdownRequested = 1;
|
|
|
|
}
|
|
|
|
void ResetCB()
|
|
|
|
{
|
|
|
|
ResetRequested = 1;
|
|
|
|
}
|
|
|
|
void ShutdownWii()
|
|
|
|
{
|
2008-12-18 19:36:30 +01:00
|
|
|
ExitCleanup();
|
2008-11-17 01:08:51 +01:00
|
|
|
SYS_ResetSystem(SYS_POWEROFF, 0, 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HW_DOL
|
2008-10-21 10:08:30 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* ipl_set_config
|
|
|
|
* lowlevel Qoob Modchip disable
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
void ipl_set_config(unsigned char c)
|
|
|
|
{
|
|
|
|
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:08:51 +01:00
|
|
|
#endif
|
2008-08-06 03:45:56 +02:00
|
|
|
|
2008-08-06 03:55:59 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* setFrameTimerMethod()
|
2008-08-07 07:19:17 +02:00
|
|
|
* change frametimer method depending on whether ROM is NTSC or PAL
|
2008-09-12 07:28:40 +02:00
|
|
|
***************************************************************************/
|
2008-08-06 03:55:59 +02:00
|
|
|
extern u8 vmode_60hz;
|
|
|
|
int timerstyle;
|
2008-08-06 03:09:59 +02:00
|
|
|
|
2008-08-06 03:55:59 +02:00
|
|
|
void setFrameTimerMethod()
|
|
|
|
{
|
|
|
|
/*
|
2008-08-07 07:19:17 +02:00
|
|
|
Set frametimer method
|
|
|
|
(timerstyle: 0=NTSC vblank, 1=PAL int timer)
|
2008-08-06 03:55:59 +02:00
|
|
|
*/
|
|
|
|
if ( Settings.PAL ) {
|
|
|
|
if(vmode_60hz == 1)
|
|
|
|
timerstyle = 1;
|
|
|
|
else
|
|
|
|
timerstyle = 0;
|
|
|
|
//timediffallowed = Settings.FrameTimePAL;
|
|
|
|
} else {
|
|
|
|
if(vmode_60hz == 1)
|
|
|
|
timerstyle = 0;
|
|
|
|
else
|
|
|
|
timerstyle = 1;
|
|
|
|
//timediffallowed = Settings.FrameTimeNTSC;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Emulation loop
|
2008-09-12 07:28:40 +02:00
|
|
|
***************************************************************************/
|
2008-08-06 03:09:59 +02:00
|
|
|
extern void S9xInitSync();
|
2008-09-12 07:28:40 +02:00
|
|
|
bool CheckVideo = 0; // for forcing video reset in video.cpp
|
2008-08-25 07:57:43 +02:00
|
|
|
extern uint32 prevRenderedFrameCount;
|
2009-02-08 23:30:42 +01:00
|
|
|
static int selectedMenu = -1;
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
emulate ()
|
|
|
|
{
|
2008-08-06 03:39:43 +02:00
|
|
|
while (1)
|
|
|
|
{
|
2009-02-08 23:30:42 +01:00
|
|
|
// go back to checking if devices were inserted/removed
|
|
|
|
// since we're entering the menu
|
|
|
|
LWP_ResumeThread (devicethread);
|
2008-08-20 09:58:55 +02:00
|
|
|
|
2009-02-08 23:30:42 +01:00
|
|
|
ConfigRequested = 1;
|
2008-11-17 01:08:51 +01:00
|
|
|
|
2009-02-08 23:30:42 +01:00
|
|
|
if(SNESROMSize > 0 && selectedMenu != 2)
|
|
|
|
selectedMenu = 2;
|
2008-12-19 00:22:32 +01:00
|
|
|
|
2009-02-08 23:30:42 +01:00
|
|
|
MainMenu (selectedMenu); // go to menu
|
2008-08-20 06:07:38 +02:00
|
|
|
|
2009-02-08 23:30:42 +01:00
|
|
|
ConfigRequested = 0;
|
2008-09-10 07:57:37 +02:00
|
|
|
|
2009-02-08 23:30:42 +01:00
|
|
|
Settings.SuperScopeMaster = (GCSettings.Superscope > 0 ? true : false);
|
|
|
|
Settings.MouseMaster = (GCSettings.Mouse > 0 ? true : false);
|
|
|
|
Settings.JustifierMaster = (GCSettings.Justifier > 0 ? true : false);
|
|
|
|
SetControllers ();
|
2008-11-17 01:08:51 +01:00
|
|
|
|
2009-02-08 23:30:42 +01:00
|
|
|
// stop checking if devices were removed/inserted
|
|
|
|
// since we're starting emulation again
|
|
|
|
LWP_SuspendThread (devicethread);
|
2008-08-20 06:07:38 +02:00
|
|
|
|
2009-02-08 23:30:42 +01:00
|
|
|
ResetVideo_Emu();
|
2008-08-20 09:58:55 +02:00
|
|
|
|
2009-02-08 23:30:42 +01:00
|
|
|
FrameTimer = 0;
|
|
|
|
setFrameTimerMethod(); // set frametimer method every time a ROM is loaded
|
2008-10-28 06:13:24 +01:00
|
|
|
|
2009-02-08 23:30:42 +01:00
|
|
|
CheckVideo = 1; // force video update
|
|
|
|
prevRenderedFrameCount = IPPU.RenderedFramesCount;
|
2008-08-20 09:58:55 +02:00
|
|
|
|
2009-02-08 23:30:42 +01:00
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
S9xMainLoop ();
|
|
|
|
NGCReportButtons ();
|
2008-08-20 09:58:55 +02:00
|
|
|
|
2009-02-08 23:30:42 +01:00
|
|
|
if(ResetRequested)
|
|
|
|
{
|
|
|
|
S9xSoftReset (); // reset game
|
|
|
|
ResetRequested = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ConfigRequested)
|
|
|
|
{
|
|
|
|
// go back to checking if devices were inserted/removed
|
|
|
|
// since we're entering the menu
|
|
|
|
LWP_ResumeThread (devicethread);
|
2008-09-27 09:13:52 +02:00
|
|
|
|
2009-02-08 23:30:42 +01:00
|
|
|
// change to menu video mode
|
|
|
|
ResetVideo_Menu ();
|
2008-09-04 04:42:27 +02:00
|
|
|
|
2009-02-08 23:30:42 +01:00
|
|
|
if ( GCSettings.AutoSave == 1 )
|
|
|
|
{
|
|
|
|
SaveSRAM ( GCSettings.SaveMethod, SILENT );
|
|
|
|
}
|
|
|
|
else if ( GCSettings.AutoSave == 2 )
|
|
|
|
{
|
|
|
|
if ( WaitPromptChoice ("Save Freeze State?", "Don't Save", "Save") )
|
|
|
|
NGCFreezeGame ( GCSettings.SaveMethod, SILENT );
|
|
|
|
}
|
|
|
|
else if ( GCSettings.AutoSave == 3 )
|
|
|
|
{
|
|
|
|
if ( WaitPromptChoice ("Save SRAM and Freeze State?", "Don't Save", "Save") )
|
|
|
|
{
|
|
|
|
SaveSRAM(GCSettings.SaveMethod, SILENT );
|
|
|
|
NGCFreezeGame ( GCSettings.SaveMethod, SILENT );
|
|
|
|
}
|
|
|
|
}
|
2008-12-19 00:22:32 +01:00
|
|
|
|
2009-02-08 23:30:42 +01:00
|
|
|
#ifdef HW_RVL
|
|
|
|
if(ShutdownRequested)
|
|
|
|
ShutdownWii();
|
|
|
|
#endif
|
2008-08-20 09:58:55 +02:00
|
|
|
|
2009-02-08 23:30:42 +01:00
|
|
|
// save zoom level
|
|
|
|
SavePrefs(SILENT);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-08-06 03:09:59 +02:00
|
|
|
}
|
|
|
|
|
2008-11-17 09:01:05 +01:00
|
|
|
void CreateAppPath(char origpath[])
|
|
|
|
{
|
|
|
|
#ifdef HW_DOL
|
|
|
|
sprintf(appPath, GCSettings.SaveFolder);
|
|
|
|
#else
|
|
|
|
char path[1024];
|
|
|
|
strcpy(path, origpath); // make a copy so we don't mess up original
|
|
|
|
|
|
|
|
char * loc;
|
|
|
|
int pos = -1;
|
|
|
|
|
|
|
|
loc = strrchr(path,'/');
|
|
|
|
if (loc != NULL)
|
|
|
|
*loc = 0; // strip file name
|
|
|
|
|
|
|
|
loc = strchr(path,'/'); // looking for / from fat:/
|
|
|
|
if (loc != NULL)
|
|
|
|
pos = loc - path + 1;
|
|
|
|
|
|
|
|
if(pos >= 0 && pos < 1024)
|
|
|
|
sprintf(appPath, &(path[pos]));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* MAIN
|
|
|
|
*
|
|
|
|
* Steps to Snes9x Emulation :
|
|
|
|
* 1. Initialise GC Video
|
|
|
|
* 2. Initialise libfreetype (Nice to read something)
|
|
|
|
* 3. Set S9xSettings to standard defaults (s9xconfig.h)
|
|
|
|
* 4. Allocate Snes9x Memory
|
|
|
|
* 5. Allocate APU Memory
|
|
|
|
* 6. Set Pixel format to RGB565 for GL Rendering
|
|
|
|
* 7. Initialise Snes9x/GC Sound System
|
|
|
|
* 8. Initialise Snes9x Graphics subsystem
|
|
|
|
* 9. Let's Party!
|
2008-09-12 07:28:40 +02:00
|
|
|
***************************************************************************/
|
2008-08-06 03:09:59 +02:00
|
|
|
int
|
2008-11-17 09:01:05 +01:00
|
|
|
main(int argc, char *argv[])
|
2008-08-06 03:09:59 +02:00
|
|
|
{
|
2008-11-17 09:01:05 +01:00
|
|
|
#ifdef HW_DOL
|
2008-10-21 10:08:30 +02:00
|
|
|
ipl_set_config(6); // disable Qoob modchip
|
2008-11-17 09:01:05 +01:00
|
|
|
#endif
|
2008-10-21 10:08:30 +02:00
|
|
|
|
2008-11-17 09:01:05 +01:00
|
|
|
#ifdef WII_DVD
|
2008-08-19 08:05:57 +02:00
|
|
|
DI_Init(); // first
|
2008-11-17 09:01:05 +01:00
|
|
|
#endif
|
2008-08-20 09:58:55 +02:00
|
|
|
|
2009-01-30 03:20:43 +01:00
|
|
|
#ifdef DEBUG_WII
|
|
|
|
DEBUG_Init(GDBSTUB_DEVICE_USB, 1); // init debugging
|
2009-01-30 08:25:30 +01:00
|
|
|
//_break();
|
2009-01-30 03:20:43 +01:00
|
|
|
#endif
|
2009-02-08 23:30:42 +01:00
|
|
|
|
2008-12-22 10:20:35 +01:00
|
|
|
InitDeviceThread();
|
|
|
|
|
2008-09-27 09:13:52 +02:00
|
|
|
// Initialise video
|
2008-12-22 10:20:35 +01:00
|
|
|
InitGCVideo();
|
2008-12-30 01:08:17 +01:00
|
|
|
ResetVideo_Menu (); // change to menu video mode
|
2008-09-27 09:13:52 +02:00
|
|
|
|
|
|
|
// Controllers
|
2008-12-22 10:20:35 +01:00
|
|
|
PAD_Init ();
|
|
|
|
|
2008-11-17 09:01:05 +01:00
|
|
|
#ifdef HW_RVL
|
2008-08-06 03:39:43 +02:00
|
|
|
WPAD_Init();
|
2008-08-06 16:40:28 +02:00
|
|
|
// read wiimote accelerometer and IR data
|
|
|
|
WPAD_SetDataFormat(WPAD_CHAN_ALL,WPAD_FMT_BTNS_ACC_IR);
|
|
|
|
WPAD_SetVRes(WPAD_CHAN_ALL,640,480);
|
2008-09-27 09:13:52 +02:00
|
|
|
|
2008-11-17 01:08:51 +01:00
|
|
|
// Wii Power/Reset buttons
|
|
|
|
WPAD_SetPowerButtonCallback((WPADShutdownCallback)ShutdownCB);
|
|
|
|
SYS_SetPowerCallback(ShutdownCB);
|
|
|
|
SYS_SetResetCallback(ResetCB);
|
2008-11-17 09:01:05 +01:00
|
|
|
#endif
|
2008-11-17 01:08:51 +01:00
|
|
|
|
2008-10-09 23:44:53 +02:00
|
|
|
// GameCube only - Injected ROM
|
2008-09-27 09:13:52 +02:00
|
|
|
// Before going any further, let's copy any injected ROM image
|
2008-10-09 23:44:53 +02:00
|
|
|
// We'll put it in ARAM for safe storage
|
|
|
|
|
|
|
|
#ifdef HW_DOL
|
2008-12-22 10:20:35 +01:00
|
|
|
// GC Audio RAM (for ROM and backdrop storage)
|
|
|
|
AR_Init (NULL, 0);
|
|
|
|
|
2008-09-27 09:13:52 +02:00
|
|
|
int *romptr = (int *) 0x81000000; // location of injected rom
|
|
|
|
|
|
|
|
if (memcmp ((char *) romptr, "SNESROM0", 8) == 0)
|
|
|
|
{
|
2008-10-10 00:36:22 +02:00
|
|
|
SNESROMSize = romptr[2];
|
2008-10-09 23:44:53 +02:00
|
|
|
|
2008-10-10 00:36:22 +02:00
|
|
|
if(SNESROMSize > (1024*128) && SNESROMSize < (1024*1024*8))
|
2008-10-09 23:44:53 +02:00
|
|
|
{
|
|
|
|
romptr = (int *) 0x81000020;
|
2008-10-10 00:36:22 +02:00
|
|
|
ARAMPut ((char *) romptr, (char *) AR_SNESROM, SNESROMSize);
|
2008-10-09 23:44:53 +02:00
|
|
|
}
|
|
|
|
else // not a valid ROM size
|
|
|
|
{
|
2008-10-10 00:36:22 +02:00
|
|
|
SNESROMSize = 0;
|
2008-10-09 23:44:53 +02:00
|
|
|
}
|
2008-09-27 09:13:52 +02:00
|
|
|
}
|
2008-10-09 23:44:53 +02:00
|
|
|
#endif
|
2008-08-07 05:25:02 +02:00
|
|
|
|
2008-12-22 10:20:35 +01:00
|
|
|
unpackbackdrop();
|
|
|
|
|
2008-09-08 01:50:57 +02:00
|
|
|
// Initialise freetype font system
|
2008-08-06 03:09:59 +02:00
|
|
|
if (FT_Init ())
|
|
|
|
{
|
|
|
|
printf ("Cannot initialise font subsystem!\n");
|
|
|
|
while (1);
|
|
|
|
}
|
2008-08-07 05:25:02 +02:00
|
|
|
|
2008-12-22 10:20:35 +01:00
|
|
|
// Audio
|
|
|
|
AUDIO_Init (NULL);
|
2008-08-10 05:14:39 +02:00
|
|
|
|
2008-09-08 01:50:57 +02:00
|
|
|
// Set defaults
|
2008-08-06 03:09:59 +02:00
|
|
|
DefaultSettings ();
|
2008-08-07 05:25:02 +02:00
|
|
|
|
2008-11-17 09:01:05 +01:00
|
|
|
// store path app was loaded from
|
2008-11-26 08:40:12 +01:00
|
|
|
sprintf(appPath, "snes9x");
|
|
|
|
if(argc > 0 && argv[0] != NULL)
|
|
|
|
CreateAppPath(argv[0]);
|
2008-11-17 09:01:05 +01:00
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
S9xUnmapAllControls ();
|
|
|
|
SetDefaultButtonMap ();
|
2008-08-07 05:25:02 +02:00
|
|
|
|
2008-09-08 01:50:57 +02:00
|
|
|
// Allocate SNES Memory
|
2008-08-06 03:09:59 +02:00
|
|
|
if (!Memory.Init ())
|
|
|
|
while (1);
|
2008-08-07 05:25:02 +02:00
|
|
|
|
2008-09-08 01:50:57 +02:00
|
|
|
// Allocate APU
|
2008-08-06 03:09:59 +02:00
|
|
|
if (!S9xInitAPU ())
|
|
|
|
while (1);
|
2008-08-07 05:25:02 +02:00
|
|
|
|
2008-09-08 01:50:57 +02:00
|
|
|
// Set Pixel Renderer to match 565
|
2008-08-06 03:09:59 +02:00
|
|
|
S9xSetRenderPixelFormat (RGB565);
|
2008-08-07 05:25:02 +02:00
|
|
|
|
2008-09-08 01:50:57 +02:00
|
|
|
// Initialise Snes Sound System
|
2008-08-06 03:09:59 +02:00
|
|
|
S9xInitSound (5, TRUE, 1024);
|
2008-08-07 05:25:02 +02:00
|
|
|
|
2008-09-08 01:50:57 +02:00
|
|
|
// Initialise Graphics
|
2008-08-06 03:09:59 +02:00
|
|
|
setGFX ();
|
|
|
|
if (!S9xGraphicsInit ())
|
|
|
|
while (1);
|
2008-08-07 05:25:02 +02:00
|
|
|
|
2008-08-10 05:14:39 +02:00
|
|
|
// Initialize libFAT for SD and USB
|
2008-12-18 19:36:30 +01:00
|
|
|
MountAllFAT();
|
2008-08-10 05:14:39 +02:00
|
|
|
|
2008-08-16 02:02:08 +02:00
|
|
|
// Initialize DVD subsystem (GameCube only)
|
2008-11-17 09:01:05 +01:00
|
|
|
#ifdef HW_DOL
|
2008-08-10 05:14:39 +02:00
|
|
|
DVD_Init ();
|
2008-08-16 02:02:08 +02:00
|
|
|
#endif
|
2008-08-10 05:14:39 +02:00
|
|
|
|
2008-09-10 07:57:37 +02:00
|
|
|
// Check if DVD drive belongs to a Wii
|
|
|
|
SetDVDDriveType();
|
2008-08-07 05:25:02 +02:00
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
// Load preferences
|
2008-09-04 04:42:27 +02:00
|
|
|
if(!LoadPrefs())
|
2008-08-07 05:25:02 +02:00
|
|
|
{
|
2008-12-18 19:36:30 +01:00
|
|
|
WaitPrompt("Preferences reset - check settings!");
|
2008-09-30 07:31:46 +02:00
|
|
|
selectedMenu = 1; // change to preferences menu
|
2008-08-07 05:25:02 +02:00
|
|
|
}
|
|
|
|
|
2008-10-09 23:44:53 +02:00
|
|
|
// GameCube only - Injected ROM
|
|
|
|
// Everything's been initialized, we can copy our ROM back
|
|
|
|
// from ARAM into main memory
|
|
|
|
|
|
|
|
#ifdef HW_DOL
|
2008-10-10 00:36:22 +02:00
|
|
|
if(SNESROMSize > 0)
|
2008-08-06 03:09:59 +02:00
|
|
|
{
|
2008-10-10 00:36:22 +02:00
|
|
|
ARAMFetchSlow( (char *)Memory.ROM, (char *)AR_SNESROM, SNESROMSize);
|
2008-10-09 23:44:53 +02:00
|
|
|
Memory.LoadROM ("BLANK.SMC");
|
|
|
|
Memory.LoadSRAM ("BLANK");
|
2008-08-06 03:09:59 +02:00
|
|
|
}
|
2008-10-09 23:44:53 +02:00
|
|
|
#endif
|
|
|
|
|
2009-02-08 23:30:42 +01:00
|
|
|
S9xSetSoundMute (TRUE);
|
|
|
|
AudioStart ();
|
|
|
|
S9xInitSync(); // initialize frame sync
|
2008-08-07 05:25:02 +02:00
|
|
|
|
2008-09-12 07:28:40 +02:00
|
|
|
// Emulate
|
2008-08-06 03:09:59 +02:00
|
|
|
emulate ();
|
|
|
|
}
|