42 lines
758 B
C
42 lines
758 B
C
#include "timer.h"
|
|
#include <stdio.h>
|
|
#include "stb_ds.h"
|
|
|
|
timer **timers;
|
|
|
|
timer *timer_make(JSValue fn)
|
|
{
|
|
timer *t = calloc(sizeof(*t),1);
|
|
t->fn = JS_DupValue(js,fn);
|
|
arrput(timers, t);
|
|
return t;
|
|
}
|
|
|
|
void timer_free(timer *t)
|
|
{
|
|
for (int i = 0; i < arrlen(timers); i++) {
|
|
if (timers[i] == t) {
|
|
arrdelswap(timers,i);
|
|
break;
|
|
}
|
|
}
|
|
|
|
JS_FreeValue(js, t->fn);
|
|
|
|
free(t);
|
|
}
|
|
|
|
void timer_update(double dt)
|
|
{
|
|
for (int i = 0; i < arrlen(timers); i++) {
|
|
if (timers[i]->remain <= 0) continue;
|
|
timers[i]->remain -= dt;
|
|
if (timers[i]->remain <= 0) {
|
|
timers[i]->remain = 0;
|
|
JSValue fn = JS_DupValue(js, timers[i]->fn);
|
|
script_call_sym(timers[i]->fn, 0, NULL);
|
|
JS_FreeValue(js, fn);
|
|
}
|
|
}
|
|
}
|