2015-06-21 17:33:46 +02:00
|
|
|
|
/*
|
|
|
|
|
|
Simple DirectMedia Layer
|
2026-01-01 09:39:50 -08:00
|
|
|
|
Copyright (C) 1997-2026 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 17:33:46 +02: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 21:34:54 -08:00
|
|
|
|
#ifndef SDL_timer_h_
|
|
|
|
|
|
#define SDL_timer_h_
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
|
|
/**
|
2024-05-16 10:44:37 -04:00
|
|
|
|
* # CategoryTimer
|
2015-06-21 17:33:46 +02:00
|
|
|
|
*
|
2025-01-19 12:18:46 -05:00
|
|
|
|
* SDL provides time management functionality. It is useful for dealing with
|
|
|
|
|
|
* (usually) small durations of time.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This is not to be confused with _calendar time_ management, which is
|
|
|
|
|
|
* provided by [CategoryTime](CategoryTime).
|
|
|
|
|
|
*
|
|
|
|
|
|
* This category covers measuring time elapsed (SDL_GetTicks(),
|
|
|
|
|
|
* SDL_GetPerformanceCounter()), putting a thread to sleep for a certain
|
2025-01-19 23:59:37 +00:00
|
|
|
|
* amount of time (SDL_Delay(), SDL_DelayNS(), SDL_DelayPrecise()), and firing
|
2025-09-22 09:41:45 -04:00
|
|
|
|
* a callback function after a certain amount of time has elapsed
|
2025-01-19 12:18:46 -05:00
|
|
|
|
* (SDL_AddTimer(), etc).
|
|
|
|
|
|
*
|
|
|
|
|
|
* There are also useful macros to convert between time units, like
|
|
|
|
|
|
* SDL_SECONDS_TO_NS() and such.
|
2015-06-21 17:33:46 +02:00
|
|
|
|
*/
|
|
|
|
|
|
|
2022-11-26 20:43:38 -08:00
|
|
|
|
#include <SDL3/SDL_stdinc.h>
|
|
|
|
|
|
#include <SDL3/SDL_error.h>
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
2022-12-22 11:38:59 -05:00
|
|
|
|
#include <SDL3/SDL_begin_code.h>
|
2015-06-21 17:33:46 +02:00
|
|
|
|
/* Set up for C function definitions, even when using C++ */
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
2024-04-08 22:36:57 -04:00
|
|
|
|
/* SDL time constants */
|
2024-12-19 16:42:14 -05:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Number of milliseconds in a second.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This is always 1000.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This macro is available since SDL 3.2.0.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*/
|
2022-12-02 01:17:17 -08:00
|
|
|
|
#define SDL_MS_PER_SECOND 1000
|
2024-12-19 16:42:14 -05:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Number of microseconds in a second.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This is always 1000000.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This macro is available since SDL 3.2.0.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*/
|
2022-12-02 01:17:17 -08:00
|
|
|
|
#define SDL_US_PER_SECOND 1000000
|
2024-12-19 16:42:14 -05:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Number of nanoseconds in a second.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This is always 1000000000.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This macro is available since SDL 3.2.0.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*/
|
2023-01-09 18:30:23 -08:00
|
|
|
|
#define SDL_NS_PER_SECOND 1000000000LL
|
2024-12-19 16:42:14 -05:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Number of nanoseconds in a millisecond.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This is always 1000000.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This macro is available since SDL 3.2.0.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*/
|
2022-12-02 01:17:17 -08:00
|
|
|
|
#define SDL_NS_PER_MS 1000000
|
2024-12-19 16:42:14 -05:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Number of nanoseconds in a microsecond.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This is always 1000.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This macro is available since SDL 3.2.0.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*/
|
2022-12-02 01:17:17 -08:00
|
|
|
|
#define SDL_NS_PER_US 1000
|
2024-12-19 16:42:14 -05:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Convert seconds to nanoseconds.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This only converts whole numbers, not fractional seconds.
|
|
|
|
|
|
*
|
|
|
|
|
|
* \param S the number of seconds to convert.
|
2024-12-19 16:46:26 -05:00
|
|
|
|
* \returns S, expressed in nanoseconds.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*
|
|
|
|
|
|
* \threadsafety It is safe to call this macro from any thread.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This macro is available since SDL 3.2.0.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*/
|
2024-03-17 13:11:13 -07:00
|
|
|
|
#define SDL_SECONDS_TO_NS(S) (((Uint64)(S)) * SDL_NS_PER_SECOND)
|
2024-12-19 16:42:14 -05:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Convert nanoseconds to seconds.
|
|
|
|
|
|
*
|
2024-12-19 21:44:12 +00:00
|
|
|
|
* This performs a division, so the results can be dramatically different if
|
|
|
|
|
|
* `NS` is an integer or floating point value.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*
|
|
|
|
|
|
* \param NS the number of nanoseconds to convert.
|
2024-12-19 16:46:26 -05:00
|
|
|
|
* \returns NS, expressed in seconds.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*
|
|
|
|
|
|
* \threadsafety It is safe to call this macro from any thread.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This macro is available since SDL 3.2.0.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*/
|
2024-03-17 13:11:13 -07:00
|
|
|
|
#define SDL_NS_TO_SECONDS(NS) ((NS) / SDL_NS_PER_SECOND)
|
2024-12-19 16:42:14 -05:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Convert milliseconds to nanoseconds.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This only converts whole numbers, not fractional milliseconds.
|
|
|
|
|
|
*
|
|
|
|
|
|
* \param MS the number of milliseconds to convert.
|
2024-12-19 16:46:26 -05:00
|
|
|
|
* \returns MS, expressed in nanoseconds.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*
|
|
|
|
|
|
* \threadsafety It is safe to call this macro from any thread.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This macro is available since SDL 3.2.0.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*/
|
2024-03-17 13:11:13 -07:00
|
|
|
|
#define SDL_MS_TO_NS(MS) (((Uint64)(MS)) * SDL_NS_PER_MS)
|
2024-12-19 16:42:14 -05:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Convert nanoseconds to milliseconds.
|
|
|
|
|
|
*
|
2024-12-19 21:44:12 +00:00
|
|
|
|
* This performs a division, so the results can be dramatically different if
|
|
|
|
|
|
* `NS` is an integer or floating point value.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*
|
|
|
|
|
|
* \param NS the number of nanoseconds to convert.
|
2024-12-19 16:46:26 -05:00
|
|
|
|
* \returns NS, expressed in milliseconds.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*
|
|
|
|
|
|
* \threadsafety It is safe to call this macro from any thread.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This macro is available since SDL 3.2.0.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*/
|
2024-03-17 13:11:13 -07:00
|
|
|
|
#define SDL_NS_TO_MS(NS) ((NS) / SDL_NS_PER_MS)
|
2024-12-19 16:42:14 -05:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Convert microseconds to nanoseconds.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This only converts whole numbers, not fractional microseconds.
|
|
|
|
|
|
*
|
|
|
|
|
|
* \param US the number of microseconds to convert.
|
2024-12-19 16:46:26 -05:00
|
|
|
|
* \returns US, expressed in nanoseconds.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*
|
|
|
|
|
|
* \threadsafety It is safe to call this macro from any thread.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This macro is available since SDL 3.2.0.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*/
|
2024-03-17 13:11:13 -07:00
|
|
|
|
#define SDL_US_TO_NS(US) (((Uint64)(US)) * SDL_NS_PER_US)
|
2024-12-19 16:42:14 -05:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Convert nanoseconds to microseconds.
|
|
|
|
|
|
*
|
2024-12-19 21:44:12 +00:00
|
|
|
|
* This performs a division, so the results can be dramatically different if
|
|
|
|
|
|
* `NS` is an integer or floating point value.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*
|
|
|
|
|
|
* \param NS the number of nanoseconds to convert.
|
2024-12-19 16:46:26 -05:00
|
|
|
|
* \returns NS, expressed in microseconds.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*
|
|
|
|
|
|
* \threadsafety It is safe to call this macro from any thread.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This macro is available since SDL 3.2.0.
|
2024-12-19 16:42:14 -05:00
|
|
|
|
*/
|
2024-03-17 13:11:13 -07:00
|
|
|
|
#define SDL_NS_TO_US(NS) ((NS) / SDL_NS_PER_US)
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
|
|
/**
|
2025-03-06 20:23:18 +00:00
|
|
|
|
* Get the number of milliseconds that have elapsed since the SDL library
|
|
|
|
|
|
* initialization.
|
2021-10-23 15:00:31 -04:00
|
|
|
|
*
|
2025-03-06 20:23:18 +00:00
|
|
|
|
* \returns an unsigned 64‑bit integer that represents the number of
|
|
|
|
|
|
* milliseconds that have elapsed since the SDL library was
|
|
|
|
|
|
* initialized (typically via a call to SDL_Init).
|
2021-11-10 16:05:03 -05:00
|
|
|
|
*
|
2024-10-22 13:47:28 -04:00
|
|
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This function is available since SDL 3.2.0.
|
2025-06-28 12:31:32 +00:00
|
|
|
|
*
|
|
|
|
|
|
* \sa SDL_GetTicksNS
|
2021-10-23 15:00:31 -04:00
|
|
|
|
*/
|
2024-05-17 16:52:36 -07:00
|
|
|
|
extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetTicks(void);
|
2021-10-23 15:00:31 -04:00
|
|
|
|
|
|
|
|
|
|
/**
|
2022-12-02 01:17:17 -08:00
|
|
|
|
* Get the number of nanoseconds since SDL library initialization.
|
|
|
|
|
|
*
|
|
|
|
|
|
* \returns an unsigned 64-bit value representing the number of nanoseconds
|
|
|
|
|
|
* since the SDL library initialized.
|
|
|
|
|
|
*
|
2024-10-22 13:47:28 -04:00
|
|
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This function is available since SDL 3.2.0.
|
2015-06-21 17:33:46 +02:00
|
|
|
|
*/
|
2024-05-17 16:52:36 -07:00
|
|
|
|
extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetTicksNS(void);
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
|
|
/**
|
2021-03-21 14:18:39 -04:00
|
|
|
|
* Get the current value of the high resolution counter.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This function is typically used for profiling.
|
|
|
|
|
|
*
|
|
|
|
|
|
* The counter values are only meaningful relative to each other. Differences
|
|
|
|
|
|
* between values can be converted to times by using
|
|
|
|
|
|
* SDL_GetPerformanceFrequency().
|
|
|
|
|
|
*
|
|
|
|
|
|
* \returns the current counter value.
|
|
|
|
|
|
*
|
2024-10-22 13:47:28 -04:00
|
|
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This function is available since SDL 3.2.0.
|
2021-10-27 01:36:05 +00:00
|
|
|
|
*
|
2021-03-21 14:18:39 -04:00
|
|
|
|
* \sa SDL_GetPerformanceFrequency
|
2015-06-21 17:33:46 +02:00
|
|
|
|
*/
|
2024-05-17 16:52:36 -07:00
|
|
|
|
extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetPerformanceCounter(void);
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
|
|
/**
|
2021-03-21 14:18:39 -04:00
|
|
|
|
* Get the count per second of the high resolution counter.
|
|
|
|
|
|
*
|
|
|
|
|
|
* \returns a platform-specific count per second.
|
|
|
|
|
|
*
|
2024-10-22 13:47:28 -04:00
|
|
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This function is available since SDL 3.2.0.
|
2021-03-21 14:18:39 -04:00
|
|
|
|
*
|
|
|
|
|
|
* \sa SDL_GetPerformanceCounter
|
2015-06-21 17:33:46 +02:00
|
|
|
|
*/
|
2024-05-17 16:52:36 -07:00
|
|
|
|
extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetPerformanceFrequency(void);
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
|
|
/**
|
2021-03-21 14:18:39 -04:00
|
|
|
|
* Wait a specified number of milliseconds before returning.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This function waits a specified number of milliseconds before returning. It
|
|
|
|
|
|
* waits at least the specified time, but possibly longer due to OS
|
|
|
|
|
|
* scheduling.
|
|
|
|
|
|
*
|
2024-06-14 02:09:55 -04:00
|
|
|
|
* \param ms the number of milliseconds to delay.
|
2021-10-27 01:36:05 +00:00
|
|
|
|
*
|
2024-10-22 13:47:28 -04:00
|
|
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This function is available since SDL 3.2.0.
|
2025-01-19 12:18:46 -05:00
|
|
|
|
*
|
|
|
|
|
|
* \sa SDL_DelayNS
|
|
|
|
|
|
* \sa SDL_DelayPrecise
|
2015-06-21 17:33:46 +02:00
|
|
|
|
*/
|
2024-05-17 16:52:36 -07:00
|
|
|
|
extern SDL_DECLSPEC void SDLCALL SDL_Delay(Uint32 ms);
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
2022-12-02 01:17:17 -08:00
|
|
|
|
/**
|
|
|
|
|
|
* Wait a specified number of nanoseconds before returning.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This function waits a specified number of nanoseconds before returning. It
|
2024-10-10 07:43:34 -07:00
|
|
|
|
* waits at least the specified time, but possibly longer due to OS
|
|
|
|
|
|
* scheduling.
|
2022-12-02 01:17:17 -08:00
|
|
|
|
*
|
2024-06-14 02:09:55 -04:00
|
|
|
|
* \param ns the number of nanoseconds to delay.
|
2022-12-02 01:17:17 -08:00
|
|
|
|
*
|
2024-10-22 13:47:28 -04:00
|
|
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This function is available since SDL 3.2.0.
|
2025-01-19 12:18:46 -05:00
|
|
|
|
*
|
|
|
|
|
|
* \sa SDL_Delay
|
|
|
|
|
|
* \sa SDL_DelayPrecise
|
2022-12-02 01:17:17 -08:00
|
|
|
|
*/
|
2024-05-17 16:52:36 -07:00
|
|
|
|
extern SDL_DECLSPEC void SDLCALL SDL_DelayNS(Uint64 ns);
|
2022-12-02 01:17:17 -08:00
|
|
|
|
|
2024-10-10 07:43:34 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Wait a specified number of nanoseconds before returning.
|
|
|
|
|
|
*
|
|
|
|
|
|
* This function waits a specified number of nanoseconds before returning. It
|
|
|
|
|
|
* will attempt to wait as close to the requested time as possible, busy
|
|
|
|
|
|
* waiting if necessary, but could return later due to OS scheduling.
|
|
|
|
|
|
*
|
|
|
|
|
|
* \param ns the number of nanoseconds to delay.
|
|
|
|
|
|
*
|
2024-10-22 13:47:28 -04:00
|
|
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This function is available since SDL 3.2.0.
|
2025-01-19 12:18:46 -05:00
|
|
|
|
*
|
|
|
|
|
|
* \sa SDL_Delay
|
|
|
|
|
|
* \sa SDL_DelayNS
|
2024-10-10 07:43:34 -07:00
|
|
|
|
*/
|
|
|
|
|
|
extern SDL_DECLSPEC void SDLCALL SDL_DelayPrecise(Uint64 ns);
|
|
|
|
|
|
|
2024-05-26 17:56:29 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Definition of the timer ID type.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This datatype is available since SDL 3.2.0.
|
2024-05-26 17:56:29 -07:00
|
|
|
|
*/
|
|
|
|
|
|
typedef Uint32 SDL_TimerID;
|
|
|
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
|
/**
|
2024-05-27 06:30:37 -07:00
|
|
|
|
* Function prototype for the millisecond timer callback function.
|
2015-06-21 17:33:46 +02:00
|
|
|
|
*
|
2024-04-11 12:59:41 +00:00
|
|
|
|
* The callback function is passed the current timer interval and returns the
|
|
|
|
|
|
* next timer interval, in milliseconds. If the returned value is the same as
|
|
|
|
|
|
* the one passed in, the periodic alarm continues, otherwise a new alarm is
|
2024-08-05 03:00:45 +00:00
|
|
|
|
* scheduled. If the callback returns 0, the periodic alarm is canceled and
|
|
|
|
|
|
* will be removed.
|
2024-04-11 00:36:48 -04:00
|
|
|
|
*
|
2024-05-27 14:58:03 +00:00
|
|
|
|
* \param userdata an arbitrary pointer provided by the app through
|
|
|
|
|
|
* SDL_AddTimer, for its own use.
|
2024-06-14 02:09:55 -04:00
|
|
|
|
* \param timerID the current timer being processed.
|
2024-04-11 00:36:48 -04:00
|
|
|
|
* \param interval the current callback time interval.
|
2024-04-11 12:59:41 +00:00
|
|
|
|
* \returns the new callback time interval, or 0 to disable further runs of
|
|
|
|
|
|
* the callback.
|
2024-04-11 00:36:48 -04:00
|
|
|
|
*
|
|
|
|
|
|
* \threadsafety SDL may call this callback at any time from a background
|
|
|
|
|
|
* thread; the application is responsible for locking resources
|
|
|
|
|
|
* the callback touches that need to be protected.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This datatype is available since SDL 3.2.0.
|
2024-04-11 00:36:48 -04:00
|
|
|
|
*
|
|
|
|
|
|
* \sa SDL_AddTimer
|
2015-06-21 17:33:46 +02:00
|
|
|
|
*/
|
2024-05-26 17:56:29 -07:00
|
|
|
|
typedef Uint32 (SDLCALL *SDL_TimerCallback)(void *userdata, SDL_TimerID timerID, Uint32 interval);
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
|
|
/**
|
2021-03-21 14:18:39 -04:00
|
|
|
|
* Call a callback function at a future time.
|
|
|
|
|
|
*
|
|
|
|
|
|
* The callback function is passed the current timer interval and the user
|
|
|
|
|
|
* supplied parameter from the SDL_AddTimer() call and should return the next
|
|
|
|
|
|
* timer interval. If the value returned from the callback is 0, the timer is
|
2024-08-04 19:44:13 -07:00
|
|
|
|
* canceled and will be removed.
|
2021-03-21 14:18:39 -04:00
|
|
|
|
*
|
2024-05-27 14:58:03 +00:00
|
|
|
|
* The callback is run on a separate thread, and for short timeouts can
|
|
|
|
|
|
* potentially be called before this function returns.
|
2021-03-21 14:18:39 -04:00
|
|
|
|
*
|
|
|
|
|
|
* Timers take into account the amount of time it took to execute the
|
|
|
|
|
|
* callback. For example, if the callback took 250 ms to execute and returned
|
|
|
|
|
|
* 1000 (ms), the timer would only wait another 750 ms before its next
|
|
|
|
|
|
* iteration.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Timing may be inexact due to OS scheduling. Be sure to note the current
|
2022-12-02 01:17:17 -08:00
|
|
|
|
* time with SDL_GetTicksNS() or SDL_GetPerformanceCounter() in case your
|
2021-03-21 14:18:39 -04:00
|
|
|
|
* callback needs to adjust for variances.
|
|
|
|
|
|
*
|
2024-06-14 02:09:55 -04:00
|
|
|
|
* \param interval the timer delay, in milliseconds, passed to `callback`.
|
2021-03-21 14:18:39 -04:00
|
|
|
|
* \param callback the SDL_TimerCallback function to call when the specified
|
2024-06-14 02:09:55 -04:00
|
|
|
|
* `interval` elapses.
|
|
|
|
|
|
* \param userdata a pointer that is passed to `callback`.
|
2024-07-18 00:30:33 -07:00
|
|
|
|
* \returns a timer ID or 0 on failure; call SDL_GetError() for more
|
2021-03-21 14:18:39 -04:00
|
|
|
|
* information.
|
2015-06-21 17:33:46 +02:00
|
|
|
|
*
|
2024-05-22 00:41:09 +00:00
|
|
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This function is available since SDL 3.2.0.
|
2021-10-27 01:36:05 +00:00
|
|
|
|
*
|
2024-05-27 06:30:37 -07:00
|
|
|
|
* \sa SDL_AddTimerNS
|
2021-03-21 14:18:39 -04:00
|
|
|
|
* \sa SDL_RemoveTimer
|
2015-06-21 17:33:46 +02:00
|
|
|
|
*/
|
2024-05-26 17:56:29 -07:00
|
|
|
|
extern SDL_DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_TimerCallback callback, void *userdata);
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
2024-05-27 06:30:37 -07:00
|
|
|
|
/**
|
|
|
|
|
|
* Function prototype for the nanosecond timer callback function.
|
|
|
|
|
|
*
|
|
|
|
|
|
* The callback function is passed the current timer interval and returns the
|
|
|
|
|
|
* next timer interval, in nanoseconds. If the returned value is the same as
|
|
|
|
|
|
* the one passed in, the periodic alarm continues, otherwise a new alarm is
|
2024-08-05 03:00:45 +00:00
|
|
|
|
* scheduled. If the callback returns 0, the periodic alarm is canceled and
|
|
|
|
|
|
* will be removed.
|
2024-05-27 06:30:37 -07:00
|
|
|
|
*
|
2024-05-27 14:58:03 +00:00
|
|
|
|
* \param userdata an arbitrary pointer provided by the app through
|
|
|
|
|
|
* SDL_AddTimer, for its own use.
|
2024-06-14 02:09:55 -04:00
|
|
|
|
* \param timerID the current timer being processed.
|
2024-05-27 06:30:37 -07:00
|
|
|
|
* \param interval the current callback time interval.
|
|
|
|
|
|
* \returns the new callback time interval, or 0 to disable further runs of
|
|
|
|
|
|
* the callback.
|
|
|
|
|
|
*
|
|
|
|
|
|
* \threadsafety SDL may call this callback at any time from a background
|
|
|
|
|
|
* thread; the application is responsible for locking resources
|
|
|
|
|
|
* the callback touches that need to be protected.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This datatype is available since SDL 3.2.0.
|
2024-05-27 06:30:37 -07:00
|
|
|
|
*
|
|
|
|
|
|
* \sa SDL_AddTimerNS
|
|
|
|
|
|
*/
|
|
|
|
|
|
typedef Uint64 (SDLCALL *SDL_NSTimerCallback)(void *userdata, SDL_TimerID timerID, Uint64 interval);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Call a callback function at a future time.
|
|
|
|
|
|
*
|
|
|
|
|
|
* The callback function is passed the current timer interval and the user
|
2024-05-27 14:58:03 +00:00
|
|
|
|
* supplied parameter from the SDL_AddTimerNS() call and should return the
|
|
|
|
|
|
* next timer interval. If the value returned from the callback is 0, the
|
2024-08-04 19:44:13 -07:00
|
|
|
|
* timer is canceled and will be removed.
|
2024-05-27 06:30:37 -07:00
|
|
|
|
*
|
2024-05-27 14:58:03 +00:00
|
|
|
|
* The callback is run on a separate thread, and for short timeouts can
|
|
|
|
|
|
* potentially be called before this function returns.
|
2024-05-27 06:30:37 -07:00
|
|
|
|
*
|
|
|
|
|
|
* Timers take into account the amount of time it took to execute the
|
|
|
|
|
|
* callback. For example, if the callback took 250 ns to execute and returned
|
|
|
|
|
|
* 1000 (ns), the timer would only wait another 750 ns before its next
|
|
|
|
|
|
* iteration.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Timing may be inexact due to OS scheduling. Be sure to note the current
|
|
|
|
|
|
* time with SDL_GetTicksNS() or SDL_GetPerformanceCounter() in case your
|
|
|
|
|
|
* callback needs to adjust for variances.
|
|
|
|
|
|
*
|
2024-06-14 02:09:55 -04:00
|
|
|
|
* \param interval the timer delay, in nanoseconds, passed to `callback`.
|
2024-05-27 06:30:37 -07:00
|
|
|
|
* \param callback the SDL_TimerCallback function to call when the specified
|
2024-06-14 02:09:55 -04:00
|
|
|
|
* `interval` elapses.
|
|
|
|
|
|
* \param userdata a pointer that is passed to `callback`.
|
2024-07-18 00:30:33 -07:00
|
|
|
|
* \returns a timer ID or 0 on failure; call SDL_GetError() for more
|
2024-05-27 06:30:37 -07:00
|
|
|
|
* information.
|
|
|
|
|
|
*
|
|
|
|
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This function is available since SDL 3.2.0.
|
2024-05-27 06:30:37 -07:00
|
|
|
|
*
|
|
|
|
|
|
* \sa SDL_AddTimer
|
|
|
|
|
|
* \sa SDL_RemoveTimer
|
|
|
|
|
|
*/
|
|
|
|
|
|
extern SDL_DECLSPEC SDL_TimerID SDLCALL SDL_AddTimerNS(Uint64 interval, SDL_NSTimerCallback callback, void *userdata);
|
|
|
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
|
/**
|
2021-03-21 14:18:39 -04:00
|
|
|
|
* Remove a timer created with SDL_AddTimer().
|
2015-06-21 17:33:46 +02:00
|
|
|
|
*
|
2024-06-14 02:09:55 -04:00
|
|
|
|
* \param id the ID of the timer to remove.
|
2024-09-18 15:33:11 +00:00
|
|
|
|
* \returns true on success or false on failure; call SDL_GetError() for more
|
|
|
|
|
|
* information.
|
2015-06-21 17:33:46 +02:00
|
|
|
|
*
|
2024-10-22 13:47:28 -04:00
|
|
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
|
|
|
|
*
|
2025-01-21 13:12:25 -05:00
|
|
|
|
* \since This function is available since SDL 3.2.0.
|
2021-10-27 01:36:05 +00:00
|
|
|
|
*
|
2021-03-21 14:18:39 -04:00
|
|
|
|
* \sa SDL_AddTimer
|
2015-06-21 17:33:46 +02:00
|
|
|
|
*/
|
2024-09-18 07:52:28 -07:00
|
|
|
|
extern SDL_DECLSPEC bool SDLCALL SDL_RemoveTimer(SDL_TimerID id);
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Ends C function definitions when using C++ */
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif
|
2022-12-22 11:38:59 -05:00
|
|
|
|
#include <SDL3/SDL_close_code.h>
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
2016-11-20 21:34:54 -08:00
|
|
|
|
#endif /* SDL_timer_h_ */
|