import { SpriteSlicer } from "./lib/spriteSlicer"; import { loadImage } from "./lib/util"; export type Image = HTMLImageElement; export class TextureStore { readonly tile: Array; readonly numbers: Array; readonly playfieldBg: Image; readonly scoreboardBg: Image; // Private constructor which is only called by the `new()` method because constructors can not be async. // Using `await TextureStore.new()` is a somewhat clean workaround. private constructor( img: Array, numbers: Array, tile: Array ) { [this.playfieldBg, this.scoreboardBg] = img; this.tile = tile; this.numbers = numbers; } static async new(): Promise { const playfield = await loadImage("./playfield.png"); const colors = SpriteSlicer.slice(await loadImage("./tiles.png"), [16, 16]); const numbers = SpriteSlicer.slice( await loadImage("./numbers.png"), [6, 8] ); const score = await loadImage("./side.png"); return new TextureStore([playfield, score], numbers, colors); } }