import pipe from "callbag-pipe"; import subscribe from "callbag-subscribe"; import { KeyControl, KeyName } from "../applet/Keyboard"; import { DrawSet } from "../applet/Render"; import { Location, PolygonComponent, RenderBounds } from "../ecs/Components"; import { Create } from "../ecs/Data"; import { RunRenderBounds } from "../ecs/Renderers"; import { LockstepClient, Server } from "../net/LockstepClient"; import { Data, Engine, PlayerControl } from "./GameComponents"; import { Buttons } from "./Input"; export class Main extends LockstepClient { buttons = new Buttons(); constructor(canvas: HTMLCanvasElement, cx: CanvasRenderingContext2D, keys: KeyControl, server: Server) { super(new Engine()); keys.setHandler(this.buttons); this.connect(server); pipe( this.renderFrames, subscribe((frame: Data) => { const drawSet = new DrawSet(); cx.fillStyle = "#000"; cx.fillRect(0, 0, canvas.width, canvas.height); RunRenderBounds(frame, drawSet); drawSet.draw(cx, 0); }) ); } gatherInput() { return this.buttons.getPressed(); } initState(patch: Partial) { const newState = new Data(patch); Create(newState, { playerControl: new PlayerControl({ playerNumber: 0 }), location: new Location({ X: 100, Y: 200, }), bounds: new PolygonComponent({points: [-30, 0, 30, 0, 0, 40]}), renderBounds: new RenderBounds({ color: "#a0f", layer: 0 }), }); Create(newState, { playerControl: new PlayerControl({ playerNumber: 1 }), location: new Location({ X: 400, Y: 200, }), bounds: new PolygonComponent({points: [-30, 0, 30, 0, 0, 40]}), renderBounds: new RenderBounds({ color: "#f0a", layer: 0 }), }); return newState; } }