1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
|
/* A test of timer events. Since both al_get_time() as well as the timer
* events may be the source of inaccuracy, it doesn't tell a lot.
*/
#include <allegro5/allegro.h>
#include <allegro5/allegro_font.h>
#include <allegro5/allegro_primitives.h>
#include <stdio.h>
#include <stdarg.h>
#include <math.h>
#include "common.c"
/* A structure holding all variables of our example program. */
struct Example
{
ALLEGRO_FONT *myfont; /* Our font. */
ALLEGRO_EVENT_QUEUE *queue; /* Our events queue. */
double FPS; /* How often to update per second. */
int x[4];
bool first_tick;
double this_time, prev_time, accum_time;
double min_diff, max_diff, second_spread;
double second;
double timer_events;
double timer_error;
double timestamp;
} ex;
/* Initialize the example. */
static void init(void)
{
ex.FPS = 50;
ex.first_tick = true;
ex.myfont = al_create_builtin_font();
if (!ex.myfont) {
abort_example("Error creating builtin font\n");
}
}
/* Cleanup. Always a good idea. */
static void cleanup(void)
{
al_destroy_font(ex.myfont);
ex.myfont = NULL;
}
/* Print some text. */
static void print(int x, int y, char const *format, ...)
{
va_list list;
char message[1024];
va_start(list, format);
vsnprintf(message, sizeof message, format, list);
va_end(list);
/* Actual text. */
al_draw_text(ex.myfont, al_map_rgb_f(0, 0, 0), x, y, 0, message);
}
/* Draw our example scene. */
static void draw(void)
{
int h, y, i;
double cur_time, event_overhead, total_error;
cur_time = al_get_time();
event_overhead = cur_time - ex.timestamp;
total_error = event_overhead + ex.timer_error;
h = al_get_font_line_height(ex.myfont);
al_clear_to_color(al_map_rgb_f(1, 1, 1));
print(0, 0, "%.9f target for %.0f Hz Timer", 1.0 / ex.FPS, ex.FPS);
print(0, h, "%.9f now", ex.this_time - ex.prev_time);
print(0, 2 * h, "%.9f accum over one second",
ex.accum_time / ex.timer_events);
print(0, 3 * h, "%.9f min", ex.min_diff);
print(0, 4 * h, "%.9f max", ex.max_diff);
print(300, 3.5 * h, "%.9f (max - min)", ex.second_spread);
print(300, 4.5 * h, "%.9f (timer error)", ex.timer_error);
print(300, 5.5 * h ,"%.9f (event overhead)", event_overhead);
print(300, 6.5 * h, "%.9f (total error)" , total_error);
y = 240;
for (i = 0; i < 4; i++) {
al_draw_filled_rectangle(ex.x[i], y + i * 60, ex.x[i] + (1 << i),
y + i * 60 + 60, al_map_rgb(1, 0, 0));
}
}
/* Called a fixed amount of times per second. */
static void tick(ALLEGRO_TIMER_EVENT* timer_event)
{
int i;
ex.this_time = al_get_time();
if (ex.first_tick) {
ex.first_tick = false;
}
else {
double duration;
if (ex.this_time - ex.second >= 1) {
ex.second = ex.this_time;
ex.accum_time = 0;
ex.timer_events = 0;
ex.second_spread = ex.max_diff - ex.min_diff;
ex.max_diff = 0;
ex.min_diff = 1;
}
duration = ex.this_time - ex.prev_time;
if (duration < ex.min_diff)
ex.min_diff = duration;
if (duration > ex.max_diff)
ex.max_diff = duration;
ex.accum_time += duration;
ex.timer_events++;
ex.timer_error = timer_event->error;
ex.timestamp = timer_event->timestamp;
}
draw();
al_flip_display();
for (i = 0; i < 4; i++) {
ex.x[i] += 1 << i;
ex.x[i] %= 640;
}
ex.prev_time = ex.this_time;
}
/* Run our test. */
static void run(void)
{
ALLEGRO_EVENT event;
while (1) {
al_wait_for_event(ex.queue, &event);
switch (event.type) {
/* Was the X button on the window pressed? */
case ALLEGRO_EVENT_DISPLAY_CLOSE:
return;
/* Was a key pressed? */
case ALLEGRO_EVENT_KEY_DOWN:
if (event.keyboard.keycode == ALLEGRO_KEY_ESCAPE)
return;
break;
/* Is it time for the next timer tick? */
case ALLEGRO_EVENT_TIMER:
tick(&event.timer);
break;
}
}
}
int main(int argc, char **argv)
{
ALLEGRO_DISPLAY *display;
ALLEGRO_TIMER *timer;
(void)argc;
(void)argv;
if (!al_init()) {
abort_example("Could not init Allegro.\n");
}
al_init_primitives_addon();
al_install_keyboard();
al_install_mouse();
al_init_font_addon();
display = al_create_display(640, 480);
if (!display) {
abort_example("Could not create display.\n");
}
init();
timer = al_create_timer(1.000 / ex.FPS);
ex.queue = al_create_event_queue();
al_register_event_source(ex.queue, al_get_keyboard_event_source());
al_register_event_source(ex.queue, al_get_mouse_event_source());
al_register_event_source(ex.queue, al_get_display_event_source(display));
al_register_event_source(ex.queue, al_get_timer_event_source(timer));
al_start_timer(timer);
run();
al_destroy_event_queue(ex.queue);
cleanup();
return 0;
}
|