2008-09-16 07:42:21 +02:00
|
|
|
/****************************************************************************
|
2008-09-17 04:27:55 +02:00
|
|
|
* Visual Boy Advance GX
|
2008-09-16 07:42:21 +02:00
|
|
|
*
|
|
|
|
* Tantric September 2008
|
|
|
|
*
|
2008-09-17 04:27:55 +02:00
|
|
|
* vba.h
|
2008-09-16 07:42:21 +02:00
|
|
|
*
|
|
|
|
* This file controls overall program flow. Most things start and end here!
|
|
|
|
***************************************************************************/
|
2008-12-18 19:58:30 +01:00
|
|
|
#ifndef _VBAGX_H_
|
|
|
|
#define _VBAGX_H_
|
2008-09-16 07:42:21 +02:00
|
|
|
|
2008-12-24 08:52:35 +01:00
|
|
|
#define APPNAME "Visual Boy Advance GX"
|
2009-01-27 23:08:44 +01:00
|
|
|
#define APPVERSION "1.0.7"
|
2008-11-17 09:02:22 +01:00
|
|
|
#define PREF_FILE_NAME "settings.xml"
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
#define NOTSILENT 0
|
|
|
|
#define SILENT 1
|
|
|
|
|
|
|
|
enum {
|
|
|
|
METHOD_AUTO,
|
|
|
|
METHOD_SD,
|
|
|
|
METHOD_USB,
|
|
|
|
METHOD_DVD,
|
|
|
|
METHOD_SMB,
|
|
|
|
METHOD_MC_SLOTA,
|
2008-12-18 19:58:30 +01:00
|
|
|
METHOD_MC_SLOTB,
|
|
|
|
METHOD_SD_SLOTA,
|
|
|
|
METHOD_SD_SLOTB
|
2008-09-16 07:42:21 +02:00
|
|
|
};
|
|
|
|
|
2008-11-12 08:53:25 +01:00
|
|
|
enum {
|
|
|
|
FILE_ROM,
|
|
|
|
FILE_SRAM,
|
|
|
|
FILE_SNAPSHOT,
|
|
|
|
FILE_CHEAT,
|
|
|
|
FILE_PREF
|
|
|
|
};
|
|
|
|
|
2008-09-16 07:42:21 +02: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
|
|
|
|
char LoadFolder[200]; // Path to game files
|
|
|
|
char SaveFolder[200]; // Path to save files
|
|
|
|
char CheatFolder[200]; // Path to cheat files
|
2008-12-18 19:58:30 +01:00
|
|
|
|
2008-09-16 07:42:21 +02:00
|
|
|
char smbip[16];
|
|
|
|
char smbuser[20];
|
|
|
|
char smbpwd[20];
|
|
|
|
char smbshare[20];
|
2008-12-18 19:58:30 +01:00
|
|
|
|
2008-10-24 08:16:15 +02:00
|
|
|
int Zoom; // 0 - off, 1 - on
|
|
|
|
float ZoomLevel; // zoom amount
|
|
|
|
int widescreen;
|
2008-10-28 08:50:13 +01:00
|
|
|
int render; // 0 - original, 1 - filtered, 2 - unfiltered
|
2008-10-24 08:16:15 +02:00
|
|
|
int VerifySaves;
|
2009-01-26 08:11:02 +01:00
|
|
|
int xshift; // video output shift
|
|
|
|
int yshift;
|
2008-09-16 07:42:21 +02:00
|
|
|
};
|
|
|
|
|
2008-11-17 01:09:38 +01:00
|
|
|
void ExitToLoader();
|
|
|
|
void Reboot();
|
|
|
|
void ShutdownWii();
|
2008-09-16 07:42:21 +02:00
|
|
|
extern struct SGCSettings GCSettings;
|
2008-10-18 22:40:48 +02:00
|
|
|
extern int ConfigRequested;
|
2008-11-17 01:09:38 +01:00
|
|
|
extern int ShutdownRequested;
|
2008-11-17 09:02:22 +01:00
|
|
|
extern char appPath[];
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
#endif
|