chore: make yuzu REUSE compliant
[REUSE] is a specification that aims at making file copyright
information consistent, so that it can be both human and machine
readable. It basically requires that all files have a header containing
copyright and licensing information. When this isn't possible, like
when dealing with binary assets, generated files or embedded third-party
dependencies, it is permitted to insert copyright information in the
`.reuse/dep5` file.
Oh, and it also requires that all the licenses used in the project are
present in the `LICENSES` folder, that's why the diff is so huge.
This can be done automatically with `reuse download --all`.
The `reuse` tool also contains a handy subcommand that analyzes the
project and tells whether or not the project is (still) compliant,
`reuse lint`.
Following REUSE has a few advantages over the current approach:
- Copyright information is easy to access for users / downstream
- Files like `dist/license.md` do not need to exist anymore, as
`.reuse/dep5` is used instead
- `reuse lint` makes it easy to ensure that copyright information of
files like binary assets / images is always accurate and up to date
To add copyright information of files that didn't have it I looked up
who committed what and when, for each file. As yuzu contributors do not
have to sign a CLA or similar I couldn't assume that copyright ownership
was of the "yuzu Emulator Project", so I used the name and/or email of
the commit author instead.
[REUSE]: https://reuse.software
Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
2022-05-15 01:06:02 +01:00
|
|
|
// SPDX-FileCopyrightText: 2017 Citra Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-01-21 09:53:03 +00:00
|
|
|
|
|
|
|
#include <memory>
|
2021-09-20 23:43:13 +01:00
|
|
|
#include "common/input.h"
|
2017-01-21 09:53:03 +00:00
|
|
|
#include "common/param_package.h"
|
2022-06-19 05:32:07 +01:00
|
|
|
#include "input_common/drivers/camera.h"
|
2021-09-20 23:43:13 +01:00
|
|
|
#include "input_common/drivers/keyboard.h"
|
|
|
|
#include "input_common/drivers/mouse.h"
|
|
|
|
#include "input_common/drivers/tas_input.h"
|
|
|
|
#include "input_common/drivers/touch_screen.h"
|
|
|
|
#include "input_common/drivers/udp_client.h"
|
2022-09-25 02:28:27 +01:00
|
|
|
#include "input_common/drivers/virtual_amiibo.h"
|
2022-12-16 22:16:54 +00:00
|
|
|
#include "input_common/drivers/virtual_gamepad.h"
|
2021-09-20 23:43:13 +01:00
|
|
|
#include "input_common/helpers/stick_from_buttons.h"
|
|
|
|
#include "input_common/helpers/touch_from_buttons.h"
|
|
|
|
#include "input_common/input_engine.h"
|
|
|
|
#include "input_common/input_mapping.h"
|
|
|
|
#include "input_common/input_poller.h"
|
2017-01-21 09:53:03 +00:00
|
|
|
#include "input_common/main.h"
|
2022-12-28 22:26:46 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LIBUSB
|
|
|
|
#include "input_common/drivers/gc_adapter.h"
|
|
|
|
#endif
|
2017-01-21 15:33:48 +00:00
|
|
|
#ifdef HAVE_SDL2
|
2021-09-20 23:43:13 +01:00
|
|
|
#include "input_common/drivers/sdl_driver.h"
|
2017-01-21 15:33:48 +00:00
|
|
|
#endif
|
2017-01-21 09:53:03 +00:00
|
|
|
|
|
|
|
namespace InputCommon {
|
|
|
|
|
2020-08-27 20:16:47 +01:00
|
|
|
struct InputSubsystem::Impl {
|
2022-12-18 19:24:02 +00:00
|
|
|
template <typename Engine>
|
|
|
|
void RegisterEngine(std::string name, std::shared_ptr<Engine>& engine) {
|
2022-01-24 16:31:40 +00:00
|
|
|
MappingCallback mapping_callback{[this](const MappingData& data) { RegisterInput(data); }};
|
2021-09-20 23:43:13 +01:00
|
|
|
|
2022-12-18 19:24:02 +00:00
|
|
|
engine = std::make_shared<Engine>(name);
|
|
|
|
engine->SetMappingCallback(mapping_callback);
|
|
|
|
|
|
|
|
std::shared_ptr<InputFactory> input_factory = std::make_shared<InputFactory>(engine);
|
|
|
|
std::shared_ptr<OutputFactory> output_factory = std::make_shared<OutputFactory>(engine);
|
|
|
|
Common::Input::RegisterInputFactory(engine->GetEngineName(), std::move(input_factory));
|
|
|
|
Common::Input::RegisterOutputFactory(engine->GetEngineName(), std::move(output_factory));
|
|
|
|
}
|
2022-12-16 22:16:54 +00:00
|
|
|
|
2022-12-18 19:24:02 +00:00
|
|
|
void Initialize() {
|
|
|
|
mapping_factory = std::make_shared<MappingFactory>();
|
|
|
|
|
|
|
|
RegisterEngine("keyboard", keyboard);
|
|
|
|
RegisterEngine("mouse", mouse);
|
|
|
|
RegisterEngine("touch", touch_screen);
|
2022-12-28 22:26:46 +00:00
|
|
|
#ifdef HAVE_LIBUSB
|
2022-12-18 19:24:02 +00:00
|
|
|
RegisterEngine("gcpad", gcadapter);
|
2022-12-28 22:26:46 +00:00
|
|
|
#endif
|
2022-12-18 19:24:02 +00:00
|
|
|
RegisterEngine("cemuhookudp", udp_client);
|
|
|
|
RegisterEngine("tas", tas_input);
|
|
|
|
RegisterEngine("camera", camera);
|
|
|
|
RegisterEngine("virtual_amiibo", virtual_amiibo);
|
|
|
|
RegisterEngine("virtual_gamepad", virtual_gamepad);
|
2021-09-20 23:43:13 +01:00
|
|
|
#ifdef HAVE_SDL2
|
2022-12-18 19:24:02 +00:00
|
|
|
RegisterEngine("sdl", sdl);
|
2021-09-20 23:43:13 +01:00
|
|
|
#endif
|
|
|
|
|
2022-11-28 14:19:01 +00:00
|
|
|
Common::Input::RegisterInputFactory("touch_from_button",
|
|
|
|
std::make_shared<TouchFromButton>());
|
|
|
|
Common::Input::RegisterInputFactory("analog_from_button",
|
|
|
|
std::make_shared<StickFromButton>());
|
2020-08-27 20:16:47 +01:00
|
|
|
}
|
|
|
|
|
2022-12-18 19:24:02 +00:00
|
|
|
template <typename Engine>
|
|
|
|
void UnregisterEngine(std::shared_ptr<Engine>& engine) {
|
|
|
|
Common::Input::UnregisterInputFactory(engine->GetEngineName());
|
|
|
|
Common::Input::UnregisterOutputFactory(engine->GetEngineName());
|
|
|
|
engine.reset();
|
|
|
|
}
|
2022-12-16 22:16:54 +00:00
|
|
|
|
2022-12-18 19:24:02 +00:00
|
|
|
void Shutdown() {
|
|
|
|
UnregisterEngine(keyboard);
|
|
|
|
UnregisterEngine(mouse);
|
|
|
|
UnregisterEngine(touch_screen);
|
2022-12-28 22:26:46 +00:00
|
|
|
#ifdef HAVE_LIBUSB
|
2022-12-18 19:24:02 +00:00
|
|
|
UnregisterEngine(gcadapter);
|
2022-12-28 22:26:46 +00:00
|
|
|
#endif
|
2022-12-18 19:24:02 +00:00
|
|
|
UnregisterEngine(udp_client);
|
|
|
|
UnregisterEngine(tas_input);
|
|
|
|
UnregisterEngine(camera);
|
|
|
|
UnregisterEngine(virtual_amiibo);
|
|
|
|
UnregisterEngine(virtual_gamepad);
|
2021-09-20 23:43:13 +01:00
|
|
|
#ifdef HAVE_SDL2
|
2022-12-18 19:24:02 +00:00
|
|
|
UnregisterEngine(sdl);
|
2021-09-20 23:43:13 +01:00
|
|
|
#endif
|
|
|
|
|
2022-11-28 14:19:01 +00:00
|
|
|
Common::Input::UnregisterInputFactory("touch_from_button");
|
|
|
|
Common::Input::UnregisterInputFactory("analog_from_button");
|
2020-08-27 20:16:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] std::vector<Common::ParamPackage> GetInputDevices() const {
|
|
|
|
std::vector<Common::ParamPackage> devices = {
|
2021-09-20 23:43:13 +01:00
|
|
|
Common::ParamPackage{{"display", "Any"}, {"engine", "any"}},
|
2020-08-27 20:16:47 +01:00
|
|
|
};
|
2021-09-20 23:43:13 +01:00
|
|
|
|
|
|
|
auto keyboard_devices = keyboard->GetInputDevices();
|
|
|
|
devices.insert(devices.end(), keyboard_devices.begin(), keyboard_devices.end());
|
|
|
|
auto mouse_devices = mouse->GetInputDevices();
|
|
|
|
devices.insert(devices.end(), mouse_devices.begin(), mouse_devices.end());
|
2022-12-28 22:26:46 +00:00
|
|
|
#ifdef HAVE_LIBUSB
|
2021-09-20 23:43:13 +01:00
|
|
|
auto gcadapter_devices = gcadapter->GetInputDevices();
|
|
|
|
devices.insert(devices.end(), gcadapter_devices.begin(), gcadapter_devices.end());
|
2022-12-28 22:26:46 +00:00
|
|
|
#endif
|
2021-11-26 21:45:37 +00:00
|
|
|
auto udp_devices = udp_client->GetInputDevices();
|
|
|
|
devices.insert(devices.end(), udp_devices.begin(), udp_devices.end());
|
2021-09-20 23:43:13 +01:00
|
|
|
#ifdef HAVE_SDL2
|
|
|
|
auto sdl_devices = sdl->GetInputDevices();
|
|
|
|
devices.insert(devices.end(), sdl_devices.begin(), sdl_devices.end());
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return devices;
|
2020-08-27 20:16:47 +01:00
|
|
|
}
|
|
|
|
|
2022-12-18 19:24:02 +00:00
|
|
|
[[nodiscard]] std::shared_ptr<InputEngine> GetInputEngine(
|
2020-08-27 20:16:47 +01:00
|
|
|
const Common::ParamPackage& params) const {
|
2021-09-20 23:43:13 +01:00
|
|
|
if (!params.Has("engine") || params.Get("engine", "") == "any") {
|
2022-12-18 19:24:02 +00:00
|
|
|
return nullptr;
|
2020-08-27 20:16:47 +01:00
|
|
|
}
|
2021-09-20 23:43:13 +01:00
|
|
|
const std::string engine = params.Get("engine", "");
|
2022-12-18 19:24:02 +00:00
|
|
|
if (engine == keyboard->GetEngineName()) {
|
|
|
|
return keyboard;
|
|
|
|
}
|
2021-10-24 17:22:20 +01:00
|
|
|
if (engine == mouse->GetEngineName()) {
|
2022-12-18 19:24:02 +00:00
|
|
|
return mouse;
|
2021-10-24 17:22:20 +01:00
|
|
|
}
|
2022-12-28 22:26:46 +00:00
|
|
|
#ifdef HAVE_LIBUSB
|
2021-09-20 23:43:13 +01:00
|
|
|
if (engine == gcadapter->GetEngineName()) {
|
2022-12-18 19:24:02 +00:00
|
|
|
return gcadapter;
|
2021-09-20 23:43:13 +01:00
|
|
|
}
|
2022-12-28 22:26:46 +00:00
|
|
|
#endif
|
2021-11-26 21:45:37 +00:00
|
|
|
if (engine == udp_client->GetEngineName()) {
|
2022-12-18 19:24:02 +00:00
|
|
|
return udp_client;
|
2021-09-20 23:43:13 +01:00
|
|
|
}
|
|
|
|
#ifdef HAVE_SDL2
|
|
|
|
if (engine == sdl->GetEngineName()) {
|
2022-12-18 19:24:02 +00:00
|
|
|
return sdl;
|
2021-09-20 23:43:13 +01:00
|
|
|
}
|
|
|
|
#endif
|
2022-12-18 19:24:02 +00:00
|
|
|
return nullptr;
|
2020-08-27 20:16:47 +01:00
|
|
|
}
|
|
|
|
|
2022-12-18 19:24:02 +00:00
|
|
|
[[nodiscard]] AnalogMapping GetAnalogMappingForDevice(
|
2020-08-27 20:16:47 +01:00
|
|
|
const Common::ParamPackage& params) const {
|
2022-12-18 19:24:02 +00:00
|
|
|
const auto input_engine = GetInputEngine(params);
|
|
|
|
|
|
|
|
if (input_engine == nullptr) {
|
2020-08-27 20:16:47 +01:00
|
|
|
return {};
|
|
|
|
}
|
2022-12-18 19:24:02 +00:00
|
|
|
|
|
|
|
return input_engine->GetAnalogMappingForDevice(params);
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] ButtonMapping GetButtonMappingForDevice(
|
|
|
|
const Common::ParamPackage& params) const {
|
|
|
|
const auto input_engine = GetInputEngine(params);
|
|
|
|
|
|
|
|
if (input_engine == nullptr) {
|
|
|
|
return {};
|
2021-09-20 23:43:13 +01:00
|
|
|
}
|
2022-12-18 19:24:02 +00:00
|
|
|
|
|
|
|
return input_engine->GetButtonMappingForDevice(params);
|
2020-08-27 20:16:47 +01:00
|
|
|
}
|
2018-09-11 02:29:59 +01:00
|
|
|
|
2020-09-05 03:35:42 +01:00
|
|
|
[[nodiscard]] MotionMapping GetMotionMappingForDevice(
|
|
|
|
const Common::ParamPackage& params) const {
|
2022-12-18 19:24:02 +00:00
|
|
|
const auto input_engine = GetInputEngine(params);
|
|
|
|
|
|
|
|
if (input_engine == nullptr) {
|
2020-09-05 03:35:42 +01:00
|
|
|
return {};
|
|
|
|
}
|
2022-12-18 19:24:02 +00:00
|
|
|
|
|
|
|
return input_engine->GetMotionMappingForDevice(params);
|
2020-09-05 03:35:42 +01:00
|
|
|
}
|
|
|
|
|
2021-11-21 20:12:01 +00:00
|
|
|
Common::Input::ButtonNames GetButtonName(const Common::ParamPackage& params) const {
|
2021-09-20 23:43:13 +01:00
|
|
|
if (!params.Has("engine") || params.Get("engine", "") == "any") {
|
2021-11-21 20:12:01 +00:00
|
|
|
return Common::Input::ButtonNames::Undefined;
|
2021-09-20 23:43:13 +01:00
|
|
|
}
|
2022-12-18 19:24:02 +00:00
|
|
|
const auto input_engine = GetInputEngine(params);
|
|
|
|
|
|
|
|
if (input_engine == nullptr) {
|
|
|
|
return Common::Input::ButtonNames::Invalid;
|
2021-09-20 23:43:13 +01:00
|
|
|
}
|
2022-12-18 19:24:02 +00:00
|
|
|
|
|
|
|
return input_engine->GetUIName(params);
|
2021-09-20 23:43:13 +01:00
|
|
|
}
|
|
|
|
|
2022-03-04 17:47:13 +00:00
|
|
|
bool IsStickInverted(const Common::ParamPackage& params) {
|
2022-12-18 19:24:02 +00:00
|
|
|
const auto input_engine = GetInputEngine(params);
|
|
|
|
|
|
|
|
if (input_engine == nullptr) {
|
|
|
|
return false;
|
2022-03-04 17:47:13 +00:00
|
|
|
}
|
2022-12-18 19:24:02 +00:00
|
|
|
|
|
|
|
return input_engine->IsStickInverted(params);
|
2022-03-04 17:47:13 +00:00
|
|
|
}
|
|
|
|
|
2021-09-20 23:43:13 +01:00
|
|
|
bool IsController(const Common::ParamPackage& params) {
|
|
|
|
const std::string engine = params.Get("engine", "");
|
|
|
|
if (engine == mouse->GetEngineName()) {
|
|
|
|
return true;
|
|
|
|
}
|
2022-12-28 22:26:46 +00:00
|
|
|
#ifdef HAVE_LIBUSB
|
2021-09-20 23:43:13 +01:00
|
|
|
if (engine == gcadapter->GetEngineName()) {
|
|
|
|
return true;
|
|
|
|
}
|
2022-12-28 22:26:46 +00:00
|
|
|
#endif
|
2021-11-26 21:45:37 +00:00
|
|
|
if (engine == udp_client->GetEngineName()) {
|
|
|
|
return true;
|
|
|
|
}
|
2021-09-20 23:43:13 +01:00
|
|
|
if (engine == tas_input->GetEngineName()) {
|
|
|
|
return true;
|
|
|
|
}
|
2022-12-16 22:16:54 +00:00
|
|
|
if (engine == virtual_gamepad->GetEngineName()) {
|
|
|
|
return true;
|
|
|
|
}
|
2021-09-20 23:43:13 +01:00
|
|
|
#ifdef HAVE_SDL2
|
|
|
|
if (engine == sdl->GetEngineName()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BeginConfiguration() {
|
|
|
|
keyboard->BeginConfiguration();
|
|
|
|
mouse->BeginConfiguration();
|
2022-12-28 22:26:46 +00:00
|
|
|
#ifdef HAVE_LIBUSB
|
2021-09-20 23:43:13 +01:00
|
|
|
gcadapter->BeginConfiguration();
|
2022-12-28 22:26:46 +00:00
|
|
|
#endif
|
2021-09-20 23:43:13 +01:00
|
|
|
udp_client->BeginConfiguration();
|
|
|
|
#ifdef HAVE_SDL2
|
|
|
|
sdl->BeginConfiguration();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void EndConfiguration() {
|
|
|
|
keyboard->EndConfiguration();
|
|
|
|
mouse->EndConfiguration();
|
2022-12-28 22:26:46 +00:00
|
|
|
#ifdef HAVE_LIBUSB
|
2021-09-20 23:43:13 +01:00
|
|
|
gcadapter->EndConfiguration();
|
2022-12-28 22:26:46 +00:00
|
|
|
#endif
|
2021-09-20 23:43:13 +01:00
|
|
|
udp_client->EndConfiguration();
|
|
|
|
#ifdef HAVE_SDL2
|
|
|
|
sdl->EndConfiguration();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-11-27 01:08:44 +00:00
|
|
|
void PumpEvents() const {
|
|
|
|
#ifdef HAVE_SDL2
|
|
|
|
sdl->PumpEvents();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-01-24 16:31:40 +00:00
|
|
|
void RegisterInput(const MappingData& data) {
|
2021-09-20 23:43:13 +01:00
|
|
|
mapping_factory->RegisterInput(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<MappingFactory> mapping_factory;
|
2021-10-11 06:43:11 +01:00
|
|
|
|
2021-09-20 23:43:13 +01:00
|
|
|
std::shared_ptr<Keyboard> keyboard;
|
|
|
|
std::shared_ptr<Mouse> mouse;
|
|
|
|
std::shared_ptr<TouchScreen> touch_screen;
|
2021-10-11 06:43:11 +01:00
|
|
|
std::shared_ptr<TasInput::Tas> tas_input;
|
2021-09-20 23:43:13 +01:00
|
|
|
std::shared_ptr<CemuhookUDP::UDPClient> udp_client;
|
2022-06-19 05:32:07 +01:00
|
|
|
std::shared_ptr<Camera> camera;
|
2022-09-25 02:28:27 +01:00
|
|
|
std::shared_ptr<VirtualAmiibo> virtual_amiibo;
|
2022-12-16 22:16:54 +00:00
|
|
|
std::shared_ptr<VirtualGamepad> virtual_gamepad;
|
2021-10-11 06:43:11 +01:00
|
|
|
|
2022-12-28 22:26:46 +00:00
|
|
|
#ifdef HAVE_LIBUSB
|
|
|
|
std::shared_ptr<GCAdapter> gcadapter;
|
|
|
|
#endif
|
|
|
|
|
2021-09-20 23:43:13 +01:00
|
|
|
#ifdef HAVE_SDL2
|
|
|
|
std::shared_ptr<SDLDriver> sdl;
|
|
|
|
#endif
|
2020-08-27 20:16:47 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
InputSubsystem::InputSubsystem() : impl{std::make_unique<Impl>()} {}
|
|
|
|
|
|
|
|
InputSubsystem::~InputSubsystem() = default;
|
|
|
|
|
|
|
|
void InputSubsystem::Initialize() {
|
|
|
|
impl->Initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
void InputSubsystem::Shutdown() {
|
|
|
|
impl->Shutdown();
|
|
|
|
}
|
|
|
|
|
2021-09-20 23:43:13 +01:00
|
|
|
Keyboard* InputSubsystem::GetKeyboard() {
|
|
|
|
return impl->keyboard.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
const Keyboard* InputSubsystem::GetKeyboard() const {
|
|
|
|
return impl->keyboard.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
Mouse* InputSubsystem::GetMouse() {
|
|
|
|
return impl->mouse.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
const Mouse* InputSubsystem::GetMouse() const {
|
|
|
|
return impl->mouse.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
TouchScreen* InputSubsystem::GetTouchScreen() {
|
|
|
|
return impl->touch_screen.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
const TouchScreen* InputSubsystem::GetTouchScreen() const {
|
|
|
|
return impl->touch_screen.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
TasInput::Tas* InputSubsystem::GetTas() {
|
|
|
|
return impl->tas_input.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
const TasInput::Tas* InputSubsystem::GetTas() const {
|
|
|
|
return impl->tas_input.get();
|
|
|
|
}
|
|
|
|
|
2022-06-19 05:32:07 +01:00
|
|
|
Camera* InputSubsystem::GetCamera() {
|
|
|
|
return impl->camera.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
const Camera* InputSubsystem::GetCamera() const {
|
|
|
|
return impl->camera.get();
|
|
|
|
}
|
|
|
|
|
2022-09-25 02:28:27 +01:00
|
|
|
VirtualAmiibo* InputSubsystem::GetVirtualAmiibo() {
|
|
|
|
return impl->virtual_amiibo.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
const VirtualAmiibo* InputSubsystem::GetVirtualAmiibo() const {
|
|
|
|
return impl->virtual_amiibo.get();
|
|
|
|
}
|
|
|
|
|
2022-12-16 22:16:54 +00:00
|
|
|
VirtualGamepad* InputSubsystem::GetVirtualGamepad() {
|
|
|
|
return impl->virtual_gamepad.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
const VirtualGamepad* InputSubsystem::GetVirtualGamepad() const {
|
|
|
|
return impl->virtual_gamepad.get();
|
|
|
|
}
|
|
|
|
|
2020-08-27 20:16:47 +01:00
|
|
|
std::vector<Common::ParamPackage> InputSubsystem::GetInputDevices() const {
|
|
|
|
return impl->GetInputDevices();
|
|
|
|
}
|
|
|
|
|
|
|
|
AnalogMapping InputSubsystem::GetAnalogMappingForDevice(const Common::ParamPackage& device) const {
|
|
|
|
return impl->GetAnalogMappingForDevice(device);
|
|
|
|
}
|
2020-06-23 17:47:58 +01:00
|
|
|
|
2020-08-27 20:16:47 +01:00
|
|
|
ButtonMapping InputSubsystem::GetButtonMappingForDevice(const Common::ParamPackage& device) const {
|
|
|
|
return impl->GetButtonMappingForDevice(device);
|
2017-01-21 09:53:03 +00:00
|
|
|
}
|
|
|
|
|
2020-10-14 07:51:14 +01:00
|
|
|
MotionMapping InputSubsystem::GetMotionMappingForDevice(const Common::ParamPackage& device) const {
|
|
|
|
return impl->GetMotionMappingForDevice(device);
|
|
|
|
}
|
|
|
|
|
2021-11-21 20:12:01 +00:00
|
|
|
Common::Input::ButtonNames InputSubsystem::GetButtonName(const Common::ParamPackage& params) const {
|
|
|
|
return impl->GetButtonName(params);
|
2021-09-20 23:43:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool InputSubsystem::IsController(const Common::ParamPackage& params) const {
|
|
|
|
return impl->IsController(params);
|
|
|
|
}
|
|
|
|
|
2022-03-04 17:47:13 +00:00
|
|
|
bool InputSubsystem::IsStickInverted(const Common::ParamPackage& params) const {
|
|
|
|
if (params.Has("axis_x") && params.Has("axis_y")) {
|
|
|
|
return impl->IsStickInverted(params);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-08-29 19:56:51 +01:00
|
|
|
void InputSubsystem::ReloadInputDevices() {
|
2021-09-20 23:43:13 +01:00
|
|
|
impl->udp_client.get()->ReloadSockets();
|
|
|
|
}
|
|
|
|
|
|
|
|
void InputSubsystem::BeginMapping(Polling::InputType type) {
|
|
|
|
impl->BeginConfiguration();
|
|
|
|
impl->mapping_factory->BeginMapping(type);
|
|
|
|
}
|
|
|
|
|
2022-01-24 16:39:17 +00:00
|
|
|
Common::ParamPackage InputSubsystem::GetNextInput() const {
|
2021-09-20 23:43:13 +01:00
|
|
|
return impl->mapping_factory->GetNextInput();
|
2020-07-14 18:01:36 +01:00
|
|
|
}
|
|
|
|
|
2021-09-20 23:43:13 +01:00
|
|
|
void InputSubsystem::StopMapping() const {
|
|
|
|
impl->EndConfiguration();
|
|
|
|
impl->mapping_factory->StopMapping();
|
2020-06-21 17:36:28 +01:00
|
|
|
}
|
|
|
|
|
2022-11-27 01:08:44 +00:00
|
|
|
void InputSubsystem::PumpEvents() const {
|
|
|
|
impl->PumpEvents();
|
|
|
|
}
|
|
|
|
|
2017-01-21 09:53:03 +00:00
|
|
|
std::string GenerateKeyboardParam(int key_code) {
|
2021-07-23 01:59:26 +01:00
|
|
|
Common::ParamPackage param;
|
|
|
|
param.Set("engine", "keyboard");
|
|
|
|
param.Set("code", key_code);
|
|
|
|
param.Set("toggle", false);
|
2017-01-21 09:53:03 +00:00
|
|
|
return param.Serialize();
|
|
|
|
}
|
|
|
|
|
2017-01-21 11:04:00 +00:00
|
|
|
std::string GenerateAnalogParamFromKeys(int key_up, int key_down, int key_left, int key_right,
|
|
|
|
int key_modifier, float modifier_scale) {
|
|
|
|
Common::ParamPackage circle_pad_param{
|
|
|
|
{"engine", "analog_from_button"},
|
|
|
|
{"up", GenerateKeyboardParam(key_up)},
|
|
|
|
{"down", GenerateKeyboardParam(key_down)},
|
|
|
|
{"left", GenerateKeyboardParam(key_left)},
|
|
|
|
{"right", GenerateKeyboardParam(key_right)},
|
|
|
|
{"modifier", GenerateKeyboardParam(key_modifier)},
|
|
|
|
{"modifier_scale", std::to_string(modifier_scale)},
|
|
|
|
};
|
|
|
|
return circle_pad_param.Serialize();
|
|
|
|
}
|
2017-01-21 09:53:03 +00:00
|
|
|
} // namespace InputCommon
|