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
|
|
|
*
|
2008-08-22 04:47:08 +02:00
|
|
|
* snes9xGX.h
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
|
|
#ifndef _SNES9XGX_H_
|
|
|
|
#define _SNES9XGX_H_
|
|
|
|
|
2009-03-11 18:28:37 +01:00
|
|
|
#include "FreeTypeGX.h"
|
2008-08-06 03:09:59 +02:00
|
|
|
#include "snes9x.h"
|
2009-01-30 08:25:30 +01:00
|
|
|
#include "filter.h"
|
2009-03-16 06:16:20 +01:00
|
|
|
#include "filelist.h"
|
2008-08-06 03:09:59 +02:00
|
|
|
|
2008-12-24 09:02:04 +01:00
|
|
|
#define APPNAME "Snes9x GX"
|
2009-05-01 04:44:52 +02:00
|
|
|
#define APPVERSION "4.0.4"
|
2008-12-24 09:02:04 +01:00
|
|
|
#define PREF_FILE_NAME "settings.xml"
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#define NOTSILENT 0
|
|
|
|
#define SILENT 1
|
|
|
|
|
2008-08-07 05:25:02 +02:00
|
|
|
enum {
|
|
|
|
METHOD_AUTO,
|
|
|
|
METHOD_SD,
|
|
|
|
METHOD_USB,
|
|
|
|
METHOD_DVD,
|
|
|
|
METHOD_SMB,
|
|
|
|
METHOD_MC_SLOTA,
|
2008-12-18 19:36:30 +01:00
|
|
|
METHOD_MC_SLOTB,
|
|
|
|
METHOD_SD_SLOTA,
|
|
|
|
METHOD_SD_SLOTB
|
2008-08-07 05:25:02 +02:00
|
|
|
};
|
|
|
|
|
2008-11-12 08:50:39 +01:00
|
|
|
enum {
|
|
|
|
FILE_SRAM,
|
|
|
|
FILE_SNAPSHOT,
|
2009-03-11 18:28:37 +01:00
|
|
|
FILE_ROM,
|
2008-11-12 08:50:39 +01:00
|
|
|
FILE_CHEAT,
|
2009-01-30 03:20:43 +01:00
|
|
|
FILE_PREF,
|
|
|
|
FILE_SCREEN
|
2008-11-12 08:50:39 +01:00
|
|
|
};
|
|
|
|
|
2009-03-11 18:28:37 +01:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
CTRL_PAD,
|
|
|
|
CTRL_MOUSE,
|
|
|
|
CTRL_SCOPE,
|
|
|
|
CTRL_JUST,
|
|
|
|
CTRL_PAD2,
|
|
|
|
CTRL_PAD4,
|
|
|
|
CTRL_LENGTH
|
|
|
|
};
|
|
|
|
|
2009-03-28 20:03:35 +01:00
|
|
|
const char ctrlName[6][24] =
|
|
|
|
{ "SNES Controller", "SNES Mouse", "Superscope", "Justifier", "SNES Controllers (2)", "SNES Controllers (4)" };
|
2009-03-11 18:28:37 +01:00
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
struct SGCSettings{
|
2008-08-20 09:58:55 +02:00
|
|
|
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:16:41 +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-18 19:36:30 +01:00
|
|
|
|
2008-08-10 05:14:39 +02:00
|
|
|
char smbip[16];
|
|
|
|
char smbuser[20];
|
|
|
|
char smbpwd[20];
|
|
|
|
char smbshare[20];
|
2008-12-18 19:36:30 +01:00
|
|
|
|
2008-10-24 07:11:01 +02:00
|
|
|
float ZoomLevel; // zoom amount
|
2008-08-20 09:58:55 +02:00
|
|
|
int VerifySaves;
|
2009-04-22 20:21:37 +02:00
|
|
|
int videomode; // 0 - automatic, 1 - NTSC (480i), 2 - Progressive (480p), 3 - PAL (50Hz), 4 - PAL (60Hz)
|
2008-09-11 04:23:48 +02:00
|
|
|
int render; // 0 - original, 1 - filtered, 2 - unfiltered
|
2009-04-22 20:21:37 +02:00
|
|
|
int FilterMethod; // convert to RenderFilter
|
2009-03-11 18:28:37 +01:00
|
|
|
int Controller;
|
2008-08-25 07:57:43 +02:00
|
|
|
int widescreen; // 0 - 4:3 aspect, 1 - 16:9 aspect
|
2009-04-22 20:21:37 +02:00
|
|
|
int xshift; // video output shift
|
2008-09-28 04:13:19 +02:00
|
|
|
int yshift;
|
2009-03-11 18:28:37 +01:00
|
|
|
int WiimoteOrientation;
|
|
|
|
int ExitAction;
|
|
|
|
int MusicVolume;
|
|
|
|
int SFXVolume;
|
2009-05-20 07:22:50 +02:00
|
|
|
int Rumble;
|
2008-08-06 03:09:59 +02:00
|
|
|
};
|
|
|
|
|
2009-03-11 18:28:37 +01:00
|
|
|
void ExitApp();
|
2008-11-17 01:08:51 +01:00
|
|
|
void ShutdownWii();
|
2008-08-06 03:09:59 +02:00
|
|
|
extern struct SGCSettings GCSettings;
|
2009-05-25 08:47:37 +02:00
|
|
|
extern int ScreenshotRequested;
|
2008-11-17 01:08:51 +01:00
|
|
|
extern int ConfigRequested;
|
|
|
|
extern int ShutdownRequested;
|
2009-03-11 18:28:37 +01:00
|
|
|
extern int ExitRequested;
|
2008-11-17 09:01:05 +01:00
|
|
|
extern char appPath[];
|
2009-03-11 18:28:37 +01:00
|
|
|
extern FreeTypeGX *fontSystem;
|
2009-05-25 08:47:37 +02:00
|
|
|
extern int timerstyle;
|
2008-08-06 03:09:59 +02:00
|
|
|
|
2008-08-07 05:25:02 +02:00
|
|
|
#endif
|