2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2010-07-03 08:04:10 +00:00
|
|
|
|
2014-11-22 20:29:13 +00:00
|
|
|
#include <array>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <map>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <wx/dialog.h>
|
|
|
|
#include <wx/event.h>
|
|
|
|
#include <wx/windowid.h>
|
2010-07-03 08:04:10 +00:00
|
|
|
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "Common/SysConf.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/ConfigManager.h"
|
|
|
|
#include "Core/HW/Wiimote.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
|
2014-08-31 04:04:15 +00:00
|
|
|
class InputConfig;
|
2014-02-22 22:36:30 +00:00
|
|
|
class wxButton;
|
2014-11-21 16:55:18 +00:00
|
|
|
class wxStaticBoxSizer;
|
2014-02-22 22:36:30 +00:00
|
|
|
class wxWindow;
|
2011-08-06 14:38:23 +00:00
|
|
|
|
2014-11-22 21:39:48 +00:00
|
|
|
class ControllerConfigDiag : public wxDialog
|
2010-07-03 08:04:10 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-11-22 21:39:48 +00:00
|
|
|
ControllerConfigDiag(wxWindow* const parent);
|
2011-08-06 14:38:23 +00:00
|
|
|
|
|
|
|
void RefreshRealWiimotes(wxCommandEvent& event);
|
|
|
|
|
2010-07-03 08:04:10 +00:00
|
|
|
void SelectSource(wxCommandEvent& event);
|
2011-02-23 03:06:16 +00:00
|
|
|
void RevertSource();
|
2010-07-03 08:04:10 +00:00
|
|
|
|
2011-08-06 14:38:23 +00:00
|
|
|
void ConfigEmulatedWiimote(wxCommandEvent& event);
|
|
|
|
void Save(wxCommandEvent& event);
|
2011-06-02 19:32:34 +00:00
|
|
|
|
|
|
|
void OnSensorBarPos(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_SYSCONF->SetData("BT.BAR", event.GetInt());
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
void OnSensorBarSensitivity(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_SYSCONF->SetData("BT.SENS", event.GetInt());
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
void OnSpeakerVolume(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_SYSCONF->SetData("BT.SPKV", event.GetInt());
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
void OnMotor(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_SYSCONF->SetData("BT.MOT", event.GetInt());
|
|
|
|
event.Skip();
|
|
|
|
}
|
2013-02-11 23:58:56 +00:00
|
|
|
void OnContinuousScanning(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_WiimoteContinuousScanning = event.IsChecked();
|
|
|
|
WiimoteReal::Initialize();
|
|
|
|
event.Skip();
|
|
|
|
}
|
2013-02-15 09:00:31 +00:00
|
|
|
void OnEnableSpeaker(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_WiimoteEnableSpeaker = event.IsChecked();
|
|
|
|
event.Skip();
|
|
|
|
}
|
2014-12-10 09:45:45 +00:00
|
|
|
void OnGameCubeAdapter(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_GameCubeAdapter = event.IsChecked();
|
|
|
|
event.Skip();
|
|
|
|
}
|
2011-06-02 19:32:34 +00:00
|
|
|
|
2010-07-03 08:04:10 +00:00
|
|
|
private:
|
2014-11-21 16:55:18 +00:00
|
|
|
wxStaticBoxSizer* CreateGamecubeSizer();
|
2014-11-21 18:01:22 +00:00
|
|
|
wxStaticBoxSizer* CreateWiimoteConfigSizer();
|
|
|
|
wxStaticBoxSizer* CreateBalanceBoardSizer();
|
|
|
|
wxStaticBoxSizer* CreateRealWiimoteSizer();
|
|
|
|
wxStaticBoxSizer* CreateGeneralWiimoteSettingsSizer();
|
2014-11-22 20:29:13 +00:00
|
|
|
|
2011-03-15 14:37:04 +00:00
|
|
|
void Cancel(wxCommandEvent& event);
|
2014-11-22 20:29:13 +00:00
|
|
|
void OnGameCubePortChanged(wxCommandEvent& event);
|
|
|
|
void OnGameCubeConfigButton(wxCommandEvent& event);
|
2010-07-03 08:04:10 +00:00
|
|
|
|
2014-11-22 20:29:13 +00:00
|
|
|
std::map<wxWindowID, unsigned int> m_gc_port_choice_ids;
|
|
|
|
std::map<wxWindowID, unsigned int> m_gc_port_config_ids;
|
|
|
|
static const std::array<wxString, 7> m_gc_pad_type_strs;
|
2011-08-06 14:38:23 +00:00
|
|
|
|
|
|
|
std::map<wxWindowID, unsigned int> m_wiimote_index_from_ctrl_id;
|
2013-05-18 12:30:20 +00:00
|
|
|
unsigned int m_orig_wiimote_sources[MAX_BBMOTES];
|
2011-08-06 14:38:23 +00:00
|
|
|
|
2013-05-18 08:31:37 +00:00
|
|
|
wxButton* wiimote_configure_bt[MAX_WIIMOTES];
|
2011-08-06 14:38:23 +00:00
|
|
|
std::map<wxWindowID, unsigned int> m_wiimote_index_from_conf_bt_id;
|
2010-07-03 08:04:10 +00:00
|
|
|
};
|