2009-07-28 21:32:10 +00:00
// Copyright (C) 2003 Dolphin Project.
2008-12-08 05:30:24 +00:00
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 2.0.
// This program 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 2.0 for more details.
// A copy of the GPL 2.0 should have been included with the program.
// If not, see http://www.gnu.org/licenses/
// Official SVN repository and contact information can be found at
// http://code.google.com/p/dolphin-emu/
2009-01-04 21:53:41 +00:00
# include <string> // System
2008-12-08 05:30:24 +00:00
# include <vector>
2009-01-04 21:53:41 +00:00
# include "Core.h" // Core
2009-02-28 21:30:43 +00:00
# include "HW/EXI.h"
2009-03-02 04:02:09 +00:00
# include "HW/SI.h"
2008-12-08 05:30:24 +00:00
2009-01-04 21:53:41 +00:00
# include "Globals.h" // Local
2008-12-08 05:30:24 +00:00
# include "ConfigMain.h"
# include "PluginManager.h"
2009-01-17 23:41:21 +00:00
# include "ConfigManager.h"
2009-09-14 06:26:49 +00:00
# include "SysConf.h"
2008-12-09 05:37:15 +00:00
# include "Frame.h"
2010-04-12 01:33:10 +00:00
# include "HotkeyDlg.h"
2008-12-09 05:37:15 +00:00
extern CFrame * main_frame ;
2008-12-08 05:30:24 +00:00
2009-10-19 15:14:48 +00:00
// Strings for Device Selections
# define DEV_NONE_STR "<Nothing>"
# define DEV_DUMMY_STR "Dummy"
# define SIDEV_STDCONT_STR "Standard Controller"
# define SIDEV_GBA_STR "GBA"
# define SIDEV_AM_BB_STR "AM-Baseboard"
# define EXIDEV_MEMCARD_STR "Memory Card"
# define EXIDEV_MIC_STR "Mic"
# define EXIDEV_BBA_STR "BBA"
# define EXIDEV_AM_BB_STR "AM-Baseboard"
2008-12-08 05:30:24 +00:00
BEGIN_EVENT_TABLE ( CConfigMain , wxDialog )
EVT_CLOSE ( CConfigMain : : OnClose )
2009-02-02 22:29:33 +00:00
EVT_BUTTON ( wxID_CLOSE , CConfigMain : : CloseClick )
2009-01-04 21:29:23 +00:00
2009-01-04 21:53:41 +00:00
EVT_CHECKBOX ( ID_INTERFACE_CONFIRMSTOP , CConfigMain : : CoreSettingsChanged )
2009-03-18 22:05:31 +00:00
EVT_CHECKBOX ( ID_INTERFACE_USEPANICHANDLERS , CConfigMain : : CoreSettingsChanged )
2010-04-12 01:33:10 +00:00
EVT_CHECKBOX ( ID_DISPLAY_HIDECURSOR , CConfigMain : : CoreSettingsChanged )
EVT_CHECKBOX ( ID_DISPLAY_FULLSCREEN , CConfigMain : : CoreSettingsChanged )
EVT_CHECKBOX ( ID_DISPLAY_RENDERTOMAIN , CConfigMain : : CoreSettingsChanged )
2009-01-04 21:53:41 +00:00
EVT_RADIOBOX ( ID_INTERFACE_THEME , CConfigMain : : CoreSettingsChanged )
2009-02-02 22:29:33 +00:00
EVT_CHOICE ( ID_INTERFACE_LANG , CConfigMain : : CoreSettingsChanged )
2010-04-12 01:33:10 +00:00
EVT_BUTTON ( ID_HOTKEY_CONFIG , CConfigMain : : CoreSettingsChanged )
2009-01-22 07:42:17 +00:00
2010-01-16 19:00:09 +00:00
EVT_CHECKBOX ( ID_ALWAYS_HLE_BS2 , CConfigMain : : CoreSettingsChanged )
2009-10-13 04:45:11 +00:00
EVT_RADIOBUTTON ( ID_RADIOJIT , CConfigMain : : CoreSettingsChanged )
2010-01-19 19:28:27 +00:00
EVT_RADIOBUTTON ( ID_RADIOJITIL , CConfigMain : : CoreSettingsChanged )
2009-10-13 04:45:11 +00:00
EVT_RADIOBUTTON ( ID_RADIOINT , CConfigMain : : CoreSettingsChanged )
2009-10-23 15:26:35 +00:00
EVT_CHECKBOX ( ID_CPUTHREAD , CConfigMain : : CoreSettingsChanged )
2009-04-08 20:26:33 +00:00
EVT_CHECKBOX ( ID_DSPTHREAD , CConfigMain : : CoreSettingsChanged )
2008-12-08 05:30:24 +00:00
EVT_CHECKBOX ( ID_LOCKTHREADS , CConfigMain : : CoreSettingsChanged )
EVT_CHECKBOX ( ID_IDLESKIP , CConfigMain : : CoreSettingsChanged )
EVT_CHECKBOX ( ID_ENABLECHEATS , CConfigMain : : CoreSettingsChanged )
2009-06-18 11:23:37 +00:00
EVT_CHOICE ( ID_FRAMELIMIT , CConfigMain : : CoreSettingsChanged )
2009-01-14 16:36:43 +00:00
2009-01-04 21:29:23 +00:00
EVT_CHOICE ( ID_GC_SRAM_LNG , CConfigMain : : GCSettingsChanged )
2009-02-02 22:29:33 +00:00
EVT_CHOICE ( ID_GC_EXIDEVICE_SLOTA , CConfigMain : : GCSettingsChanged )
EVT_BUTTON ( ID_GC_EXIDEVICE_SLOTA_PATH , CConfigMain : : GCSettingsChanged )
EVT_CHOICE ( ID_GC_EXIDEVICE_SLOTB , CConfigMain : : GCSettingsChanged )
EVT_BUTTON ( ID_GC_EXIDEVICE_SLOTB_PATH , CConfigMain : : GCSettingsChanged )
EVT_CHOICE ( ID_GC_EXIDEVICE_SP1 , CConfigMain : : GCSettingsChanged )
EVT_CHOICE ( ID_GC_SIDEVICE0 , CConfigMain : : GCSettingsChanged )
EVT_CHOICE ( ID_GC_SIDEVICE1 , CConfigMain : : GCSettingsChanged )
EVT_CHOICE ( ID_GC_SIDEVICE2 , CConfigMain : : GCSettingsChanged )
EVT_CHOICE ( ID_GC_SIDEVICE3 , CConfigMain : : GCSettingsChanged )
2009-01-04 21:29:23 +00:00
2008-12-08 05:30:24 +00:00
EVT_CHOICE ( ID_WII_BT_BAR , CConfigMain : : WiiSettingsChanged )
EVT_CHECKBOX ( ID_WII_IPL_SSV , CConfigMain : : WiiSettingsChanged )
EVT_CHECKBOX ( ID_WII_IPL_PGS , CConfigMain : : WiiSettingsChanged )
EVT_CHECKBOX ( ID_WII_IPL_E60 , CConfigMain : : WiiSettingsChanged )
EVT_CHOICE ( ID_WII_IPL_AR , CConfigMain : : WiiSettingsChanged )
EVT_CHOICE ( ID_WII_IPL_LNG , CConfigMain : : WiiSettingsChanged )
2010-01-11 11:56:17 +00:00
EVT_CHECKBOX ( ID_WII_SD_CARD , CConfigMain : : WiiSettingsChanged )
EVT_CHECKBOX ( ID_WII_KEYBOARD , CConfigMain : : WiiSettingsChanged )
2008-12-09 05:37:15 +00:00
2008-12-08 05:30:24 +00:00
EVT_LISTBOX ( ID_ISOPATHS , CConfigMain : : ISOPathsSelectionChanged )
EVT_BUTTON ( ID_ADDISOPATH , CConfigMain : : AddRemoveISOPaths )
EVT_BUTTON ( ID_REMOVEISOPATH , CConfigMain : : AddRemoveISOPaths )
2009-04-05 06:46:18 +00:00
EVT_CHECKBOX ( ID_RECERSIVEISOPATH , CConfigMain : : RecursiveDirectoryChanged )
2008-12-08 05:30:24 +00:00
EVT_FILEPICKER_CHANGED ( ID_DEFAULTISO , CConfigMain : : DefaultISOChanged )
EVT_DIRPICKER_CHANGED ( ID_DVDROOT , CConfigMain : : DVDRootChanged )
2009-12-10 09:16:10 +00:00
EVT_FILEPICKER_CHANGED ( ID_APPLOADERPATH , CConfigMain : : ApploaderPathChanged )
2009-01-14 16:36:43 +00:00
2008-12-08 05:30:24 +00:00
EVT_CHOICE ( ID_GRAPHIC_CB , CConfigMain : : OnSelectionChanged )
EVT_BUTTON ( ID_GRAPHIC_CONFIG , CConfigMain : : OnConfig )
EVT_CHOICE ( ID_DSP_CB , CConfigMain : : OnSelectionChanged )
EVT_BUTTON ( ID_DSP_CONFIG , CConfigMain : : OnConfig )
EVT_CHOICE ( ID_PAD_CB , CConfigMain : : OnSelectionChanged )
EVT_BUTTON ( ID_PAD_CONFIG , CConfigMain : : OnConfig )
EVT_CHOICE ( ID_WIIMOTE_CB , CConfigMain : : OnSelectionChanged )
EVT_BUTTON ( ID_WIIMOTE_CONFIG , CConfigMain : : OnConfig )
END_EVENT_TABLE ( )
2009-01-04 21:53:41 +00:00
2008-12-08 05:30:24 +00:00
CConfigMain : : CConfigMain ( wxWindow * parent , wxWindowID id , const wxString & title , const wxPoint & position , const wxSize & size , long style )
: wxDialog ( parent , id , title , position , size , style )
{
2009-01-04 21:53:41 +00:00
// Control refreshing of the ISOs list
2008-12-08 05:30:24 +00:00
bRefreshList = false ;
2009-02-03 15:03:34 +00:00
2008-12-08 05:30:24 +00:00
CreateGUIControls ( ) ;
2009-01-04 21:53:41 +00:00
// Update selected ISO paths
2008-12-08 05:30:24 +00:00
for ( u32 i = 0 ; i < SConfig : : GetInstance ( ) . m_ISOFolder . size ( ) ; i + + )
{
2009-12-29 17:34:14 +00:00
ISOPaths - > Append ( wxString ( SConfig : : GetInstance ( ) . m_ISOFolder [ i ] . c_str ( ) , * wxConvCurrent ) ) ;
2008-12-08 05:30:24 +00:00
}
}
CConfigMain : : ~ CConfigMain ( )
{
}
2009-01-04 21:53:41 +00:00
2009-02-02 22:29:33 +00:00
// Used to restrict changing of some options while emulator is running
2009-01-04 21:53:41 +00:00
void CConfigMain : : UpdateGUI ( )
{
if ( Core : : GetState ( ) ! = Core : : CORE_UNINITIALIZED )
{
2009-01-15 06:48:15 +00:00
// Disable the Core stuff on GeneralPage
2009-10-11 16:16:18 +00:00
AlwaysHLE_BS2 - > Disable ( ) ;
2009-10-13 04:45:11 +00:00
m_RadioJIT - > Disable ( ) ;
2010-01-20 07:47:41 +00:00
m_RadioJITIL - > Disable ( ) ;
2009-10-13 04:45:11 +00:00
m_RadioInt - > Disable ( ) ;
2009-10-23 15:26:35 +00:00
CPUThread - > Disable ( ) ;
2009-04-16 05:29:45 +00:00
DSPThread - > Disable ( ) ;
2009-01-15 06:48:15 +00:00
LockThreads - > Disable ( ) ;
SkipIdle - > Disable ( ) ;
EnableCheats - > Disable ( ) ;
2010-04-12 01:33:10 +00:00
RenderToMain - > Disable ( ) ;
2009-04-16 05:29:45 +00:00
2009-02-02 22:29:33 +00:00
GCSystemLang - > Disable ( ) ;
2009-04-16 05:29:45 +00:00
2010-01-11 11:56:17 +00:00
WiiSensBarPos - > Disable ( ) ;
WiiScreenSaver - > Disable ( ) ;
WiiProgressiveScan - > Disable ( ) ;
WiiEuRGB60 - > Disable ( ) ;
WiiAspectRatio - > Disable ( ) ;
WiiSystemLang - > Disable ( ) ;
2009-04-16 05:29:45 +00:00
2009-01-04 21:53:41 +00:00
PathsPage - > Disable ( ) ;
2009-04-16 05:29:45 +00:00
GraphicSelection - > Disable ( ) ;
DSPSelection - > Disable ( ) ;
PADSelection - > Disable ( ) ;
WiimoteSelection - > Disable ( ) ;
2009-01-04 21:53:41 +00:00
}
}
2008-12-08 05:30:24 +00:00
2010-02-06 16:20:54 +00:00
void CConfigMain : : InitializeGUILists ( )
2008-12-08 05:30:24 +00:00
{
2009-01-22 07:42:17 +00:00
// Deal with all the language arrayStrings here
// GC
arrayStringFor_GCSystemLang . Add ( wxT ( " English " ) ) ;
arrayStringFor_GCSystemLang . Add ( wxT ( " German " ) ) ;
arrayStringFor_GCSystemLang . Add ( wxT ( " French " ) ) ;
arrayStringFor_GCSystemLang . Add ( wxT ( " Spanish " ) ) ;
arrayStringFor_GCSystemLang . Add ( wxT ( " Italian " ) ) ;
arrayStringFor_GCSystemLang . Add ( wxT ( " Dutch " ) ) ;
// Wii
arrayStringFor_WiiSystemLang = arrayStringFor_GCSystemLang ;
arrayStringFor_WiiSystemLang . Insert ( wxT ( " Japanese " ) , 0 ) ;
2009-05-07 21:16:52 +00:00
arrayStringFor_WiiSystemLang . Add ( wxT ( " Simplified Chinese " ) ) ;
arrayStringFor_WiiSystemLang . Add ( wxT ( " Traditional Chinese " ) ) ;
arrayStringFor_WiiSystemLang . Add ( wxT ( " Korean " ) ) ;
2009-01-22 07:42:17 +00:00
// GUI
arrayStringFor_InterfaceLang = arrayStringFor_GCSystemLang ;
2010-02-06 16:20:54 +00:00
2009-06-09 21:27:45 +00:00
// Framelimit
2010-01-08 21:57:31 +00:00
arrayStringFor_Framelimit . Add ( wxT ( " Off " ) ) ;
arrayStringFor_Framelimit . Add ( wxT ( " Auto " ) ) ;
2010-01-19 19:28:27 +00:00
for ( int i = 20 ; i < = 120 ; i + = 10 ) // from 20 to 120
2010-01-08 21:57:31 +00:00
arrayStringFor_Framelimit . Add ( wxString : : Format ( wxT ( " %i " ) , i ) ) ;
2010-02-06 16:20:54 +00:00
// Themes
arrayStringFor_Themes . Add ( wxT ( " Boomy " ) ) ;
arrayStringFor_Themes . Add ( wxT ( " Vista " ) ) ;
arrayStringFor_Themes . Add ( wxT ( " X-Plastik " ) ) ;
arrayStringFor_Themes . Add ( wxT ( " KDE " ) ) ;
// Wii
// Sensorbar Position
arrayStringFor_WiiSensBarPos . Add ( wxT ( " Bottom " ) ) ;
arrayStringFor_WiiSensBarPos . Add ( wxT ( " Top " ) ) ;
// Aspect ratio
arrayStringFor_WiiAspectRatio . Add ( wxT ( " 4:3 " ) ) ;
arrayStringFor_WiiAspectRatio . Add ( wxT ( " 16:9 " ) ) ;
}
void CConfigMain : : InitializeGUIValues ( )
{
// General - Basic
CPUThread - > SetValue ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bCPUThread ) ;
SkipIdle - > SetValue ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bSkipIdle ) ;
EnableCheats - > SetValue ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bEnableCheats ) ;
Framelimit - > SetSelection ( SConfig : : GetInstance ( ) . m_Framelimit ) ;
// General - Advanced
AlwaysHLE_BS2 - > SetValue ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bHLE_BS2 ) ;
switch ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . iCPUCore )
{
case 0 : m_RadioInt - > SetValue ( true ) ; break ;
case 1 : m_RadioJIT - > SetValue ( true ) ; break ;
case 2 : m_RadioJITIL - > SetValue ( true ) ; break ;
}
LockThreads - > SetValue ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bLockThreads ) ;
DSPThread - > SetValue ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bDSPThread ) ;
// General - Interface
ConfirmStop - > SetValue ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bConfirmStop ) ;
UsePanicHandlers - > SetValue ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bUsePanicHandlers ) ;
Theme - > SetSelection ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . iTheme ) ;
// need redesign
InterfaceLang - > SetSelection ( SConfig : : GetInstance ( ) . m_InterfaceLanguage ) ;
2010-04-12 01:33:10 +00:00
// General - Display
Fullscreen - > SetValue ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bFullscreen ) ;
HideCursor - > SetValue ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bHideCursor ) ;
RenderToMain - > SetValue ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bRenderToMain ) ;
2010-02-06 16:20:54 +00:00
// Gamecube - IPL
GCSystemLang - > SetSelection ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . SelectedLanguage ) ;
// Gamecube - Devices
// Not here. They use some locals over in CreateGUIControls for initialization,
// which is why they are still there.
// Wii
WiiSensBarPos - > SetSelection ( SConfig : : GetInstance ( ) . m_SYSCONF - > GetData < u8 > ( " BT.BAR " ) ) ;
WiiScreenSaver - > SetValue ( ! ! SConfig : : GetInstance ( ) . m_SYSCONF - > GetData < u8 > ( " IPL.SSV " ) ) ;
WiiProgressiveScan - > SetValue ( ! ! SConfig : : GetInstance ( ) . m_SYSCONF - > GetData < u8 > ( " IPL.PGS " ) ) ;
WiiEuRGB60 - > SetValue ( ! ! SConfig : : GetInstance ( ) . m_SYSCONF - > GetData < u8 > ( " IPL.E60 " ) ) ;
WiiAspectRatio - > SetSelection ( SConfig : : GetInstance ( ) . m_SYSCONF - > GetData < u8 > ( " IPL.AR " ) ) ;
WiiSystemLang - > SetSelection ( SConfig : : GetInstance ( ) . m_SYSCONF - > GetData < u8 > ( " IPL.LNG " ) ) ;
WiiSDCard - > SetValue ( SConfig : : GetInstance ( ) . m_WiiSDCard ) ;
WiiKeyboard - > SetValue ( SConfig : : GetInstance ( ) . m_WiiKeyboard ) ;
// Paths
RecersiveISOPath - > SetValue ( SConfig : : GetInstance ( ) . m_RecursiveISOFolder ) ;
DefaultISO - > SetPath ( wxString ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . m_strDefaultGCM . c_str ( ) , * wxConvCurrent ) ) ;
DVDRoot - > SetPath ( wxString ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . m_strDVDRoot . c_str ( ) , * wxConvCurrent ) ) ;
ApploaderPath - > SetPath ( wxString ( SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . m_strApploader . c_str ( ) , * wxConvCurrent ) ) ;
// Plugins
FillChoiceBox ( GraphicSelection , PLUGIN_TYPE_VIDEO , SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . m_strVideoPlugin ) ;
FillChoiceBox ( DSPSelection , PLUGIN_TYPE_DSP , SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . m_strDSPPlugin ) ;
for ( int i = 0 ; i < MAXPADS ; i + + )
FillChoiceBox ( PADSelection , PLUGIN_TYPE_PAD , SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . m_strPadPlugin [ i ] ) ;
for ( int i = 0 ; i < MAXWIIMOTES ; i + + )
FillChoiceBox ( WiimoteSelection , PLUGIN_TYPE_WIIMOTE , SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . m_strWiimotePlugin [ i ] ) ;
}
void CConfigMain : : InitializeGUITooltips ( )
{
// General - Basic
CPUThread - > SetToolTip ( wxT ( " This splits the Video and CPU threads, so they can be run on separate cores. " )
wxT ( " \n Causes major speed improvements on PCs with more than one core, " )
wxT ( " \n but can also cause occasional crashes/glitches. " ) ) ;
Framelimit - > SetToolTip ( wxT ( " If you set Framelimit higher than game full speed (NTSC:60, PAL:50), \n you also have to disable Audio Throttle in DSP to make it effective. " ) ) ;
// General - Advanced
DSPThread - > SetToolTip ( wxT ( " Run DSPLLE on a dedicated thread (not recommended). " ) ) ;
// General - Interface
ConfirmStop - > SetToolTip ( wxT ( " Show a confirmation box before stopping a game. " ) ) ;
UsePanicHandlers - > SetToolTip ( wxT ( " Show a message box when a potentially serious error has occured. " )
wxT ( " Disabling this may avoid annoying and non-fatal messages, but it may also mean that Dolphin " )
wxT ( " suddenly crashes without any explanation at all. " ) ) ;
InterfaceLang - > SetToolTip ( wxT ( " For the time being this will only change the text shown in " )
wxT ( " \n the game list of PAL GC games. " ) ) ;
2010-04-12 01:33:10 +00:00
2010-02-06 16:20:54 +00:00
// Themes: Copyright notice
Theme - > SetItemToolTip ( 0 , wxT ( " Created by Milosz Wlazlo [miloszwl@miloszwl.com, miloszwl.deviantart.com] " ) ) ;
Theme - > SetItemToolTip ( 1 , wxT ( " Created by VistaIcons.com " ) ) ;
Theme - > SetItemToolTip ( 2 , wxT ( " Created by black_rider and published on ForumW.org > Web Developments " ) ) ;
Theme - > SetItemToolTip ( 3 , wxT ( " Created by KDE-Look.org " ) ) ;
2010-04-12 01:33:10 +00:00
// General - Display
Fullscreen - > SetToolTip (
wxT ( " Start the rendering window in fullscreen mode. " )
wxT ( " Press Alt+Enter to switch between Fullscreen and Windowed mode. " ) ) ;
HideCursor - > SetToolTip ( wxT ( " Hide the cursor when it is over the rendering window " )
wxT ( " \n and the rendering window has focus. " ) ) ;
RenderToMain - > SetToolTip ( wxT ( " Render to main window. " ) ) ;
2010-02-06 16:20:54 +00:00
// Wii
WiiKeyboard - > SetToolTip ( wxT ( " This could cause slow down in Wii Menu and some games. " ) ) ;
}
void CConfigMain : : CreateGUIControls ( )
{
InitializeGUILists ( ) ;
2009-01-22 07:42:17 +00:00
// Create the notebook and pages
2008-12-08 05:30:24 +00:00
Notebook = new wxNotebook ( this , ID_NOTEBOOK , wxDefaultPosition , wxDefaultSize ) ;
2009-01-04 21:53:41 +00:00
GeneralPage = new wxPanel ( Notebook , ID_GENERALPAGE , wxDefaultPosition , wxDefaultSize ) ;
2008-12-08 05:30:24 +00:00
GamecubePage = new wxPanel ( Notebook , ID_GAMECUBEPAGE , wxDefaultPosition , wxDefaultSize ) ;
WiiPage = new wxPanel ( Notebook , ID_WIIPAGE , wxDefaultPosition , wxDefaultSize ) ;
PathsPage = new wxPanel ( Notebook , ID_PATHSPAGE , wxDefaultPosition , wxDefaultSize ) ;
PluginPage = new wxPanel ( Notebook , ID_PLUGINPAGE , wxDefaultPosition , wxDefaultSize ) ;
2008-12-25 07:28:41 +00:00
2009-01-04 21:53:41 +00:00
Notebook - > AddPage ( GeneralPage , wxT ( " General " ) ) ;
2008-12-25 07:28:41 +00:00
Notebook - > AddPage ( GamecubePage , wxT ( " Gamecube " ) ) ;
Notebook - > AddPage ( WiiPage , wxT ( " Wii " ) ) ;
Notebook - > AddPage ( PathsPage , wxT ( " Paths " ) ) ;
2008-12-08 05:30:24 +00:00
Notebook - > AddPage ( PluginPage , wxT ( " Plugins " ) ) ;
2009-01-15 06:48:15 +00:00
2009-01-04 21:53:41 +00:00
// General page
2010-02-06 16:20:54 +00:00
sbBasic = new wxStaticBoxSizer ( wxVERTICAL , GeneralPage , wxT ( " Basic Settings " ) ) ;
sbAdvanced = new wxStaticBoxSizer ( wxVERTICAL , GeneralPage , wxT ( " Advanced Settings " ) ) ;
sbInterface = new wxStaticBoxSizer ( wxVERTICAL , GeneralPage , wxT ( " Interface Settings " ) ) ;
2010-04-12 01:33:10 +00:00
sbDisplay = new wxStaticBoxSizer ( wxVERTICAL , GeneralPage , wxT ( " Emulator Display Settings " ) ) ;
2009-02-02 22:29:33 +00:00
// Core Settings - Basic
2009-10-23 15:26:35 +00:00
CPUThread = new wxCheckBox ( GeneralPage , ID_CPUTHREAD , wxT ( " Enable Dual Core (speedup) " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
2009-10-13 04:45:11 +00:00
SkipIdle = new wxCheckBox ( GeneralPage , ID_IDLESKIP , wxT ( " Enable Idle Skipping (speedup) " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
2009-01-14 16:36:43 +00:00
EnableCheats = new wxCheckBox ( GeneralPage , ID_ENABLECHEATS , wxT ( " Enable Cheats " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
2009-08-03 18:35:25 +00:00
// Framelimit
wxStaticText * FramelimitText = new wxStaticText ( GeneralPage , ID_FRAMELIMIT_TEXT , wxT ( " Framelimit : " ) , wxDefaultPosition , wxDefaultSize ) ;
Framelimit = new wxChoice ( GeneralPage , ID_FRAMELIMIT , wxDefaultPosition , wxDefaultSize , arrayStringFor_Framelimit , 0 , wxDefaultValidator ) ;
2009-02-02 22:29:33 +00:00
// Core Settings - Advanced
2010-02-06 16:20:54 +00:00
wxStaticBoxSizer * sizerCoreType = new wxStaticBoxSizer ( wxVERTICAL , GeneralPage , wxT ( " CPU Emulator Engine " ) ) ;
2010-01-16 19:00:09 +00:00
AlwaysHLE_BS2 = new wxCheckBox ( GeneralPage , ID_ALWAYS_HLE_BS2 , wxT ( " HLE the IPL (recommended) " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
2010-01-19 19:28:27 +00:00
m_RadioJIT = new wxRadioButton ( GeneralPage , ID_RADIOJIT , wxT ( " JIT recompiler (recommended) " ) ) ;
m_RadioJITIL = new wxRadioButton ( GeneralPage , ID_RADIOJITIL , wxT ( " JitIL experimental recompiler " ) ) ;
m_RadioInt = new wxRadioButton ( GeneralPage , ID_RADIOINT , wxT ( " Interpreter (VERY slow) " ) ) ;
2009-01-14 16:36:43 +00:00
LockThreads = new wxCheckBox ( GeneralPage , ID_LOCKTHREADS , wxT ( " Lock threads to cores " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
2010-01-21 14:30:52 +00:00
DSPThread = new wxCheckBox ( GeneralPage , ID_DSPTHREAD , wxT ( " DSPLLE on thread " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
2009-01-14 16:36:43 +00:00
// Interface settings
2009-01-04 21:53:41 +00:00
ConfirmStop = new wxCheckBox ( GeneralPage , ID_INTERFACE_CONFIRMSTOP , wxT ( " Confirm On Stop " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
2009-03-18 22:05:31 +00:00
UsePanicHandlers = new wxCheckBox ( GeneralPage , ID_INTERFACE_USEPANICHANDLERS , wxT ( " Use Panic Handlers " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
2009-01-22 07:42:17 +00:00
// Interface Language
// At the moment this only changes the language displayed in m_gamelistctrl
// If someone wants to control the whole GUI's language, it should be set here too
wxStaticText * InterfaceLangText = new wxStaticText ( GeneralPage , ID_INTERFACE_LANG_TEXT , wxT ( " Game List Language: " ) , wxDefaultPosition , wxDefaultSize ) ;
InterfaceLang = new wxChoice ( GeneralPage , ID_INTERFACE_LANG , wxDefaultPosition , wxDefaultSize , arrayStringFor_InterfaceLang , 0 , wxDefaultValidator ) ;
2010-04-12 01:33:10 +00:00
// Hotkey configuration
HotkeyConfig = new wxButton ( GeneralPage , ID_HOTKEY_CONFIG , wxT ( " Hotkeys " ) , wxDefaultPosition , wxDefaultSize , wxBU_EXACTFIT , wxDefaultValidator ) ;
2009-08-03 18:35:25 +00:00
// Themes - this should really be a wxChoice...
2010-02-06 16:20:54 +00:00
Theme = new wxRadioBox ( GeneralPage , ID_INTERFACE_THEME , wxT ( " Theme " ) , wxDefaultPosition , wxDefaultSize , arrayStringFor_Themes , 1 , wxRA_SPECIFY_ROWS ) ;
2009-01-04 21:53:41 +00:00
2010-04-12 01:33:10 +00:00
// General display settings
Fullscreen = new wxCheckBox ( GeneralPage , ID_DISPLAY_FULLSCREEN , wxT ( " Start Renderer in Fullscreen " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
HideCursor = new wxCheckBox ( GeneralPage , ID_DISPLAY_HIDECURSOR , wxT ( " Hide Mouse Cursor " ) ) ;
RenderToMain = new wxCheckBox ( GeneralPage , ID_DISPLAY_RENDERTOMAIN , wxT ( " Render to Main Window " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
2009-01-14 16:36:43 +00:00
// Populate the settings
sCore = new wxBoxSizer ( wxHORIZONTAL ) ;
2009-10-23 15:26:35 +00:00
sbBasic - > Add ( CPUThread , 0 , wxALL , 5 ) ;
2009-01-04 21:53:41 +00:00
sbBasic - > Add ( SkipIdle , 0 , wxALL , 5 ) ;
sbBasic - > Add ( EnableCheats , 0 , wxALL , 5 ) ;
2009-08-03 18:35:25 +00:00
wxBoxSizer * sFramelimit = new wxBoxSizer ( wxHORIZONTAL ) ;
sFramelimit - > Add ( FramelimitText , 0 , wxALL | wxALIGN_CENTER , 1 ) ;
sFramelimit - > Add ( Framelimit , 0 , wxALL | wxEXPAND , 5 ) ;
sbBasic - > Add ( sFramelimit , 0 , wxALL | wxEXPAND , 5 ) ;
2009-10-11 16:16:18 +00:00
sbAdvanced - > Add ( AlwaysHLE_BS2 , 0 , wxALL , 5 ) ;
2009-10-13 04:45:11 +00:00
sizerCoreType - > Add ( m_RadioJIT , 0 , wxALL | wxEXPAND , 5 ) ;
2010-01-19 19:28:27 +00:00
sizerCoreType - > Add ( m_RadioJITIL , 0 , wxALL | wxEXPAND , 5 ) ;
2009-10-13 04:45:11 +00:00
sizerCoreType - > Add ( m_RadioInt , 0 , wxALL | wxEXPAND , 5 ) ;
sbAdvanced - > Add ( sizerCoreType , 0 , wxALL , 5 ) ;
2009-01-04 21:53:41 +00:00
sbAdvanced - > Add ( LockThreads , 0 , wxALL , 5 ) ;
2009-04-21 15:19:07 +00:00
sbAdvanced - > Add ( DSPThread , 0 , wxALL , 5 ) ;
2009-01-14 16:36:43 +00:00
sCore - > Add ( sbBasic , 0 , wxEXPAND ) ;
sCore - > AddStretchSpacer ( ) ;
sCore - > Add ( sbAdvanced , 0 , wxEXPAND ) ;
sbInterface - > Add ( ConfirmStop , 0 , wxALL , 5 ) ;
2009-03-18 22:05:31 +00:00
sbInterface - > Add ( UsePanicHandlers , 0 , wxALL , 5 ) ;
2009-01-14 16:36:43 +00:00
sbInterface - > Add ( Theme , 0 , wxEXPAND | wxALL , 5 ) ;
2010-04-12 01:33:10 +00:00
wxBoxSizer * sInterface = new wxBoxSizer ( wxHORIZONTAL ) ;
sInterface - > Add ( InterfaceLangText , 0 , wxALIGN_CENTER_VERTICAL | wxALL , 5 ) ;
sInterface - > Add ( InterfaceLang , 0 , wxEXPAND | wxALL , 5 ) ;
sInterface - > AddStretchSpacer ( ) ;
sInterface - > Add ( HotkeyConfig , 0 , wxALIGN_RIGHT | wxALL , 5 ) ;
sbInterface - > Add ( sInterface , 0 , wxEXPAND | wxALL , 5 ) ;
sbDisplay - > Add ( Fullscreen , 0 , wxEXPAND | wxALL , 5 ) ;
sbDisplay - > Add ( HideCursor , 0 , wxALL , 5 ) ;
sbDisplay - > Add ( RenderToMain , 0 , wxEXPAND | wxALL , 5 ) ;
2009-01-14 16:36:43 +00:00
// Populate the entire page
sGeneralPage = new wxBoxSizer ( wxVERTICAL ) ;
sGeneralPage - > Add ( sCore , 0 , wxEXPAND | wxALL , 5 ) ;
sGeneralPage - > Add ( sbInterface , 0 , wxEXPAND | wxALL , 5 ) ;
2010-04-12 01:33:10 +00:00
sGeneralPage - > Add ( sbDisplay , 0 , wxEXPAND | wxALL , 5 ) ;
2009-01-14 16:36:43 +00:00
GeneralPage - > SetSizer ( sGeneralPage ) ;
sGeneralPage - > Layout ( ) ;
2009-01-04 21:53:41 +00:00
2009-09-02 21:00:45 +00:00
2009-01-04 21:53:41 +00:00
// Gamecube page
sbGamecubeIPLSettings = new wxStaticBoxSizer ( wxVERTICAL , GamecubePage , wxT ( " IPL Settings " ) ) ;
2010-02-06 16:20:54 +00:00
// IPL settings
2009-01-04 21:53:41 +00:00
GCSystemLangText = new wxStaticText ( GamecubePage , ID_GC_SRAM_LNG_TEXT , wxT ( " System Language: " ) , wxDefaultPosition , wxDefaultSize ) ;
GCSystemLang = new wxChoice ( GamecubePage , ID_GC_SRAM_LNG , wxDefaultPosition , wxDefaultSize , arrayStringFor_GCSystemLang , 0 , wxDefaultValidator ) ;
2009-02-02 22:29:33 +00:00
// Devices
wxStaticBoxSizer * sbGamecubeDeviceSettings = new wxStaticBoxSizer ( wxVERTICAL , GamecubePage , wxT ( " Device Settings " ) ) ;
// EXI Devices
wxStaticText * GCEXIDeviceText [ 3 ] ;
GCEXIDeviceText [ 0 ] = new wxStaticText ( GamecubePage , ID_GC_EXIDEVICE_SLOTA_TEXT , wxT ( " Slot A " ) , wxDefaultPosition , wxDefaultSize ) ;
GCEXIDeviceText [ 1 ] = new wxStaticText ( GamecubePage , ID_GC_EXIDEVICE_SLOTB_TEXT , wxT ( " Slot B " ) , wxDefaultPosition , wxDefaultSize ) ;
GCEXIDeviceText [ 2 ] = new wxStaticText ( GamecubePage , ID_GC_EXIDEVICE_SP1_TEXT , wxT ( " SP1 " ) , wxDefaultPosition , wxDefaultSize ) ;
2009-10-19 15:14:48 +00:00
GCEXIDeviceText [ 2 ] - > SetToolTip ( wxT ( " Serial Port 1 - This is the port which devices such as the net adapter use " ) ) ;
2010-04-04 19:25:49 +00:00
const wxString SlotDevices [ ] = { wxT ( DEV_NONE_STR ) , wxT ( DEV_DUMMY_STR ) , wxT ( EXIDEV_MEMCARD_STR )
# if HAVE_PORTAUDIO
, wxT ( EXIDEV_MIC_STR )
# endif
} ;
2009-02-06 18:18:20 +00:00
static const int numSlotDevices = sizeof ( SlotDevices ) / sizeof ( wxString ) ;
2009-10-19 15:14:48 +00:00
const wxString SP1Devices [ ] = { wxT ( DEV_NONE_STR ) , wxT ( DEV_DUMMY_STR ) , wxT ( EXIDEV_BBA_STR ) , wxT ( EXIDEV_AM_BB_STR ) } ;
2009-02-06 18:18:20 +00:00
static const int numSP1Devices = sizeof ( SP1Devices ) / sizeof ( wxString ) ;
GCEXIDevice [ 0 ] = new wxChoice ( GamecubePage , ID_GC_EXIDEVICE_SLOTA , wxDefaultPosition , wxDefaultSize , numSlotDevices , SlotDevices , 0 , wxDefaultValidator ) ;
GCEXIDevice [ 1 ] = new wxChoice ( GamecubePage , ID_GC_EXIDEVICE_SLOTB , wxDefaultPosition , wxDefaultSize , numSlotDevices , SlotDevices , 0 , wxDefaultValidator ) ;
GCEXIDevice [ 2 ] = new wxChoice ( GamecubePage , ID_GC_EXIDEVICE_SP1 , wxDefaultPosition , wxDefaultSize , numSP1Devices , SP1Devices , 0 , wxDefaultValidator ) ;
2009-02-02 22:29:33 +00:00
GCMemcardPath [ 0 ] = new wxButton ( GamecubePage , ID_GC_EXIDEVICE_SLOTA_PATH , wxT ( " ... " ) , wxDefaultPosition , wxDefaultSize , wxBU_EXACTFIT , wxDefaultValidator ) ;
GCMemcardPath [ 1 ] = new wxButton ( GamecubePage , ID_GC_EXIDEVICE_SLOTB_PATH , wxT ( " ... " ) , wxDefaultPosition , wxDefaultSize , wxBU_EXACTFIT , wxDefaultValidator ) ;
2010-02-06 16:20:54 +00:00
// Can't move this one without making the 4 const's etc. above class members/fields,
2009-02-02 22:29:33 +00:00
for ( int i = 0 ; i < 3 ; + + i )
{
bool isMemcard = false ;
2009-10-19 15:14:48 +00:00
switch ( SConfig : : GetInstance ( ) . m_EXIDevice [ i ] )
{
case EXIDEVICE_NONE :
GCEXIDevice [ i ] - > SetStringSelection ( SlotDevices [ 0 ] ) ;
break ;
case EXIDEVICE_MEMORYCARD_A :
case EXIDEVICE_MEMORYCARD_B :
isMemcard = GCEXIDevice [ i ] - > SetStringSelection ( SlotDevices [ 2 ] ) ;
break ;
case EXIDEVICE_MIC :
GCEXIDevice [ i ] - > SetStringSelection ( SlotDevices [ 3 ] ) ;
break ;
case EXIDEVICE_ETH :
GCEXIDevice [ i ] - > SetStringSelection ( SP1Devices [ 2 ] ) ;
break ;
case EXIDEVICE_AM_BASEBOARD :
GCEXIDevice [ i ] - > SetStringSelection ( SP1Devices [ 3 ] ) ;
break ;
case EXIDEVICE_DUMMY :
default :
GCEXIDevice [ i ] - > SetStringSelection ( SlotDevices [ 1 ] ) ;
break ;
}
2009-02-02 22:29:33 +00:00
if ( ! isMemcard & & i < 2 )
GCMemcardPath [ i ] - > Disable ( ) ;
}
//SI Devices
wxStaticText * GCSIDeviceText [ 4 ] ;
GCSIDeviceText [ 0 ] = new wxStaticText ( GamecubePage , ID_GC_SIDEVICE_TEXT , wxT ( " Port 1 " ) , wxDefaultPosition , wxDefaultSize ) ;
GCSIDeviceText [ 1 ] = new wxStaticText ( GamecubePage , ID_GC_SIDEVICE_TEXT , wxT ( " Port 2 " ) , wxDefaultPosition , wxDefaultSize ) ;
GCSIDeviceText [ 2 ] = new wxStaticText ( GamecubePage , ID_GC_SIDEVICE_TEXT , wxT ( " Port 3 " ) , wxDefaultPosition , wxDefaultSize ) ;
GCSIDeviceText [ 3 ] = new wxStaticText ( GamecubePage , ID_GC_SIDEVICE_TEXT , wxT ( " Port 4 " ) , wxDefaultPosition , wxDefaultSize ) ;
2010-04-04 19:25:49 +00:00
const wxString SIPort1Devices [ ] = { wxT ( DEV_NONE_STR ) , wxT ( SIDEV_STDCONT_STR ) , wxT ( SIDEV_GBA_STR ) , wxT ( SIDEV_AM_BB_STR ) } ;
static const int numSIPort1Devices = sizeof ( SIPort1Devices ) / sizeof ( wxString ) ;
const wxString SIDevices [ ] = { wxT ( DEV_NONE_STR ) , wxT ( SIDEV_STDCONT_STR ) , wxT ( SIDEV_GBA_STR ) } ;
2009-02-06 18:18:20 +00:00
static const int numSIDevices = sizeof ( SIDevices ) / sizeof ( wxString ) ;
2010-04-04 19:25:49 +00:00
GCSIDevice [ 0 ] = new wxChoice ( GamecubePage , ID_GC_SIDEVICE0 , wxDefaultPosition , wxDefaultSize , numSIPort1Devices , SIPort1Devices , 0 , wxDefaultValidator ) ;
2009-02-06 18:18:20 +00:00
GCSIDevice [ 1 ] = new wxChoice ( GamecubePage , ID_GC_SIDEVICE1 , wxDefaultPosition , wxDefaultSize , numSIDevices , SIDevices , 0 , wxDefaultValidator ) ;
GCSIDevice [ 2 ] = new wxChoice ( GamecubePage , ID_GC_SIDEVICE2 , wxDefaultPosition , wxDefaultSize , numSIDevices , SIDevices , 0 , wxDefaultValidator ) ;
GCSIDevice [ 3 ] = new wxChoice ( GamecubePage , ID_GC_SIDEVICE3 , wxDefaultPosition , wxDefaultSize , numSIDevices , SIDevices , 0 , wxDefaultValidator ) ;
2010-02-06 16:20:54 +00:00
// Can't move this one without making the 2 const's etc. above class members/fields.
2009-02-02 22:29:33 +00:00
for ( int i = 0 ; i < 4 ; + + i )
{
2009-10-19 15:14:48 +00:00
switch ( SConfig : : GetInstance ( ) . m_SIDevice [ i ] )
{
case SI_GC_CONTROLLER :
2009-02-02 22:29:33 +00:00
GCSIDevice [ i ] - > SetStringSelection ( SIDevices [ 1 ] ) ;
2009-10-19 15:14:48 +00:00
break ;
case SI_GBA :
2009-02-06 18:18:20 +00:00
GCSIDevice [ i ] - > SetStringSelection ( SIDevices [ 2 ] ) ;
2009-10-19 15:14:48 +00:00
break ;
case SI_AM_BASEBOARD :
GCSIDevice [ i ] - > SetStringSelection ( SIDevices [ 3 ] ) ;
break ;
default :
2009-02-02 22:29:33 +00:00
GCSIDevice [ i ] - > SetStringSelection ( SIDevices [ 0 ] ) ;
2009-10-19 15:14:48 +00:00
break ;
}
2009-02-02 22:29:33 +00:00
}
2009-01-04 21:53:41 +00:00
sGamecube = new wxBoxSizer ( wxVERTICAL ) ;
sGamecubeIPLSettings = new wxGridBagSizer ( 0 , 0 ) ;
sGamecubeIPLSettings - > Add ( GCSystemLangText , wxGBPosition ( 0 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxALL , 5 ) ;
sGamecubeIPLSettings - > Add ( GCSystemLang , wxGBPosition ( 0 , 1 ) , wxGBSpan ( 1 , 1 ) , wxALL , 5 ) ;
sbGamecubeIPLSettings - > Add ( sGamecubeIPLSettings ) ;
sGamecube - > Add ( sbGamecubeIPLSettings , 0 , wxEXPAND | wxALL , 5 ) ;
2009-02-02 22:29:33 +00:00
wxBoxSizer * sEXIDevices [ 4 ] ;
wxBoxSizer * sSIDevices [ 4 ] ;
for ( int i = 0 ; i < 3 ; + + i )
{
sEXIDevices [ i ] = new wxBoxSizer ( wxHORIZONTAL ) ;
sEXIDevices [ i ] - > Add ( GCEXIDeviceText [ i ] , 0 , wxALIGN_CENTER_VERTICAL | wxALL , 5 ) ;
sEXIDevices [ i ] - > Add ( GCEXIDevice [ i ] , 0 , wxALL , 5 ) ;
if ( i < 2 )
sEXIDevices [ i ] - > Add ( GCMemcardPath [ i ] , 0 , wxALL , 5 ) ;
sbGamecubeDeviceSettings - > Add ( sEXIDevices [ i ] ) ;
}
for ( int i = 0 ; i < 4 ; + + i )
{
sSIDevices [ i ] = new wxBoxSizer ( wxHORIZONTAL ) ;
sSIDevices [ i ] - > Add ( GCSIDeviceText [ i ] , 0 , wxALIGN_CENTER_VERTICAL | wxALL , 5 ) ;
sSIDevices [ i ] - > Add ( GCSIDevice [ i ] , 0 , wxALL , 5 ) ;
sbGamecubeDeviceSettings - > Add ( sSIDevices [ i ] ) ;
}
sGamecube - > Add ( sbGamecubeDeviceSettings , 0 , wxEXPAND | wxALL , 5 ) ;
2009-01-04 21:53:41 +00:00
GamecubePage - > SetSizer ( sGamecube ) ;
sGamecube - > Layout ( ) ;
// Wii page
sbWiimoteSettings = new wxStaticBoxSizer ( wxVERTICAL , WiiPage , wxT ( " Wiimote Settings " ) ) ;
WiiSensBarPosText = new wxStaticText ( WiiPage , ID_WII_BT_BAR_TEXT , wxT ( " Sensor Bar Position: " ) , wxDefaultPosition , wxDefaultSize ) ;
WiiSensBarPos = new wxChoice ( WiiPage , ID_WII_BT_BAR , wxDefaultPosition , wxDefaultSize , arrayStringFor_WiiSensBarPos , 0 , wxDefaultValidator ) ;
2009-09-14 06:26:49 +00:00
sbWiiIPLSettings = new wxStaticBoxSizer ( wxVERTICAL , WiiPage , wxT ( " Misc Settings " ) ) ;
2009-01-04 21:53:41 +00:00
WiiScreenSaver = new wxCheckBox ( WiiPage , ID_WII_IPL_SSV , wxT ( " Enable Screen Saver (burn-in reduction) " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
WiiProgressiveScan = new wxCheckBox ( WiiPage , ID_WII_IPL_PGS , wxT ( " Enable Progressive Scan " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
2009-12-30 16:20:41 +00:00
WiiEuRGB60 = new wxCheckBox ( WiiPage , ID_WII_IPL_E60 , wxT ( " Use EuRGB60 Mode (PAL60) " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
2009-01-04 21:53:41 +00:00
WiiAspectRatioText = new wxStaticText ( WiiPage , ID_WII_IPL_AR_TEXT , wxT ( " Aspect Ratio: " ) , wxDefaultPosition , wxDefaultSize ) ;
WiiAspectRatio = new wxChoice ( WiiPage , ID_WII_IPL_AR , wxDefaultPosition , wxDefaultSize , arrayStringFor_WiiAspectRatio , 0 , wxDefaultValidator ) ;
WiiSystemLangText = new wxStaticText ( WiiPage , ID_WII_IPL_LNG_TEXT , wxT ( " System Language: " ) , wxDefaultPosition , wxDefaultSize ) ;
WiiSystemLang = new wxChoice ( WiiPage , ID_WII_IPL_LNG , wxDefaultPosition , wxDefaultSize , arrayStringFor_WiiSystemLang , 0 , wxDefaultValidator ) ;
2010-01-11 11:56:17 +00:00
// Devices
sbWiiDeviceSettings = new wxStaticBoxSizer ( wxVERTICAL , WiiPage , wxT ( " Device Settings " ) ) ;
WiiSDCard = new wxCheckBox ( WiiPage , ID_WII_SD_CARD , wxT ( " Insert SD Card " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
WiiKeyboard = new wxCheckBox ( WiiPage , ID_WII_KEYBOARD , wxT ( " Connect USB Keyboard " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
2009-01-04 21:53:41 +00:00
// Populate sbWiimoteSettings
sWii = new wxBoxSizer ( wxVERTICAL ) ;
sWiimoteSettings = new wxGridBagSizer ( 0 , 0 ) ;
sWiimoteSettings - > Add ( WiiSensBarPosText , wxGBPosition ( 0 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxALL , 5 ) ;
sWiimoteSettings - > Add ( WiiSensBarPos , wxGBPosition ( 0 , 1 ) , wxGBSpan ( 1 , 1 ) , wxALL , 5 ) ;
sbWiimoteSettings - > Add ( sWiimoteSettings ) ;
sWii - > Add ( sbWiimoteSettings , 0 , wxEXPAND | wxALL , 5 ) ;
sWiiIPLSettings = new wxGridBagSizer ( 0 , 0 ) ;
sWiiIPLSettings - > Add ( WiiScreenSaver , wxGBPosition ( 0 , 0 ) , wxGBSpan ( 1 , 2 ) , wxALL , 5 ) ;
sWiiIPLSettings - > Add ( WiiProgressiveScan , wxGBPosition ( 1 , 0 ) , wxGBSpan ( 1 , 2 ) , wxALL , 5 ) ;
sWiiIPLSettings - > Add ( WiiEuRGB60 , wxGBPosition ( 2 , 0 ) , wxGBSpan ( 1 , 2 ) , wxALL , 5 ) ;
sWiiIPLSettings - > Add ( WiiAspectRatioText , wxGBPosition ( 3 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxALL , 5 ) ;
sWiiIPLSettings - > Add ( WiiAspectRatio , wxGBPosition ( 3 , 1 ) , wxGBSpan ( 1 , 1 ) , wxALL , 5 ) ;
sWiiIPLSettings - > Add ( WiiSystemLangText , wxGBPosition ( 4 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxALL , 5 ) ;
sWiiIPLSettings - > Add ( WiiSystemLang , wxGBPosition ( 4 , 1 ) , wxGBSpan ( 1 , 1 ) , wxALL , 5 ) ;
sbWiiIPLSettings - > Add ( sWiiIPLSettings ) ;
sWii - > Add ( sbWiiIPLSettings , 0 , wxEXPAND | wxALL , 5 ) ;
2010-01-11 11:56:17 +00:00
sbWiiDeviceSettings - > Add ( WiiSDCard , 0 , wxALL , 5 ) ;
sbWiiDeviceSettings - > Add ( WiiKeyboard , 0 , wxALL , 5 ) ;
sWii - > Add ( sbWiiDeviceSettings , 0 , wxEXPAND | wxALL , 5 ) ;
2009-01-04 21:53:41 +00:00
WiiPage - > SetSizer ( sWii ) ;
sWii - > Layout ( ) ;
2009-09-02 21:00:45 +00:00
2009-01-04 21:53:41 +00:00
// Paths page
sbISOPaths = new wxStaticBoxSizer ( wxVERTICAL , PathsPage , wxT ( " ISO Directories " ) ) ;
ISOPaths = new wxListBox ( PathsPage , ID_ISOPATHS , wxDefaultPosition , wxDefaultSize , arrayStringFor_ISOPaths , wxLB_SINGLE , wxDefaultValidator ) ;
AddISOPath = new wxButton ( PathsPage , ID_ADDISOPATH , wxT ( " Add... " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
RemoveISOPath = new wxButton ( PathsPage , ID_REMOVEISOPATH , wxT ( " Remove " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
RemoveISOPath - > Enable ( false ) ;
2009-04-05 06:46:18 +00:00
RecersiveISOPath = new wxCheckBox ( PathsPage , ID_RECERSIVEISOPATH , wxT ( " Search Subfolders " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
2009-01-04 21:53:41 +00:00
DefaultISOText = new wxStaticText ( PathsPage , ID_DEFAULTISO_TEXT , wxT ( " Default ISO: " ) , wxDefaultPosition , wxDefaultSize ) ;
DefaultISO = new wxFilePickerCtrl ( PathsPage , ID_DEFAULTISO , wxEmptyString , wxT ( " Choose a default ISO: " ) ,
wxString : : Format ( wxT ( " All GC/Wii images (gcm, iso, gcz)|*.gcm;*.iso;*.gcz|All files (%s)|%s " ) , wxFileSelectorDefaultWildcardStr , wxFileSelectorDefaultWildcardStr ) ,
2009-02-28 08:37:12 +00:00
wxDefaultPosition , wxDefaultSize , wxFLP_USE_TEXTCTRL | wxFLP_OPEN ) ;
2009-01-04 21:53:41 +00:00
DVDRootText = new wxStaticText ( PathsPage , ID_DVDROOT_TEXT , wxT ( " DVD Root: " ) , wxDefaultPosition , wxDefaultSize ) ;
DVDRoot = new wxDirPickerCtrl ( PathsPage , ID_DVDROOT , wxEmptyString , wxT ( " Choose a DVD root directory: " ) , wxDefaultPosition , wxDefaultSize , wxDIRP_USE_TEXTCTRL ) ;
2009-12-10 09:16:10 +00:00
ApploaderPathText = new wxStaticText ( PathsPage , ID_APPLOADERPATH_TEXT , wxT ( " Apploader: " ) , wxDefaultPosition , wxDefaultSize ) ;
ApploaderPath = new wxFilePickerCtrl ( PathsPage , ID_APPLOADERPATH , wxEmptyString , wxT ( " Choose file to use as apploader: (applies to discs constructed from directories only) " ) ,
wxString : : Format ( wxT ( " apploader (.img)|*.img|All files (%s)|%s " ) , wxFileSelectorDefaultWildcardStr , wxFileSelectorDefaultWildcardStr ) ,
wxDefaultPosition , wxDefaultSize , wxFLP_USE_TEXTCTRL | wxFLP_OPEN ) ;
2009-01-04 21:53:41 +00:00
sPaths = new wxBoxSizer ( wxVERTICAL ) ;
sbISOPaths - > Add ( ISOPaths , 1 , wxEXPAND | wxALL , 0 ) ;
sISOButtons = new wxBoxSizer ( wxHORIZONTAL ) ;
2009-04-15 20:19:25 +00:00
sISOButtons - > Add ( RecersiveISOPath , 0 , wxALL | wxALIGN_CENTER , 0 ) ;
2009-01-04 21:53:41 +00:00
sISOButtons - > AddStretchSpacer ( 1 ) ;
sISOButtons - > Add ( AddISOPath , 0 , wxALL , 0 ) ;
sISOButtons - > Add ( RemoveISOPath , 0 , wxALL , 0 ) ;
sbISOPaths - > Add ( sISOButtons , 0 , wxEXPAND | wxALL , 5 ) ;
sPaths - > Add ( sbISOPaths , 1 , wxEXPAND | wxALL , 5 ) ;
sOtherPaths = new wxGridBagSizer ( 0 , 0 ) ;
sOtherPaths - > AddGrowableCol ( 1 ) ;
sOtherPaths - > Add ( DefaultISOText , wxGBPosition ( 0 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxALL , 5 ) ;
sOtherPaths - > Add ( DefaultISO , wxGBPosition ( 0 , 1 ) , wxGBSpan ( 1 , 1 ) , wxEXPAND | wxALL , 5 ) ;
sOtherPaths - > Add ( DVDRootText , wxGBPosition ( 1 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxALL , 5 ) ;
sOtherPaths - > Add ( DVDRoot , wxGBPosition ( 1 , 1 ) , wxGBSpan ( 1 , 1 ) , wxEXPAND | wxALL , 5 ) ;
2009-12-10 09:16:10 +00:00
sOtherPaths - > Add ( ApploaderPathText , wxGBPosition ( 2 , 0 ) , wxGBSpan ( 1 , 1 ) , wxALIGN_CENTER_VERTICAL | wxALL , 5 ) ;
sOtherPaths - > Add ( ApploaderPath , wxGBPosition ( 2 , 1 ) , wxGBSpan ( 1 , 1 ) , wxEXPAND | wxALL , 5 ) ;
2009-01-04 21:53:41 +00:00
sPaths - > Add ( sOtherPaths , 0 , wxEXPAND | wxALL , 5 ) ;
PathsPage - > SetSizer ( sPaths ) ;
sPaths - > Layout ( ) ;
2009-09-02 21:00:45 +00:00
2009-01-04 21:53:41 +00:00
// Plugins page
sbGraphicsPlugin = new wxStaticBoxSizer ( wxHORIZONTAL , PluginPage , wxT ( " Graphics " ) ) ;
GraphicSelection = new wxChoice ( PluginPage , ID_GRAPHIC_CB , wxDefaultPosition , wxDefaultSize , NULL , 0 , wxDefaultValidator ) ;
GraphicConfig = new wxButton ( PluginPage , ID_GRAPHIC_CONFIG , wxT ( " Config... " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
2009-01-09 16:04:28 +00:00
sbDSPPlugin = new wxStaticBoxSizer ( wxHORIZONTAL , PluginPage , wxT ( " DSP " ) ) ;
2009-01-04 21:53:41 +00:00
DSPSelection = new wxChoice ( PluginPage , ID_DSP_CB , wxDefaultPosition , wxDefaultSize , NULL , 0 , wxDefaultValidator ) ;
DSPConfig = new wxButton ( PluginPage , ID_DSP_CONFIG , wxT ( " Config... " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
2010-01-20 10:11:53 +00:00
sbPadPlugin = new wxStaticBoxSizer ( wxHORIZONTAL , PluginPage , wxT ( " Gamecube Pad " ) ) ;
2009-01-04 21:53:41 +00:00
PADSelection = new wxChoice ( PluginPage , ID_PAD_CB , wxDefaultPosition , wxDefaultSize , NULL , 0 , wxDefaultValidator ) ;
PADConfig = new wxButton ( PluginPage , ID_PAD_CONFIG , wxT ( " Config... " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
sbWiimotePlugin = new wxStaticBoxSizer ( wxHORIZONTAL , PluginPage , wxT ( " Wiimote " ) ) ;
WiimoteSelection = new wxChoice ( PluginPage , ID_WIIMOTE_CB , wxDefaultPosition , wxDefaultSize , NULL , 0 , wxDefaultValidator ) ;
WiimoteConfig = new wxButton ( PluginPage , ID_WIIMOTE_CONFIG , wxT ( " Config... " ) , wxDefaultPosition , wxDefaultSize , 0 , wxDefaultValidator ) ;
2009-01-15 06:48:15 +00:00
2009-01-04 21:53:41 +00:00
sPlugins = new wxBoxSizer ( wxVERTICAL ) ;
sbGraphicsPlugin - > Add ( GraphicSelection , 1 , wxEXPAND | wxALL , 5 ) ;
sbGraphicsPlugin - > Add ( GraphicConfig , 0 , wxALL , 5 ) ;
sPlugins - > Add ( sbGraphicsPlugin , 0 , wxEXPAND | wxALL , 5 ) ;
sbDSPPlugin - > Add ( DSPSelection , 1 , wxEXPAND | wxALL , 5 ) ;
sbDSPPlugin - > Add ( DSPConfig , 0 , wxALL , 5 ) ;
sPlugins - > Add ( sbDSPPlugin , 0 , wxEXPAND | wxALL , 5 ) ;
sbPadPlugin - > Add ( PADSelection , 1 , wxEXPAND | wxALL , 5 ) ;
sbPadPlugin - > Add ( PADConfig , 0 , wxALL , 5 ) ;
sPlugins - > Add ( sbPadPlugin , 0 , wxEXPAND | wxALL , 5 ) ;
sbWiimotePlugin - > Add ( WiimoteSelection , 1 , wxEXPAND | wxALL , 5 ) ;
sbWiimotePlugin - > Add ( WiimoteConfig , 0 , wxALL , 5 ) ;
sPlugins - > Add ( sbWiimotePlugin , 0 , wxEXPAND | wxALL , 5 ) ;
PluginPage - > SetSizer ( sPlugins ) ;
sPlugins - > Layout ( ) ;
2008-12-25 07:28:41 +00:00
2008-12-08 05:30:24 +00:00
2009-02-02 22:29:33 +00:00
m_Close = new wxButton ( this , wxID_CLOSE ) ;
2008-12-08 05:30:24 +00:00
2008-12-25 07:28:41 +00:00
wxBoxSizer * sButtons = new wxBoxSizer ( wxHORIZONTAL ) ;
2008-12-08 05:30:24 +00:00
sButtons - > Add ( 0 , 0 , 1 , wxEXPAND , 5 ) ;
sButtons - > Add ( m_Close , 0 , wxALL , 5 ) ;
2009-01-15 06:48:15 +00:00
2008-12-25 07:28:41 +00:00
wxBoxSizer * sMain = new wxBoxSizer ( wxVERTICAL ) ;
2008-12-08 05:30:24 +00:00
sMain - > Add ( Notebook , 1 , wxEXPAND | wxALL , 5 ) ;
sMain - > Add ( sButtons , 0 , wxEXPAND , 5 ) ;
2009-01-15 06:48:15 +00:00
2010-02-06 16:20:54 +00:00
InitializeGUIValues ( ) ;
InitializeGUITooltips ( ) ;
2009-01-04 21:53:41 +00:00
UpdateGUI ( ) ;
2008-12-08 05:30:24 +00:00
this - > SetSizer ( sMain ) ;
this - > Layout ( ) ;
Fit ( ) ;
Center ( ) ;
}
void CConfigMain : : OnClose ( wxCloseEvent & WXUNUSED ( event ) )
{
2009-02-03 15:03:34 +00:00
EndModal ( ( bRefreshList ) ? wxID_OK : wxID_CLOSE ) ;
2008-12-08 05:30:24 +00:00
2009-09-14 06:26:49 +00:00
// Sysconf saves when it gets deleted
//delete SConfig::GetInstance().m_SYSCONF;
2008-12-08 05:30:24 +00:00
2008-12-23 11:24:11 +00:00
// Save the config. Dolphin crashes to often to save the settings on closing only
2008-12-08 05:30:24 +00:00
SConfig : : GetInstance ( ) . SaveSettings ( ) ;
}
void CConfigMain : : CloseClick ( wxCommandEvent & WXUNUSED ( event ) )
{
Close ( ) ;
}
2009-09-02 21:00:45 +00:00
2009-02-02 22:29:33 +00:00
// Core AND Interface settings
2008-12-08 05:30:24 +00:00
void CConfigMain : : CoreSettingsChanged ( wxCommandEvent & event )
{
switch ( event . GetId ( ) )
{
2009-01-04 21:53:41 +00:00
case ID_INTERFACE_CONFIRMSTOP : // Interface
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bConfirmStop = ConfirmStop - > IsChecked ( ) ;
break ;
2009-03-18 22:05:31 +00:00
case ID_INTERFACE_USEPANICHANDLERS : // Interface
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bUsePanicHandlers = UsePanicHandlers - > IsChecked ( ) ;
SetEnableAlert ( UsePanicHandlers - > IsChecked ( ) ) ;
break ;
2009-01-04 21:53:41 +00:00
case ID_INTERFACE_THEME :
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . iTheme = Theme - > GetSelection ( ) ;
main_frame - > InitBitmaps ( ) ;
break ;
2009-02-02 22:29:33 +00:00
case ID_INTERFACE_LANG :
SConfig : : GetInstance ( ) . m_InterfaceLanguage = ( INTERFACE_LANGUAGE ) InterfaceLang - > GetSelection ( ) ;
bRefreshList = true ;
break ;
2010-04-12 01:33:10 +00:00
case ID_HOTKEY_CONFIG :
{
HotkeyConfigDialog * m_HotkeyDialog = new HotkeyConfigDialog ( this ) ;
m_HotkeyDialog - > ShowModal ( ) ;
m_HotkeyDialog - > Destroy ( ) ;
// Update the GUI in case menu accelerators were changed
main_frame - > UpdateGUI ( ) ;
}
break ;
2009-06-18 11:23:37 +00:00
case ID_FRAMELIMIT :
SConfig : : GetInstance ( ) . m_Framelimit = ( u32 ) Framelimit - > GetSelection ( ) ;
2009-06-09 21:27:45 +00:00
break ;
2010-01-16 19:00:09 +00:00
case ID_ALWAYS_HLE_BS2 : // Core
2009-10-11 16:16:18 +00:00
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bHLE_BS2 = AlwaysHLE_BS2 - > IsChecked ( ) ;
2008-12-08 05:30:24 +00:00
break ;
2009-10-13 04:45:11 +00:00
case ID_RADIOJIT :
2010-01-19 19:28:27 +00:00
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . iCPUCore = 1 ;
if ( main_frame - > g_pCodeWindow ) main_frame - > g_pCodeWindow - > GetMenuBar ( ) - > Check ( IDM_INTERPRETER , false ) ;
break ;
case ID_RADIOJITIL :
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . iCPUCore = 2 ;
2009-11-23 08:43:14 +00:00
if ( main_frame - > g_pCodeWindow ) main_frame - > g_pCodeWindow - > GetMenuBar ( ) - > Check ( IDM_INTERPRETER , false ) ;
2009-10-13 04:45:11 +00:00
break ;
case ID_RADIOINT :
2010-01-19 19:28:27 +00:00
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . iCPUCore = 0 ;
2009-11-23 08:43:14 +00:00
if ( main_frame - > g_pCodeWindow ) main_frame - > g_pCodeWindow - > GetMenuBar ( ) - > Check ( IDM_INTERPRETER , true ) ;
2008-12-08 05:30:24 +00:00
break ;
2009-10-23 15:26:35 +00:00
case ID_CPUTHREAD :
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bCPUThread = CPUThread - > IsChecked ( ) ;
2008-12-08 05:30:24 +00:00
break ;
2009-04-08 20:26:33 +00:00
case ID_DSPTHREAD :
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bDSPThread = DSPThread - > IsChecked ( ) ;
break ;
2008-12-08 05:30:24 +00:00
case ID_LOCKTHREADS :
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bLockThreads = LockThreads - > IsChecked ( ) ;
break ;
case ID_IDLESKIP :
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bSkipIdle = SkipIdle - > IsChecked ( ) ;
break ;
case ID_ENABLECHEATS :
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bEnableCheats = EnableCheats - > IsChecked ( ) ;
break ;
2010-04-12 01:33:10 +00:00
case ID_DISPLAY_FULLSCREEN : // Display
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bFullscreen = Fullscreen - > IsChecked ( ) ;
break ;
case ID_DISPLAY_HIDECURSOR :
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bHideCursor = HideCursor - > IsChecked ( ) ;
break ;
case ID_DISPLAY_RENDERTOMAIN :
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . bRenderToMain = RenderToMain - > IsChecked ( ) ;
break ;
2008-12-08 05:30:24 +00:00
}
}
2009-09-02 21:00:45 +00:00
2009-02-02 22:29:33 +00:00
// GC settings
2009-02-23 09:34:28 +00:00
// -----------------------
2008-12-08 05:30:24 +00:00
void CConfigMain : : GCSettingsChanged ( wxCommandEvent & event )
{
2009-02-02 22:29:33 +00:00
int sidevice = 0 ;
2009-02-28 21:30:43 +00:00
int exidevice = 0 ;
2008-12-08 05:30:24 +00:00
switch ( event . GetId ( ) )
{
case ID_GC_SRAM_LNG :
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . SelectedLanguage = GCSystemLang - > GetSelection ( ) ;
break ;
2009-02-02 22:29:33 +00:00
2009-10-19 15:14:48 +00:00
case ID_GC_EXIDEVICE_SP1 :
2009-02-28 21:30:43 +00:00
exidevice + + ;
case ID_GC_EXIDEVICE_SLOTB :
exidevice + + ;
2009-02-02 22:29:33 +00:00
case ID_GC_EXIDEVICE_SLOTA :
2009-02-28 21:30:43 +00:00
ChooseEXIDevice ( std : : string ( event . GetString ( ) . mb_str ( ) ) , exidevice ) ;
2009-02-02 22:29:33 +00:00
break ;
case ID_GC_EXIDEVICE_SLOTA_PATH :
ChooseMemcardPath ( SConfig : : GetInstance ( ) . m_strMemoryCardA , true ) ;
break ;
case ID_GC_EXIDEVICE_SLOTB_PATH :
ChooseMemcardPath ( SConfig : : GetInstance ( ) . m_strMemoryCardB , false ) ;
break ;
case ID_GC_SIDEVICE3 :
sidevice + + ;
case ID_GC_SIDEVICE2 :
sidevice + + ;
case ID_GC_SIDEVICE1 :
sidevice + + ;
case ID_GC_SIDEVICE0 :
ChooseSIDevice ( std : : string ( event . GetString ( ) . mb_str ( ) ) , sidevice ) ;
break ;
2008-12-08 05:30:24 +00:00
}
}
2008-12-23 11:11:02 +00:00
2009-02-02 22:29:33 +00:00
void CConfigMain : : ChooseMemcardPath ( std : : string & strMemcard , bool isSlotA )
{
2009-02-28 21:30:43 +00:00
std : : string filename = std : : string ( wxFileSelector (
wxT ( " Choose a file to open " ) ,
2010-02-02 21:56:29 +00:00
wxString : : FromAscii ( File : : GetUserPath ( D_GCUSER_IDX ) ) ,
2009-02-28 21:30:43 +00:00
isSlotA ? wxT ( GC_MEMCARDA ) : wxT ( GC_MEMCARDB ) ,
wxEmptyString ,
2009-02-02 22:29:33 +00:00
wxT ( " Gamecube Memory Cards (*.raw,*.gcp)|*.raw;*.gcp " ) ) . mb_str ( ) ) ;
2009-02-28 21:30:43 +00:00
2009-02-02 22:29:33 +00:00
if ( ! filename . empty ( ) )
2009-02-28 21:46:04 +00:00
{
2009-02-28 22:01:58 +00:00
// also check that the path isn't used for the other memcard...
if ( filename . compare ( isSlotA ? SConfig : : GetInstance ( ) . m_strMemoryCardB
: SConfig : : GetInstance ( ) . m_strMemoryCardA ) ! = 0 )
{
strMemcard = filename ;
if ( Core : : GetState ( ) ! = Core : : CORE_UNINITIALIZED )
{
// Change memcard to the new file
ExpansionInterface : : ChangeDevice (
isSlotA ? 0 : 1 , // SlotA: channel 0, SlotB channel 1
isSlotA ? EXIDEVICE_MEMORYCARD_A : EXIDEVICE_MEMORYCARD_B ,
0 ) ; // SP1 is device 2, slots are device 0
}
}
else
2009-02-28 21:46:04 +00:00
{
2009-02-28 22:01:58 +00:00
PanicAlert ( " Cannot use that file as a memory card. \n "
" Are you trying to use the same file in both slots? " ) ;
2009-02-28 21:46:04 +00:00
}
}
2009-02-02 22:29:33 +00:00
}
2008-12-08 05:30:24 +00:00
2009-02-02 22:29:33 +00:00
void CConfigMain : : ChooseSIDevice ( std : : string deviceName , int deviceNum )
{
TSIDevices tempType ;
2009-10-19 15:14:48 +00:00
if ( ! deviceName . compare ( SIDEV_STDCONT_STR ) )
2009-02-02 22:29:33 +00:00
tempType = SI_GC_CONTROLLER ;
2009-10-19 15:14:48 +00:00
else if ( ! deviceName . compare ( SIDEV_GBA_STR ) )
2009-02-06 18:18:20 +00:00
tempType = SI_GBA ;
2009-10-19 15:14:48 +00:00
else if ( ! deviceName . compare ( SIDEV_AM_BB_STR ) )
tempType = SI_AM_BASEBOARD ;
2009-02-02 22:29:33 +00:00
else
2009-12-21 07:39:57 +00:00
tempType = SI_NONE ;
2008-12-23 11:11:02 +00:00
2009-02-02 22:29:33 +00:00
SConfig : : GetInstance ( ) . m_SIDevice [ deviceNum ] = tempType ;
2009-03-02 04:02:09 +00:00
if ( Core : : GetState ( ) ! = Core : : CORE_UNINITIALIZED )
{
// Change plugged device! :D
SerialInterface : : ChangeDevice ( tempType , deviceNum ) ;
}
2009-02-02 22:29:33 +00:00
}
2009-02-28 21:30:43 +00:00
void CConfigMain : : ChooseEXIDevice ( std : : string deviceName , int deviceNum )
{
TEXIDevices tempType ;
2009-10-19 15:14:48 +00:00
if ( ! deviceName . compare ( EXIDEV_MEMCARD_STR ) )
2009-02-28 21:30:43 +00:00
tempType = deviceNum ? EXIDEVICE_MEMORYCARD_B : EXIDEVICE_MEMORYCARD_A ;
2009-10-19 15:14:48 +00:00
else if ( ! deviceName . compare ( EXIDEV_MIC_STR ) )
2009-02-28 21:30:43 +00:00
tempType = EXIDEVICE_MIC ;
2009-10-19 15:14:48 +00:00
else if ( ! deviceName . compare ( EXIDEV_BBA_STR ) )
2009-02-28 21:30:43 +00:00
tempType = EXIDEVICE_ETH ;
2009-10-19 15:14:48 +00:00
else if ( ! deviceName . compare ( EXIDEV_AM_BB_STR ) )
tempType = EXIDEVICE_AM_BASEBOARD ;
else if ( ! deviceName . compare ( DEV_NONE_STR ) )
tempType = EXIDEVICE_NONE ;
2009-02-28 21:30:43 +00:00
else
tempType = EXIDEVICE_DUMMY ;
// Gray out the memcard path button if we're not on a memcard
if ( tempType = = EXIDEVICE_MEMORYCARD_A | | tempType = = EXIDEVICE_MEMORYCARD_B )
GCMemcardPath [ deviceNum ] - > Enable ( ) ;
else if ( deviceNum = = 0 | | deviceNum = = 1 )
GCMemcardPath [ deviceNum ] - > Disable ( ) ;
SConfig : : GetInstance ( ) . m_EXIDevice [ deviceNum ] = tempType ;
if ( Core : : GetState ( ) ! = Core : : CORE_UNINITIALIZED )
{
// Change plugged device! :D
ExpansionInterface : : ChangeDevice (
( deviceNum = = 1 ) ? 1 : 0 , // SlotB is on channel 1, slotA and SP1 are on 0
tempType , // The device enum to change to
( deviceNum = = 2 ) ? 2 : 0 ) ; // SP1 is device 2, slots are device 0
}
}
2009-02-02 22:29:33 +00:00
2009-02-23 09:34:28 +00:00
2009-09-02 21:00:45 +00:00
2008-12-23 11:11:02 +00:00
// Wii settings
2009-02-23 09:34:28 +00:00
// -------------------
2008-12-08 05:30:24 +00:00
void CConfigMain : : WiiSettingsChanged ( wxCommandEvent & event )
{
switch ( event . GetId ( ) )
{
2008-12-09 05:37:15 +00:00
case ID_WII_BT_BAR : // Wiimote settings
2009-09-14 06:26:49 +00:00
SConfig : : GetInstance ( ) . m_SYSCONF - > SetData ( " BT.BAR " , WiiSensBarPos - > GetSelection ( ) ) ;
2008-12-08 05:30:24 +00:00
break ;
2008-12-09 05:37:15 +00:00
2009-09-14 06:26:49 +00:00
case ID_WII_IPL_AR : // SYSCONF settings
SConfig : : GetInstance ( ) . m_SYSCONF - > SetData ( " IPL.AR " , WiiAspectRatio - > GetSelection ( ) ) ;
2008-12-08 05:30:24 +00:00
break ;
case ID_WII_IPL_SSV :
2009-09-14 06:26:49 +00:00
SConfig : : GetInstance ( ) . m_SYSCONF - > SetData ( " IPL.SSV " , WiiScreenSaver - > IsChecked ( ) ) ;
2008-12-08 05:30:24 +00:00
break ;
case ID_WII_IPL_LNG :
2009-09-14 06:26:49 +00:00
SConfig : : GetInstance ( ) . m_SYSCONF - > SetData ( " IPL.LNG " , WiiSystemLang - > GetSelection ( ) ) ;
2008-12-08 05:30:24 +00:00
break ;
case ID_WII_IPL_PGS :
2009-09-14 06:26:49 +00:00
SConfig : : GetInstance ( ) . m_SYSCONF - > SetData ( " IPL.PGS " , WiiProgressiveScan - > IsChecked ( ) ) ;
2008-12-08 05:30:24 +00:00
break ;
case ID_WII_IPL_E60 :
2009-09-14 06:26:49 +00:00
SConfig : : GetInstance ( ) . m_SYSCONF - > SetData ( " IPL.E60 " , WiiEuRGB60 - > IsChecked ( ) ) ;
2008-12-08 05:30:24 +00:00
break ;
2010-01-11 11:56:17 +00:00
case ID_WII_SD_CARD :
SConfig : : GetInstance ( ) . m_WiiSDCard = WiiSDCard - > IsChecked ( ) ;
break ;
case ID_WII_KEYBOARD :
SConfig : : GetInstance ( ) . m_WiiKeyboard = WiiKeyboard - > IsChecked ( ) ;
break ;
2008-12-08 05:30:24 +00:00
}
}
2009-02-23 09:34:28 +00:00
2008-12-23 11:11:02 +00:00
2009-09-02 21:00:45 +00:00
2008-12-23 11:11:02 +00:00
// Paths settings
2009-02-23 09:34:28 +00:00
// -------------------
2008-12-08 05:30:24 +00:00
void CConfigMain : : ISOPathsSelectionChanged ( wxCommandEvent & WXUNUSED ( event ) )
{
if ( ! ISOPaths - > GetStringSelection ( ) . empty ( ) )
{
RemoveISOPath - > Enable ( true ) ;
}
else
{
RemoveISOPath - > Enable ( false ) ;
}
}
void CConfigMain : : AddRemoveISOPaths ( wxCommandEvent & event )
{
if ( event . GetId ( ) = = ID_ADDISOPATH )
{
wxString dirHome ;
wxGetHomeDir ( & dirHome ) ;
wxDirDialog dialog ( this , _T ( " Choose a directory to add " ) , dirHome , wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST ) ;
if ( dialog . ShowModal ( ) = = wxID_OK )
{
if ( ISOPaths - > FindString ( dialog . GetPath ( ) ) ! = - 1 )
{
wxMessageBox ( _ ( " The chosen directory is already in the list " ) , _ ( " Error " ) , wxOK ) ;
}
else
{
bRefreshList = true ;
ISOPaths - > Append ( dialog . GetPath ( ) ) ;
}
}
}
else
{
bRefreshList = true ;
ISOPaths - > Delete ( ISOPaths - > GetSelection ( ) ) ;
}
// Save changes right away
SConfig : : GetInstance ( ) . m_ISOFolder . clear ( ) ;
for ( unsigned int i = 0 ; i < ISOPaths - > GetCount ( ) ; i + + )
2009-08-02 05:59:55 +00:00
SConfig : : GetInstance ( ) . m_ISOFolder . push_back ( std : : string ( ISOPaths - > GetStrings ( ) [ i ] . mb_str ( ) ) ) ;
2008-12-08 05:30:24 +00:00
}
2009-04-05 06:46:18 +00:00
void CConfigMain : : RecursiveDirectoryChanged ( wxCommandEvent & WXUNUSED ( event ) )
{
2009-04-08 20:26:33 +00:00
SConfig : : GetInstance ( ) . m_RecursiveISOFolder = RecersiveISOPath - > IsChecked ( ) ;
2009-04-05 06:46:18 +00:00
bRefreshList = true ;
}
2008-12-08 05:30:24 +00:00
void CConfigMain : : DefaultISOChanged ( wxFileDirPickerEvent & WXUNUSED ( event ) )
{
2009-08-02 05:59:55 +00:00
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . m_strDefaultGCM = DefaultISO - > GetPath ( ) . mb_str ( ) ;
2008-12-08 05:30:24 +00:00
}
void CConfigMain : : DVDRootChanged ( wxFileDirPickerEvent & WXUNUSED ( event ) )
{
2009-08-02 05:59:55 +00:00
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . m_strDVDRoot = DVDRoot - > GetPath ( ) . mb_str ( ) ;
2008-12-08 05:30:24 +00:00
}
2009-12-10 09:16:10 +00:00
void CConfigMain : : ApploaderPathChanged ( wxFileDirPickerEvent & WXUNUSED ( event ) )
{
SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . m_strApploader = ApploaderPath - > GetPath ( ) . mb_str ( ) ;
}
2009-09-02 21:00:45 +00:00
2009-02-02 22:29:33 +00:00
// Plugin settings
2008-12-08 05:30:24 +00:00
void CConfigMain : : OnSelectionChanged ( wxCommandEvent & WXUNUSED ( event ) )
{
2009-02-02 22:29:33 +00:00
// Update plugin filenames
2008-12-08 05:30:24 +00:00
GetFilename ( GraphicSelection , SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . m_strVideoPlugin ) ;
GetFilename ( DSPSelection , SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . m_strDSPPlugin ) ;
2009-01-19 05:16:05 +00:00
for ( int i = 0 ; i < MAXPADS ; i + + )
2009-01-24 12:09:30 +00:00
GetFilename ( PADSelection , SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . m_strPadPlugin [ i ] ) ;
2009-01-19 05:16:05 +00:00
for ( int i = 0 ; i < MAXWIIMOTES ; i + + )
GetFilename ( WiimoteSelection , SConfig : : GetInstance ( ) . m_LocalCoreStartupParameter . m_strWiimotePlugin [ i ] ) ;
2008-12-08 05:30:24 +00:00
}
void CConfigMain : : OnConfig ( wxCommandEvent & event )
{
switch ( event . GetId ( ) )
{
case ID_GRAPHIC_CONFIG :
CallConfig ( GraphicSelection ) ;
break ;
case ID_DSP_CONFIG :
CallConfig ( DSPSelection ) ;
break ;
case ID_PAD_CONFIG :
CallConfig ( PADSelection ) ;
break ;
case ID_WIIMOTE_CONFIG :
CallConfig ( WiimoteSelection ) ;
break ;
}
}
2008-12-23 11:11:02 +00:00
2009-01-24 12:09:30 +00:00
void CConfigMain : : CallConfig ( wxChoice * _pChoice )
{
int Index = _pChoice - > GetSelection ( ) ;
2009-03-18 17:17:58 +00:00
INFO_LOG ( CONSOLE , " CallConfig: %i \n " , Index ) ;
2009-01-24 12:09:30 +00:00
if ( Index > = 0 )
{
const CPluginInfo * pInfo = static_cast < CPluginInfo * > ( _pChoice - > GetClientData ( Index ) ) ;
if ( pInfo ! = NULL )
2009-01-31 21:49:06 +00:00
CPluginManager : : GetInstance ( ) . OpenConfig ( ( HWND ) this - > GetHandle ( ) , pInfo - > GetFilename ( ) . c_str ( ) , pInfo - > GetPluginInfo ( ) . Type ) ;
2009-01-24 12:09:30 +00:00
}
}
2008-12-23 11:11:02 +00:00
2008-12-08 05:30:24 +00:00
void CConfigMain : : FillChoiceBox ( wxChoice * _pChoice , int _PluginType , const std : : string & _SelectFilename )
{
_pChoice - > Clear ( ) ;
int Index = - 1 ;
const CPluginInfos & rInfos = CPluginManager : : GetInstance ( ) . GetPluginInfos ( ) ;
for ( size_t i = 0 ; i < rInfos . size ( ) ; i + + )
{
const PLUGIN_INFO & rPluginInfo = rInfos [ i ] . GetPluginInfo ( ) ;
if ( rPluginInfo . Type = = _PluginType )
{
wxString temp ;
temp = wxString : : FromAscii ( rInfos [ i ] . GetPluginInfo ( ) . Name ) ;
int NewIndex = _pChoice - > Append ( temp , ( void * ) & rInfos [ i ] ) ;
2009-01-31 21:49:06 +00:00
if ( rInfos [ i ] . GetFilename ( ) = = _SelectFilename )
2008-12-08 05:30:24 +00:00
{
Index = NewIndex ;
}
}
}
_pChoice - > Select ( Index ) ;
}
bool CConfigMain : : GetFilename ( wxChoice * _pChoice , std : : string & _rFilename )
2009-01-24 12:09:30 +00:00
{
2008-12-08 05:30:24 +00:00
_rFilename . clear ( ) ;
int Index = _pChoice - > GetSelection ( ) ;
if ( Index > = 0 )
{
const CPluginInfo * pInfo = static_cast < CPluginInfo * > ( _pChoice - > GetClientData ( Index ) ) ;
2009-01-31 21:49:06 +00:00
_rFilename = pInfo - > GetFilename ( ) ;
2009-03-18 17:17:58 +00:00
INFO_LOG ( CONSOLE , " GetFilename: %i %s \n " , Index , _rFilename . c_str ( ) ) ;
2008-12-08 05:30:24 +00:00
return ( true ) ;
}
return ( false ) ;
}