2010-11-15 09:54:07 +00:00
# ifndef _CONFIG_DIAG_H_
# define _CONFIG_DIAG_H_
# include <vector>
# include <string>
2011-04-29 23:11:18 +00:00
# include <map>
2010-11-15 09:54:07 +00:00
2011-06-02 19:32:34 +00:00
# include "ConfigManager.h"
2010-11-15 09:54:07 +00:00
# include "VideoConfig.h"
# include <wx/wx.h>
# include <wx/textctrl.h>
# include <wx/button.h>
# include <wx/stattext.h>
# include <wx/combobox.h>
# include <wx/checkbox.h>
# include <wx/notebook.h>
# include <wx/panel.h>
# include <wx/spinctrl.h>
2011-03-23 00:54:31 +00:00
2011-06-02 19:32:34 +00:00
# include "MsgHandler.h"
2011-04-25 20:06:45 +00:00
template < typename W >
class BoolSetting : public W
2010-11-15 09:54:07 +00:00
{
2011-04-05 22:46:57 +00:00
public :
2011-04-25 20:06:45 +00:00
BoolSetting ( wxWindow * parent , const wxString & label , const wxString & tooltip , bool & setting , bool reverse = false , long style = 0 ) ;
2011-03-27 22:23:44 +00:00
2010-11-15 09:54:07 +00:00
void UpdateValue ( wxCommandEvent & ev )
{
m_setting = ( ev . GetInt ( ) ! = 0 ) ^ m_reverse ;
2010-11-21 14:47:28 +00:00
ev . Skip ( ) ;
2010-11-15 09:54:07 +00:00
}
private :
bool & m_setting ;
const bool m_reverse ;
} ;
2011-04-25 20:06:45 +00:00
typedef BoolSetting < wxCheckBox > SettingCheckBox ;
typedef BoolSetting < wxRadioButton > SettingRadioButton ;
2011-02-12 09:10:11 +00:00
template < typename T >
class IntegerSetting : public wxSpinCtrl
{
public :
IntegerSetting ( wxWindow * parent , const wxString & label , T & setting , int minVal , int maxVal , long style = 0 ) ;
void UpdateValue ( wxCommandEvent & ev )
{
m_setting = ev . GetInt ( ) ;
ev . Skip ( ) ;
}
private :
T & m_setting ;
} ;
typedef IntegerSetting < u32 > U32Setting ;
2011-04-25 20:06:45 +00:00
class SettingChoice : public wxChoice
{
public :
SettingChoice ( wxWindow * parent , int & setting , const wxString & tooltip , int num = 0 , const wxString choices [ ] = NULL , long style = 0 ) ;
void UpdateValue ( wxCommandEvent & ev ) ;
private :
int & m_setting ;
} ;
2011-02-20 23:42:21 +00:00
2010-11-15 09:54:07 +00:00
class VideoConfigDiag : public wxDialog
{
public :
2011-03-21 19:57:31 +00:00
VideoConfigDiag ( wxWindow * parent , const std : : string & title , const std : : string & ininame ) ;
2010-11-15 09:54:07 +00:00
2011-03-21 19:57:31 +00:00
protected :
2011-06-02 19:32:34 +00:00
void Event_Backend ( wxCommandEvent & ev )
{
VideoBackend * new_backend = g_available_video_backends [ ev . GetInt ( ) ] ;
if ( g_video_backend ! = new_backend )
{
bool do_switch = true ;
2011-06-04 04:34:44 +00:00
if ( new_backend - > GetName ( ) = = " Software Renderer " )
2011-06-02 19:32:34 +00:00
{
do_switch = ( wxYES = = wxMessageBox ( _ ( " Software rendering is an order of magnitude slower than using the other backends. \n It's only useful for debugging purposes. \n Do you really want to enable software rendering? If unsure, select 'No'. " ) ,
2011-06-04 04:34:44 +00:00
_ ( " Warning " ) , wxYES_NO | wxNO_DEFAULT | wxICON_EXCLAMATION , wxGetActiveWindow ( ) ) ) ;
2011-06-02 19:32:34 +00:00
}
if ( do_switch )
{
2011-06-04 04:34:44 +00:00
// TODO: Only reopen the dialog if the software backend is
// selected (make sure to reinitialize backend info)
2011-06-02 19:32:34 +00:00
// reopen the dialog
Close ( ) ;
g_video_backend = new_backend ;
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . m_strVideoBackend = g_video_backend - > GetName ( ) ;
g_video_backend - > ShowConfig ( GetParent ( ) ) ;
}
else
{
// Select current backend again
choice_backend - > SetStringSelection ( wxString : : FromAscii ( g_video_backend - > GetName ( ) . c_str ( ) ) ) ;
}
}
ev . Skip ( ) ;
}
2010-11-21 14:47:28 +00:00
void Event_Adapter ( wxCommandEvent & ev ) { ev . Skip ( ) ; } // TODO
2011-06-02 23:28:47 +00:00
void Event_DisplayResolution ( wxCommandEvent & ev ) ;
2011-06-02 19:32:34 +00:00
void Event_ProgressiveScan ( wxCommandEvent & ev )
{
SConfig : : GetInstance ( ) . m_SYSCONF - > SetData ( " IPL.PGS " , ev . GetInt ( ) ) ;
2012-12-23 06:53:15 +00:00
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bProgressive = ev . IsChecked ( ) ;
2011-06-02 19:32:34 +00:00
ev . Skip ( ) ;
}
2011-04-29 14:37:47 +00:00
void Event_Stc ( wxCommandEvent & ev )
{
int samples [ ] = { 0 , 512 , 128 } ;
2011-12-26 21:04:59 +00:00
vconfig . iSafeTextureCache_ColorSamples = samples [ ev . GetInt ( ) ] ;
2011-04-29 14:37:47 +00:00
ev . Skip ( ) ;
}
2011-04-25 20:06:45 +00:00
void Event_PPShader ( wxCommandEvent & ev )
{
const int sel = ev . GetInt ( ) ;
if ( sel )
vconfig . sPostProcessingShader = ev . GetString ( ) . mb_str ( ) ;
else
vconfig . sPostProcessingShader . clear ( ) ;
2011-06-02 19:32:34 +00:00
2011-04-25 20:06:45 +00:00
ev . Skip ( ) ;
}
2010-11-15 09:54:07 +00:00
2011-02-13 13:42:59 +00:00
void Event_ClickClose ( wxCommandEvent & ) ;
void Event_Close ( wxCloseEvent & ) ;
2011-04-25 20:06:45 +00:00
// Enables/disables UI elements depending on current config
void OnUpdateUI ( wxUpdateUIEvent & ev )
{
// Anti-aliasing
choice_aamode - > Enable ( vconfig . backend_info . AAModes . size ( ) > 1 ) ;
text_aamode - > Enable ( vconfig . backend_info . AAModes . size ( ) > 1 ) ;
// pixel lighting
pixel_lighting - > Enable ( vconfig . backend_info . bSupportsPixelLighting ) ;
// 3D vision
2011-06-02 19:32:34 +00:00
_3d_vision - > Enable ( vconfig . backend_info . bSupports3DVision ) ;
2011-04-25 20:06:45 +00:00
_3d_vision - > Show ( vconfig . backend_info . bSupports3DVision ) ;
2011-03-21 19:57:31 +00:00
2011-04-25 20:06:45 +00:00
// EFB copy
efbcopy_texture - > Enable ( vconfig . bEFBCopyEnable ) ;
efbcopy_ram - > Enable ( vconfig . bEFBCopyEnable ) ;
cache_efb_copies - > Enable ( vconfig . bEFBCopyEnable & & ! vconfig . bCopyEFBToTexture ) ;
2011-03-21 19:57:31 +00:00
2011-04-25 20:06:45 +00:00
// EFB format change emulation
emulate_efb_format_changes - > Enable ( vconfig . backend_info . bSupportsFormatReinterpretation ) ;
2011-02-13 13:42:59 +00:00
2011-04-25 20:06:45 +00:00
// XFB
virtual_xfb - > Enable ( vconfig . bUseXFB ) ;
real_xfb - > Enable ( vconfig . bUseXFB ) ;
2011-03-21 19:57:31 +00:00
2011-04-25 20:06:45 +00:00
ev . Skip ( ) ;
}
2011-03-21 19:57:31 +00:00
2011-04-29 23:11:18 +00:00
// Creates controls and connects their enter/leave window events to Evt_Enter/LeaveControl
SettingCheckBox * CreateCheckBox ( wxWindow * parent , const wxString & label , const wxString & description , bool & setting , bool reverse = false , long style = 0 ) ;
SettingChoice * CreateChoice ( wxWindow * parent , int & setting , const wxString & description , int num = 0 , const wxString choices [ ] = NULL , long style = 0 ) ;
SettingRadioButton * CreateRadioButton ( wxWindow * parent , const wxString & label , const wxString & description , bool & setting , bool reverse = false , long style = 0 ) ;
// Same as above but only connects enter/leave window events
wxControl * RegisterControl ( wxControl * const control , const wxString & description ) ;
void Evt_EnterControl ( wxMouseEvent & ev ) ;
void Evt_LeaveControl ( wxMouseEvent & ev ) ;
void CreateDescriptionArea ( wxPanel * const page , wxBoxSizer * const sizer ) ;
2011-06-02 19:32:34 +00:00
wxChoice * choice_backend ;
wxChoice * choice_display_resolution ;
2011-03-21 19:57:31 +00:00
wxStaticText * text_aamode ;
2011-04-25 20:06:45 +00:00
SettingChoice * choice_aamode ;
2011-03-21 19:57:31 +00:00
SettingCheckBox * pixel_lighting ;
2011-04-25 20:06:45 +00:00
SettingCheckBox * _3d_vision ;
2011-03-21 19:57:31 +00:00
SettingRadioButton * efbcopy_texture ;
SettingRadioButton * efbcopy_ram ;
SettingCheckBox * cache_efb_copies ;
2011-04-25 20:06:45 +00:00
SettingCheckBox * emulate_efb_format_changes ;
2011-03-21 19:57:31 +00:00
SettingRadioButton * virtual_xfb ;
SettingRadioButton * real_xfb ;
2011-04-29 23:11:18 +00:00
std : : map < wxWindow * , wxString > ctrl_descs ; // maps setting controls to their descriptions
std : : map < wxWindow * , wxStaticText * > desc_texts ; // maps dialog tabs (which are the parents of the setting controls) to their description text objects
2011-04-25 20:06:45 +00:00
VideoConfig & vconfig ;
2011-03-21 19:57:31 +00:00
std : : string ininame ;
2010-11-15 09:54:07 +00:00
} ;
# endif