2015-05-24 07:55:12 +03:00
|
|
|
// Copyright 2010 Dolphin Emulator Project
|
2015-05-18 02:08:10 +03:00
|
|
|
// Licensed under GPLv2+
|
2014-02-10 20:54:46 +02:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
2010-04-02 05:48:24 +03:00
|
|
|
|
2017-11-04 16:37:03 +02:00
|
|
|
#include <atomic>
|
2017-02-19 10:00:00 +02:00
|
|
|
#include <functional>
|
2019-01-10 17:02:38 +02:00
|
|
|
#include <list>
|
2017-11-10 22:29:25 +02:00
|
|
|
#include <memory>
|
|
|
|
#include <mutex>
|
2014-02-17 12:18:15 +02:00
|
|
|
|
2020-01-24 08:06:39 +02:00
|
|
|
#include "Common/Matrix.h"
|
2018-10-03 10:34:27 +03:00
|
|
|
#include "Common/WindowSystemInfo.h"
|
2020-09-15 14:34:41 +03:00
|
|
|
#include "InputCommon/ControllerInterface/CoreDevice.h"
|
2010-04-02 05:48:24 +03:00
|
|
|
|
|
|
|
// enable disable sources
|
|
|
|
#ifdef _WIN32
|
2017-11-10 19:56:13 +02:00
|
|
|
#define CIFACE_USE_WIN32
|
2010-07-16 22:17:35 +03:00
|
|
|
#endif
|
2021-02-03 02:25:06 +02:00
|
|
|
#ifdef HAVE_X11
|
2010-07-16 22:17:35 +03:00
|
|
|
#define CIFACE_USE_XLIB
|
|
|
|
#endif
|
2010-04-02 12:41:43 +03:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
#define CIFACE_USE_OSX
|
|
|
|
#endif
|
2015-06-29 03:17:35 +03:00
|
|
|
#if defined(HAVE_LIBEVDEV) && defined(HAVE_LIBUDEV)
|
|
|
|
#define CIFACE_USE_EVDEV
|
|
|
|
#endif
|
2015-10-25 05:20:03 +02:00
|
|
|
#if defined(USE_PIPES)
|
|
|
|
#define CIFACE_USE_PIPES
|
|
|
|
#endif
|
2019-10-26 19:05:16 +03:00
|
|
|
#define CIFACE_USE_DUALSHOCKUDPCLIENT
|
2013-06-17 03:07:10 +03:00
|
|
|
|
2020-04-21 07:16:07 +03:00
|
|
|
namespace ciface
|
|
|
|
{
|
|
|
|
// A thread local "input channel" is maintained to handle the state of relative inputs.
|
|
|
|
// This allows simultaneous use of relative inputs across different input contexts.
|
|
|
|
// e.g. binding relative mouse movements to both GameCube controllers and FreeLook.
|
|
|
|
// These operate at different rates and processing one would break the other without separate state.
|
|
|
|
enum class InputChannel
|
|
|
|
{
|
|
|
|
Host,
|
|
|
|
SerialInterface,
|
|
|
|
Bluetooth,
|
|
|
|
FreeLook,
|
|
|
|
Count,
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ciface
|
|
|
|
|
2010-04-02 05:48:24 +03:00
|
|
|
//
|
2014-01-31 02:51:21 +02:00
|
|
|
// ControllerInterface
|
2010-04-02 05:48:24 +03:00
|
|
|
//
|
2014-01-31 02:51:21 +02:00
|
|
|
// Some crazy shit I made to control different device inputs and outputs
|
|
|
|
// from lots of different sources, hopefully more easily.
|
2010-04-02 05:48:24 +03:00
|
|
|
//
|
2014-09-05 03:41:42 +03:00
|
|
|
class ControllerInterface : public ciface::Core::DeviceContainer
|
2010-04-02 05:48:24 +03:00
|
|
|
{
|
|
|
|
public:
|
2019-01-10 17:02:38 +02:00
|
|
|
using HotplugCallbackHandle = std::list<std::function<void()>>::iterator;
|
|
|
|
|
2018-10-03 10:34:27 +03:00
|
|
|
ControllerInterface() : m_is_init(false) {}
|
|
|
|
void Initialize(const WindowSystemInfo& wsi);
|
2018-10-27 13:06:35 +03:00
|
|
|
void ChangeWindow(void* hwnd);
|
2016-10-16 23:39:05 +03:00
|
|
|
void RefreshDevices();
|
2010-10-12 22:42:29 +03:00
|
|
|
void Shutdown();
|
2016-06-25 22:46:39 +03:00
|
|
|
void AddDevice(std::shared_ptr<ciface::Core::Device> device);
|
2016-07-14 18:45:59 +03:00
|
|
|
void RemoveDevice(std::function<bool(const ciface::Core::Device*)> callback);
|
2020-12-13 02:30:27 +02:00
|
|
|
void PlatformPopulateDevices(std::function<void()> callback);
|
2010-06-21 06:12:16 +03:00
|
|
|
bool IsInit() const { return m_is_init; }
|
2014-11-13 10:55:14 +02:00
|
|
|
void UpdateInput();
|
2010-04-02 05:48:24 +03:00
|
|
|
|
2020-01-24 08:06:39 +02:00
|
|
|
// Set adjustment from the full render window aspect-ratio to the drawn aspect-ratio.
|
|
|
|
// Used to fit mouse cursor inputs to the relevant region of the render window.
|
|
|
|
void SetAspectRatioAdjustment(float);
|
|
|
|
|
|
|
|
// Calculated from the aspect-ratio adjustment.
|
|
|
|
// Inputs based on window coordinates should be multiplied by this.
|
|
|
|
Common::Vec2 GetWindowInputScale() const;
|
|
|
|
|
2019-01-10 17:02:38 +02:00
|
|
|
HotplugCallbackHandle RegisterDevicesChangedCallback(std::function<void(void)> callback);
|
|
|
|
void UnregisterDevicesChangedCallback(const HotplugCallbackHandle& handle);
|
2017-11-04 16:36:30 +02:00
|
|
|
void InvokeDevicesChangedCallbacks() const;
|
2016-06-13 12:11:47 +03:00
|
|
|
|
2020-04-21 07:16:07 +03:00
|
|
|
static void SetCurrentInputChannel(ciface::InputChannel);
|
|
|
|
static ciface::InputChannel GetCurrentInputChannel();
|
|
|
|
|
2010-04-02 05:48:24 +03:00
|
|
|
private:
|
2019-01-10 17:02:38 +02:00
|
|
|
std::list<std::function<void()>> m_devices_changed_callbacks;
|
2017-11-10 22:29:25 +02:00
|
|
|
mutable std::mutex m_callbacks_mutex;
|
2019-01-02 16:19:42 +02:00
|
|
|
std::atomic<bool> m_is_init;
|
2017-11-04 16:37:03 +02:00
|
|
|
std::atomic<bool> m_is_populating_devices{false};
|
2018-10-03 10:34:27 +03:00
|
|
|
WindowSystemInfo m_wsi;
|
2020-01-24 08:06:39 +02:00
|
|
|
std::atomic<float> m_aspect_ratio_adjustment = 1;
|
2010-04-02 05:48:24 +03:00
|
|
|
};
|
|
|
|
|
2020-04-21 07:16:07 +03:00
|
|
|
namespace ciface
|
|
|
|
{
|
|
|
|
template <typename T>
|
|
|
|
class RelativeInputState
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void Update()
|
|
|
|
{
|
|
|
|
const auto channel = int(ControllerInterface::GetCurrentInputChannel());
|
|
|
|
|
|
|
|
m_value[channel] = m_delta[channel];
|
|
|
|
m_delta[channel] = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
T GetValue() const
|
|
|
|
{
|
|
|
|
const auto channel = int(ControllerInterface::GetCurrentInputChannel());
|
|
|
|
|
|
|
|
return m_value[channel];
|
|
|
|
}
|
|
|
|
|
|
|
|
void Move(T delta)
|
|
|
|
{
|
|
|
|
for (auto& d : m_delta)
|
|
|
|
d += delta;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::array<T, int(InputChannel::Count)> m_value;
|
|
|
|
std::array<T, int(InputChannel::Count)> m_delta;
|
|
|
|
};
|
|
|
|
} // namespace ciface
|
|
|
|
|
2010-10-12 22:42:29 +03:00
|
|
|
extern ControllerInterface g_controller_interface;
|