mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 15:05:05 +01:00
90 lines
3.0 KiB
C++
90 lines
3.0 KiB
C++
/****************************************************************************
|
|
* FCE Ultra 0.98.12
|
|
* Nintendo Wii/Gamecube Port
|
|
*
|
|
* Tantric 2008-2009
|
|
*
|
|
* fceuconfig.cpp
|
|
*
|
|
* Configuration parameters
|
|
****************************************************************************/
|
|
|
|
#include <gccore.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "common.h"
|
|
#include "fceugx.h"
|
|
#include "pad.h"
|
|
|
|
struct SGCSettings GCSettings;
|
|
|
|
/****************************************************************************
|
|
* FixInvalidSettings
|
|
*
|
|
* Attempts to correct at least some invalid settings - the ones that
|
|
* might cause crashes
|
|
***************************************************************************/
|
|
void FixInvalidSettings()
|
|
{
|
|
if(!(GCSettings.ZoomLevel > 0.5 && GCSettings.ZoomLevel < 1.5))
|
|
GCSettings.ZoomLevel = 1.0;
|
|
if(!(GCSettings.xshift > -50 && GCSettings.xshift < 50))
|
|
GCSettings.xshift = 0;
|
|
if(!(GCSettings.yshift > -50 && GCSettings.yshift < 50))
|
|
GCSettings.yshift = 0;
|
|
if(!(GCSettings.MusicVolume >= 0 && GCSettings.MusicVolume <= 100))
|
|
GCSettings.MusicVolume = 40;
|
|
if(!(GCSettings.SFXVolume >= 0 && GCSettings.SFXVolume <= 100))
|
|
GCSettings.SFXVolume = 40;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* DefaultSettings
|
|
*
|
|
* Sets all the defaults!
|
|
***************************************************************************/
|
|
void
|
|
DefaultSettings ()
|
|
{
|
|
ResetControls(); // controller button mappings
|
|
|
|
GCSettings.currpal = 0;
|
|
GCSettings.timing = 0; // 0 - NTSC, 1 - PAL
|
|
GCSettings.Controller = CTRL_PAD2; // NES pad, Four Score, Zapper
|
|
GCSettings.crosshair = 1;
|
|
|
|
GCSettings.ZoomLevel = 1.0; // zoom amount
|
|
GCSettings.render = 2; // Unfiltered
|
|
GCSettings.widescreen = 0; // no aspect ratio correction
|
|
GCSettings.hideoverscan = 2; // hide both horizontal and vertical
|
|
|
|
GCSettings.xshift = 0; // horizontal video shift
|
|
GCSettings.yshift = 0; // vertical video shift
|
|
|
|
GCSettings.WiimoteOrientation = 0;
|
|
GCSettings.ExitAction = 0;
|
|
GCSettings.MusicVolume = 40;
|
|
GCSettings.SFXVolume = 40;
|
|
|
|
GCSettings.LoadMethod = METHOD_AUTO; // Auto, SD, DVD, USB, Network (SMB)
|
|
GCSettings.SaveMethod = METHOD_AUTO; // Auto, SD, Memory Card Slot A, Memory Card Slot B, USB, Network (SMB)
|
|
sprintf (GCSettings.LoadFolder,"fceugx/roms"); // Path to game files
|
|
sprintf (GCSettings.SaveFolder,"fceugx/saves"); // Path to save files
|
|
sprintf (GCSettings.CheatFolder,"fceugx/cheats"); // Path to cheat files
|
|
GCSettings.AutoLoad = 1; // Auto Load RAM
|
|
GCSettings.AutoSave = 1; // Auto Save RAM
|
|
|
|
// custom SMB settings
|
|
strncpy (GCSettings.smbip, "", 15); // IP Address of share server
|
|
strncpy (GCSettings.smbuser, "", 19); // Your share user
|
|
strncpy (GCSettings.smbpwd, "", 19); // Your share user password
|
|
strncpy (GCSettings.smbshare, "", 19); // Share name on server
|
|
|
|
GCSettings.smbip[15] = 0;
|
|
GCSettings.smbuser[19] = 0;
|
|
GCSettings.smbpwd[19] = 0;
|
|
GCSettings.smbshare[19] = 0;
|
|
}
|