2015-05-24 04:55:12 +00:00
// Copyright 2010 Dolphin Emulator Project
2015-05-17 23:08:10 +00:00
// Licensed under GPLv2+
2014-07-29 17:14:25 +00:00
// Refer to the license.txt file included.
2014-02-10 18:54:46 +00:00
# pragma once
2010-11-15 09:54:07 +00:00
2014-02-22 22:36:30 +00:00
# include <cstddef>
2011-04-29 23:11:18 +00:00
# include <map>
2014-02-17 10:18:15 +00:00
# include <string>
# include <vector>
2014-07-29 17:14:25 +00:00
# include <wx/button.h>
2010-11-15 09:54:07 +00:00
# include <wx/checkbox.h>
2014-02-22 22:36:30 +00:00
# include <wx/choice.h>
# include <wx/dialog.h>
# include <wx/msgdlg.h>
# include <wx/radiobut.h>
2010-11-15 09:54:07 +00:00
# include <wx/spinctrl.h>
2014-02-19 01:56:29 +00:00
# include <wx/stattext.h>
2011-03-23 00:54:31 +00:00
2014-02-22 22:36:30 +00:00
# include "Common/CommonTypes.h"
# include "Common/SysConf.h"
2014-02-17 10:18:15 +00:00
# include "Core/ConfigManager.h"
2014-05-23 13:45:14 +00:00
# include "Core/Core.h"
2014-07-29 17:14:25 +00:00
# include "DolphinWX/PostProcessingConfigDiag.h"
2014-02-17 10:18:15 +00:00
# include "DolphinWX/WxUtils.h"
2014-07-29 17:14:25 +00:00
# include "VideoCommon/PostProcessing.h"
2014-02-22 22:36:30 +00:00
# include "VideoCommon/VideoBackendBase.h"
2014-02-17 10:18:15 +00:00
# include "VideoCommon/VideoConfig.h"
2011-06-02 19:32:34 +00:00
2014-02-22 22:36:30 +00:00
class wxBoxSizer ;
class wxControl ;
class wxPanel ;
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 :
2014-03-09 20:14:26 +00:00
SettingChoice ( wxWindow * parent , int & setting , const wxString & tooltip , int num = 0 , const wxString choices [ ] = nullptr , long style = 0 ) ;
2011-04-25 20:06:45 +00:00
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 )
{
2014-07-07 22:47:57 +00:00
bool do_switch = ! Core : : IsRunning ( ) ;
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'. " ) ,
2014-09-30 05:28:01 +00:00
_ ( " Warning " ) , wxYES_NO | wxNO_DEFAULT | wxICON_EXCLAMATION , wxWindow : : FindFocus ( ) ) ) ;
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 ;
2015-06-12 11:56:53 +00:00
SConfig : : GetInstance ( ) . m_strVideoBackend = g_video_backend - > GetName ( ) ;
2011-06-02 19:32:34 +00:00
g_video_backend - > ShowConfig ( GetParent ( ) ) ;
}
else
{
// Select current backend again
2013-02-28 08:39:06 +00:00
choice_backend - > SetStringSelection ( StrToWxStr ( g_video_backend - > GetName ( ) ) ) ;
2011-06-02 19:32:34 +00:00
}
}
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 ( ) ) ;
2015-06-12 11:56:53 +00:00
SConfig : : GetInstance ( ) . 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 ( ) ;
2015-01-25 21:27:17 +00:00
if ( sel )
2013-02-28 04:37:38 +00:00
vconfig . sPostProcessingShader = WxStrToStr ( ev . GetString ( ) ) ;
2011-04-25 20:06:45 +00:00
else
vconfig . sPostProcessingShader . clear ( ) ;
2011-06-02 19:32:34 +00:00
2014-07-29 16:47:56 +00:00
// Should we enable the configuration button?
PostProcessingShaderConfiguration postprocessing_shader ;
postprocessing_shader . LoadShader ( vconfig . sPostProcessingShader ) ;
2015-01-03 00:33:30 +00:00
button_config_pp - > Enable ( postprocessing_shader . HasOptions ( ) ) ;
2014-07-29 16:47:56 +00:00
ev . Skip ( ) ;
}
void Event_ConfigurePPShader ( wxCommandEvent & ev )
{
PostProcessingConfigDiag dialog ( this , vconfig . sPostProcessingShader ) ;
dialog . ShowModal ( ) ;
2011-04-25 20:06:45 +00:00
ev . Skip ( ) ;
}
2010-11-15 09:54:07 +00:00
2014-12-24 23:06:29 +00:00
void Event_StereoDepth ( wxCommandEvent & ev )
2014-10-30 22:29:56 +00:00
{
2014-12-21 13:06:16 +00:00
vconfig . iStereoDepth = ev . GetInt ( ) ;
2014-10-30 22:29:56 +00:00
ev . Skip ( ) ;
}
2014-12-24 23:06:29 +00:00
void Event_StereoConvergence ( wxCommandEvent & ev )
2014-10-30 22:29:56 +00:00
{
2014-11-24 10:50:35 +00:00
vconfig . iStereoConvergence = ev . GetInt ( ) ;
2014-10-30 22:29:56 +00:00
ev . Skip ( ) ;
}
2014-12-24 23:06:29 +00:00
void Event_StereoMode ( wxCommandEvent & ev )
{
2015-01-03 00:33:30 +00:00
if ( vconfig . backend_info . bSupportsPostProcessing )
2014-12-24 23:06:29 +00:00
{
// Anaglyph overrides post-processing shaders
2015-01-03 00:33:30 +00:00
choice_ppshader - > Clear ( ) ;
2014-12-24 23:06:29 +00:00
}
ev . Skip ( ) ;
}
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 ) ;
// XFB
virtual_xfb - > Enable ( vconfig . bUseXFB ) ;
real_xfb - > Enable ( vconfig . bUseXFB ) ;
2013-10-29 05:23:17 +00:00
2015-03-01 22:53:15 +00:00
// custom textures
cache_hires_textures - > Enable ( vconfig . bHiresTextures ) ;
2015-01-03 00:33:30 +00:00
// Repopulating the post-processing shaders can't be done from an event
if ( choice_ppshader & & choice_ppshader - > IsEmpty ( ) )
PopulatePostProcessingShaders ( ) ;
2014-09-03 07:35:23 +00:00
// Things which shouldn't be changed during emulation
if ( Core : : IsRunning ( ) )
{
choice_backend - > Disable ( ) ;
label_backend - > Disable ( ) ;
2015-01-11 05:17:29 +00:00
// D3D only
2014-09-03 07:35:23 +00:00
if ( vconfig . backend_info . Adapters . size ( ) )
{
choice_adapter - > Disable ( ) ;
label_adapter - > Disable ( ) ;
}
2014-09-21 20:05:51 +00:00
# ifndef __APPLE__
2015-01-11 05:17:29 +00:00
// This isn't supported on OS X.
2014-09-03 07:35:23 +00:00
choice_display_resolution - > Disable ( ) ;
label_display_resolution - > Disable ( ) ;
# endif
progressive_scan_checkbox - > Disable ( ) ;
render_to_main_checkbox - > Disable ( ) ;
}
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 ) ;
2014-03-09 20:14:26 +00:00
SettingChoice * CreateChoice ( wxWindow * parent , int & setting , const wxString & description , int num = 0 , const wxString choices [ ] = nullptr , long style = 0 ) ;
2011-04-29 23:11:18 +00:00
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 ) ;
2015-01-03 00:33:30 +00:00
void PopulatePostProcessingShaders ( ) ;
2011-04-29 23:11:18 +00:00
2011-06-02 19:32:34 +00:00
wxChoice * choice_backend ;
2014-09-03 07:35:23 +00:00
wxChoice * choice_adapter ;
2011-06-02 19:32:34 +00:00
wxChoice * choice_display_resolution ;
2014-09-03 07:35:23 +00:00
wxStaticText * label_backend ;
wxStaticText * label_adapter ;
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
2014-09-03 07:35:23 +00:00
wxStaticText * label_display_resolution ;
2014-07-29 17:14:25 +00:00
wxButton * button_config_pp ;
2014-07-19 18:18:03 +00:00
SettingCheckBox * borderless_fullscreen ;
2014-09-03 07:35:23 +00:00
SettingCheckBox * render_to_main_checkbox ;
2011-03-21 19:57:31 +00:00
SettingRadioButton * virtual_xfb ;
SettingRadioButton * real_xfb ;
2015-03-01 22:53:15 +00:00
SettingCheckBox * cache_hires_textures ;
2014-09-03 07:35:23 +00:00
wxCheckBox * progressive_scan_checkbox ;
2014-10-31 14:53:08 +00:00
wxChoice * choice_ppshader ;
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
} ;