2015-05-24 04:32:32 +00:00
|
|
|
// Copyright 2010 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
2016-09-12 18:25:36 +00:00
|
|
|
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <wx/button.h>
|
|
|
|
#include <wx/checkbox.h>
|
|
|
|
#include <wx/choice.h>
|
|
|
|
#include <wx/dialog.h>
|
2016-09-12 18:25:36 +00:00
|
|
|
#include <wx/gbsizer.h>
|
|
|
|
#include <wx/msgdlg.h>
|
|
|
|
#include <wx/radiobut.h>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <wx/sizer.h>
|
2016-08-02 06:22:44 +00:00
|
|
|
#include <wx/statbox.h>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <wx/stattext.h>
|
|
|
|
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "Common/FileUtil.h"
|
|
|
|
#include "Common/IniFile.h"
|
|
|
|
#include "Core/ConfigManager.h"
|
|
|
|
#include "Core/Core.h"
|
2015-01-16 22:36:05 +00:00
|
|
|
#include "Core/HW/GCKeyboard.h"
|
2014-11-22 20:29:13 +00:00
|
|
|
#include "Core/HW/GCPad.h"
|
2017-01-20 23:45:11 +00:00
|
|
|
#include "Core/HW/SI/SI.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/HW/Wiimote.h"
|
|
|
|
#include "Core/HW/WiimoteReal/WiimoteReal.h"
|
2016-06-24 08:43:46 +00:00
|
|
|
#include "Core/HotkeyManager.h"
|
2017-04-29 14:11:22 +00:00
|
|
|
#include "Core/IOS/IOS.h"
|
2017-01-18 12:50:28 +00:00
|
|
|
#include "Core/IOS/USB/Bluetooth/BTReal.h"
|
2016-06-24 08:43:46 +00:00
|
|
|
#include "Core/NetPlayProto.h"
|
|
|
|
#include "DolphinWX/Config/GCAdapterConfigDiag.h"
|
2014-11-22 21:39:48 +00:00
|
|
|
#include "DolphinWX/ControllerConfigDiag.h"
|
2016-08-02 06:22:44 +00:00
|
|
|
#include "DolphinWX/DolphinSlider.h"
|
2016-11-19 00:54:06 +00:00
|
|
|
#include "DolphinWX/Input/GCKeyboardInputConfigDiag.h"
|
|
|
|
#include "DolphinWX/Input/GCPadInputConfigDiag.h"
|
2016-11-18 07:03:06 +00:00
|
|
|
#include "DolphinWX/Input/InputConfigDiag.h"
|
2016-11-19 00:54:06 +00:00
|
|
|
#include "DolphinWX/Input/WiimoteInputConfigDiag.h"
|
2016-08-02 06:22:44 +00:00
|
|
|
#include "DolphinWX/WxUtils.h"
|
2015-12-31 16:27:51 +00:00
|
|
|
#include "InputCommon/GCAdapter.h"
|
2017-05-09 16:49:10 +00:00
|
|
|
#include "UICommon/UICommon.h"
|
2010-07-03 08:04:10 +00:00
|
|
|
|
2014-11-22 20:29:13 +00:00
|
|
|
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
2016-05-05 23:43:38 +00:00
|
|
|
#include "UICommon/X11Utils.h"
|
2014-11-22 20:29:13 +00:00
|
|
|
#endif
|
|
|
|
|
2014-11-22 21:39:48 +00:00
|
|
|
ControllerConfigDiag::ControllerConfigDiag(wxWindow* const parent)
|
2016-06-24 08:43:46 +00:00
|
|
|
: wxDialog(parent, wxID_ANY, _("Dolphin Controller Configuration"))
|
2010-07-03 08:04:10 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
m_gc_pad_type_strs = {{_("None"), _("Standard Controller"), _("GameCube Adapter for Wii U"),
|
|
|
|
_("Steering Wheel"), _("Dance Mat"), _("DK Bongos"), _("GBA"),
|
2016-08-10 17:23:21 +00:00
|
|
|
_("Keyboard")}};
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-08-02 06:22:44 +00:00
|
|
|
const int space5 = FromDIP(5);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// Combine all UI controls into their own encompassing sizer.
|
2016-08-02 06:22:44 +00:00
|
|
|
wxBoxSizer* const main_sizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
main_sizer->AddSpacer(space5);
|
|
|
|
main_sizer->Add(CreateGamecubeSizer(), 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
main_sizer->AddSpacer(space5);
|
|
|
|
main_sizer->Add(CreateWiimoteConfigSizer(), 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
main_sizer->AddSpacer(space5);
|
2017-02-08 02:27:22 +00:00
|
|
|
main_sizer->Add(CreateAdvancedSettingsSizer(), 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
main_sizer->AddSpacer(space5);
|
2016-08-02 06:22:44 +00:00
|
|
|
main_sizer->Add(CreateButtonSizer(wxCLOSE | wxNO_DEFAULT), 0, wxEXPAND | wxLEFT | wxRIGHT,
|
|
|
|
space5);
|
|
|
|
main_sizer->AddSpacer(space5);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-08-16 00:53:38 +00:00
|
|
|
Bind(wxEVT_CLOSE_WINDOW, &ControllerConfigDiag::OnClose, this);
|
|
|
|
Bind(wxEVT_BUTTON, &ControllerConfigDiag::OnCloseButton, this, wxID_CLOSE);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-09-12 18:25:36 +00:00
|
|
|
UpdateUI();
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
SetLayoutAdaptationMode(wxDIALOG_ADAPTATION_MODE_ENABLED);
|
2016-09-12 18:25:36 +00:00
|
|
|
SetLayoutAdaptationLevel(wxDIALOG_ADAPTATION_STANDARD_SIZER);
|
2016-06-24 08:43:46 +00:00
|
|
|
SetSizerAndFit(main_sizer);
|
|
|
|
Center();
|
2016-09-12 18:25:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerConfigDiag::UpdateUI()
|
|
|
|
{
|
|
|
|
const bool enable_bt_passthrough_mode = SConfig::GetInstance().m_bt_passthrough_enabled;
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < MAX_WIIMOTES; ++i)
|
|
|
|
{
|
|
|
|
m_wiimote_labels[i]->Enable(!enable_bt_passthrough_mode);
|
|
|
|
m_wiimote_sources[i]->Enable(!enable_bt_passthrough_mode);
|
|
|
|
m_wiimote_configure_button[i]->Enable(!enable_bt_passthrough_mode);
|
|
|
|
|
|
|
|
m_wiimote_sources[i]->Select(g_wiimote_sources[i]);
|
|
|
|
|
|
|
|
const bool wii_game_started =
|
2017-02-05 12:39:58 +00:00
|
|
|
SConfig::GetInstance().bWii || Core::GetState() == Core::State::Uninitialized;
|
2017-04-03 17:30:58 +00:00
|
|
|
if (Core::WantsDeterminism() || !wii_game_started)
|
2016-09-12 18:25:36 +00:00
|
|
|
m_wiimote_sources[i]->Disable();
|
|
|
|
if (!wii_game_started ||
|
|
|
|
(g_wiimote_sources[i] != WIIMOTE_SRC_EMU && g_wiimote_sources[i] != WIIMOTE_SRC_HYBRID))
|
|
|
|
m_wiimote_configure_button[i]->Disable();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_passthrough_sync_text->Enable(enable_bt_passthrough_mode);
|
|
|
|
m_passthrough_sync_btn->Enable(enable_bt_passthrough_mode);
|
|
|
|
m_passthrough_reset_text->Enable(enable_bt_passthrough_mode);
|
|
|
|
m_passthrough_reset_btn->Enable(enable_bt_passthrough_mode);
|
|
|
|
|
|
|
|
m_balance_board_checkbox->Enable(!enable_bt_passthrough_mode);
|
|
|
|
m_enable_continuous_scanning->Enable(!enable_bt_passthrough_mode);
|
|
|
|
m_refresh_wm_button->Enable(!enable_bt_passthrough_mode);
|
|
|
|
m_unsupported_bt_text->Enable(!enable_bt_passthrough_mode);
|
|
|
|
m_enable_speaker_data->Enable(!enable_bt_passthrough_mode);
|
|
|
|
|
|
|
|
// Disable some controls when emulation is running
|
|
|
|
if (Core::IsRunning())
|
|
|
|
{
|
|
|
|
if (!SConfig::GetInstance().bWii || NetPlay::IsNetPlayRunning())
|
|
|
|
{
|
|
|
|
m_passthrough_sync_text->Disable();
|
|
|
|
m_passthrough_sync_btn->Disable();
|
|
|
|
m_passthrough_reset_text->Disable();
|
|
|
|
m_passthrough_reset_btn->Disable();
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < MAX_WIIMOTES; ++i)
|
|
|
|
{
|
|
|
|
m_wiimote_labels[i]->Disable();
|
|
|
|
m_wiimote_sources[i]->Disable();
|
|
|
|
}
|
|
|
|
m_balance_board_checkbox->Disable();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_passthrough_bt_radio->Disable();
|
|
|
|
m_emulated_bt_radio->Disable();
|
|
|
|
|
|
|
|
if (!SConfig::GetInstance().bWii)
|
|
|
|
{
|
|
|
|
m_enable_continuous_scanning->Disable();
|
|
|
|
m_refresh_wm_button->Disable();
|
|
|
|
m_unsupported_bt_text->Disable();
|
|
|
|
m_enable_speaker_data->Disable();
|
|
|
|
}
|
|
|
|
}
|
2014-11-21 18:01:22 +00:00
|
|
|
}
|
2011-08-06 14:38:23 +00:00
|
|
|
|
2016-08-02 06:22:44 +00:00
|
|
|
wxSizer* ControllerConfigDiag::CreateGamecubeSizer()
|
2014-11-21 18:01:22 +00:00
|
|
|
{
|
2016-08-02 06:22:44 +00:00
|
|
|
const int space5 = FromDIP(5);
|
|
|
|
|
|
|
|
auto* gamecube_static_sizer = new wxStaticBoxSizer(wxVERTICAL, this, _("GameCube Controllers"));
|
|
|
|
auto* gamecube_flex_sizer = new wxFlexGridSizer(3, space5, space5);
|
2016-09-12 18:25:36 +00:00
|
|
|
gamecube_flex_sizer->AddGrowableCol(1);
|
2016-08-02 06:22:44 +00:00
|
|
|
gamecube_static_sizer->AddSpacer(space5);
|
|
|
|
gamecube_static_sizer->Add(gamecube_flex_sizer, 1, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
gamecube_static_sizer->AddSpacer(space5);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
wxStaticText* pad_labels[4];
|
|
|
|
wxChoice* pad_type_choices[4];
|
|
|
|
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
2016-08-02 06:22:44 +00:00
|
|
|
pad_labels[i] = new wxStaticText(gamecube_static_sizer->GetStaticBox(), wxID_ANY,
|
|
|
|
wxString::Format(_("Port %i"), i + 1));
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// Create an ID for the config button.
|
|
|
|
const wxWindowID button_id = wxWindow::NewControlId();
|
2016-08-16 00:53:38 +00:00
|
|
|
m_gc_port_from_config_id.emplace(button_id, i);
|
|
|
|
m_gc_port_configure_button[i] =
|
2016-08-02 06:22:44 +00:00
|
|
|
new wxButton(gamecube_static_sizer->GetStaticBox(), button_id, _("Configure"),
|
|
|
|
wxDefaultPosition, wxDLG_UNIT(this, wxSize(60, -1)));
|
2016-08-16 00:53:38 +00:00
|
|
|
m_gc_port_configure_button[i]->Bind(wxEVT_BUTTON, &ControllerConfigDiag::OnGameCubeConfigButton,
|
|
|
|
this);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// Create a control ID for the choice boxes on the fly.
|
|
|
|
const wxWindowID choice_id = wxWindow::NewControlId();
|
2016-08-16 00:53:38 +00:00
|
|
|
m_gc_port_from_choice_id.emplace(choice_id, i);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-08-02 06:22:44 +00:00
|
|
|
pad_type_choices[i] =
|
|
|
|
new wxChoice(gamecube_static_sizer->GetStaticBox(), choice_id, wxDefaultPosition,
|
|
|
|
wxDefaultSize, m_gc_pad_type_strs.size(), m_gc_pad_type_strs.data());
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
pad_type_choices[i]->Bind(wxEVT_CHOICE, &ControllerConfigDiag::OnGameCubePortChanged, this);
|
|
|
|
|
|
|
|
// Disable controller type selection for certain circumstances.
|
2017-04-03 17:30:58 +00:00
|
|
|
if (Core::WantsDeterminism())
|
2016-06-24 08:43:46 +00:00
|
|
|
pad_type_choices[i]->Disable();
|
|
|
|
|
|
|
|
// Set the saved pad type as the default choice.
|
|
|
|
switch (SConfig::GetInstance().m_SIDevice[i])
|
|
|
|
{
|
2017-03-16 08:41:36 +00:00
|
|
|
case SerialInterface::SIDEVICE_GC_CONTROLLER:
|
2016-06-24 08:43:46 +00:00
|
|
|
pad_type_choices[i]->SetStringSelection(m_gc_pad_type_strs[1]);
|
|
|
|
break;
|
2017-03-16 08:41:36 +00:00
|
|
|
case SerialInterface::SIDEVICE_WIIU_ADAPTER:
|
2016-06-24 08:43:46 +00:00
|
|
|
pad_type_choices[i]->SetStringSelection(m_gc_pad_type_strs[2]);
|
|
|
|
break;
|
2017-03-16 08:41:36 +00:00
|
|
|
case SerialInterface::SIDEVICE_GC_STEERING:
|
2016-06-24 08:43:46 +00:00
|
|
|
pad_type_choices[i]->SetStringSelection(m_gc_pad_type_strs[3]);
|
|
|
|
break;
|
2017-03-16 08:41:36 +00:00
|
|
|
case SerialInterface::SIDEVICE_DANCEMAT:
|
2016-06-24 08:43:46 +00:00
|
|
|
pad_type_choices[i]->SetStringSelection(m_gc_pad_type_strs[4]);
|
|
|
|
break;
|
2017-03-16 08:41:36 +00:00
|
|
|
case SerialInterface::SIDEVICE_GC_TARUKONGA:
|
2016-06-24 08:43:46 +00:00
|
|
|
pad_type_choices[i]->SetStringSelection(m_gc_pad_type_strs[5]);
|
|
|
|
break;
|
2017-03-16 08:41:36 +00:00
|
|
|
case SerialInterface::SIDEVICE_GC_GBA:
|
2016-06-24 08:43:46 +00:00
|
|
|
pad_type_choices[i]->SetStringSelection(m_gc_pad_type_strs[6]);
|
2016-08-16 00:53:38 +00:00
|
|
|
m_gc_port_configure_button[i]->Disable();
|
2016-06-24 08:43:46 +00:00
|
|
|
break;
|
2017-03-16 08:41:36 +00:00
|
|
|
case SerialInterface::SIDEVICE_GC_KEYBOARD:
|
2016-06-24 08:43:46 +00:00
|
|
|
pad_type_choices[i]->SetStringSelection(m_gc_pad_type_strs[7]);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pad_type_choices[i]->SetStringSelection(m_gc_pad_type_strs[0]);
|
2016-08-16 00:53:38 +00:00
|
|
|
m_gc_port_configure_button[i]->Disable();
|
2016-06-24 08:43:46 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add to the sizer
|
|
|
|
gamecube_flex_sizer->Add(pad_labels[i], 0, wxALIGN_CENTER_VERTICAL);
|
2016-08-02 06:22:44 +00:00
|
|
|
gamecube_flex_sizer->Add(WxUtils::GiveMinSize(pad_type_choices[i], wxDefaultSize), 0, wxEXPAND);
|
|
|
|
gamecube_flex_sizer->Add(m_gc_port_configure_button[i], 0, wxEXPAND);
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return gamecube_static_sizer;
|
2014-11-21 18:01:22 +00:00
|
|
|
}
|
|
|
|
|
2017-02-08 02:27:22 +00:00
|
|
|
void ControllerConfigDiag::OnBackgroundInputChanged(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_BackgroundInput = event.IsChecked();
|
|
|
|
}
|
|
|
|
|
|
|
|
wxSizer* ControllerConfigDiag::CreateAdvancedSettingsSizer()
|
|
|
|
{
|
|
|
|
const int space5 = FromDIP(5);
|
|
|
|
|
|
|
|
m_background_input_checkbox = new wxCheckBox(this, wxID_ANY, _("Background Input"));
|
|
|
|
m_background_input_checkbox->SetValue(SConfig::GetInstance().m_BackgroundInput);
|
|
|
|
m_background_input_checkbox->Bind(wxEVT_CHECKBOX, &ControllerConfigDiag::OnBackgroundInputChanged,
|
|
|
|
this);
|
|
|
|
|
|
|
|
auto* const box = new wxStaticBoxSizer(wxVERTICAL, this, _("Advanced Settings"));
|
|
|
|
box->Add(m_background_input_checkbox, 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
return box;
|
|
|
|
}
|
|
|
|
|
2016-08-02 06:22:44 +00:00
|
|
|
wxSizer* ControllerConfigDiag::CreateWiimoteConfigSizer()
|
2014-11-21 18:01:22 +00:00
|
|
|
{
|
2016-08-02 06:22:44 +00:00
|
|
|
const int space5 = FromDIP(5);
|
|
|
|
const int space20 = FromDIP(20);
|
|
|
|
|
2016-10-26 02:49:41 +00:00
|
|
|
auto* const box = new wxStaticBoxSizer(wxVERTICAL, this, _("Wii Remotes"));
|
2016-09-12 18:25:36 +00:00
|
|
|
|
2017-05-11 22:59:31 +00:00
|
|
|
m_passthrough_bt_radio = new wxRadioButton(this, wxID_ANY, _("Passthrough a Bluetooth Adapter"),
|
2016-09-12 18:25:36 +00:00
|
|
|
wxDefaultPosition, wxDefaultSize, wxRB_GROUP);
|
|
|
|
m_passthrough_bt_radio->Bind(wxEVT_RADIOBUTTON, &ControllerConfigDiag::OnBluetoothModeChanged,
|
|
|
|
this);
|
2016-08-02 06:22:44 +00:00
|
|
|
box->AddSpacer(space5);
|
|
|
|
box->Add(m_passthrough_bt_radio, 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
box->AddSpacer(space5);
|
|
|
|
box->Add(CreatePassthroughBTConfigSizer(), 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
2016-09-12 18:25:36 +00:00
|
|
|
|
2016-08-02 06:22:44 +00:00
|
|
|
box->AddSpacer(space20);
|
2016-09-12 18:25:36 +00:00
|
|
|
|
2017-05-11 22:59:31 +00:00
|
|
|
m_emulated_bt_radio = new wxRadioButton(this, wxID_ANY, _("Emulate the Wii's Bluetooth Adapter"));
|
2016-09-12 18:25:36 +00:00
|
|
|
m_emulated_bt_radio->Bind(wxEVT_RADIOBUTTON, &ControllerConfigDiag::OnBluetoothModeChanged, this);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-08-02 06:22:44 +00:00
|
|
|
box->Add(m_emulated_bt_radio, 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
box->AddSpacer(space5);
|
|
|
|
box->Add(CreateEmulatedBTConfigSizer(), 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
box->AddSpacer(space5);
|
2016-09-12 18:25:36 +00:00
|
|
|
|
|
|
|
if (SConfig::GetInstance().m_bt_passthrough_enabled)
|
|
|
|
m_passthrough_bt_radio->SetValue(true);
|
|
|
|
else
|
|
|
|
m_emulated_bt_radio->SetValue(true);
|
|
|
|
|
|
|
|
return box;
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-08-02 06:22:44 +00:00
|
|
|
wxSizer* ControllerConfigDiag::CreatePassthroughBTConfigSizer()
|
2016-09-12 18:25:36 +00:00
|
|
|
{
|
2016-10-26 02:49:41 +00:00
|
|
|
m_passthrough_sync_text =
|
|
|
|
new wxStaticText(this, wxID_ANY, _("Sync real Wii Remotes and pair them"));
|
2016-09-12 18:25:36 +00:00
|
|
|
m_passthrough_sync_btn =
|
2016-08-02 06:22:44 +00:00
|
|
|
new wxButton(this, wxID_ANY, _("Sync"), wxDefaultPosition, wxDLG_UNIT(this, wxSize(60, -1)));
|
2016-09-12 18:25:36 +00:00
|
|
|
m_passthrough_sync_btn->Bind(wxEVT_BUTTON, &ControllerConfigDiag::OnPassthroughScanButton, this);
|
|
|
|
|
|
|
|
m_passthrough_reset_text =
|
2016-10-26 02:49:41 +00:00
|
|
|
new wxStaticText(this, wxID_ANY, _("Reset all saved Wii Remote pairings"));
|
2016-09-12 18:25:36 +00:00
|
|
|
m_passthrough_reset_btn =
|
2016-08-02 06:22:44 +00:00
|
|
|
new wxButton(this, wxID_ANY, _("Reset"), wxDefaultPosition, wxDLG_UNIT(this, wxSize(60, -1)));
|
2016-09-12 18:25:36 +00:00
|
|
|
m_passthrough_reset_btn->Bind(wxEVT_BUTTON, &ControllerConfigDiag::OnPassthroughResetButton,
|
|
|
|
this);
|
|
|
|
|
2016-08-02 06:22:44 +00:00
|
|
|
const int space5 = FromDIP(5);
|
|
|
|
|
|
|
|
auto* grid = new wxFlexGridSizer(3, space5, space5);
|
|
|
|
grid->AddGrowableCol(1);
|
|
|
|
|
|
|
|
grid->Add(m_passthrough_sync_text, 0, wxALIGN_CENTER_VERTICAL);
|
|
|
|
grid->AddSpacer(1);
|
|
|
|
grid->Add(m_passthrough_sync_btn, 0, wxEXPAND);
|
|
|
|
|
|
|
|
grid->Add(m_passthrough_reset_text, 0, wxALIGN_CENTER_VERTICAL);
|
|
|
|
grid->AddSpacer(1);
|
|
|
|
grid->Add(m_passthrough_reset_btn, 0, wxEXPAND);
|
|
|
|
|
|
|
|
return grid;
|
2016-09-12 18:25:36 +00:00
|
|
|
}
|
|
|
|
|
2016-08-02 06:22:44 +00:00
|
|
|
wxSizer* ControllerConfigDiag::CreateEmulatedBTConfigSizer()
|
2016-09-12 18:25:36 +00:00
|
|
|
{
|
2016-08-02 06:22:44 +00:00
|
|
|
const std::array<wxString, 4> src_choices{
|
2016-10-26 02:49:41 +00:00
|
|
|
{_("None"), _("Emulated Wii Remote"), _("Real Wii Remote"), _("Hybrid Wii Remote")}};
|
2016-09-12 18:25:36 +00:00
|
|
|
|
2016-08-02 06:22:44 +00:00
|
|
|
const int space5 = FromDIP(5);
|
2016-09-12 18:25:36 +00:00
|
|
|
|
|
|
|
// Source selector grid
|
2016-08-02 06:22:44 +00:00
|
|
|
auto* const grid = new wxFlexGridSizer(3, space5, space5);
|
2016-09-12 18:25:36 +00:00
|
|
|
grid->AddGrowableCol(1);
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < MAX_WIIMOTES; ++i)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
// reserve four ids, so that we can calculate the index from the ids later on
|
|
|
|
// Stupid wx 2.8 doesn't support reserving sequential IDs, so we need to do that more
|
|
|
|
// complicated..
|
|
|
|
int source_ctrl_id = wxWindow::NewControlId();
|
2016-08-16 00:53:38 +00:00
|
|
|
m_wiimote_index_from_choice_id.emplace(source_ctrl_id, i);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
int config_bt_id = wxWindow::NewControlId();
|
2016-08-16 00:53:38 +00:00
|
|
|
m_wiimote_index_from_config_id.emplace(config_bt_id, i);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-09-12 18:25:36 +00:00
|
|
|
m_wiimote_labels[i] =
|
2016-10-26 02:49:41 +00:00
|
|
|
new wxStaticText(this, wxID_ANY, wxString::Format(_("Wii Remote %i"), i + 1));
|
2016-08-23 14:19:30 +00:00
|
|
|
m_wiimote_sources[i] = new wxChoice(this, source_ctrl_id, wxDefaultPosition, wxDefaultSize,
|
2016-06-24 08:43:46 +00:00
|
|
|
src_choices.size(), src_choices.data());
|
2016-08-23 14:19:30 +00:00
|
|
|
m_wiimote_sources[i]->Bind(wxEVT_CHOICE, &ControllerConfigDiag::OnWiimoteSourceChanged, this);
|
2016-09-12 18:25:36 +00:00
|
|
|
|
2016-08-02 06:22:44 +00:00
|
|
|
m_wiimote_configure_button[i] = new wxButton(
|
|
|
|
this, config_bt_id, _("Configure"), wxDefaultPosition, wxDLG_UNIT(this, wxSize(60, -1)));
|
2016-08-16 00:53:38 +00:00
|
|
|
m_wiimote_configure_button[i]->Bind(wxEVT_BUTTON, &ControllerConfigDiag::OnWiimoteConfigButton,
|
|
|
|
this);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-09-12 18:25:36 +00:00
|
|
|
grid->Add(m_wiimote_labels[i], 0, wxALIGN_CENTER_VERTICAL);
|
2016-08-02 06:22:44 +00:00
|
|
|
grid->Add(WxUtils::GiveMinSize(m_wiimote_sources[i], wxDefaultSize), 0, wxEXPAND);
|
|
|
|
grid->Add(m_wiimote_configure_button[i], 0, wxEXPAND);
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
2016-09-12 18:25:36 +00:00
|
|
|
// Scanning controls
|
|
|
|
m_enable_continuous_scanning = new wxCheckBox(this, wxID_ANY, _("Continuous Scanning"));
|
|
|
|
m_enable_continuous_scanning->Bind(wxEVT_CHECKBOX, &ControllerConfigDiag::OnContinuousScanning,
|
|
|
|
this);
|
|
|
|
m_enable_continuous_scanning->SetValue(SConfig::GetInstance().m_WiimoteContinuousScanning);
|
2016-08-02 06:22:44 +00:00
|
|
|
m_refresh_wm_button = new wxButton(this, wxID_ANY, _("Refresh"), wxDefaultPosition,
|
|
|
|
wxDLG_UNIT(this, wxSize(60, -1)));
|
2016-09-12 18:25:36 +00:00
|
|
|
m_refresh_wm_button->Bind(wxEVT_BUTTON, &ControllerConfigDiag::OnWiimoteRefreshButton, this);
|
2016-08-23 14:19:30 +00:00
|
|
|
|
|
|
|
m_unsupported_bt_text =
|
2016-09-12 18:25:36 +00:00
|
|
|
new wxStaticText(this, wxID_ANY, _("A supported Bluetooth device could not be found,\n"
|
2016-10-26 02:49:41 +00:00
|
|
|
"so you must connect Wii Remotes manually."));
|
2016-08-23 14:19:30 +00:00
|
|
|
m_unsupported_bt_text->Show(!WiimoteReal::g_wiimote_scanner.IsReady());
|
2016-09-12 18:25:36 +00:00
|
|
|
|
|
|
|
// Balance Board
|
|
|
|
m_balance_board_checkbox = new wxCheckBox(this, wxID_ANY, _("Real Balance Board"));
|
|
|
|
m_balance_board_checkbox->Bind(wxEVT_CHECKBOX, &ControllerConfigDiag::OnBalanceBoardChanged,
|
|
|
|
this);
|
|
|
|
m_balance_board_checkbox->SetValue(g_wiimote_sources[WIIMOTE_BALANCE_BOARD] == WIIMOTE_SRC_REAL);
|
|
|
|
|
|
|
|
// Speaker data
|
2016-08-23 14:19:30 +00:00
|
|
|
m_enable_speaker_data = new wxCheckBox(this, wxID_ANY, _("Enable Speaker Data"));
|
|
|
|
m_enable_speaker_data->Bind(wxEVT_CHECKBOX, &ControllerConfigDiag::OnEnableSpeaker, this);
|
|
|
|
m_enable_speaker_data->SetValue(SConfig::GetInstance().m_WiimoteEnableSpeaker);
|
2016-08-02 06:22:44 +00:00
|
|
|
|
|
|
|
auto* const checkbox_sizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
checkbox_sizer->Add(m_enable_continuous_scanning);
|
|
|
|
checkbox_sizer->AddSpacer(space5);
|
|
|
|
checkbox_sizer->Add(m_balance_board_checkbox);
|
|
|
|
checkbox_sizer->AddSpacer(space5);
|
|
|
|
checkbox_sizer->Add(m_enable_speaker_data);
|
|
|
|
|
|
|
|
auto* const scanning_sizer = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
scanning_sizer->Add(checkbox_sizer, 1, wxEXPAND);
|
|
|
|
scanning_sizer->Add(m_refresh_wm_button, 0, wxALIGN_TOP);
|
|
|
|
|
|
|
|
auto* const sizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
sizer->Add(grid, 0, wxEXPAND);
|
|
|
|
sizer->AddSpacer(space5);
|
|
|
|
sizer->Add(m_unsupported_bt_text, 0, wxALIGN_CENTER | wxLEFT | wxRIGHT, space5);
|
|
|
|
sizer->AddSpacer(space5);
|
|
|
|
sizer->Add(scanning_sizer, 0, wxEXPAND);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-09-12 18:25:36 +00:00
|
|
|
return sizer;
|
2014-11-21 16:55:18 +00:00
|
|
|
}
|
|
|
|
|
2016-08-16 00:53:38 +00:00
|
|
|
void ControllerConfigDiag::OnClose(wxCloseEvent& event)
|
2010-07-03 08:04:10 +00:00
|
|
|
{
|
2016-08-16 00:53:38 +00:00
|
|
|
// Save all settings
|
|
|
|
SConfig::GetInstance().SaveSettings();
|
2017-05-09 16:49:10 +00:00
|
|
|
UICommon::SaveWiimoteSources();
|
2016-08-16 00:53:38 +00:00
|
|
|
EndModal(wxID_OK);
|
2010-07-22 07:55:35 +00:00
|
|
|
}
|
2011-02-23 03:06:16 +00:00
|
|
|
|
2016-08-16 00:53:38 +00:00
|
|
|
void ControllerConfigDiag::OnCloseButton(wxCommandEvent& event)
|
2011-02-23 03:06:16 +00:00
|
|
|
{
|
2016-08-16 00:53:38 +00:00
|
|
|
Close();
|
2011-02-23 03:06:16 +00:00
|
|
|
}
|
2014-11-22 20:29:13 +00:00
|
|
|
|
2014-11-22 21:39:48 +00:00
|
|
|
void ControllerConfigDiag::OnGameCubePortChanged(wxCommandEvent& event)
|
2014-11-22 20:29:13 +00:00
|
|
|
{
|
2016-08-16 00:53:38 +00:00
|
|
|
const unsigned int device_num = m_gc_port_from_choice_id[event.GetId()];
|
2016-06-24 08:43:46 +00:00
|
|
|
const wxString device_name = event.GetString();
|
|
|
|
|
2017-03-16 08:41:36 +00:00
|
|
|
SerialInterface::SIDevices tempType;
|
2016-06-24 08:43:46 +00:00
|
|
|
if (device_name == m_gc_pad_type_strs[1])
|
|
|
|
{
|
2017-03-16 08:41:36 +00:00
|
|
|
tempType = SerialInterface::SIDEVICE_GC_CONTROLLER;
|
2016-08-16 00:53:38 +00:00
|
|
|
m_gc_port_configure_button[device_num]->Enable();
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
else if (device_name == m_gc_pad_type_strs[2])
|
|
|
|
{
|
2017-03-16 08:41:36 +00:00
|
|
|
tempType = SerialInterface::SIDEVICE_WIIU_ADAPTER;
|
2016-08-16 00:53:38 +00:00
|
|
|
m_gc_port_configure_button[device_num]->Enable();
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
else if (device_name == m_gc_pad_type_strs[3])
|
|
|
|
{
|
2017-03-16 08:41:36 +00:00
|
|
|
tempType = SerialInterface::SIDEVICE_GC_STEERING;
|
2016-08-16 00:53:38 +00:00
|
|
|
m_gc_port_configure_button[device_num]->Enable();
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
else if (device_name == m_gc_pad_type_strs[4])
|
|
|
|
{
|
2017-03-16 08:41:36 +00:00
|
|
|
tempType = SerialInterface::SIDEVICE_DANCEMAT;
|
2016-08-16 00:53:38 +00:00
|
|
|
m_gc_port_configure_button[device_num]->Enable();
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
else if (device_name == m_gc_pad_type_strs[5])
|
|
|
|
{
|
2017-03-16 08:41:36 +00:00
|
|
|
tempType = SerialInterface::SIDEVICE_GC_TARUKONGA;
|
2016-08-16 00:53:38 +00:00
|
|
|
m_gc_port_configure_button[device_num]->Enable();
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
else if (device_name == m_gc_pad_type_strs[6])
|
|
|
|
{
|
2017-03-16 08:41:36 +00:00
|
|
|
tempType = SerialInterface::SIDEVICE_GC_GBA;
|
2016-08-16 00:53:38 +00:00
|
|
|
m_gc_port_configure_button[device_num]->Disable();
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
else if (device_name == m_gc_pad_type_strs[7])
|
|
|
|
{
|
2017-03-16 08:41:36 +00:00
|
|
|
tempType = SerialInterface::SIDEVICE_GC_KEYBOARD;
|
2016-08-16 00:53:38 +00:00
|
|
|
m_gc_port_configure_button[device_num]->Enable();
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-16 08:41:36 +00:00
|
|
|
tempType = SerialInterface::SIDEVICE_NONE;
|
2016-08-16 00:53:38 +00:00
|
|
|
m_gc_port_configure_button[device_num]->Disable();
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SConfig::GetInstance().m_SIDevice[device_num] = tempType;
|
|
|
|
|
|
|
|
if (GCAdapter::UseAdapter())
|
|
|
|
GCAdapter::StartScanThread();
|
|
|
|
else
|
|
|
|
GCAdapter::StopScanThread();
|
|
|
|
|
|
|
|
if (Core::IsRunning())
|
|
|
|
SerialInterface::ChangeDevice(tempType, device_num);
|
2014-11-22 20:29:13 +00:00
|
|
|
}
|
|
|
|
|
2014-11-22 21:39:48 +00:00
|
|
|
void ControllerConfigDiag::OnGameCubeConfigButton(wxCommandEvent& event)
|
2014-11-22 20:29:13 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
InputConfig* const pad_plugin = Pad::GetConfig();
|
|
|
|
InputConfig* const key_plugin = Keyboard::GetConfig();
|
2016-08-16 00:53:38 +00:00
|
|
|
const int port_num = m_gc_port_from_config_id[event.GetId()];
|
2017-03-16 08:41:36 +00:00
|
|
|
const auto device_type = SConfig::GetInstance().m_SIDevice[port_num];
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
HotkeyManagerEmu::Enable(false);
|
|
|
|
|
2017-03-16 08:41:36 +00:00
|
|
|
if (device_type == SerialInterface::SIDEVICE_GC_KEYBOARD)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2016-11-19 00:54:06 +00:00
|
|
|
GCKeyboardInputConfigDialog config_diag(
|
2016-11-18 07:03:06 +00:00
|
|
|
this, *key_plugin,
|
2016-12-24 18:26:21 +00:00
|
|
|
wxString::Format(_("GameCube Keyboard Configuration Port %i"), port_num + 1), port_num);
|
2016-08-02 06:22:44 +00:00
|
|
|
config_diag.ShowModal();
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
2017-03-16 08:41:36 +00:00
|
|
|
else if (device_type == SerialInterface::SIDEVICE_WIIU_ADAPTER)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2016-11-18 07:03:06 +00:00
|
|
|
GCAdapterConfigDiag config_diag(
|
2016-12-24 18:26:21 +00:00
|
|
|
this, wxString::Format(_("Wii U GameCube Controller Adapter Configuration Port %i"),
|
|
|
|
port_num + 1),
|
2016-11-18 07:03:06 +00:00
|
|
|
port_num);
|
2016-08-02 06:22:44 +00:00
|
|
|
config_diag.ShowModal();
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-11-19 00:54:06 +00:00
|
|
|
GCPadInputConfigDialog config_diag(
|
2016-11-18 07:03:06 +00:00
|
|
|
this, *pad_plugin,
|
2016-12-24 18:26:21 +00:00
|
|
|
wxString::Format(_("GameCube Controller Configuration Port %i"), port_num + 1), port_num);
|
2016-08-02 06:22:44 +00:00
|
|
|
config_diag.ShowModal();
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HotkeyManagerEmu::Enable(true);
|
2014-11-22 20:29:13 +00:00
|
|
|
}
|
2016-08-16 00:53:38 +00:00
|
|
|
|
|
|
|
void ControllerConfigDiag::OnWiimoteSourceChanged(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
// This needs to be changed now in order for refresh to work right.
|
|
|
|
// Revert if the dialog is canceled.
|
|
|
|
int index = m_wiimote_index_from_choice_id[event.GetId()];
|
|
|
|
|
|
|
|
if (index != WIIMOTE_BALANCE_BOARD)
|
|
|
|
{
|
|
|
|
WiimoteReal::ChangeWiimoteSource(index, event.GetInt());
|
|
|
|
if (g_wiimote_sources[index] != WIIMOTE_SRC_EMU &&
|
|
|
|
g_wiimote_sources[index] != WIIMOTE_SRC_HYBRID)
|
|
|
|
m_wiimote_configure_button[index]->Disable();
|
|
|
|
else
|
|
|
|
m_wiimote_configure_button[index]->Enable();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WiimoteReal::ChangeWiimoteSource(index, event.GetInt() ? WIIMOTE_SRC_REAL : WIIMOTE_SRC_NONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerConfigDiag::OnWiimoteConfigButton(wxCommandEvent& ev)
|
|
|
|
{
|
|
|
|
InputConfig* const wiimote_plugin = Wiimote::GetConfig();
|
|
|
|
|
|
|
|
HotkeyManagerEmu::Enable(false);
|
|
|
|
|
2016-11-19 00:54:06 +00:00
|
|
|
const int port_num = m_wiimote_index_from_config_id[ev.GetId()];
|
2016-11-18 07:03:06 +00:00
|
|
|
|
2016-11-19 00:54:06 +00:00
|
|
|
WiimoteInputConfigDialog m_ConfigFrame(
|
2016-11-18 07:03:06 +00:00
|
|
|
this, *wiimote_plugin,
|
2016-12-24 18:26:21 +00:00
|
|
|
wxString::Format(_("Dolphin Emulated Wii Remote Configuration Port %i"), port_num + 1),
|
2016-11-18 07:03:06 +00:00
|
|
|
port_num);
|
2016-08-16 00:53:38 +00:00
|
|
|
m_ConfigFrame.ShowModal();
|
|
|
|
|
|
|
|
HotkeyManagerEmu::Enable(true);
|
|
|
|
}
|
|
|
|
|
2016-09-12 18:25:36 +00:00
|
|
|
void ControllerConfigDiag::OnBluetoothModeChanged(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_bt_passthrough_enabled = m_passthrough_bt_radio->GetValue();
|
|
|
|
WiimoteReal::Initialize(Wiimote::InitializeMode::DO_NOT_WAIT_FOR_WIIMOTES);
|
|
|
|
UpdateUI();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerConfigDiag::OnPassthroughScanButton(wxCommandEvent& event)
|
|
|
|
{
|
2017-04-29 14:11:22 +00:00
|
|
|
const auto ios = IOS::HLE::GetIOS();
|
|
|
|
if (!ios)
|
2016-09-12 18:25:36 +00:00
|
|
|
{
|
2016-10-26 02:49:41 +00:00
|
|
|
wxMessageBox(_("A sync can only be triggered when a Wii game is running."),
|
|
|
|
_("Sync Wii Remotes"), wxICON_WARNING);
|
2016-09-12 18:25:36 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-04-29 14:11:22 +00:00
|
|
|
auto device = ios->GetDeviceByName("/dev/usb/oh1/57e/305");
|
2016-09-12 18:25:36 +00:00
|
|
|
if (device != nullptr)
|
2017-01-18 19:27:51 +00:00
|
|
|
std::static_pointer_cast<IOS::HLE::Device::BluetoothBase>(device)
|
2016-09-12 18:25:36 +00:00
|
|
|
->TriggerSyncButtonPressedEvent();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerConfigDiag::OnPassthroughResetButton(wxCommandEvent& event)
|
|
|
|
{
|
2017-04-29 14:11:22 +00:00
|
|
|
const auto ios = IOS::HLE::GetIOS();
|
|
|
|
if (!ios)
|
2016-09-12 18:25:36 +00:00
|
|
|
{
|
2016-10-26 02:49:41 +00:00
|
|
|
wxMessageBox(_("Saved Wii Remote pairings can only be reset when a Wii game is running."),
|
|
|
|
_("Reset Wii Remote pairings"), wxICON_WARNING);
|
2016-09-12 18:25:36 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-04-29 14:11:22 +00:00
|
|
|
auto device = ios->GetDeviceByName("/dev/usb/oh1/57e/305");
|
2016-09-12 18:25:36 +00:00
|
|
|
if (device != nullptr)
|
2017-01-18 19:27:51 +00:00
|
|
|
std::static_pointer_cast<IOS::HLE::Device::BluetoothBase>(device)->TriggerSyncButtonHeldEvent();
|
2016-09-12 18:25:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerConfigDiag::OnBalanceBoardChanged(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
WiimoteReal::ChangeWiimoteSource(WIIMOTE_BALANCE_BOARD,
|
|
|
|
event.IsChecked() ? WIIMOTE_SRC_REAL : WIIMOTE_SRC_NONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControllerConfigDiag::OnContinuousScanning(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_WiimoteContinuousScanning = event.IsChecked();
|
|
|
|
WiimoteReal::Initialize(Wiimote::InitializeMode::DO_NOT_WAIT_FOR_WIIMOTES);
|
|
|
|
}
|
|
|
|
|
2016-08-16 00:53:38 +00:00
|
|
|
void ControllerConfigDiag::OnWiimoteRefreshButton(wxCommandEvent&)
|
|
|
|
{
|
|
|
|
WiimoteReal::Refresh();
|
|
|
|
}
|
|
|
|
|
2016-09-12 18:25:36 +00:00
|
|
|
void ControllerConfigDiag::OnEnableSpeaker(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_WiimoteEnableSpeaker = event.IsChecked();
|
|
|
|
}
|