fceugx/source/ngc/fceugx.cpp

386 lines
7.9 KiB
C++
Raw Normal View History

2008-09-02 03:57:21 +02:00
/****************************************************************************
* FCE Ultra 0.98.12
* 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>
#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>
2008-09-02 03:57:21 +02:00
#include "fceugx.h"
#include "fceuconfig.h"
2008-09-02 03:57:21 +02:00
#include "fceuload.h"
#include "fceustate.h"
#include "fceuram.h"
2008-09-02 03:57:21 +02:00
#include "common.h"
#include "menu.h"
#include "preferences.h"
#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"
#include "gcaudio.h"
#include "gcvideo.h"
#include "pad.h"
2009-03-28 18:23:08 +01:00
#include "filelist.h"
#include "gui/gui.h"
2008-09-02 03:57:21 +02:00
#ifdef HW_RVL
extern "C" {
2008-09-02 03:57:21 +02:00
#include <di/di.h>
}
2008-09-02 03:57:21 +02:00
#endif
2009-03-28 18:23:08 +01:00
#include "FreeTypeGX.h"
extern "C" {
#include "types.h"
extern int cleanSFMDATA();
extern void PowerNES(void);
extern uint8 FDSBIOS[8192];
void FCEUD_Update(uint8 *XBuf, int32 *Buffer, int Count);
}
2009-04-09 09:49:28 +02:00
static uint8 *xbsave=NULL;
static int fskipc = 0;
static int videoReset = 0;
static int currentMode = 0;
static int ResetRequested = 0;
int ConfigRequested = 0;
int ShutdownRequested = 0;
2009-03-28 18:23:08 +01:00
int ExitRequested = 0;
char appPath[1024];
2009-03-28 18:23:08 +01:00
FreeTypeGX *fontSystem;
int frameskip = 0;
2009-04-09 09:49:28 +02:00
unsigned char * nesrom = NULL;
2008-09-02 03:57:21 +02:00
/****************************************************************************
* Shutdown / Reboot / Exit
***************************************************************************/
static void ExitCleanup()
{
2009-03-28 18:23:08 +01:00
#ifdef HW_RVL
ShutoffRumble();
#endif
ShutdownAudio();
StopGX();
2008-12-24 08:58:23 +01:00
LWP_SuspendThread (devicethread);
UnmountAllFAT();
#ifdef HW_RVL
DI_Close();
#endif
}
#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()
{
ExitCleanup();
2009-03-28 18:23:08 +01:00
if(GCSettings.ExitAction == 0) // Exit to Loader
{
#ifdef HW_RVL
exit(0);
#else
if (psoid[0] == PSOSDLOADID)
PSOReload ();
#endif
}
else if(GCSettings.ExitAction == 1) // Exit to Menu
{
#ifdef HW_RVL
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
#else
#define SOFTRESET_ADR ((volatile u32*)0xCC003024)
*SOFTRESET_ADR = 0x00000000;
#endif
}
else // Shutdown Wii
{
SYS_ResetSystem(SYS_POWEROFF, 0, 0);
}
}
#ifdef HW_RVL
void ShutdownCB()
{
ConfigRequested = 1;
ShutdownRequested = 1;
}
void ResetCB()
{
ResetRequested = 1;
}
void ShutdownWii()
{
ExitCleanup();
SYS_ResetSystem(SYS_POWEROFF, 0, 0);
}
#endif
#ifdef HW_DOL
2008-10-21 10:08:40 +02:00
/****************************************************************************
* ipl_set_config
* lowlevel Qoob Modchip disable
***************************************************************************/
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
}
#endif
2008-10-21 10:08:40 +02:00
static 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
}
/****************************************************************************
* main
* This is where it all happens!
***************************************************************************/
2008-09-02 03:57:21 +02:00
int main(int argc, char *argv[])
{
#ifdef HW_DOL
2008-10-21 10:08:40 +02:00
ipl_set_config(6); // disable Qoob modchip
#endif
2008-09-02 03:57:21 +02:00
#ifdef HW_RVL
2008-09-02 03:57:21 +02:00
DI_Init(); // first
#endif
2008-09-02 03:57:21 +02:00
InitDeviceThread();
2009-02-20 10:32:44 +01:00
VIDEO_Init();
PAD_Init();
#ifdef HW_RVL
WPAD_Init();
#endif
2009-03-28 18:23:08 +01:00
InitGCVideo (); // Initialise video
ResetVideo_Menu (); // change to menu video mode
#ifdef HW_RVL
2008-09-02 03:57:21 +02:00
// read wiimote accelerometer and IR data
WPAD_SetDataFormat(WPAD_CHAN_ALL,WPAD_FMT_BTNS_ACC_IR);
2009-03-28 18:23:08 +01:00
WPAD_SetVRes(WPAD_CHAN_ALL, screenwidth, screenheight);
// Wii Power/Reset buttons
WPAD_SetPowerButtonCallback((WPADShutdownCallback)ShutdownCB);
SYS_SetPowerCallback(ShutdownCB);
SYS_SetResetCallback(ResetCB);
#endif
// Initialize DVD subsystem (GameCube only)
#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
sprintf(appPath, "fceugx");
if(argc > 0 && argv[0] != NULL)
CreateAppPath(argv[0]);
MountAllFAT(); // Initialize libFAT for SD and USB
2009-03-31 09:13:20 +02:00
DefaultSettings(); // Set defaults
2009-03-28 18:23:08 +01:00
// Audio
InitialiseAudio();
// Initialize font system
fontSystem = new FreeTypeGX();
fontSystem->loadFont(font_ttf, font_ttf_size, 0);
fontSystem->setCompatibilityMode(FTGX_COMPATIBILITY_DEFAULT_TEVOP_GX_PASSCLR | FTGX_COMPATIBILITY_DEFAULT_VTXDESC_GX_NONE);
InitGUIThreads();
// allocate memory to store rom
2009-02-07 01:57:39 +01:00
nesrom = (unsigned char *)memalign(32,1024*1024*3); // 3 MB should be plenty
/*** Minimal Emulation Loop ***/
2009-03-28 18:23:08 +01:00
if (!FCEUI_Initialize())
ExitApp();
2008-09-02 03:57:21 +02:00
FCEUI_SetGameGenie(0); // 0 - OFF, 1 - ON
2008-09-02 03:57:21 +02:00
memset(FDSBIOS, 0, sizeof(FDSBIOS)); // clear FDS BIOS memory
cleanSFMDATA(); // clear state data
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.)
FCEUI_SetVidSystem(GCSettings.timing); // causes a small 'pop' in the audio
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
// since we're entering the menu
LWP_ResumeThread (devicethread);
2009-03-28 18:23:08 +01:00
ConfigRequested = 1;
SwitchAudioMode(1);
if(!romLoaded)
MainMenu(MENU_GAMESELECTION);
else
MainMenu(MENU_GAME);
2009-04-09 09:49:28 +02:00
videoReset = -1;
currentMode = GCSettings.render;
2009-03-28 18:23:08 +01:00
ConfigRequested = 0;
SwitchAudioMode(0);
// stop checking if devices were removed/inserted
// since we're starting emulation again
LWP_SuspendThread (devicethread);
2008-11-07 06:28:40 +01:00
ResetVideo_Emu();
2009-04-01 10:02:59 +02:00
SetControllers();
setFrameTimer(); // set frametimer method before emulation
2008-11-05 09:36:01 +01:00
SetPalette();
FCEUI_DisableSpriteLimitation(GCSettings.spritelimit ^ 1);
2009-04-09 09:49:28 +02:00
fskipc=0;
while(1) // emulation loop
{
uint8 *gfx;
int32 *sound;
int32 ssize;
#ifdef FRAMESKIP
fskipc=(fskipc+1)%(frameskip+1);
#endif
FCEUI_Emulate(&gfx, &sound, &ssize, fskipc);
if(!fskipc)
{
xbsave = gfx;
FCEUD_Update(gfx, sound, ssize);
}
if(ResetRequested)
{
PowerNES(); // reset game
ResetRequested = 0;
}
if(ConfigRequested)
{
2009-04-09 09:49:28 +02:00
if((GCSettings.render != 0 && videoReset == -1) || videoReset == 0)
{
TakeScreenshot();
ResetVideo_Menu();
ConfigRequested = 0;
GCSettings.render = currentMode;
break; // leave emulation loop
}
else if(videoReset == -1)
{
GCSettings.render = 2;
videoReset = 2;
ResetVideo_Emu();
}
videoReset--;
}
2009-03-28 18:23:08 +01:00
} // emulation loop
} // main loop
2008-09-02 03:57:21 +02:00
}
/****************************************************************************
* FCEU Support Functions
2008-09-02 03:57:21 +02:00
****************************************************************************/
// File Control
2008-09-02 03:57:21 +02:00
FILE *FCEUD_UTF8fopen(const char *n, const char *m)
{
return NULL;
2008-09-02 03:57:21 +02:00
}
// General Logging
2008-09-02 03:57:21 +02:00
void FCEUD_PrintError(char *s)
{
}
void FCEUD_Message(char *text)
{
}
// main interface to FCE Ultra
void FCEUD_Update(uint8 *XBuf, int32 *Buffer, int32 Count)
2008-09-02 03:57:21 +02:00
{
PlaySound(Buffer, Count); // play sound
RenderFrame(XBuf); // output video frame
GetJoy(); // check controller input
2008-09-02 03:57:21 +02:00
}
// Netplay
2008-09-02 03:57:21 +02:00
int FCEUD_SendData(void *data, uint32 len)
{
return 1;
}
int FCEUD_RecvData(void *data, uint32 len)
{
return 0;
}
void FCEUD_NetworkClose(void)
{
}
void FCEUD_NetplayText(uint8 *text)
{
}