2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2010 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2014-02-10 18:54:46 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
2010-04-02 02:48:24 +00:00
|
|
|
|
2017-11-04 14:37:03 +00:00
|
|
|
#include <atomic>
|
2017-02-19 08:00:00 +00:00
|
|
|
#include <functional>
|
2019-01-10 15:02:38 +00:00
|
|
|
#include <list>
|
2017-11-10 20:29:25 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <mutex>
|
2014-02-17 10:18:15 +00:00
|
|
|
|
2018-10-03 07:34:27 +00:00
|
|
|
#include "Common/WindowSystemInfo.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "InputCommon/ControllerInterface/Device.h"
|
2010-04-02 02:48:24 +00:00
|
|
|
|
|
|
|
// enable disable sources
|
|
|
|
#ifdef _WIN32
|
2017-11-10 17:56:13 +00:00
|
|
|
#define CIFACE_USE_WIN32
|
2010-07-16 19:17:35 +00:00
|
|
|
#endif
|
|
|
|
#if defined(HAVE_X11) && HAVE_X11
|
|
|
|
#define CIFACE_USE_XLIB
|
|
|
|
#endif
|
2010-04-02 09:41:43 +00:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
#define CIFACE_USE_OSX
|
|
|
|
#endif
|
2015-06-29 00:17:35 +00:00
|
|
|
#if defined(HAVE_LIBEVDEV) && defined(HAVE_LIBUDEV)
|
|
|
|
#define CIFACE_USE_EVDEV
|
|
|
|
#endif
|
2015-10-25 03:20:03 +00:00
|
|
|
#if defined(USE_PIPES)
|
|
|
|
#define CIFACE_USE_PIPES
|
|
|
|
#endif
|
2013-06-17 00:07:10 +00:00
|
|
|
|
2010-04-02 02:48:24 +00:00
|
|
|
//
|
2014-01-31 00:51:21 +00:00
|
|
|
// ControllerInterface
|
2010-04-02 02:48:24 +00:00
|
|
|
//
|
2014-01-31 00:51:21 +00:00
|
|
|
// Some crazy shit I made to control different device inputs and outputs
|
|
|
|
// from lots of different sources, hopefully more easily.
|
2010-04-02 02:48:24 +00:00
|
|
|
//
|
2014-09-05 00:41:42 +00:00
|
|
|
class ControllerInterface : public ciface::Core::DeviceContainer
|
2010-04-02 02:48:24 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-01-10 15:02:38 +00:00
|
|
|
using HotplugCallbackHandle = std::list<std::function<void()>>::iterator;
|
|
|
|
|
2018-10-03 07:34:27 +00:00
|
|
|
ControllerInterface() : m_is_init(false) {}
|
|
|
|
void Initialize(const WindowSystemInfo& wsi);
|
2018-10-27 10:06:35 +00:00
|
|
|
void ChangeWindow(void* hwnd);
|
2016-10-16 20:39:05 +00:00
|
|
|
void RefreshDevices();
|
2010-10-12 19:42:29 +00:00
|
|
|
void Shutdown();
|
2016-06-25 19:46:39 +00:00
|
|
|
void AddDevice(std::shared_ptr<ciface::Core::Device> device);
|
2016-07-14 15:45:59 +00:00
|
|
|
void RemoveDevice(std::function<bool(const ciface::Core::Device*)> callback);
|
2010-06-21 03:12:16 +00:00
|
|
|
bool IsInit() const { return m_is_init; }
|
2014-11-13 08:55:14 +00:00
|
|
|
void UpdateInput();
|
2010-04-02 02:48:24 +00:00
|
|
|
|
2019-01-10 15:02:38 +00:00
|
|
|
HotplugCallbackHandle RegisterDevicesChangedCallback(std::function<void(void)> callback);
|
|
|
|
void UnregisterDevicesChangedCallback(const HotplugCallbackHandle& handle);
|
2017-11-04 14:36:30 +00:00
|
|
|
void InvokeDevicesChangedCallbacks() const;
|
2016-06-13 09:11:47 +00:00
|
|
|
|
2010-04-02 02:48:24 +00:00
|
|
|
private:
|
2019-01-10 15:02:38 +00:00
|
|
|
std::list<std::function<void()>> m_devices_changed_callbacks;
|
2017-11-10 20:29:25 +00:00
|
|
|
mutable std::mutex m_callbacks_mutex;
|
2019-01-02 14:19:42 +00:00
|
|
|
std::atomic<bool> m_is_init;
|
2017-11-04 14:37:03 +00:00
|
|
|
std::atomic<bool> m_is_populating_devices{false};
|
2018-10-03 07:34:27 +00:00
|
|
|
WindowSystemInfo m_wsi;
|
2010-04-02 02:48:24 +00:00
|
|
|
};
|
|
|
|
|
2010-10-12 19:42:29 +00:00
|
|
|
extern ControllerInterface g_controller_interface;
|