2 Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
4 This software is provided 'as-is', without any express or implied
5 warranty. In no event will the authors be held liable for any damages
6 arising from the use of this software.
8 Permission is granted to anyone to use this software for any purpose,
9 including commercial applications, and to alter it and redistribute it
13 /* Test program to check the resolution of the SDL timer on the current
22 #define DEFAULT_RESOLUTION 1
27 ticktock(Uint32 interval, void *param)
34 callback(Uint32 interval, void *param)
36 SDL_Log("Timer %d : param = %d\n", interval, (int) (uintptr_t) param);
41 main(int argc, char *argv[])
44 SDL_TimerID t1, t2, t3;
45 Uint32 start32, now32;
48 /* Enable standard application logging */
49 SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
51 if (SDL_Init(SDL_INIT_TIMER) < 0) {
52 SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL: %s\n", SDL_GetError());
59 desired = atoi(argv[1]);
62 desired = DEFAULT_RESOLUTION;
64 t1 = SDL_AddTimer(desired, ticktock, NULL);
67 SDL_Log("Waiting 10 seconds\n");
73 /* Print the results */
75 SDL_Log("Timer resolution: desired = %d ms, actual = %f ms\n",
76 desired, (double) (10 * 1000) / ticks);
79 /* Test multiple timers */
80 SDL_Log("Testing multiple timers...\n");
81 t1 = SDL_AddTimer(100, callback, (void *) 1);
83 SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,"Could not create timer 1: %s\n", SDL_GetError());
84 t2 = SDL_AddTimer(50, callback, (void *) 2);
86 SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,"Could not create timer 2: %s\n", SDL_GetError());
87 t3 = SDL_AddTimer(233, callback, (void *) 3);
89 SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,"Could not create timer 3: %s\n", SDL_GetError());
92 SDL_Log("Waiting 10 seconds\n");
95 SDL_Log("Removing timer 1 and waiting 5 more seconds\n");
103 start = SDL_GetPerformanceCounter();
104 for (i = 0; i < 1000000; ++i) {
107 now = SDL_GetPerformanceCounter();
108 SDL_Log("1 million iterations of ticktock took %f ms\n", (double)((now - start)*1000) / SDL_GetPerformanceFrequency());
110 SDL_Log("Performance counter frequency: %llu\n", (unsigned long long) SDL_GetPerformanceFrequency());
111 start32 = SDL_GetTicks();
112 start = SDL_GetPerformanceCounter();
114 now = SDL_GetPerformanceCounter();
115 now32 = SDL_GetTicks();
116 SDL_Log("Delay 1 second = %d ms in ticks, %f ms according to performance counter\n", (now32-start32), (double)((now - start)*1000) / SDL_GetPerformanceFrequency());
122 /* vi: set ts=4 sw=4 expandtab: */