summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp
diff options
context:
space:
mode:
authorMichael M <mchtly@gmail.com>2017-11-10 09:56:13 -0800
committerJordan Woyak <jordan.woyak@gmail.com>2019-03-29 08:01:39 -0500
commit92ca6e124e82f63b61982a5ecfb26ca818f2fe47 (patch)
tree01e0f81f5c549d84033b1633638d7ac2d4b27820 /Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp
parent377615b06fd61717edb39b51964e611fd2da8cdc (diff)
Add ControllerInterface::Win32 to wrap XInput and DInput
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp31
1 files changed, 9 insertions, 22 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp
index 3da92e8b75..6eeb41e8b8 100644
--- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp
@@ -8,11 +8,8 @@
#include "Common/Logging/Log.h"
-#ifdef CIFACE_USE_XINPUT
-#include "InputCommon/ControllerInterface/XInput/XInput.h"
-#endif
-#ifdef CIFACE_USE_DINPUT
-#include "InputCommon/ControllerInterface/DInput/DInput.h"
+#ifdef CIFACE_USE_WIN32
+#include "InputCommon/ControllerInterface/Win32/Win32.h"
#endif
#ifdef CIFACE_USE_XLIB
#include "InputCommon/ControllerInterface/Xlib/XInput2.h"
@@ -48,11 +45,8 @@ void ControllerInterface::Initialize(const WindowSystemInfo& wsi)
m_is_populating_devices = true;
-#ifdef CIFACE_USE_DINPUT
-// nothing needed
-#endif
-#ifdef CIFACE_USE_XINPUT
- ciface::XInput::Init();
+#ifdef CIFACE_USE_WIN32
+ ciface::Win32::Init();
#endif
#ifdef CIFACE_USE_XLIB
// nothing needed
@@ -99,12 +93,8 @@ void ControllerInterface::RefreshDevices()
m_is_populating_devices = true;
-#ifdef CIFACE_USE_DINPUT
- if (m_wsi.type == WindowSystemType::Windows)
- ciface::DInput::PopulateDevices(reinterpret_cast<HWND>(m_wsi.render_surface));
-#endif
-#ifdef CIFACE_USE_XINPUT
- ciface::XInput::PopulateDevices();
+#ifdef CIFACE_USE_WIN32
+ ciface::Win32::PopulateDevices(m_wsi.render_surface);
#endif
#ifdef CIFACE_USE_XLIB
if (m_wsi.type == WindowSystemType::X11)
@@ -160,14 +150,11 @@ void ControllerInterface::Shutdown()
// BEFORE we shutdown the backends.
InvokeDevicesChangedCallbacks();
-#ifdef CIFACE_USE_XINPUT
- ciface::XInput::DeInit();
-#endif
-#ifdef CIFACE_USE_DINPUT
-// nothing needed
+#ifdef CIFACE_USE_WIN32
+ ciface::Win32::DeInit();
#endif
#ifdef CIFACE_USE_XLIB
-// nothing needed
+ // nothing needed
#endif
#ifdef CIFACE_USE_OSX
ciface::OSX::DeInit();