mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-03 18:15:06 +01:00
2c268af0f9
*changed fat/ntfs/ext installer to use the header title as foldername instead of wiitdb title (this is the way it is in the wbfs managers) *Fixed language changing for wiitdb titles / coverdownload even without available .lang file which is loaded *Added reload of game titles on language change *Added check for valid config files. If config file is not valid it will not be used. Current valid configs are R1031 to all. (You configs will be reseted with this. If you want to save them, move them and merge them afterwards manually.) *Fixed possible crash on mounting *Changed default settings for device free space display to off, because fat32 partitions are very slow on that. Added a warning when on FAT partition and trying to enable this option. *Updated langauge files
128 lines
3.6 KiB
C++
128 lines
3.6 KiB
C++
/****************************************************************************
|
|
* Copyright (C) 2010
|
|
* by Dimok
|
|
*
|
|
* This software is provided 'as-is', without any express or implied
|
|
* warranty. In no event will the authors be held liable for any
|
|
* damages arising from the use of this software.
|
|
*
|
|
* Permission is granted to anyone to use this software for any
|
|
* purpose, including commercial applications, and to alter it and
|
|
* redistribute it freely, subject to the following restrictions:
|
|
*
|
|
* 1. The origin of this software must not be misrepresented; you
|
|
* must not claim that you wrote the original software. If you use
|
|
* this software in a product, an acknowledgment in the product
|
|
* documentation would be appreciated but is not required.
|
|
*
|
|
* 2. Altered source versions must be plainly marked as such, and
|
|
* must not be misrepresented as being the original software.
|
|
*
|
|
* 3. This notice may not be removed or altered from any source
|
|
* distribution.
|
|
***************************************************************************/
|
|
#ifndef _CSETTINGS_H_
|
|
#define _CSETTINGS_H_
|
|
|
|
#include <string>
|
|
#include <stdio.h>
|
|
#include <gctypes.h>
|
|
#include "SettingsEnums.h"
|
|
|
|
class CSettings
|
|
{
|
|
public:
|
|
//!Constructor
|
|
CSettings();
|
|
//!Destructor
|
|
~CSettings();
|
|
//!Set Default Settings
|
|
void SetDefault();
|
|
//!Load Settings
|
|
bool Load();
|
|
//!Save Settings
|
|
bool Save();
|
|
//!Reset Settings
|
|
bool Reset();
|
|
//!Load a languagefile
|
|
//!\param language
|
|
bool LoadLanguage(const char *path, int language = -1);
|
|
|
|
/** Variables **/
|
|
char BootDevice[10];
|
|
char ConfigPath[80];
|
|
short videomode;
|
|
short language;
|
|
short ocarina;
|
|
short videopatch;
|
|
short sinfo;
|
|
short hddinfo;
|
|
short rumble;
|
|
short xflip;
|
|
int volume;
|
|
int sfxvolume;
|
|
int gamesoundvolume;
|
|
short tooltips;
|
|
char unlockCode[20];
|
|
short parentalcontrol;
|
|
short lockedgames;
|
|
short cios;
|
|
short quickboot;
|
|
short wsprompt;
|
|
short keyset;
|
|
short GameSort;
|
|
short wiilight;
|
|
short gameDisplay;
|
|
short patchcountrystrings;
|
|
short screensaver;
|
|
short partition;
|
|
short musicloopmode;
|
|
short widescreen;
|
|
short godmode;
|
|
char covers_path[100];
|
|
char covers2d_path[100];
|
|
char theme_path[100];
|
|
char theme[100];
|
|
char disc_path[100];
|
|
char titlestxt_path[100];
|
|
char language_path[100];
|
|
char languagefiles_path[100];
|
|
char ogg_path[250];
|
|
char dolpath[150];
|
|
char update_path[150];
|
|
char homebrewapps_path[150];
|
|
char Cheatcodespath[100];
|
|
char TxtCheatcodespath[100];
|
|
char BcaCodepath[100];
|
|
char WipCodepath[100];
|
|
short error002;
|
|
short titlesOverride; // db_titles
|
|
char db_url[200];
|
|
char db_language[20];
|
|
short db_JPtoEN;
|
|
short gridRows;
|
|
short autonetwork;
|
|
short discart;
|
|
short gamesound;
|
|
short marknewtitles;
|
|
short InstallToDir;
|
|
short GameSplit;
|
|
u32 InstallPartitions;
|
|
short beta_upgrades;
|
|
short PlaylogUpdate;
|
|
short ShowFreeSpace;
|
|
char returnTo[20];
|
|
protected:
|
|
bool ValidVersion(FILE * file);
|
|
bool SetSetting(char *name, char *value);
|
|
//!Find the config file in the default paths
|
|
bool FindConfig();
|
|
|
|
void ParseLine(char *line);
|
|
void TrimLine(char *dest, char *src, int size);
|
|
};
|
|
|
|
extern CSettings Settings;
|
|
|
|
#endif
|