summaryrefslogtreecommitdiff
path: root/timers.ts
blob: f5f039f1cde40548b18a9a97a635f6022139e00e (plain)
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
import { main as pb } from "./msg.pb";
import * as dispatch from "./dispatch";

let nextTimerId = 1;

// tslint:disable-next-line:no-any
type TimerCallback = (...args: any[]) => void;

interface Timer {
  id: number;
  cb: TimerCallback;
  interval: boolean;
  duration: number; // milliseconds
}

const timers = new Map<number, Timer>();

export function initTimers() {
  dispatch.sub("timers", onMessage);
}

function onMessage(payload: Uint8Array) {
  const msg = pb.Msg.decode(payload);
  const { id, done } = msg.timerReady;
  const timer = timers.get(id);
  timer.cb();
  if (done) {
    timers.delete(id);
  }
}

export function setTimeout(cb: TimerCallback, duration: number): number {
  const timer = {
    id: nextTimerId++,
    interval: false,
    duration,
    cb
  };
  timers.set(timer.id, timer);
  dispatch.sendMsg("timers", {
    timerStart: {
      id: timer.id,
      interval: false,
      duration
    }
  });
  return timer.id;
}