vbagx/source/ngc/vba.h

90 lines
2.2 KiB
C
Raw Normal View History

/****************************************************************************
2008-09-17 04:27:55 +02:00
* Visual Boy Advance GX
*
* Tantric September 2008
*
2008-09-17 04:27:55 +02:00
* vba.h
*
* 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_
#include <unistd.h>
2009-04-08 09:08:12 +02:00
#include "FreeTypeGX.h"
#include "filelist.h"
2008-12-24 08:52:35 +01:00
#define APPNAME "Visual Boy Advance GX"
2009-10-07 09:28:03 +02:00
#define APPVERSION "2.0.8"
2009-10-02 00:42:02 +02:00
#define APPFOLDER "vbagx"
#define PREF_FILE_NAME "settings.xml"
#define PAL_FILE_NAME "palettes.xml"
#define NOTSILENT 0
#define SILENT 1
2009-10-02 00:42:02 +02:00
const char pathPrefix[9][8] =
{ "", "sd:/", "usb:/", "dvd:/", "smb:/", "mca:/", "mcb:/", "carda:/", "cardb:/" };
enum {
2009-10-02 00:42:02 +02:00
DEVICE_AUTO,
DEVICE_SD,
DEVICE_USB,
DEVICE_DVD,
DEVICE_SMB,
DEVICE_MC_SLOTA,
DEVICE_MC_SLOTB,
DEVICE_SD_SLOTA,
DEVICE_SD_SLOTB
};
2008-11-12 08:53:25 +01:00
enum {
FILE_SRAM,
FILE_SNAPSHOT,
2009-10-02 00:42:02 +02:00
FILE_ROM
2008-11-12 08:53:25 +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-07-08 07:56:58 +02:00
char LoadFolder[MAXPATHLEN]; // Path to game files
char SaveFolder[MAXPATHLEN]; // Path to save files
char CheatFolder[MAXPATHLEN]; // Path to cheat files
2009-04-08 09:08:12 +02:00
int VerifySaves;
2008-12-18 19:58:30 +01: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
float ZoomLevel; // zoom amount
int videomode; // 0 - automatic, 1 - NTSC (480i), 2 - Progressive (480p), 3 - PAL (50Hz), 4 - PAL (60Hz)
int scaling; // 0 - default, 1 - partial stretch, 2 - stretch to fit, 3 - widescreen correction
2008-10-28 08:50:13 +01:00
int render; // 0 - original, 1 - filtered, 2 - unfiltered
2009-01-26 08:11:02 +01:00
int xshift; // video output shift
int yshift;
int colorize; // colorize Mono Gameboy games
int WiiControls; // Match Wii Game
int WiimoteOrientation;
2009-04-08 09:08:12 +02:00
int ExitAction;
int MusicVolume;
int SFXVolume;
int Rumble;
};
2009-04-08 09:08:12 +02:00
void ExitApp();
void ShutdownWii();
extern struct SGCSettings GCSettings;
extern int ScreenshotRequested;
2008-10-18 22:40:48 +02:00
extern int ConfigRequested;
extern int ShutdownRequested;
2009-04-08 09:08:12 +02:00
extern int ExitRequested;
extern char appPath[];
extern FreeTypeGX *fontSystem[];
#endif