summaryrefslogtreecommitdiff
path: root/client/lib/JumpStorm.ts
blob: c76d9bcb8a08d226304f1f99f17a734a699e9ae8 (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
49
50
51
52
53
54
import { Floor, Player } from "./entities";
import { Game } from "./Game";
import {
  WallBounds,
  FacingDirection,
  Render,
  Physics,
  Input,
  Collision,
} from "./systems";

export class JumpStorm {
  private game: Game;

  constructor(ctx: CanvasRenderingContext2D) {
    this.game = new Game();

    [
      this.createInputSystem(),
      new FacingDirection(),
      new Physics(),
      new Collision(),
      new WallBounds(ctx.canvas.width),
      new Render(ctx),
    ].forEach((system) => this.game.addSystem(system));

    [new Floor(160), new Player()].forEach((entity) =>
      this.game.addEntity(entity)
    );
  }

  public play() {
    this.game.start();

    const loop = (timestamp: number) => {
      this.game.doGameLoop(timestamp);
      requestAnimationFrame(loop); // tail call recursion! /s
    };
    requestAnimationFrame(loop);
  }

  private createInputSystem(): Input {
    const inputSystem = new Input();

    window.addEventListener("keydown", (e) => {
      if (!e.repeat) {
        inputSystem.keyPressed(e.key);
      }
    });
    window.addEventListener("keyup", (e) => inputSystem.keyReleased(e.key));

    return inputSystem;
  }
}