Преглед изворни кода

Properly handle no audio case for loading

Thomas Dy пре 7 година
родитељ
комит
f9e9b2be4e
1 измењених фајлова са 10 додато и 6 уклоњено
  1. 10 6
      src/game/typing.ts

+ 10 - 6
src/game/typing.ts

@@ -7,7 +7,7 @@ namespace game {
   import Level = level.Level;
 
   class TypingScreenContext {
-    track: audio.Track | null;
+    track: audio.Track | null = null;
 
     constructor(
       readonly context: GameContext,
@@ -76,9 +76,9 @@ namespace game {
     constructor(readonly context: TypingScreenContext) {}
 
     enter(): void {
+      this.readyElement = this.context.container.querySelector('#ready');
       if (this.context.level.audio != null) {
         let loader = this.context.container.querySelector('#loader');
-        this.readyElement = this.context.container.querySelector('#ready');
 
         if (loader.firstChild == null) {
           let progressBar = util.loadTemplate('progress-bar');
@@ -109,16 +109,20 @@ namespace game {
           this.context.track = track;
           this.barElement.style.width = '100%';
           this.textElement.textContent = 'music loaded';
-          this.readyElement.querySelector('.status').textContent = 'Ready';
-          this.readyElement.querySelector('.message').textContent = 'press space to start';
-          this.isReady = true;
+          this.setReady();
         });
 
       } else {
-        this.isReady = true;
+        this.setReady();
       }
     }
 
+    setReady(): void {
+      this.readyElement.querySelector('.status').textContent = 'Ready';
+      this.readyElement.querySelector('.message').textContent = 'press space to start';
+      this.isReady = true;
+    }
+
     handleInput(key: string): void {
       if (this.isReady && key === ' ') {
         this.context.switchScreen(new TypingPlayingScreen(this.context));