2008-11-17 01:09:31 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* FCE Ultra 0.98.12
|
|
|
|
* Nintendo Wii/Gamecube Port
|
|
|
|
*
|
|
|
|
* Tantric September 2008
|
|
|
|
*
|
|
|
|
* fceugx.h
|
|
|
|
*
|
|
|
|
* This file controls overall program flow. Most things start and end here!
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _FCEUGX_H_
|
|
|
|
#define _FCEUGX_H_
|
|
|
|
|
2008-12-24 08:58:23 +01:00
|
|
|
#define APPNAME "FCE Ultra GX"
|
2009-03-28 20:33:14 +01:00
|
|
|
#define APPVERSION "3.0.0"
|
2008-12-24 08:58:23 +01:00
|
|
|
#define PREF_FILE_NAME "settings.xml"
|
2008-11-17 01:09:31 +01:00
|
|
|
|
|
|
|
#define NOTSILENT 0
|
|
|
|
#define SILENT 1
|
|
|
|
|
|
|
|
enum {
|
|
|
|
METHOD_AUTO,
|
|
|
|
METHOD_SD,
|
|
|
|
METHOD_USB,
|
|
|
|
METHOD_DVD,
|
|
|
|
METHOD_SMB,
|
|
|
|
METHOD_MC_SLOTA,
|
2008-12-19 23:04:55 +01:00
|
|
|
METHOD_MC_SLOTB,
|
|
|
|
METHOD_SD_SLOTA,
|
|
|
|
METHOD_SD_SLOTB
|
2008-11-17 01:09:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
FILE_ROM,
|
|
|
|
FILE_RAM,
|
|
|
|
FILE_STATE,
|
|
|
|
FILE_FDSBIOS,
|
|
|
|
FILE_CHEAT,
|
|
|
|
FILE_PREF
|
|
|
|
};
|
|
|
|
|
2009-03-28 18:23:08 +01:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
CTRL_PAD,
|
|
|
|
CTRL_ZAPPER,
|
|
|
|
CTRL_PAD2,
|
|
|
|
CTRL_PAD4,
|
|
|
|
CTRL_LENGTH
|
|
|
|
};
|
|
|
|
|
|
|
|
const char ctrlName[6][20] =
|
|
|
|
{ "NES Controller", "NES Zapper", "NES Controllers (2)", "NES Controllers (4)" };
|
|
|
|
|
2008-11-17 01:09:31 +01:00
|
|
|
struct SGCSettings{
|
|
|
|
int AutoLoad;
|
|
|
|
int AutoSave;
|
|
|
|
int LoadMethod; // For ROMS: Auto, SD, DVD, USB, Network (SMB)
|
|
|
|
int SaveMethod; // For SRAM, Freeze, Prefs: Auto, SD, Memory Card Slot A, Memory Card Slot B, USB, SMB
|
2009-03-30 10:22:55 +02:00
|
|
|
char LoadFolder[256]; // Path to game files
|
|
|
|
char SaveFolder[256]; // Path to save files
|
|
|
|
char CheatFolder[256]; // Path to cheat files
|
2008-12-19 23:04:55 +01:00
|
|
|
|
2008-11-17 01:09:31 +01:00
|
|
|
char smbip[16];
|
|
|
|
char smbuser[20];
|
|
|
|
char smbpwd[20];
|
|
|
|
char smbshare[20];
|
2008-12-19 23:04:55 +01:00
|
|
|
|
2008-11-17 01:09:31 +01:00
|
|
|
float ZoomLevel; // zoom amount
|
|
|
|
int VerifySaves;
|
|
|
|
int render; // 0 - original, 1 - filtered, 2 - unfiltered
|
|
|
|
int widescreen;
|
|
|
|
int hideoverscan;
|
|
|
|
int currpal;
|
|
|
|
int timing;
|
2009-03-28 18:23:08 +01:00
|
|
|
int Controller;
|
2008-11-17 01:09:31 +01:00
|
|
|
int crosshair;
|
2009-01-26 08:10:20 +01:00
|
|
|
int xshift; // video output shift
|
|
|
|
int yshift;
|
2009-03-28 18:23:08 +01:00
|
|
|
int WiimoteOrientation;
|
|
|
|
int ExitAction;
|
|
|
|
int MusicVolume;
|
|
|
|
int SFXVolume;
|
2008-11-17 01:09:31 +01:00
|
|
|
};
|
|
|
|
|
2009-03-28 18:23:08 +01:00
|
|
|
void ExitApp();
|
2008-11-17 01:09:31 +01:00
|
|
|
void ShutdownWii();
|
|
|
|
extern struct SGCSettings GCSettings;
|
|
|
|
extern int ConfigRequested;
|
|
|
|
extern int ShutdownRequested;
|
2009-03-28 18:23:08 +01:00
|
|
|
extern int ExitRequested;
|
2008-11-17 08:59:24 +01:00
|
|
|
extern char appPath[];
|
2008-11-17 01:09:31 +01:00
|
|
|
extern int frameskip;
|
|
|
|
|
|
|
|
#endif
|