/// /// namespace game { export class LoadingScreen implements Screen { readonly name: string = 'loading'; constructor(private context: GameContext, private configUrl: string) {} enter(): void { console.log('Loading assets...'); let configPromise; if (this.configUrl.endsWith('.json')) { configPromise = level.loadFromJson(this.configUrl); } else { configPromise = level.loadFromTM(this.configUrl); } configPromise.then(config => { this.context.config = config; this.loadAssets(); }) } loadAssets(): void { let config = this.context.config; Promise.all([ this.loadImage(config.background), this.loadTrack(config.selectSound), this.loadTrack(config.decideSound) ]).then(v => { console.log('Loaded assets.'); let [background, selectSound, decideSound] = v; this.context.assets = { selectSound, decideSound } this.finishLoading(); }) } finishLoading(): void { this.context.bgManager.setBackground(this.context.config.background); let loadingElement = this.context.container.querySelector('#loading'); loadingElement.addEventListener('transitionend', (event) => this.switchToSelect()); loadingElement.classList.add('finished'); } loadTrack(url: string): Promise { if (url == null) { return Promise.resolve(null); } else { return this.context.audioManager.loadTrack(url); } } loadImage(url: string): Promise { if (url.includes('.')) { return new Promise((resolve, reject) => { let image = new Image(); image.onload = (event) => resolve(); image.src = url; }); } else { return Promise.resolve(); } } switchToSelect(): void { let selectScreen = new SelectScreen(this.context); this.context.switchScreen(selectScreen); } handleInput(key: string): void {} exit(): void { let config = this.context.config; let containerStyle = this.context.container.style; containerStyle.setProperty('--base-color', config.baseColor); containerStyle.setProperty('--highlight-color', config.highlightColor); } } }