2
0

game.ts 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /// <reference path="level.ts" />
  2. /// <reference path="audio.ts" />
  3. /// <reference path="display.ts" />
  4. namespace game {
  5. enum GameState {
  6. LOADING,
  7. SELECT,
  8. PLAYING
  9. }
  10. export class GameController {
  11. container: HTMLElement;
  12. configUrl: string;
  13. config: level.Config | null;
  14. audioManager: audio.AudioManager;
  15. constructor(container: HTMLElement, configUrl: string) {
  16. this.container = container;
  17. this.configUrl = configUrl;
  18. this.audioManager = new audio.AudioManager();
  19. }
  20. stateLoading(): void {
  21. let configPromise;
  22. if (this.configUrl.endsWith('.json')) {
  23. configPromise = level.loadFromJson(this.configUrl);
  24. } else {
  25. configPromise = level.loadFromTM(this.configUrl);
  26. }
  27. configPromise.then(config => {
  28. this.onConfigLoad(config);
  29. })
  30. }
  31. onConfigLoad(config: level.Config): void {
  32. this.config = config;
  33. let background = config.background;
  34. if (background.indexOf('.') >= 0) {
  35. background = `url(${background}), black`;
  36. }
  37. this.container.style.background = background;
  38. this.container.style.setProperty('--base-color', config.baseColor);
  39. this.container.style.setProperty('--highlight-color', config.highlightColor);
  40. this.container.querySelector('#loading').style.opacity = 0;
  41. let controller = new display.LevelController(this.audioManager, this.config.levelSets[0].levels[0]);
  42. container.appendChild(controller.element);
  43. }
  44. }
  45. }