2015-06-21 09:33:46 -06:00
|
|
|
/*
|
|
|
|
Simple DirectMedia Layer
|
2022-01-03 10:40:00 -07:00
|
|
|
Copyright (C) 1997-2022 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
|
|
|
|
2016-11-20 22:34:54 -07:00
|
|
|
#ifndef SDL_main_h_
|
|
|
|
#define SDL_main_h_
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-11-26 21:43:38 -07:00
|
|
|
#include <SDL3/SDL_stdinc.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \file SDL_main.h
|
|
|
|
*
|
|
|
|
* Redefine main() on some platforms so that it is called by SDL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SDL_MAIN_HANDLED
|
|
|
|
#if defined(__WIN32__)
|
|
|
|
/* On Windows SDL provides WinMain(), which parses the command line and passes
|
|
|
|
the arguments to your main function.
|
|
|
|
|
|
|
|
If you provide your own WinMain(), you may define SDL_MAIN_HANDLED
|
|
|
|
*/
|
|
|
|
#define SDL_MAIN_AVAILABLE
|
|
|
|
|
2022-11-23 11:41:43 -07:00
|
|
|
#elif defined(__WINRT__)
|
|
|
|
/* On WinRT, SDL provides a main function that initializes CoreApplication,
|
|
|
|
creating an instance of IFrameworkView in the process.
|
|
|
|
|
|
|
|
Please note that #include'ing SDL_main.h is not enough to get a main()
|
|
|
|
function working. In non-XAML apps, the file,
|
|
|
|
src/main/winrt/SDL_WinRT_main_NonXAML.cpp, or a copy of it, must be compiled
|
|
|
|
into the app itself. In XAML apps, the function, SDL_WinRTRunApp must be
|
|
|
|
called, with a pointer to the Direct3D-hosted XAML control passed in.
|
|
|
|
*/
|
|
|
|
#define SDL_MAIN_NEEDED
|
|
|
|
|
2022-06-27 11:19:39 -06:00
|
|
|
#elif defined(__GDK__)
|
|
|
|
/* On GDK, SDL provides a main function that initializes the game runtime.
|
|
|
|
|
2022-12-10 20:45:38 -07:00
|
|
|
If you prefer to write your own WinMain-function instead of having SDL
|
|
|
|
provide one that calls your main() function,
|
|
|
|
#define SDL_MAIN_HANDLED before #include'ing SDL_main.h
|
|
|
|
and call the SDL_GDKRunApp function from your entry point.
|
2022-06-27 11:19:39 -06:00
|
|
|
*/
|
|
|
|
#define SDL_MAIN_NEEDED
|
|
|
|
|
2022-11-25 17:00:06 -07:00
|
|
|
#elif defined(__IOS__)
|
2015-06-21 09:33:46 -06:00
|
|
|
/* On iOS SDL provides a main function that creates an application delegate
|
|
|
|
and starts the iOS application run loop.
|
|
|
|
|
2019-03-19 08:53:33 -06:00
|
|
|
If you link with SDL dynamically on iOS, the main function can't be in a
|
2022-11-28 10:54:09 -07:00
|
|
|
shared library, so you need to link with libSDL_main.a, which includes a
|
2019-03-19 08:53:33 -06:00
|
|
|
stub main function that calls into the shared library to start execution.
|
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
See src/video/uikit/SDL_uikitappdelegate.m for more details.
|
|
|
|
*/
|
|
|
|
#define SDL_MAIN_NEEDED
|
|
|
|
|
|
|
|
#elif defined(__ANDROID__)
|
|
|
|
/* On Android SDL provides a Java class in SDLActivity.java that is the
|
|
|
|
main activity entry point.
|
|
|
|
|
2017-11-01 18:41:25 -06:00
|
|
|
See docs/README-android.md for more details on extending that class.
|
2015-06-21 09:33:46 -06:00
|
|
|
*/
|
|
|
|
#define SDL_MAIN_NEEDED
|
|
|
|
|
2017-11-01 18:41:25 -06:00
|
|
|
/* We need to export SDL_main so it can be launched from Java */
|
|
|
|
#define SDLMAIN_DECLSPEC DECLSPEC
|
|
|
|
|
2021-12-07 08:43:50 -07:00
|
|
|
#elif defined(__PSP__)
|
|
|
|
/* On PSP SDL provides a main function that sets the module info,
|
|
|
|
activates the GPU and starts the thread required to be able to exit
|
|
|
|
the software.
|
|
|
|
|
|
|
|
If you provide this yourself, you may define SDL_MAIN_HANDLED
|
|
|
|
*/
|
|
|
|
#define SDL_MAIN_AVAILABLE
|
|
|
|
|
2022-03-20 12:42:06 -06:00
|
|
|
#elif defined(__PS2__)
|
|
|
|
#define SDL_MAIN_AVAILABLE
|
|
|
|
|
2022-08-08 03:55:04 -06:00
|
|
|
#define SDL_PS2_SKIP_IOP_RESET() \
|
|
|
|
void reset_IOP(); \
|
|
|
|
void reset_IOP() {}
|
|
|
|
|
2021-03-30 02:32:39 -06:00
|
|
|
#elif defined(__3DS__)
|
|
|
|
/*
|
|
|
|
On N3DS, SDL provides a main function that sets up the screens
|
|
|
|
and storage.
|
|
|
|
|
|
|
|
If you provide this yourself, you may define SDL_MAIN_HANDLED
|
|
|
|
*/
|
|
|
|
#define SDL_MAIN_AVAILABLE
|
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
#endif
|
|
|
|
#endif /* SDL_MAIN_HANDLED */
|
|
|
|
|
2017-11-01 18:41:25 -06:00
|
|
|
#ifndef SDLMAIN_DECLSPEC
|
|
|
|
#define SDLMAIN_DECLSPEC
|
|
|
|
#endif
|
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
/**
|
|
|
|
* \file SDL_main.h
|
|
|
|
*
|
|
|
|
* The application's main() function must be called with C linkage,
|
|
|
|
* and should be declared like this:
|
|
|
|
* \code
|
|
|
|
* #ifdef __cplusplus
|
|
|
|
* extern "C"
|
|
|
|
* #endif
|
|
|
|
* int main(int argc, char *argv[])
|
|
|
|
* {
|
|
|
|
* }
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(SDL_MAIN_NEEDED) || defined(SDL_MAIN_AVAILABLE)
|
|
|
|
#define main SDL_main
|
|
|
|
#endif
|
|
|
|
|
2022-11-26 21:43:38 -07:00
|
|
|
#include <SDL3/begin_code.h>
|
2019-03-19 11:56:46 -06:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
/**
|
|
|
|
* The prototype for the application's main() function
|
|
|
|
*/
|
2019-03-19 09:29:34 -06:00
|
|
|
typedef int (*SDL_main_func)(int argc, char *argv[]);
|
2019-03-19 11:59:41 -06:00
|
|
|
extern SDLMAIN_DECLSPEC int SDL_main(int argc, char *argv[]);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-07-14 15:07:04 -06:00
|
|
|
* Circumvent failure of SDL_Init() when not using SDL_main() as an entry
|
|
|
|
* point.
|
2015-06-21 09:33:46 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* This function is defined in SDL_main.h, along with the preprocessor rule to
|
|
|
|
* redefine main() as SDL_main(). Thus to ensure that your main() function
|
|
|
|
* will not be changed it is necessary to define SDL_MAIN_HANDLED before
|
|
|
|
* including SDL.h.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \sa SDL_Init
|
2015-06-21 09:33:46 -06:00
|
|
|
*/
|
|
|
|
extern DECLSPEC void SDLCALL SDL_SetMainReady(void);
|
|
|
|
|
2022-06-27 11:19:39 -06:00
|
|
|
#if defined(__WIN32__) || defined(__GDK__)
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/**
|
2021-11-18 13:56:16 -07:00
|
|
|
* Register a win32 window class for SDL's use.
|
|
|
|
*
|
2021-11-18 13:58:04 -07:00
|
|
|
* This can be called to set the application window class at startup. It is
|
|
|
|
* safe to call this multiple times, as long as every call is eventually
|
|
|
|
* paired with a call to SDL_UnregisterApp, but a second registration attempt
|
|
|
|
* while a previous registration is still active will be ignored, other than
|
|
|
|
* to increment a counter.
|
2021-11-18 13:56:16 -07:00
|
|
|
*
|
2021-11-18 13:58:04 -07:00
|
|
|
* Most applications do not need to, and should not, call this directly; SDL
|
|
|
|
* will call it when initializing the video subsystem.
|
2021-11-18 13:56:16 -07:00
|
|
|
*
|
2021-11-18 13:58:04 -07:00
|
|
|
* \param name the window class name, in UTF-8 encoding. If NULL, SDL
|
|
|
|
* currently uses "SDL_app" but this isn't guaranteed.
|
|
|
|
* \param style the value to use in WNDCLASSEX::style. If `name` is NULL, SDL
|
|
|
|
* currently uses `(CS_BYTEALIGNCLIENT | CS_OWNDC)` regardless of
|
|
|
|
* what is specified here.
|
|
|
|
* \param hInst the HINSTANCE to use in WNDCLASSEX::hInstance. If zero, SDL
|
|
|
|
* will use `GetModuleHandle(NULL)` instead.
|
2021-11-18 13:56:16 -07:00
|
|
|
* \returns 0 on success, -1 on error. SDL_GetError() may have details.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2015-06-21 09:33:46 -06:00
|
|
|
*/
|
2021-11-13 18:40:50 -07:00
|
|
|
extern DECLSPEC int SDLCALL SDL_RegisterApp(const char *name, Uint32 style, void *hInst);
|
2021-11-18 13:56:16 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Deregister the win32 window class from an SDL_RegisterApp call.
|
|
|
|
*
|
|
|
|
* This can be called to undo the effects of SDL_RegisterApp.
|
|
|
|
*
|
2021-11-18 13:58:04 -07:00
|
|
|
* Most applications do not need to, and should not, call this directly; SDL
|
|
|
|
* will call it when deinitializing the video subsystem.
|
2021-11-18 13:56:16 -07:00
|
|
|
*
|
2021-11-18 13:58:04 -07:00
|
|
|
* It is safe to call this multiple times, as long as every call is eventually
|
|
|
|
* paired with a prior call to SDL_RegisterApp. The window class will only be
|
|
|
|
* deregistered when the registration counter in SDL_RegisterApp decrements to
|
|
|
|
* zero through calls to this function.
|
2021-11-18 13:56:16 -07:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-11-18 13:56:16 -07:00
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC void SDLCALL SDL_UnregisterApp(void);
|
|
|
|
|
2022-06-27 11:19:39 -06:00
|
|
|
#endif /* defined(__WIN32__) || defined(__GDK__) */
|
2015-06-21 09:33:46 -06:00
|
|
|
|
Implement SDL_main as header-only lib for Win32
(remaining platforms will follow)
SDL_main.h is *not* included by SDL.h anymore, users are supposed to
include it directly now, usually only in the file they implement main() in.
If they need the header elsewhere or don't want SDL_main to implement
main() (but only call SDL_SetMainReady() or whatever), they
can #define SDL_MAIN_HANDLED first, same as before.
For SDL-internal usage, I added _SDL_MAIN_NOIMPL, which *also* skips the
implementation and `#define main SDL_main`, but still defines
SDL_MAIN_AVAILABLE and SDL_MAIN_NEEDED in SDL_main.h, as before.
To make the implementaion in the header shorter and avoid including windows.h,
I moved most of the Win32 SDL_main code into SDL3.dll via SDL_Win32RunApp(),
so the header-only part is just the different main functions calling
SDL_Win32RunApp(SDL_main, NULL)
Note that I changed changed the return value and type of OutOfMemory()
to return -1 instead of FALSE, so main() (or WinMain() or whatever)
returns -1 instead of 0 in case of an out-of-memory error
Compared to original Win32 SDL_main, I tweaked the part of the
implementation in SDL_main_impl.h a bit to avoid linker warnings
and conflicts with stuff from windows.h:
- replaced windows.h with own define of WINAPI
and typedef-ing HINSTANCE and LPSTR.
This prevents conflicts between all the generically-named #defines and
types in windows.h and user code (like DrawState in some SDL tests)
- only using one of main() or wmain() gets rid of a MSVC linker error
("warning LNK4067: ambiguous entry point")
If this still causes problems, we might try getting rid of wmain(),
seemed to me like MSVC can use regular main() in UNICODE mode as well
- simplified the UNICODE logic for that - while this is not exactly
equivalent to the old, it should make sense and Works For Me
2022-12-03 19:29:22 -07:00
|
|
|
#ifdef __WIN32__
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize and launch an SDL/Win32 (classic WinAPI) application.
|
|
|
|
*
|
|
|
|
* \param mainFunction the SDL app's C-style main(), an SDL_main_func
|
|
|
|
* \param reserved reserved for future use; should be NULL
|
|
|
|
* \returns 0 on success or -1 on failure; call SDL_GetError() to retrieve
|
|
|
|
* more information on the failure.
|
|
|
|
*
|
|
|
|
* \since This function is available since SDL 3.0.0.
|
|
|
|
*/
|
|
|
|
extern DECLSPEC int SDLCALL SDL_Win32RunApp(SDL_main_func mainFunction, void * reserved);
|
|
|
|
|
|
|
|
#endif /* __WIN32__ */
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-11-23 11:41:43 -07:00
|
|
|
#ifdef __WINRT__
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize and launch an SDL/WinRT application.
|
|
|
|
*
|
|
|
|
* \param mainFunction the SDL app's C-style main(), an SDL_main_func
|
|
|
|
* \param reserved reserved for future use; should be NULL
|
|
|
|
* \returns 0 on success or -1 on failure; call SDL_GetError() to retrieve
|
|
|
|
* more information on the failure.
|
|
|
|
*
|
|
|
|
* \since This function is available since SDL 2.0.3.
|
|
|
|
*/
|
|
|
|
extern DECLSPEC int SDLCALL SDL_WinRTRunApp(SDL_main_func mainFunction, void * reserved);
|
|
|
|
|
|
|
|
#endif /* __WINRT__ */
|
|
|
|
|
2022-11-25 17:00:06 -07:00
|
|
|
#if defined(__IOS__)
|
2019-03-19 08:53:33 -06:00
|
|
|
|
|
|
|
/**
|
2021-03-21 12:18:39 -06:00
|
|
|
* Initializes and launches an SDL application.
|
2019-03-19 08:53:33 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \param argc The argc parameter from the application's main() function
|
|
|
|
* \param argv The argv parameter from the application's main() function
|
|
|
|
* \param mainFunction The SDL app's C-style main(), an SDL_main_func
|
|
|
|
* \return the return value from mainFunction
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2019-03-19 08:53:33 -06:00
|
|
|
*/
|
|
|
|
extern DECLSPEC int SDLCALL SDL_UIKitRunApp(int argc, char *argv[], SDL_main_func mainFunction);
|
|
|
|
|
2022-11-25 17:00:06 -07:00
|
|
|
#endif /* __IOS__ */
|
2019-03-19 08:53:33 -06:00
|
|
|
|
2022-06-27 11:19:39 -06:00
|
|
|
#ifdef __GDK__
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize and launch an SDL GDK application.
|
|
|
|
*
|
|
|
|
* \param mainFunction the SDL app's C-style main(), an SDL_main_func
|
|
|
|
* \param reserved reserved for future use; should be NULL
|
|
|
|
* \returns 0 on success or -1 on failure; call SDL_GetError() to retrieve
|
|
|
|
* more information on the failure.
|
2022-06-27 11:20:12 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2022-06-27 11:19:39 -06:00
|
|
|
*/
|
|
|
|
extern DECLSPEC int SDLCALL SDL_GDKRunApp(SDL_main_func mainFunction, void *reserved);
|
|
|
|
|
2022-11-23 12:41:14 -07:00
|
|
|
/**
|
|
|
|
* Callback from the application to let the suspend continue.
|
|
|
|
*
|
2022-11-23 12:59:15 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2022-11-23 12:41:14 -07:00
|
|
|
*/
|
|
|
|
extern DECLSPEC void SDLCALL SDL_GDKSuspendComplete(void);
|
|
|
|
|
2022-06-27 11:19:39 -06:00
|
|
|
#endif /* __GDK__ */
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
Implement SDL_main as header-only lib for Win32
(remaining platforms will follow)
SDL_main.h is *not* included by SDL.h anymore, users are supposed to
include it directly now, usually only in the file they implement main() in.
If they need the header elsewhere or don't want SDL_main to implement
main() (but only call SDL_SetMainReady() or whatever), they
can #define SDL_MAIN_HANDLED first, same as before.
For SDL-internal usage, I added _SDL_MAIN_NOIMPL, which *also* skips the
implementation and `#define main SDL_main`, but still defines
SDL_MAIN_AVAILABLE and SDL_MAIN_NEEDED in SDL_main.h, as before.
To make the implementaion in the header shorter and avoid including windows.h,
I moved most of the Win32 SDL_main code into SDL3.dll via SDL_Win32RunApp(),
so the header-only part is just the different main functions calling
SDL_Win32RunApp(SDL_main, NULL)
Note that I changed changed the return value and type of OutOfMemory()
to return -1 instead of FALSE, so main() (or WinMain() or whatever)
returns -1 instead of 0 in case of an out-of-memory error
Compared to original Win32 SDL_main, I tweaked the part of the
implementation in SDL_main_impl.h a bit to avoid linker warnings
and conflicts with stuff from windows.h:
- replaced windows.h with own define of WINAPI
and typedef-ing HINSTANCE and LPSTR.
This prevents conflicts between all the generically-named #defines and
types in windows.h and user code (like DrawState in some SDL tests)
- only using one of main() or wmain() gets rid of a MSVC linker error
("warning LNK4067: ambiguous entry point")
If this still causes problems, we might try getting rid of wmain(),
seemed to me like MSVC can use regular main() in UNICODE mode as well
- simplified the UNICODE logic for that - while this is not exactly
equivalent to the old, it should make sense and Works For Me
2022-12-03 19:29:22 -07:00
|
|
|
|
2022-11-26 21:43:38 -07:00
|
|
|
#include <SDL3/close_code.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
Implement SDL_main as header-only lib for Win32
(remaining platforms will follow)
SDL_main.h is *not* included by SDL.h anymore, users are supposed to
include it directly now, usually only in the file they implement main() in.
If they need the header elsewhere or don't want SDL_main to implement
main() (but only call SDL_SetMainReady() or whatever), they
can #define SDL_MAIN_HANDLED first, same as before.
For SDL-internal usage, I added _SDL_MAIN_NOIMPL, which *also* skips the
implementation and `#define main SDL_main`, but still defines
SDL_MAIN_AVAILABLE and SDL_MAIN_NEEDED in SDL_main.h, as before.
To make the implementaion in the header shorter and avoid including windows.h,
I moved most of the Win32 SDL_main code into SDL3.dll via SDL_Win32RunApp(),
so the header-only part is just the different main functions calling
SDL_Win32RunApp(SDL_main, NULL)
Note that I changed changed the return value and type of OutOfMemory()
to return -1 instead of FALSE, so main() (or WinMain() or whatever)
returns -1 instead of 0 in case of an out-of-memory error
Compared to original Win32 SDL_main, I tweaked the part of the
implementation in SDL_main_impl.h a bit to avoid linker warnings
and conflicts with stuff from windows.h:
- replaced windows.h with own define of WINAPI
and typedef-ing HINSTANCE and LPSTR.
This prevents conflicts between all the generically-named #defines and
types in windows.h and user code (like DrawState in some SDL tests)
- only using one of main() or wmain() gets rid of a MSVC linker error
("warning LNK4067: ambiguous entry point")
If this still causes problems, we might try getting rid of wmain(),
seemed to me like MSVC can use regular main() in UNICODE mode as well
- simplified the UNICODE logic for that - while this is not exactly
equivalent to the old, it should make sense and Works For Me
2022-12-03 19:29:22 -07:00
|
|
|
#if !defined(SDL_MAIN_HANDLED) && !defined(_SDL_MAIN_NOIMPL)
|
|
|
|
/* include header-only SDL_main implementations */
|
|
|
|
#if defined(__WIN32__) || defined(__GDK__) /* TODO: other platforms */
|
|
|
|
#include <SDL3/SDL_main_impl.h>
|
|
|
|
#endif
|
|
|
|
#endif /* SDL_MAIN_HANDLED */
|
|
|
|
|
2016-11-20 22:34:54 -07:00
|
|
|
#endif /* SDL_main_h_ */
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/* vi: set ts=4 sw=4 expandtab: */
|