loading.ts 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /// <reference path="select.ts" />
  2. /// <reference path="common.ts" />
  3. namespace game {
  4. export class LoadingScreen implements Screen {
  5. readonly name: string = 'loading';
  6. constructor(private context: GameContext, private configUrl: string) {}
  7. enter(): void {
  8. console.log('Loading assets...');
  9. let configPromise;
  10. if (this.configUrl.endsWith('.json')) {
  11. configPromise = level.loadFromJson(this.configUrl);
  12. } else {
  13. configPromise = level.loadFromTM(this.configUrl);
  14. }
  15. configPromise.then(config => {
  16. this.context.config = config;
  17. this.loadAssets();
  18. })
  19. }
  20. loadAssets(): void {
  21. let config = this.context.config;
  22. Promise.all([
  23. this.loadImage(config.background),
  24. this.loadTrack(config.selectSound),
  25. this.loadTrack(config.decideSound)
  26. ]).then(v => {
  27. console.log('Loaded assets.');
  28. let [background, selectSound, decideSound] = v;
  29. this.context.assets = {
  30. selectSound,
  31. decideSound
  32. }
  33. this.finishLoading();
  34. })
  35. }
  36. finishLoading(): void {
  37. this.context.bgManager.setBackground(this.context.config.background);
  38. let loadingElement = this.context.container.querySelector('#loading');
  39. loadingElement.addEventListener('transitionend', (event) => this.switchToSelect());
  40. loadingElement.classList.add('finished');
  41. }
  42. loadTrack(url: string): Promise<audio.Track> {
  43. if (url == null) {
  44. return Promise.resolve(null);
  45. } else {
  46. return this.context.audioManager.loadTrack(url);
  47. }
  48. }
  49. loadImage(url: string): Promise<void> {
  50. if (url.includes('.')) {
  51. return new Promise((resolve, reject) => {
  52. let image = new Image();
  53. image.onload = (event) => resolve();
  54. image.src = url;
  55. });
  56. } else {
  57. return Promise.resolve();
  58. }
  59. }
  60. switchToSelect(): void {
  61. let selectScreen = new SelectScreen(this.context);
  62. this.context.switchScreen(selectScreen);
  63. }
  64. handleInput(key: string): void {}
  65. exit(): void {
  66. let config = this.context.config;
  67. let containerStyle = this.context.container.style;
  68. containerStyle.setProperty('--base-color', config.baseColor);
  69. containerStyle.setProperty('--highlight-color', config.highlightColor);
  70. }
  71. }
  72. }