snes9xgx/source/ngc/snes9xGX.h

106 lines
2.3 KiB
C
Raw Normal View History

/****************************************************************************
* Snes9x 1.51 Nintendo Wii/Gamecube Port
*
* softdev July 2006
* crunchy2 May 2007-July 2007
2008-09-23 06:13:33 +02:00
* Michniewski 2008
* Tantric September 2008
*
* snes9xGX.h
*
* This file controls overall program flow. Most things start and end here!
***************************************************************************/
#ifndef _SNES9XGX_H_
#define _SNES9XGX_H_
2009-03-11 18:28:37 +01:00
#include "FreeTypeGX.h"
#include "snes9x.h"
#include "filter.h"
2009-03-16 06:16:20 +01:00
#include "filelist.h"
#define APPNAME "Snes9x GX"
2009-05-01 04:44:52 +02:00
#define APPVERSION "4.0.4"
#define PREF_FILE_NAME "settings.xml"
#define NOTSILENT 0
#define SILENT 1
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-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,
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
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
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;
int videomode; // 0 - automatic, 1 - NTSC (480i), 2 - Progressive (480p), 3 - PAL (50Hz), 4 - PAL (60Hz)
int render; // 0 - original, 1 - filtered, 2 - unfiltered
int FilterMethod; // convert to RenderFilter
2009-03-11 18:28:37 +01:00
int Controller;
int widescreen; // 0 - 4:3 aspect, 1 - 16:9 aspect
int xshift; // video output shift
int yshift;
2009-03-11 18:28:37 +01:00
int WiimoteOrientation;
int ExitAction;
int MusicVolume;
int SFXVolume;
int Rumble;
};
2009-03-11 18:28:37 +01:00
void ExitApp();
void ShutdownWii();
extern struct SGCSettings GCSettings;
extern int ScreenshotRequested;
extern int ConfigRequested;
extern int ShutdownRequested;
2009-03-11 18:28:37 +01:00
extern int ExitRequested;
extern char appPath[];
2009-03-11 18:28:37 +01:00
extern FreeTypeGX *fontSystem;
extern int timerstyle;
#endif