2017-01-21 09:53:03 +00:00
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <memory>
|
2018-09-11 01:29:59 +00:00
|
|
|
#include <thread>
|
2020-06-21 16:36:28 +00:00
|
|
|
#include <libusb.h>
|
2017-01-21 09:53:03 +00:00
|
|
|
#include "common/param_package.h"
|
2017-01-21 11:04:00 +00:00
|
|
|
#include "input_common/analog_from_button.h"
|
2020-06-21 16:36:28 +00:00
|
|
|
#include "input_common/gcadapter/gc_poller.h"
|
2017-01-21 09:53:03 +00:00
|
|
|
#include "input_common/keyboard.h"
|
|
|
|
#include "input_common/main.h"
|
2017-08-06 21:04:06 +00:00
|
|
|
#include "input_common/motion_emu.h"
|
2019-08-24 13:57:49 +00:00
|
|
|
#include "input_common/udp/udp.h"
|
2017-01-21 15:33:48 +00:00
|
|
|
#ifdef HAVE_SDL2
|
|
|
|
#include "input_common/sdl/sdl.h"
|
|
|
|
#endif
|
2017-01-21 09:53:03 +00:00
|
|
|
|
|
|
|
namespace InputCommon {
|
|
|
|
|
|
|
|
static std::shared_ptr<Keyboard> keyboard;
|
2017-08-06 21:04:06 +00:00
|
|
|
static std::shared_ptr<MotionEmu> motion_emu;
|
2020-05-02 19:47:17 +00:00
|
|
|
#ifdef HAVE_SDL2
|
2018-09-20 06:28:05 +00:00
|
|
|
static std::unique_ptr<SDL::State> sdl;
|
2020-05-02 19:47:17 +00:00
|
|
|
#endif
|
2019-08-24 13:57:49 +00:00
|
|
|
static std::unique_ptr<CemuhookUDP::State> udp;
|
2020-06-21 16:36:28 +00:00
|
|
|
static std::shared_ptr<GCButtonFactory> gcbuttons;
|
|
|
|
static std::shared_ptr<GCAnalogFactory> gcanalog;
|
2018-09-11 01:29:59 +00:00
|
|
|
|
2017-01-21 09:53:03 +00:00
|
|
|
void Init() {
|
2020-06-21 16:36:28 +00:00
|
|
|
gcbuttons = std::make_shared<GCButtonFactory>();
|
|
|
|
Input::RegisterFactory<Input::ButtonDevice>("gcpad", gcbuttons);
|
|
|
|
gcanalog = std::make_shared<GCAnalogFactory>();
|
|
|
|
Input::RegisterFactory<Input::AnalogDevice>("gcpad", gcanalog);
|
|
|
|
|
2017-08-06 21:04:06 +00:00
|
|
|
keyboard = std::make_shared<Keyboard>();
|
2017-01-21 09:53:03 +00:00
|
|
|
Input::RegisterFactory<Input::ButtonDevice>("keyboard", keyboard);
|
2017-01-21 11:04:00 +00:00
|
|
|
Input::RegisterFactory<Input::AnalogDevice>("analog_from_button",
|
2017-08-06 21:04:06 +00:00
|
|
|
std::make_shared<AnalogFromButton>());
|
|
|
|
motion_emu = std::make_shared<MotionEmu>();
|
|
|
|
Input::RegisterFactory<Input::MotionDevice>("motion_emu", motion_emu);
|
|
|
|
|
2020-05-02 19:47:17 +00:00
|
|
|
#ifdef HAVE_SDL2
|
2018-09-20 06:28:05 +00:00
|
|
|
sdl = SDL::Init();
|
2020-05-02 19:47:17 +00:00
|
|
|
#endif
|
2019-08-24 13:57:49 +00:00
|
|
|
udp = CemuhookUDP::Init();
|
2018-09-11 01:29:59 +00:00
|
|
|
}
|
|
|
|
|
2017-01-21 09:53:03 +00:00
|
|
|
void Shutdown() {
|
|
|
|
Input::UnregisterFactory<Input::ButtonDevice>("keyboard");
|
|
|
|
keyboard.reset();
|
2017-01-21 11:04:00 +00:00
|
|
|
Input::UnregisterFactory<Input::AnalogDevice>("analog_from_button");
|
2017-08-06 21:04:06 +00:00
|
|
|
Input::UnregisterFactory<Input::MotionDevice>("motion_emu");
|
|
|
|
motion_emu.reset();
|
2020-05-02 19:47:17 +00:00
|
|
|
#ifdef HAVE_SDL2
|
2018-09-20 06:28:05 +00:00
|
|
|
sdl.reset();
|
2020-05-02 19:47:17 +00:00
|
|
|
#endif
|
2020-02-03 14:29:13 +00:00
|
|
|
udp.reset();
|
2020-06-21 16:36:28 +00:00
|
|
|
Input::UnregisterFactory<Input::ButtonDevice>("gcpad");
|
|
|
|
gcbuttons.reset();
|
2017-01-21 09:53:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Keyboard* GetKeyboard() {
|
|
|
|
return keyboard.get();
|
|
|
|
}
|
|
|
|
|
2017-08-06 21:04:06 +00:00
|
|
|
MotionEmu* GetMotionEmu() {
|
|
|
|
return motion_emu.get();
|
|
|
|
}
|
|
|
|
|
2020-06-21 16:36:28 +00:00
|
|
|
GCButtonFactory* GetGCButtons() {
|
|
|
|
return gcbuttons.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
GCAnalogFactory* GetGCAnalogs() {
|
|
|
|
return gcanalog.get();
|
|
|
|
}
|
|
|
|
|
2017-01-21 09:53:03 +00:00
|
|
|
std::string GenerateKeyboardParam(int key_code) {
|
|
|
|
Common::ParamPackage param{
|
2018-01-20 07:48:02 +00:00
|
|
|
{"engine", "keyboard"},
|
|
|
|
{"code", std::to_string(key_code)},
|
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-12-06 04:26:29 +00:00
|
|
|
namespace Polling {
|
|
|
|
|
|
|
|
std::vector<std::unique_ptr<DevicePoller>> GetPollers(DeviceType type) {
|
2019-08-24 13:57:49 +00:00
|
|
|
std::vector<std::unique_ptr<DevicePoller>> pollers;
|
|
|
|
|
2017-12-06 04:26:29 +00:00
|
|
|
#ifdef HAVE_SDL2
|
2019-08-24 13:57:49 +00:00
|
|
|
pollers = sdl->GetPollers(type);
|
2017-12-06 04:26:29 +00:00
|
|
|
#endif
|
2019-08-24 13:57:49 +00:00
|
|
|
return pollers;
|
2017-12-06 04:26:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Polling
|
2017-01-21 09:53:03 +00:00
|
|
|
} // namespace InputCommon
|