2015-03-18 22:00:27 +00:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2015-03-18 22:00:27 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-11-05 12:29:29 +00:00
|
|
|
#include "DolphinWX/Config/WiiConfigPane.h"
|
|
|
|
|
2015-03-18 22:00:27 +00:00
|
|
|
#include <wx/checkbox.h>
|
|
|
|
#include <wx/choice.h>
|
|
|
|
#include <wx/gbsizer.h>
|
|
|
|
#include <wx/sizer.h>
|
2016-09-12 18:25:36 +00:00
|
|
|
#include <wx/slider.h>
|
2015-03-18 22:00:27 +00:00
|
|
|
#include <wx/stattext.h>
|
|
|
|
|
|
|
|
#include "Core/ConfigManager.h"
|
|
|
|
#include "Core/Core.h"
|
2017-01-18 12:50:28 +00:00
|
|
|
#include "Core/IOS/IPC.h"
|
2016-08-02 06:22:37 +00:00
|
|
|
#include "DolphinWX/DolphinSlider.h"
|
2016-11-05 12:29:29 +00:00
|
|
|
#include "DolphinWX/WxEventUtils.h"
|
2016-06-24 08:43:46 +00:00
|
|
|
#include "DolphinWX/WxUtils.h"
|
2015-03-18 22:00:27 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
WiiConfigPane::WiiConfigPane(wxWindow* parent, wxWindowID id) : wxPanel(parent, id)
|
2015-03-18 22:00:27 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
InitializeGUI();
|
|
|
|
LoadGUIValues();
|
2016-11-05 12:29:29 +00:00
|
|
|
BindEvents();
|
2015-03-18 22:00:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WiiConfigPane::InitializeGUI()
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
m_aspect_ratio_strings.Add("4:3");
|
|
|
|
m_aspect_ratio_strings.Add("16:9");
|
|
|
|
|
|
|
|
m_system_language_strings.Add(_("Japanese"));
|
|
|
|
m_system_language_strings.Add(_("English"));
|
|
|
|
m_system_language_strings.Add(_("German"));
|
|
|
|
m_system_language_strings.Add(_("French"));
|
|
|
|
m_system_language_strings.Add(_("Spanish"));
|
|
|
|
m_system_language_strings.Add(_("Italian"));
|
|
|
|
m_system_language_strings.Add(_("Dutch"));
|
|
|
|
m_system_language_strings.Add(_("Simplified Chinese"));
|
|
|
|
m_system_language_strings.Add(_("Traditional Chinese"));
|
|
|
|
m_system_language_strings.Add(_("Korean"));
|
|
|
|
|
2016-09-12 18:25:36 +00:00
|
|
|
m_bt_sensor_bar_pos_strings.Add(_("Bottom"));
|
|
|
|
m_bt_sensor_bar_pos_strings.Add(_("Top"));
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
m_screensaver_checkbox = new wxCheckBox(this, wxID_ANY, _("Enable Screen Saver"));
|
|
|
|
m_pal60_mode_checkbox = new wxCheckBox(this, wxID_ANY, _("Use PAL60 Mode (EuRGB60)"));
|
|
|
|
m_aspect_ratio_choice =
|
|
|
|
new wxChoice(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, m_aspect_ratio_strings);
|
|
|
|
m_system_language_choice =
|
|
|
|
new wxChoice(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, m_system_language_strings);
|
|
|
|
m_sd_card_checkbox = new wxCheckBox(this, wxID_ANY, _("Insert SD Card"));
|
|
|
|
m_connect_keyboard_checkbox = new wxCheckBox(this, wxID_ANY, _("Connect USB Keyboard"));
|
2016-09-12 18:25:36 +00:00
|
|
|
m_bt_sensor_bar_pos =
|
|
|
|
new wxChoice(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, m_bt_sensor_bar_pos_strings);
|
2016-08-02 06:22:37 +00:00
|
|
|
m_bt_sensor_bar_sens = new DolphinSlider(this, wxID_ANY, 0, 0, 4);
|
|
|
|
m_bt_speaker_volume = new DolphinSlider(this, wxID_ANY, 0, 0, 127);
|
2017-02-01 15:19:03 +00:00
|
|
|
m_bt_wiimote_motor = new wxCheckBox(this, wxID_ANY, _("Wii Remote Rumble"));
|
2016-09-12 18:25:36 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
m_screensaver_checkbox->SetToolTip(_("Dims the screen after five minutes of inactivity."));
|
|
|
|
m_pal60_mode_checkbox->SetToolTip(_("Sets the Wii display mode to 60Hz (480i) instead of 50Hz "
|
|
|
|
"(576i) for PAL games.\nMay not work for all games."));
|
|
|
|
m_system_language_choice->SetToolTip(_("Sets the Wii system language."));
|
|
|
|
m_sd_card_checkbox->SetToolTip(_("Saved to /Wii/sd.raw (default size is 128mb)"));
|
|
|
|
m_connect_keyboard_checkbox->SetToolTip(_("May cause slow down in Wii Menu and some games."));
|
|
|
|
|
2016-08-02 06:22:37 +00:00
|
|
|
const int space5 = FromDIP(5);
|
|
|
|
|
|
|
|
wxGridBagSizer* const misc_settings_grid_sizer = new wxGridBagSizer(space5, space5);
|
|
|
|
misc_settings_grid_sizer->Add(m_screensaver_checkbox, wxGBPosition(0, 0), wxGBSpan(1, 2));
|
|
|
|
misc_settings_grid_sizer->Add(m_pal60_mode_checkbox, wxGBPosition(1, 0), wxGBSpan(1, 2));
|
2016-06-24 08:43:46 +00:00
|
|
|
misc_settings_grid_sizer->Add(new wxStaticText(this, wxID_ANY, _("Aspect Ratio:")),
|
2016-08-02 06:22:37 +00:00
|
|
|
wxGBPosition(2, 0), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
|
|
|
|
misc_settings_grid_sizer->Add(m_aspect_ratio_choice, wxGBPosition(2, 1), wxDefaultSpan,
|
|
|
|
wxALIGN_CENTER_VERTICAL);
|
2016-06-24 08:43:46 +00:00
|
|
|
misc_settings_grid_sizer->Add(new wxStaticText(this, wxID_ANY, _("System Language:")),
|
2016-08-02 06:22:37 +00:00
|
|
|
wxGBPosition(3, 0), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
|
|
|
|
misc_settings_grid_sizer->Add(m_system_language_choice, wxGBPosition(3, 1), wxDefaultSpan,
|
|
|
|
wxALIGN_CENTER_VERTICAL);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-09-12 18:25:36 +00:00
|
|
|
auto* const bt_sensor_bar_pos_sizer = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
bt_sensor_bar_pos_sizer->Add(new wxStaticText(this, wxID_ANY, _("Min")), 0,
|
|
|
|
wxALIGN_CENTER_VERTICAL);
|
2016-08-02 06:22:37 +00:00
|
|
|
bt_sensor_bar_pos_sizer->Add(m_bt_sensor_bar_sens, 0, wxALIGN_CENTER_VERTICAL);
|
2016-09-12 18:25:36 +00:00
|
|
|
bt_sensor_bar_pos_sizer->Add(new wxStaticText(this, wxID_ANY, _("Max")), 0,
|
|
|
|
wxALIGN_CENTER_VERTICAL);
|
|
|
|
|
|
|
|
auto* const bt_speaker_volume_sizer = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
bt_speaker_volume_sizer->Add(new wxStaticText(this, wxID_ANY, _("Min")), 0,
|
|
|
|
wxALIGN_CENTER_VERTICAL);
|
2016-08-02 06:22:37 +00:00
|
|
|
bt_speaker_volume_sizer->Add(m_bt_speaker_volume, 0, wxALIGN_CENTER_VERTICAL);
|
2016-09-12 18:25:36 +00:00
|
|
|
bt_speaker_volume_sizer->Add(new wxStaticText(this, wxID_ANY, _("Max")), 0,
|
|
|
|
wxALIGN_CENTER_VERTICAL);
|
|
|
|
|
2016-08-02 06:22:37 +00:00
|
|
|
wxGridBagSizer* const bt_settings_grid_sizer = new wxGridBagSizer(space5, space5);
|
2016-09-12 18:25:36 +00:00
|
|
|
bt_settings_grid_sizer->Add(new wxStaticText(this, wxID_ANY, _("Sensor Bar Position:")),
|
2016-08-02 06:22:37 +00:00
|
|
|
wxGBPosition(0, 0), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
|
|
|
|
bt_settings_grid_sizer->Add(m_bt_sensor_bar_pos, wxGBPosition(0, 1), wxDefaultSpan,
|
|
|
|
wxALIGN_CENTER_VERTICAL);
|
2016-09-12 18:25:36 +00:00
|
|
|
bt_settings_grid_sizer->Add(new wxStaticText(this, wxID_ANY, _("IR Sensitivity:")),
|
2016-08-02 06:22:37 +00:00
|
|
|
wxGBPosition(1, 0), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
|
|
|
|
bt_settings_grid_sizer->Add(bt_sensor_bar_pos_sizer, wxGBPosition(1, 1), wxDefaultSpan,
|
|
|
|
wxALIGN_CENTER_VERTICAL);
|
2016-09-12 18:25:36 +00:00
|
|
|
bt_settings_grid_sizer->Add(new wxStaticText(this, wxID_ANY, _("Speaker Volume:")),
|
2016-08-02 06:22:37 +00:00
|
|
|
wxGBPosition(2, 0), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
|
|
|
|
bt_settings_grid_sizer->Add(bt_speaker_volume_sizer, wxGBPosition(2, 1), wxDefaultSpan,
|
|
|
|
wxALIGN_CENTER_VERTICAL);
|
|
|
|
bt_settings_grid_sizer->Add(m_bt_wiimote_motor, wxGBPosition(3, 0), wxGBSpan(1, 2),
|
|
|
|
wxALIGN_CENTER_VERTICAL);
|
2016-09-12 18:25:36 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
wxStaticBoxSizer* const misc_settings_static_sizer =
|
|
|
|
new wxStaticBoxSizer(wxVERTICAL, this, _("Misc Settings"));
|
2016-08-02 06:22:37 +00:00
|
|
|
misc_settings_static_sizer->AddSpacer(space5);
|
|
|
|
misc_settings_static_sizer->Add(misc_settings_grid_sizer, 0, wxLEFT | wxRIGHT, space5);
|
|
|
|
misc_settings_static_sizer->AddSpacer(space5);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
wxStaticBoxSizer* const device_settings_sizer =
|
|
|
|
new wxStaticBoxSizer(wxVERTICAL, this, _("Device Settings"));
|
2016-08-02 06:22:37 +00:00
|
|
|
device_settings_sizer->AddSpacer(space5);
|
|
|
|
device_settings_sizer->Add(m_sd_card_checkbox, 0, wxLEFT | wxRIGHT, space5);
|
|
|
|
device_settings_sizer->AddSpacer(space5);
|
|
|
|
device_settings_sizer->Add(m_connect_keyboard_checkbox, 0, wxLEFT | wxRIGHT, space5);
|
|
|
|
device_settings_sizer->AddSpacer(space5);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-09-12 18:25:36 +00:00
|
|
|
auto* const bt_settings_static_sizer =
|
|
|
|
new wxStaticBoxSizer(wxVERTICAL, this, _("Wii Remote Settings"));
|
2016-08-02 06:22:37 +00:00
|
|
|
bt_settings_static_sizer->AddSpacer(space5);
|
|
|
|
bt_settings_static_sizer->Add(bt_settings_grid_sizer, 0, wxLEFT | wxRIGHT, space5);
|
|
|
|
bt_settings_static_sizer->AddSpacer(space5);
|
2016-09-12 18:25:36 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
wxBoxSizer* const main_sizer = new wxBoxSizer(wxVERTICAL);
|
2016-08-02 06:22:37 +00:00
|
|
|
main_sizer->AddSpacer(space5);
|
|
|
|
main_sizer->Add(misc_settings_static_sizer, 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
main_sizer->AddSpacer(space5);
|
|
|
|
main_sizer->Add(device_settings_sizer, 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
main_sizer->AddSpacer(space5);
|
|
|
|
main_sizer->Add(bt_settings_static_sizer, 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
main_sizer->AddSpacer(space5);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
SetSizer(main_sizer);
|
2015-03-18 22:00:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WiiConfigPane::LoadGUIValues()
|
|
|
|
{
|
2016-10-07 19:57:07 +00:00
|
|
|
m_screensaver_checkbox->SetValue(!!SConfig::GetInstance().m_wii_screensaver);
|
2016-06-24 08:43:46 +00:00
|
|
|
m_pal60_mode_checkbox->SetValue(SConfig::GetInstance().bPAL60);
|
2016-10-07 19:57:07 +00:00
|
|
|
m_aspect_ratio_choice->SetSelection(SConfig::GetInstance().m_wii_aspect_ratio);
|
|
|
|
m_system_language_choice->SetSelection(SConfig::GetInstance().m_wii_language);
|
2015-03-18 22:00:27 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
m_sd_card_checkbox->SetValue(SConfig::GetInstance().m_WiiSDCard);
|
|
|
|
m_connect_keyboard_checkbox->SetValue(SConfig::GetInstance().m_WiiKeyboard);
|
2016-09-12 18:25:36 +00:00
|
|
|
|
2016-10-07 19:57:07 +00:00
|
|
|
m_bt_sensor_bar_pos->SetSelection(SConfig::GetInstance().m_sensor_bar_position);
|
|
|
|
m_bt_sensor_bar_sens->SetValue(SConfig::GetInstance().m_sensor_bar_sensitivity);
|
|
|
|
m_bt_speaker_volume->SetValue(SConfig::GetInstance().m_speaker_volume);
|
|
|
|
m_bt_wiimote_motor->SetValue(SConfig::GetInstance().m_wiimote_motor);
|
2015-03-18 22:00:27 +00:00
|
|
|
}
|
|
|
|
|
2016-11-05 12:29:29 +00:00
|
|
|
void WiiConfigPane::BindEvents()
|
2015-03-18 22:00:27 +00:00
|
|
|
{
|
2016-11-05 12:29:29 +00:00
|
|
|
m_screensaver_checkbox->Bind(wxEVT_CHECKBOX, &WiiConfigPane::OnScreenSaverCheckBoxChanged, this);
|
|
|
|
m_screensaver_checkbox->Bind(wxEVT_UPDATE_UI, &WxEventUtils::OnEnableIfCoreNotRunning);
|
|
|
|
|
|
|
|
m_pal60_mode_checkbox->Bind(wxEVT_CHECKBOX, &WiiConfigPane::OnPAL60CheckBoxChanged, this);
|
|
|
|
m_pal60_mode_checkbox->Bind(wxEVT_UPDATE_UI, &WxEventUtils::OnEnableIfCoreNotRunning);
|
|
|
|
|
|
|
|
m_aspect_ratio_choice->Bind(wxEVT_CHOICE, &WiiConfigPane::OnAspectRatioChoiceChanged, this);
|
|
|
|
m_aspect_ratio_choice->Bind(wxEVT_UPDATE_UI, &WxEventUtils::OnEnableIfCoreNotRunning);
|
|
|
|
|
|
|
|
m_system_language_choice->Bind(wxEVT_CHOICE, &WiiConfigPane::OnSystemLanguageChoiceChanged, this);
|
|
|
|
m_system_language_choice->Bind(wxEVT_UPDATE_UI, &WxEventUtils::OnEnableIfCoreNotRunning);
|
|
|
|
|
|
|
|
m_sd_card_checkbox->Bind(wxEVT_CHECKBOX, &WiiConfigPane::OnSDCardCheckBoxChanged, this);
|
|
|
|
m_connect_keyboard_checkbox->Bind(wxEVT_CHECKBOX,
|
|
|
|
&WiiConfigPane::OnConnectKeyboardCheckBoxChanged, this);
|
|
|
|
|
|
|
|
m_bt_sensor_bar_pos->Bind(wxEVT_CHOICE, &WiiConfigPane::OnSensorBarPosChanged, this);
|
|
|
|
m_bt_sensor_bar_pos->Bind(wxEVT_UPDATE_UI, &WxEventUtils::OnEnableIfCoreNotRunning);
|
|
|
|
|
|
|
|
m_bt_sensor_bar_sens->Bind(wxEVT_SLIDER, &WiiConfigPane::OnSensorBarSensChanged, this);
|
|
|
|
m_bt_sensor_bar_sens->Bind(wxEVT_UPDATE_UI, &WxEventUtils::OnEnableIfCoreNotRunning);
|
|
|
|
|
|
|
|
m_bt_speaker_volume->Bind(wxEVT_SLIDER, &WiiConfigPane::OnSpeakerVolumeChanged, this);
|
|
|
|
m_bt_speaker_volume->Bind(wxEVT_UPDATE_UI, &WxEventUtils::OnEnableIfCoreNotRunning);
|
|
|
|
|
|
|
|
m_bt_wiimote_motor->Bind(wxEVT_CHECKBOX, &WiiConfigPane::OnWiimoteMotorChanged, this);
|
|
|
|
m_bt_wiimote_motor->Bind(wxEVT_UPDATE_UI, &WxEventUtils::OnEnableIfCoreNotRunning);
|
2015-03-18 22:00:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WiiConfigPane::OnScreenSaverCheckBoxChanged(wxCommandEvent& event)
|
|
|
|
{
|
2016-10-07 19:57:07 +00:00
|
|
|
SConfig::GetInstance().m_wii_screensaver = m_screensaver_checkbox->IsChecked();
|
2015-03-18 22:00:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WiiConfigPane::OnPAL60CheckBoxChanged(wxCommandEvent& event)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
SConfig::GetInstance().bPAL60 = m_pal60_mode_checkbox->IsChecked();
|
2015-03-18 22:00:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WiiConfigPane::OnSDCardCheckBoxChanged(wxCommandEvent& event)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
SConfig::GetInstance().m_WiiSDCard = m_sd_card_checkbox->IsChecked();
|
2017-01-17 20:01:30 +00:00
|
|
|
IOS::HLE::SDIO_EventNotify();
|
2015-03-18 22:00:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WiiConfigPane::OnConnectKeyboardCheckBoxChanged(wxCommandEvent& event)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
SConfig::GetInstance().m_WiiKeyboard = m_connect_keyboard_checkbox->IsChecked();
|
2015-03-18 22:00:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WiiConfigPane::OnSystemLanguageChoiceChanged(wxCommandEvent& event)
|
|
|
|
{
|
2016-10-07 19:57:07 +00:00
|
|
|
SConfig::GetInstance().m_wii_language = m_system_language_choice->GetSelection();
|
2015-03-18 22:00:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WiiConfigPane::OnAspectRatioChoiceChanged(wxCommandEvent& event)
|
|
|
|
{
|
2016-10-07 19:57:07 +00:00
|
|
|
SConfig::GetInstance().m_wii_aspect_ratio = m_aspect_ratio_choice->GetSelection();
|
2015-03-18 22:00:27 +00:00
|
|
|
}
|
|
|
|
|
2016-09-12 18:25:36 +00:00
|
|
|
void WiiConfigPane::OnSensorBarPosChanged(wxCommandEvent& event)
|
|
|
|
{
|
2016-10-07 19:57:07 +00:00
|
|
|
SConfig::GetInstance().m_sensor_bar_position = event.GetInt();
|
2016-09-12 18:25:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WiiConfigPane::OnSensorBarSensChanged(wxCommandEvent& event)
|
|
|
|
{
|
2016-10-07 19:57:07 +00:00
|
|
|
SConfig::GetInstance().m_sensor_bar_sensitivity = event.GetInt();
|
2016-09-12 18:25:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WiiConfigPane::OnSpeakerVolumeChanged(wxCommandEvent& event)
|
|
|
|
{
|
2016-10-07 19:57:07 +00:00
|
|
|
SConfig::GetInstance().m_speaker_volume = event.GetInt();
|
2016-09-12 18:25:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WiiConfigPane::OnWiimoteMotorChanged(wxCommandEvent& event)
|
|
|
|
{
|
2016-10-07 19:57:07 +00:00
|
|
|
SConfig::GetInstance().m_wiimote_motor = event.IsChecked();
|
2015-03-18 22:00:27 +00:00
|
|
|
}
|