Hash :
1cff4972
Author :
Thomas de Grivel
Date :
2023-12-13T02:21:42
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
/* c3
* Copyright 2022,2023 kmx.io <contact@kmx.io>
*
* Permission is hereby granted to use this software granted the above
* copyright notice and this permission paragraph are included in all
* copies and substantial portions of this software.
*
* THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
* PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
* AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
* THIS SOFTWARE.
*/
#include <libc3/c3.h>
#include "window.h"
bool window_animate (s_window *window)
{
s_time clock_monotonic;
s_time delta;
s_sequence *seq;
f64 t;
if (clock_gettime(CLOCK_MONOTONIC, &clock_monotonic)) {
err_puts("window_animate: clock_gettime");
return false;
}
if (window->sequence_pos >= window->sequence_count) {
err_puts("window_animate: window->sequence_pos >="
" window->sequence_count");
return false;
}
seq = window->sequence + window->sequence_pos;
time_sub(&clock_monotonic, &seq->t0, &delta);
time_to_f64(&delta, &t);
seq->dt = t - seq->t;
seq->frame++;
seq->t = t;
/* printf("window_animate: %f\n", t); */
if (t > seq->duration &&
! window_set_sequence_pos(window, (window->sequence_pos + 1) %
window->sequence_count))
return false;
return true;
}
void window_clean (s_window *window)
{
uw i;
assert(window);
i = 0;
while (i < window->sequence_count) {
sequence_clean(window->sequence + i);
i++;
}
free(window->sequence);
tag_clean(&window->tag);
window->unload(window);
}
s_window * window_init (s_window *window,
sw x, sw y, uw w, uw h,
const s8 *title,
uw sequence_count)
{
s_window tmp = {0};
assert(window);
tmp.x = x;
tmp.y = y;
tmp.w = w;
tmp.h = h;
tmp.sequence = calloc(sequence_count, sizeof(s_sequence));
tmp.sequence_count = sequence_count;
tmp.sequence_pos = 0;
tag_init_void(&tmp.tag);
tmp.title = title ? title : "C3.Window";
*window = tmp;
return window;
}
bool window_set_sequence_pos (s_window *window, uw sequence_pos)
{
s_sequence *seq;
assert(window);
printf("window_set_sequence_pos %lu\n", sequence_pos);
if (sequence_pos >= window->sequence_count)
return false;
seq = window->sequence + sequence_pos;
seq->dt = 0.0;
seq->frame = 0;
seq->t = 0.0;
if (clock_gettime(CLOCK_MONOTONIC, &seq->t0)) {
err_puts("window_set_sequence_pos: clock_gettime");
return false;
}
window->sequence_pos = sequence_pos;
io_puts(seq->title);
if (! seq->load(seq, window))
return false;
return true;
}