2009-09-08 12:08:10 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
2010-05-03 14:08:02 +00:00
|
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-04-27 02:04:31 +00:00
|
|
|
#pragma once
|
|
|
|
|
2010-06-06 23:26:07 +00:00
|
|
|
#include "FixedPointTypes.h"
|
2010-06-07 08:56:28 +00:00
|
|
|
#include "Path.h"
|
2009-04-27 02:04:31 +00:00
|
|
|
#include <wx/config.h>
|
|
|
|
|
2010-06-06 23:26:07 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// IniInterface (abstract base class)
|
|
|
|
// --------------------------------------------------------------------------------------
|
2009-04-27 02:04:31 +00:00
|
|
|
// This is used as an interchangable interface for both loading and saving options from an
|
|
|
|
// ini/configuration file. The LoadSave code takes an IniInterface, and the interface
|
|
|
|
// implementation defines whether the options are read or written.
|
|
|
|
//
|
|
|
|
// See also: IniLoader, IniSaver
|
|
|
|
//
|
|
|
|
class IniInterface
|
|
|
|
{
|
|
|
|
protected:
|
2010-06-06 23:26:07 +00:00
|
|
|
wxConfigBase* m_Config;
|
2009-04-27 02:04:31 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
virtual ~IniInterface();
|
|
|
|
explicit IniInterface();
|
|
|
|
explicit IniInterface( wxConfigBase& config );
|
2010-06-06 23:26:07 +00:00
|
|
|
explicit IniInterface( wxConfigBase* config );
|
2009-04-27 02:04:31 +00:00
|
|
|
|
|
|
|
void SetPath( const wxString& path );
|
|
|
|
void Flush();
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2010-06-06 23:26:07 +00:00
|
|
|
wxConfigBase& GetConfig() { pxAssume( m_Config ); return *m_Config; }
|
|
|
|
bool IsOk() const { return m_Config != NULL; }
|
2009-07-04 20:53:05 +00:00
|
|
|
|
|
|
|
virtual bool IsLoading() const=0;
|
|
|
|
bool IsSaving() const { return !IsLoading(); }
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-04-27 02:04:31 +00:00
|
|
|
virtual void Entry( const wxString& var, wxString& value, const wxString& defvalue=wxString() )=0;
|
2009-07-04 20:53:05 +00:00
|
|
|
virtual void Entry( const wxString& var, wxDirName& value, const wxDirName& defvalue=wxDirName() )=0;
|
|
|
|
virtual void Entry( const wxString& var, wxFileName& value, const wxFileName& defvalue=wxFileName() )=0;
|
2009-04-27 02:04:31 +00:00
|
|
|
virtual void Entry( const wxString& var, int& value, const int defvalue=0 )=0;
|
|
|
|
virtual void Entry( const wxString& var, uint& value, const uint defvalue=0 )=0;
|
2009-07-20 00:39:38 +00:00
|
|
|
virtual void Entry( const wxString& var, bool& value, const bool defvalue=false )=0;
|
|
|
|
|
|
|
|
// This special form of Entry is provided for bitfields, which cannot be passed by reference.
|
2009-07-23 02:11:45 +00:00
|
|
|
virtual bool EntryBitBool( const wxString& var, bool value, const bool defvalue=false )=0;
|
|
|
|
virtual int EntryBitfield( const wxString& var, int value, const int defvalue=0 )=0;
|
2009-04-27 02:04:31 +00:00
|
|
|
|
2009-12-03 15:51:39 +00:00
|
|
|
virtual void Entry( const wxString& var, Fixed100& value, const Fixed100& defvalue=Fixed100() )=0;
|
|
|
|
|
2009-04-27 02:04:31 +00:00
|
|
|
virtual void Entry( const wxString& var, wxPoint& value, const wxPoint& defvalue=wxDefaultPosition )=0;
|
|
|
|
virtual void Entry( const wxString& var, wxSize& value, const wxSize& defvalue=wxDefaultSize )=0;
|
|
|
|
virtual void Entry( const wxString& var, wxRect& value, const wxRect& defvalue=wxDefaultRect )=0;
|
|
|
|
|
2009-07-23 02:11:45 +00:00
|
|
|
template< typename T >
|
|
|
|
void EnumEntry( const wxString& var, T& value, const wxChar* const* enumArray=NULL, const T defvalue=(T)0 )
|
|
|
|
{
|
|
|
|
int tstore = (int)value;
|
|
|
|
if( enumArray == NULL )
|
|
|
|
Entry( var, tstore, defvalue );
|
|
|
|
else
|
|
|
|
_EnumEntry( var, tstore, enumArray, defvalue );
|
|
|
|
value = (T)tstore;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2009-11-04 09:30:22 +00:00
|
|
|
virtual void _EnumEntry( const wxString& var, int& value, const wxChar* const* enumArray, int defvalue )=0;
|
2009-04-27 02:04:31 +00:00
|
|
|
};
|
|
|
|
|
2010-06-06 23:26:07 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// IniScopedGroup
|
|
|
|
// --------------------------------------------------------------------------------------
|
2009-08-21 04:44:47 +00:00
|
|
|
class IniScopedGroup
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
IniInterface& m_mom;
|
|
|
|
|
|
|
|
public:
|
|
|
|
IniScopedGroup( IniInterface& mommy, const wxString& group );
|
|
|
|
virtual ~IniScopedGroup();
|
|
|
|
};
|
|
|
|
|
2010-06-06 23:26:07 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// IniLoader
|
|
|
|
// --------------------------------------------------------------------------------------
|
2009-04-27 02:04:31 +00:00
|
|
|
// Implementation of the IniInterface base class, which maps ini actions to loading from
|
|
|
|
// an ini source file.
|
|
|
|
//
|
|
|
|
// See also: IniInterface
|
|
|
|
//
|
|
|
|
class IniLoader : public IniInterface
|
|
|
|
{
|
|
|
|
public:
|
2010-01-08 07:11:33 +00:00
|
|
|
virtual ~IniLoader() throw();
|
2009-04-27 02:04:31 +00:00
|
|
|
explicit IniLoader();
|
|
|
|
explicit IniLoader( wxConfigBase& config );
|
2010-06-06 23:26:07 +00:00
|
|
|
explicit IniLoader( wxConfigBase* config );
|
2009-04-27 02:04:31 +00:00
|
|
|
|
2009-07-04 20:53:05 +00:00
|
|
|
bool IsLoading() const { return true; }
|
|
|
|
|
2009-07-20 00:39:38 +00:00
|
|
|
void Entry( const wxString& var, wxString& value, const wxString& defvalue=wxEmptyString );
|
2009-07-04 20:53:05 +00:00
|
|
|
void Entry( const wxString& var, wxDirName& value, const wxDirName& defvalue=wxDirName() );
|
|
|
|
void Entry( const wxString& var, wxFileName& value, const wxFileName& defvalue=wxFileName() );
|
2009-04-27 02:04:31 +00:00
|
|
|
void Entry( const wxString& var, int& value, const int defvalue=0 );
|
|
|
|
void Entry( const wxString& var, uint& value, const uint defvalue=0 );
|
|
|
|
void Entry( const wxString& var, bool& value, const bool defvalue=false );
|
|
|
|
|
2009-07-23 02:11:45 +00:00
|
|
|
bool EntryBitBool( const wxString& var, bool value, const bool defvalue=false );
|
|
|
|
int EntryBitfield( const wxString& var, int value, const int defvalue=0 );
|
2009-07-20 00:39:38 +00:00
|
|
|
|
2009-12-03 15:51:39 +00:00
|
|
|
void Entry( const wxString& var, Fixed100& value, const Fixed100& defvalue=Fixed100() );
|
|
|
|
|
2009-04-27 02:04:31 +00:00
|
|
|
void Entry( const wxString& var, wxPoint& value, const wxPoint& defvalue=wxDefaultPosition );
|
|
|
|
void Entry( const wxString& var, wxSize& value, const wxSize& defvalue=wxDefaultSize );
|
|
|
|
void Entry( const wxString& var, wxRect& value, const wxRect& defvalue=wxDefaultRect );
|
|
|
|
|
2009-07-23 02:11:45 +00:00
|
|
|
protected:
|
2009-11-04 09:30:22 +00:00
|
|
|
void _EnumEntry( const wxString& var, int& value, const wxChar* const* enumArray, int defvalue );
|
2009-04-27 02:04:31 +00:00
|
|
|
};
|
|
|
|
|
2010-06-06 23:26:07 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// IniSaver
|
|
|
|
// --------------------------------------------------------------------------------------
|
2009-04-27 02:04:31 +00:00
|
|
|
// Implementation of the IniInterface base class, which maps ini actions to saving to
|
|
|
|
// an ini dest file.
|
|
|
|
//
|
|
|
|
// See also: IniInterface
|
|
|
|
//
|
|
|
|
class IniSaver : public IniInterface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~IniSaver();
|
|
|
|
explicit IniSaver();
|
|
|
|
explicit IniSaver( wxConfigBase& config );
|
2010-06-06 23:26:07 +00:00
|
|
|
explicit IniSaver( wxConfigBase* config );
|
2009-04-27 02:04:31 +00:00
|
|
|
|
2009-07-04 20:53:05 +00:00
|
|
|
bool IsLoading() const { return false; }
|
|
|
|
|
2009-04-27 02:04:31 +00:00
|
|
|
void Entry( const wxString& var, wxString& value, const wxString& defvalue=wxString() );
|
2009-07-04 20:53:05 +00:00
|
|
|
void Entry( const wxString& var, wxDirName& value, const wxDirName& defvalue=wxDirName() );
|
|
|
|
void Entry( const wxString& var, wxFileName& value, const wxFileName& defvalue=wxFileName() );
|
2009-04-27 02:04:31 +00:00
|
|
|
void Entry( const wxString& var, int& value, const int defvalue=0 );
|
|
|
|
void Entry( const wxString& var, uint& value, const uint defvalue=0 );
|
|
|
|
void Entry( const wxString& var, bool& value, const bool defvalue=false );
|
|
|
|
|
2009-07-23 02:11:45 +00:00
|
|
|
bool EntryBitBool( const wxString& var, bool value, const bool defvalue=false );
|
|
|
|
int EntryBitfield( const wxString& var, int value, const int defvalue=0 );
|
2009-07-20 00:39:38 +00:00
|
|
|
|
2009-12-03 15:51:39 +00:00
|
|
|
void Entry( const wxString& var, Fixed100& value, const Fixed100& defvalue=Fixed100() );
|
|
|
|
|
2009-04-27 02:04:31 +00:00
|
|
|
void Entry( const wxString& var, wxPoint& value, const wxPoint& defvalue=wxDefaultPosition );
|
|
|
|
void Entry( const wxString& var, wxSize& value, const wxSize& defvalue=wxDefaultSize );
|
|
|
|
void Entry( const wxString& var, wxRect& value, const wxRect& defvalue=wxDefaultRect );
|
|
|
|
|
2009-07-23 02:11:45 +00:00
|
|
|
protected:
|
2009-11-04 09:30:22 +00:00
|
|
|
void _EnumEntry( const wxString& var, int& value, const wxChar* const* enumArray, int defvalue );
|
2009-04-27 02:04:31 +00:00
|
|
|
};
|
2009-07-07 20:53:32 +00:00
|
|
|
|
2009-08-04 08:21:10 +00:00
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// GCC Note: wxT() macro is required when using string token pasting. For some reason L generates
|
|
|
|
// syntax errors. >_<
|
|
|
|
//
|
2009-08-18 19:47:00 +00:00
|
|
|
#define IniEntry( varname ) ini.Entry( wxT(#varname), varname, defaults.varname )
|
|
|
|
#define IniBitfield( varname ) varname = ini.EntryBitfield( wxT(#varname), varname, defaults.varname )
|
|
|
|
#define IniBitBool( varname ) varname = ini.EntryBitBool( wxT(#varname), !!varname, defaults.varname )
|
2009-11-02 07:00:59 +00:00
|
|
|
|
|
|
|
#define IniBitfieldEx( varname, textname ) varname = ini.EntryBitfield( wxT(textname), varname, defaults.varname )
|
|
|
|
#define IniBitBoolEx( varname, textname ) varname = ini.EntryBitBool( wxT(textname), !!varname, defaults.varname )
|