SDL3pp
A slim C++ wrapper for SDL3
Loading...
Searching...
No Matches
SDL3pp_system.h
1#ifndef SDL3PP_SYSTEM_H_
2#define SDL3PP_SYSTEM_H_
3
4#include <SDL3/SDL_system.h>
5#include "SDL3pp_keyboard.h"
6#include "SDL3pp_stdinc.h"
7#include "SDL3pp_video.h"
8
9namespace SDL {
10
26/*
27 * Platform specific functions for Windows
28 */
29#if defined(SDL_PLATFORM_WINDOWS) || defined(SDL3PP_DOC)
52using WindowsMessageHook = SDL_WindowsMessageHook;
53
77using WindowsMessageHookCB = std::function<bool(MSG* msg)>;
78
93inline void SetWindowsMessageHook(WindowsMessageHook callback, void* userdata)
94{
95 SDL_SetWindowsMessageHook(callback, userdata);
96}
97
112{
114 SetWindowsMessageHook(&Wrapper::CallSuffixed,
115 Wrapper::Wrap(std::move(callback)));
116}
117#endif // SDL_PLATFORM_WINDOWS
118
119#if defined(SDL_PLATFORM_WIN32) || defined(SDL_PLATFORM_WINGDK) || \
120 defined(SDL3PP_DOC)
134{
135 return CheckError(SDL_GetDirect3D9AdapterIndex(displayID));
136}
137
152inline void GetDXGIOutputInfo(Display displayID,
153 int* adapterIndex,
154 int* outputIndex)
155{
156 CheckError(SDL_GetDXGIOutputInfo(displayID, adapterIndex, outputIndex));
157}
158
159#endif // defined(SDL_PLATFORM_WIN32) || defined(SDL_PLATFORM_WINGDK)
160
181using X11EventHook = SDL_X11EventHook;
182
204using X11EventHookCB = std::function<bool(XEvent*)>;
205
217inline void SetX11EventHook(X11EventHook callback, void* userdata)
218{
219 SDL_SetX11EventHook(callback, userdata);
220}
221
232inline void SetX11EventHook(X11EventHookCB callback)
233{
235 SDL_SetX11EventHook(&Wrapper::Call, Wrapper::Wrap(std::move(callback)));
236}
237
238/* Platform specific functions for Linux*/
239#if defined(SDL_PLATFORM_LINUX) || defined(SDL3PP_DOC)
240
252inline void SetLinuxThreadPriority(Sint64 threadID, int priority)
253{
254 CheckError(SDL_SetLinuxThreadPriority(threadID, priority));
255}
256
270inline void SetLinuxThreadPriorityAndPolicy(Sint64 threadID,
271 int sdlPriority,
272 int schedPolicy)
273{
275 SDL_SetLinuxThreadPriorityAndPolicy(threadID, sdlPriority, schedPolicy));
276}
277
278#endif // SDL_PLATFORM_LINUX
279
280/*
281 * Platform specific functions for iOS
282 */
283#if defined(SDL_PLATFORM_IOS) || defined(SDL3PP_DOC)
284
301using iOSAnimationCallback = SDL_iOSAnimationCallback;
302
320using iOSAnimationCB = std::function<void()>;
321
359 int interval,
360 iOSAnimationCallback callback,
361 void* callbackParam)
362{
364 SDL_SetiOSAnimationCallback(window, interval, callback, callbackParam));
365}
366
403 int interval,
404 iOSAnimationCB callback)
405{
407 SetiOSAnimationCallback(&Wrapper::Call, Wrapper::Wrap(std::move(callback)));
408}
409
421inline void SetiOSEventPump(bool enabled) { SDL_SetiOSEventPump(enabled); }
422
423#endif // defined(SDL_PLATFORM_IOS)
424
425/*
426 * Platform specific functions for Android
427 */
428#if defined(SDL_PLATFORM_ANDROID) || defined(SDL3PP_DOC)
429
450inline void* GetAndroidJNIEnv() { return SDL_GetAndroidJNIEnv(); }
451
475inline void* GetAndroidActivity() { return SDL_GetAndroidActivity(); }
476
511inline int GetAndroidSDKVersion() { return SDL_GetAndroidSDKVersion(); }
512
520inline bool IsChromebook() { return SDL_IsChromebook(); }
521
529inline bool IsDeXMode() { return SDL_IsDeXMode(); }
530
538inline void SendAndroidBackButton() { SDL_SendAndroidBackButton(); }
539
547 SDL_ANDROID_EXTERNAL_STORAGE_READ;
548
556 SDL_ANDROID_EXTERNAL_STORAGE_WRITE;
557
580{
581 return SDL_GetAndroidInternalStoragePath();
582}
583
600{
601 return SDL_GetAndroidExternalStorageState();
602}
603
627{
628 return CheckError(SDL_GetAndroidExternalStoragePath());
629}
630
651inline const char* GetAndroidCachePath()
652{
653 return CheckError(SDL_GetAndroidCachePath());
654}
655
667using RequestAndroidPermissionCallback = SDL_RequestAndroidPermissionCallback;
668
682 std::function<void(const char* permission, bool granted)>;
683
720 void* userdata)
721{
722 return SDL_RequestAndroidPermission(permission, cb, userdata);
723}
724
760{
762 auto callback = Wrapper::Wrap(std::move(cb));
764 std::move(permission), &Wrapper::CallOnce, callback)) {
765 Wrapper::release(callback);
766 }
767}
768
794inline void ShowAndroidToast(StringParam message,
795 int duration,
796 int gravity,
797 int xoffset,
798 int yoffset)
799{
801 SDL_ShowAndroidToast(message, duration, gravity, xoffset, yoffset));
802}
803
817inline void SendAndroidMessage(Uint32 command, int param)
818{
819 CheckError(SDL_SendAndroidMessage(command, param));
820}
821
822#endif // defined(SDL_PLATFORM_ANDROID)
823
833inline bool IsTablet() { return SDL_IsTablet(); }
834
844inline bool IsTV() { return SDL_IsTV(); }
845
851using Sandbox = SDL_Sandbox;
852
853constexpr Sandbox SANDBOX_NONE = SDL_SANDBOX_NONE;
854
856 SDL_SANDBOX_UNKNOWN_CONTAINER;
857
858constexpr Sandbox SANDBOX_FLATPAK = SDL_SANDBOX_FLATPAK;
859
860constexpr Sandbox SANDBOX_SNAP = SDL_SANDBOX_SNAP;
861
862constexpr Sandbox SANDBOX_MACOS = SDL_SANDBOX_MACOS;
863
872inline Sandbox GetSandbox() { return SDL_GetSandbox(); }
873
889inline void OnApplicationWillTerminate() { SDL_OnApplicationWillTerminate(); }
890
907{
908 SDL_OnApplicationDidReceiveMemoryWarning();
909}
910
927{
928 SDL_OnApplicationWillEnterBackground();
929}
930
947{
948 SDL_OnApplicationDidEnterBackground();
949}
950
967{
968 SDL_OnApplicationWillEnterForeground();
969}
970
987{
988 SDL_OnApplicationDidEnterForeground();
989}
990
991#if defined(SDL_PLATFORM_IOS) || defined(SDL3PP_DOC)
992
1009{
1010 SDL_OnApplicationDidChangeStatusBarOrientation();
1011}
1012
1013#endif // defined(SDL_PLATFORM_IOS)
1014
1015#if defined(SDL_PLATFORM_GDK) || defined(SDL3PP_DOC)
1016
1030inline void GetGDKTaskQueue(XTaskQueueHandle* outTaskQueue)
1031{
1032 CheckError(SDL_GetGDKTaskQueue(outTaskQueue));
1033}
1034
1048inline bool GetGDKDefaultUser(XUserHandle* outUserHandle)
1049{
1050 return SDL_GetGDKDefaultUser(outUserHandle);
1051}
1052#endif // defined(SDL_PLATFORM_GDK)
1053
1055} // namespace SDL
1056
1057#endif /* SDL3PP_SYSTEM_H_ */
This is a unique ID for a display for the time it is connected to the system, and is never reused for...
Definition SDL3pp_video.h:400
Helpers to use C++ strings parameters.
Definition SDL3pp_strings.h:43
constexpr void CheckError(bool result)
Check and throw if returned value from SDL is an error.
Definition SDL3pp_error.h:206
bool GetGDKDefaultUser(XUserHandle *outUserHandle)
Gets a reference to the default user handle for GDK.
Definition SDL3pp_system.h:1048
constexpr Sandbox SANDBOX_UNKNOWN_CONTAINER
UNKNOWN_CONTAINER.
Definition SDL3pp_system.h:855
void SendAndroidBackButton()
Trigger the Android system back button behavior.
Definition SDL3pp_system.h:538
void SetiOSEventPump(bool enabled)
Use this function to enable or disable the SDL event pump on Apple iOS.
Definition SDL3pp_system.h:421
Uint32 GetAndroidExternalStorageState()
Get the current state of external storage for this Android application.
Definition SDL3pp_system.h:599
bool RequestAndroidPermission(StringParam permission, RequestAndroidPermissionCallback cb, void *userdata)
Request permissions at runtime, asynchronously.
Definition SDL3pp_system.h:718
void OnApplicationDidReceiveMemoryWarning()
Let iOS apps with external event handling report onApplicationDidReceiveMemoryWarning.
Definition SDL3pp_system.h:906
const char * GetAndroidInternalStoragePath()
Get the path used for internal storage for this Android application.
Definition SDL3pp_system.h:579
const char * GetAndroidExternalStoragePath()
Get the path used for external storage for this Android application.
Definition SDL3pp_system.h:626
void * GetAndroidJNIEnv()
Get the Android Java Native Interface Environment of the current thread.
Definition SDL3pp_system.h:450
void OnApplicationWillTerminate()
Let iOS apps with external event handling report onApplicationWillTerminate.
Definition SDL3pp_system.h:889
void SetLinuxThreadPriorityAndPolicy(Sint64 threadID, int sdlPriority, int schedPolicy)
Sets the priority (not nice level) and scheduling policy for a thread.
Definition SDL3pp_system.h:270
void OnApplicationDidEnterBackground()
Let iOS apps with external event handling report onApplicationDidEnterBackground.
Definition SDL3pp_system.h:946
SDL_Sandbox Sandbox
Application sandbox environment.
Definition SDL3pp_system.h:851
constexpr Uint32 ANDROID_EXTERNAL_STORAGE_READ
See the official Android developer guide for more information: http://developer.android....
Definition SDL3pp_system.h:546
void GetDXGIOutputInfo(Display displayID, int *adapterIndex, int *outputIndex)
Get the DXGI Adapter and Output indices for the specified display.
Definition SDL3pp_system.h:152
Sandbox GetSandbox()
Get the application sandbox environment, if any.
Definition SDL3pp_system.h:872
void OnApplicationWillEnterBackground()
Let iOS apps with external event handling report onApplicationWillResignActive.
Definition SDL3pp_system.h:926
const char * GetAndroidCachePath()
Get the path used for caching data for this Android application.
Definition SDL3pp_system.h:651
std::function< bool(MSG *msg)> WindowsMessageHookCB
A callback to be used with SetWindowsMessageHook.
Definition SDL3pp_system.h:77
constexpr Uint32 ANDROID_EXTERNAL_STORAGE_WRITE
See the official Android developer guide for more information: http://developer.android....
Definition SDL3pp_system.h:555
void SetWindowsMessageHook(WindowsMessageHook callback, void *userdata)
Set a callback for every Windows message, run before TranslateMessage().
Definition SDL3pp_system.h:93
void * GetAndroidActivity()
Retrieve the Java instance of the Android activity class.
Definition SDL3pp_system.h:475
void SendAndroidMessage(Uint32 command, int param)
Send a user command to SDLActivity.
Definition SDL3pp_system.h:817
bool IsTablet()
Query if the current device is a tablet.
Definition SDL3pp_system.h:833
SDL_RequestAndroidPermissionCallback RequestAndroidPermissionCallback
Callback that presents a response from a RequestAndroidPermission call.
Definition SDL3pp_system.h:667
int GetAndroidSDKVersion()
Query Android API level of the current device.
Definition SDL3pp_system.h:511
void OnApplicationDidEnterForeground()
Let iOS apps with external event handling report onApplicationDidBecomeActive.
Definition SDL3pp_system.h:986
void GetGDKTaskQueue(XTaskQueueHandle *outTaskQueue)
Gets a reference to the global async task queue handle for GDK, initializing if needed.
Definition SDL3pp_system.h:1030
bool IsChromebook()
Query if the application is running on a Chromebook.
Definition SDL3pp_system.h:520
void OnApplicationWillEnterForeground()
Let iOS apps with external event handling report onApplicationWillEnterForeground.
Definition SDL3pp_system.h:966
std::function< void()> iOSAnimationCB
The prototype for an Apple iOS animation callback.
Definition SDL3pp_system.h:320
SDL_X11EventHook X11EventHook
A callback to be used with SetX11EventHook.
Definition SDL3pp_system.h:181
constexpr Sandbox SANDBOX_MACOS
MACOS.
Definition SDL3pp_system.h:862
void SetiOSAnimationCallback(WindowRef window, int interval, iOSAnimationCallback callback, void *callbackParam)
Use this function to set the animation callback on Apple iOS.
Definition SDL3pp_system.h:358
std::function< void(const char *permission, bool granted)> RequestAndroidPermissionCB
Callback that presents a response from a RequestAndroidPermission call.
Definition SDL3pp_system.h:682
SDL_WindowsMessageHook WindowsMessageHook
A callback to be used with SetWindowsMessageHook.
Definition SDL3pp_system.h:52
void OnApplicationDidChangeStatusBarOrientation()
Let iOS apps with external event handling report onApplicationDidChangeStatusBarOrientation.
Definition SDL3pp_system.h:1008
void ShowAndroidToast(StringParam message, int duration, int gravity, int xoffset, int yoffset)
Shows an Android toast notification.
Definition SDL3pp_system.h:794
bool IsDeXMode()
Query if the application is running on a Samsung DeX docking station.
Definition SDL3pp_system.h:529
constexpr Sandbox SANDBOX_SNAP
SNAP.
Definition SDL3pp_system.h:860
constexpr Sandbox SANDBOX_FLATPAK
FLATPAK.
Definition SDL3pp_system.h:858
std::function< bool(XEvent *)> X11EventHookCB
A callback to be used with SetX11EventHook.
Definition SDL3pp_system.h:204
void SetLinuxThreadPriority(Sint64 threadID, int priority)
Sets the UNIX nice value for a thread.
Definition SDL3pp_system.h:252
int GetDirect3D9AdapterIndex(Display displayID)
Get the D3D9 adapter index that matches the specified display.
Definition SDL3pp_system.h:133
bool IsTV()
Query if the current device is a TV.
Definition SDL3pp_system.h:844
SDL_iOSAnimationCallback iOSAnimationCallback
The prototype for an Apple iOS animation callback.
Definition SDL3pp_system.h:301
constexpr Sandbox SANDBOX_NONE
NONE.
Definition SDL3pp_system.h:853
void SetX11EventHook(X11EventHook callback, void *userdata)
Set a callback for every X11 event.
Definition SDL3pp_system.h:217
the main namespace where all SDL3pp public functions and types live
Definition SDL3pp_assert.h:7
Definition SDL3pp_callbackWrapper.h:66
Stored Wrapper unique by type result callbacks.
Definition SDL3pp_callbackWrapper.h:242
Represents a handle to a window.
Definition SDL3pp_video.h:860