24 lines
860 B
Python
24 lines
860 B
Python
from ctypes import CFUNCTYPE, c_void_p, c_int
|
|
from .dll import _bind
|
|
from .stdinc import Uint32, Uint64, SDL_bool
|
|
|
|
__all__ = ["SDL_GetTicks", "SDL_GetPerformanceCounter",
|
|
"SDL_GetPerformanceFrequency", "SDL_Delay", "SDL_TimerCallback",
|
|
"SDL_TimerID", "SDL_AddTimer", "SDL_RemoveTimer"
|
|
]
|
|
|
|
SDL_GetTicks = _bind("SDL_GetTicks", None, Uint32)
|
|
SDL_GetPerformanceCounter = _bind("SDL_GetPerformanceCounter", None, Uint64)
|
|
SDL_GetPerformanceFrequency = _bind("SDL_GetPerformanceFrequency", None, Uint64)
|
|
SDL_Delay = _bind("SDL_Delay", [Uint32])
|
|
|
|
SDL_TimerCallback = CFUNCTYPE(Uint32, Uint32, c_void_p)
|
|
SDL_TimerID = c_int
|
|
|
|
SDL_AddTimer = _bind("SDL_AddTimer", [Uint32, SDL_TimerCallback, c_void_p], SDL_TimerID)
|
|
SDL_RemoveTimer = _bind("SDL_RemoveTimer", [SDL_TimerID], SDL_bool)
|
|
|
|
def SDL_TICKS_PASSED(A, B):
|
|
return (B - A) <= 0
|
|
|