diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-16 10:13:39 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-16 10:13:39 -0500 |
commit | d81879186674ed3732ff3539937a9ac0fb45b585 (patch) | |
tree | 4ced33464372737e8a98ee37432f1e389f8d325f /src/input_common/sdl/sdl.h | |
parent | 3b28d382d041f1caebc30957dffb1e4a4bb6452e (diff) | |
parent | eaff98dbb3da3c7524a504abb1cdd5daa3480dda (diff) |
Merge pull request #24 from nkatz565/nk-inputs
Adding meumart's Citra SDL Joystick support. Citra PR #3116
Diffstat (limited to 'src/input_common/sdl/sdl.h')
-rw-r--r-- | src/input_common/sdl/sdl.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/input_common/sdl/sdl.h b/src/input_common/sdl/sdl.h index 3e72debcc..7934099d4 100644 --- a/src/input_common/sdl/sdl.h +++ b/src/input_common/sdl/sdl.h @@ -4,8 +4,21 @@ #pragma once +#include <memory> +#include <vector> #include "core/frontend/input.h" +union SDL_Event; +namespace Common { +class ParamPackage; +} +namespace InputCommon { +namespace Polling { +class DevicePoller; +enum class DeviceType; +} // namespace Polling +} // namespace InputCommon + namespace InputCommon { namespace SDL { @@ -15,5 +28,15 @@ void Init(); /// Unresisters SDL device factories and shut them down. void Shutdown(); +/// Creates a ParamPackage from an SDL_Event that can directly be used to create a ButtonDevice +Common::ParamPackage SDLEventToButtonParamPackage(const SDL_Event& event); + +namespace Polling { + +/// Get all DevicePoller that use the SDL backend for a specific device type +std::vector<std::unique_ptr<InputCommon::Polling::DevicePoller>> GetPollers( + InputCommon::Polling::DeviceType type); + +} // namespace Polling } // namespace SDL } // namespace InputCommon |