summaryrefslogtreecommitdiffstats
path: root/src/input_common/sdl/sdl.h
diff options
context:
space:
mode:
authormuemart <muemart@users.noreply.github.com>2017-12-06 05:26:29 +0100
committernoah katz <n-katz@hotmail.com>2018-01-16 02:02:30 +0100
commiteaff98dbb3da3c7524a504abb1cdd5daa3480dda (patch)
tree4e5d28ed590b01d001c065e6ac08f2df6daabf75 /src/input_common/sdl/sdl.h
parentpctl: Clang format. (diff)
downloadyuzu-eaff98dbb3da3c7524a504abb1cdd5daa3480dda.tar
yuzu-eaff98dbb3da3c7524a504abb1cdd5daa3480dda.tar.gz
yuzu-eaff98dbb3da3c7524a504abb1cdd5daa3480dda.tar.bz2
yuzu-eaff98dbb3da3c7524a504abb1cdd5daa3480dda.tar.lz
yuzu-eaff98dbb3da3c7524a504abb1cdd5daa3480dda.tar.xz
yuzu-eaff98dbb3da3c7524a504abb1cdd5daa3480dda.tar.zst
yuzu-eaff98dbb3da3c7524a504abb1cdd5daa3480dda.zip
Diffstat (limited to '')
-rw-r--r--src/input_common/sdl/sdl.h23
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