[Tizen] Support Autoconf 2.71
[platform/upstream/SDL.git] / test / testtimer.c
1 /*
2   Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
3
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.
7
8   Permission is granted to anyone to use this software for any purpose,
9   including commercial applications, and to alter it and redistribute it
10   freely.
11 */
12
13 /* Test program to check the resolution of the SDL timer on the current
14    platform
15 */
16
17 #include <stdlib.h>
18 #include <stdio.h>
19
20 #include "SDL.h"
21
22 #define DEFAULT_RESOLUTION  1
23
24 static int ticks = 0;
25
26 static Uint32 SDLCALL
27 ticktock(Uint32 interval, void *param)
28 {
29     ++ticks;
30     return (interval);
31 }
32
33 static Uint32 SDLCALL
34 callback(Uint32 interval, void *param)
35 {
36     SDL_Log("Timer %d : param = %d\n", interval, (int) (uintptr_t) param);
37     return interval;
38 }
39 int
40 main(int argc, char *argv[])
41 {
42     int i, desired;
43     SDL_TimerID t1, t2, t3;
44     Uint32 start32, now32;
45     Uint64 start, now;
46
47     /* Enable standard application logging */
48     SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
49
50     if (SDL_Init(SDL_INIT_TIMER) < 0) {
51         SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL: %s\n", SDL_GetError());
52         return (1);
53     }
54
55     /* Start the timer */
56     desired = 0;
57     if (argv[1]) {
58         desired = atoi(argv[1]);
59     }
60     if (desired == 0) {
61         desired = DEFAULT_RESOLUTION;
62     }
63     t1 = SDL_AddTimer(desired, ticktock, NULL);
64
65     /* Wait 10 seconds */
66     SDL_Log("Waiting 10 seconds\n");
67     SDL_Delay(10 * 1000);
68
69     /* Stop the timer */
70     SDL_RemoveTimer(t1);
71
72     /* Print the results */
73     if (ticks) {
74         SDL_Log("Timer resolution: desired = %d ms, actual = %f ms\n",
75                 desired, (double) (10 * 1000) / ticks);
76     }
77
78     /* Test multiple timers */
79     SDL_Log("Testing multiple timers...\n");
80     t1 = SDL_AddTimer(100, callback, (void *) 1);
81     if (!t1)
82         SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,"Could not create timer 1: %s\n", SDL_GetError());
83     t2 = SDL_AddTimer(50, callback, (void *) 2);
84     if (!t2)
85         SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,"Could not create timer 2: %s\n", SDL_GetError());
86     t3 = SDL_AddTimer(233, callback, (void *) 3);
87     if (!t3)
88         SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,"Could not create timer 3: %s\n", SDL_GetError());
89
90     /* Wait 10 seconds */
91     SDL_Log("Waiting 10 seconds\n");
92     SDL_Delay(10 * 1000);
93
94     SDL_Log("Removing timer 1 and waiting 5 more seconds\n");
95     SDL_RemoveTimer(t1);
96
97     SDL_Delay(5 * 1000);
98
99     SDL_RemoveTimer(t2);
100     SDL_RemoveTimer(t3);
101
102     start = SDL_GetPerformanceCounter();
103     for (i = 0; i < 1000000; ++i) {
104         ticktock(0, NULL);
105     }
106     now = SDL_GetPerformanceCounter();
107     SDL_Log("1 million iterations of ticktock took %f ms\n", (double)((now - start)*1000) / SDL_GetPerformanceFrequency());
108
109     SDL_Log("Performance counter frequency: %"SDL_PRIu64"\n", SDL_GetPerformanceFrequency());
110     start32 = SDL_GetTicks();
111     start = SDL_GetPerformanceCounter();
112     SDL_Delay(1000);
113     now = SDL_GetPerformanceCounter();
114     now32 = SDL_GetTicks();
115     SDL_Log("Delay 1 second = %d ms in ticks, %f ms according to performance counter\n", (now32-start32), (double)((now - start)*1000) / SDL_GetPerformanceFrequency());
116
117     SDL_Quit();
118     return (0);
119 }
120
121 /* vi: set ts=4 sw=4 expandtab: */