From d61ef9a95aa4341ef430b8e0e0ea7b04eb3b55a4 Mon Sep 17 00:00:00 2001 From: mathieui Date: Tue, 2 Feb 2016 22:04:27 +0100 Subject: [PATCH 1/3] [SI] add a way to check if the current controller is a gcpad (or gcpad-compatible) --- Source/Core/Core/HW/SI_Device.cpp | 20 ++++++++++++++++++++ Source/Core/Core/HW/SI_Device.h | 2 ++ 2 files changed, 22 insertions(+) diff --git a/Source/Core/Core/HW/SI_Device.cpp b/Source/Core/Core/HW/SI_Device.cpp index c239ee1350..56c27b94df 100644 --- a/Source/Core/Core/HW/SI_Device.cpp +++ b/Source/Core/Core/HW/SI_Device.cpp @@ -67,6 +67,26 @@ public: }; +// Check if a device class is inheriting from CSIDevice_GCController +// The goal of this function is to avoid special casing a long list of +// device types when there is no "real" input device, e.g. when playing +// a TAS movie, or netplay input. +bool SIDevice_IsGCController(SIDevices type) +{ + switch (type) + { + case SIDEVICE_GC_CONTROLLER: + case SIDEVICE_WIIU_ADAPTER: + case SIDEVICE_GC_TARUKONGA: + case SIDEVICE_DANCEMAT: + case SIDEVICE_GC_STEERING: + return true; + default: + return false; + } +} + + // F A C T O R Y std::unique_ptr SIDevice_Create(const SIDevices device, const int port_number) { diff --git a/Source/Core/Core/HW/SI_Device.h b/Source/Core/Core/HW/SI_Device.h index 866ae98e2a..5671cfba05 100644 --- a/Source/Core/Core/HW/SI_Device.h +++ b/Source/Core/Core/HW/SI_Device.h @@ -107,4 +107,6 @@ public: } }; +bool SIDevice_IsGCController(SIDevices type); + std::unique_ptr SIDevice_Create(const SIDevices device, const int port_number); From 7b2c54ad939929f68c1eafd82b57d5f662735d48 Mon Sep 17 00:00:00 2001 From: mathieui Date: Tue, 2 Feb 2016 22:05:25 +0100 Subject: [PATCH 2/3] [Movie] allow recording with any pad MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (bongo/dancemat/adapter…) --- Source/Core/Core/HW/SI.cpp | 18 +++++++++++++++++- Source/Core/DolphinWX/FrameTools.cpp | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/HW/SI.cpp b/Source/Core/Core/HW/SI.cpp index 87db67b9e3..6f965c3783 100644 --- a/Source/Core/Core/HW/SI.cpp +++ b/Source/Core/Core/HW/SI.cpp @@ -260,9 +260,25 @@ void Init() g_Channel[i].m_InLo.Hex = 0; if (Movie::IsMovieActive()) - AddDevice(Movie::IsUsingPad(i) ? (Movie::IsUsingBongo(i) ? SIDEVICE_GC_TARUKONGA : SIDEVICE_GC_CONTROLLER) : SIDEVICE_NONE, i); + { + if (Movie::IsUsingPad(i)) + { + SIDevices current = SConfig::GetInstance().m_SIDevice[i]; + // GC pad-compatible devices can be used for both playing and recording + if (SIDevice_IsGCController(current)) + AddDevice(Movie::IsUsingBongo(i) ? SIDEVICE_GC_TARUKONGA : current, i); + else + AddDevice(Movie::IsUsingBongo(i) ? SIDEVICE_GC_TARUKONGA : SIDEVICE_GC_CONTROLLER, i); + } + else + { + AddDevice(SIDEVICE_NONE, i); + } + } else if (!NetPlay::IsNetPlayRunning()) + { AddDevice(SConfig::GetInstance().m_SIDevice[i], i); + } } g_Poll.Hex = 0; diff --git a/Source/Core/DolphinWX/FrameTools.cpp b/Source/Core/DolphinWX/FrameTools.cpp index db0acc7fe0..45a9c397be 100644 --- a/Source/Core/DolphinWX/FrameTools.cpp +++ b/Source/Core/DolphinWX/FrameTools.cpp @@ -797,7 +797,7 @@ void CFrame::OnRecord(wxCommandEvent& WXUNUSED (event)) for (int i = 0; i < 4; i++) { - if (SConfig::GetInstance().m_SIDevice[i] == SIDEVICE_GC_CONTROLLER || SConfig::GetInstance().m_SIDevice[i] == SIDEVICE_GC_TARUKONGA) + if (SIDevice_IsGCController(SConfig::GetInstance().m_SIDevice[i])) controllers |= (1 << i); if (g_wiimote_sources[i] != WIIMOTE_SRC_NONE) From 4fe2886c2c115751e7040ade63493ce92fd73824 Mon Sep 17 00:00:00 2001 From: mathieui Date: Tue, 2 Feb 2016 22:08:38 +0100 Subject: [PATCH 3/3] =?UTF-8?q?[netplay]=20Use=20the=20device=20only=20if?= =?UTF-8?q?=20it=E2=80=99s=20a=20gc=20controller=20or=20similar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (bad things could happen if we wire up the gba with netplay) --- Source/Core/Core/NetPlayClient.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/NetPlayClient.cpp b/Source/Core/Core/NetPlayClient.cpp index f76b097aa1..13eb60f45e 100644 --- a/Source/Core/Core/NetPlayClient.cpp +++ b/Source/Core/Core/NetPlayClient.cpp @@ -765,10 +765,10 @@ void NetPlayClient::UpdateDevices() // so they should be added first. for (auto player_id : m_pad_map) { - // Use local controller types for local controllers + // Use local controller types for local controllers if they are compatible if (player_id == m_local_player->pid) { - if (SConfig::GetInstance().m_SIDevice[local_pad] != SIDEVICE_NONE) + if (SIDevice_IsGCController(SConfig::GetInstance().m_SIDevice[local_pad])) { SerialInterface::AddDevice(SConfig::GetInstance().m_SIDevice[local_pad], local_pad); }