Browse Source

Flesh out loading behavior more

Thomas Dy 7 years ago
parent
commit
69169fdfed
7 changed files with 104 additions and 39 deletions
  1. 2 0
      dist/index.html
  2. 16 5
      dist/style.css
  3. 0 12
      package-lock.json
  4. 2 3
      package.json
  5. 80 15
      src/game.ts
  6. 3 3
      src/index.ts
  7. 1 1
      tsconfig.json

+ 2 - 0
dist/index.html

@@ -6,6 +6,8 @@
   <body>
     <div id="container">
       <div id="loading">Loading...</div>
+      <div id="select"></div>
+      <div id="game"></div>
     </div>
     <script type="text/javascript" src="bundle.js"></script>
   </body>

+ 16 - 5
dist/style.css

@@ -3,18 +3,29 @@
   --highlight-color: red;
 
   position: relative;
-  display: grid;
   background-color: black;
   color: var(--base-color);
   height: 450px;
   width: 800px;
   margin: 0 auto;
+  overflow: hidden;
 }
 
-#container #loading {
-  display: inline-block;
-  align-self: center;
-  justify-self: center;
+#container > div {
+  display: grid;
+  position: absolute;
+  height: 100%;
+  width: 100%;
+}
+
+#loading {
+  align-items: center;
+  justify-items: center;
+  transition: opacity 0.5s;
+}
+
+#loading.finished {
+  opacity: 0;
 }
 
 .kana {

+ 0 - 12
package-lock.json

@@ -4,18 +4,6 @@
   "lockfileVersion": 1,
   "requires": true,
   "dependencies": {
-    "@types/es6-collections": {
-      "version": "0.5.31",
-      "resolved": "https://registry.npmjs.org/@types/es6-collections/-/es6-collections-0.5.31.tgz",
-      "integrity": "sha512-djEvbdTH5Uw7V0WqdMQLG4NK3+iu/FMZy/ylyhWEFnW5xOsXEWpivo/dhP+cR43Az+ipytza7dTSnpsWCxKYAw==",
-      "dev": true
-    },
-    "@types/es6-promise": {
-      "version": "0.0.33",
-      "resolved": "https://registry.npmjs.org/@types/es6-promise/-/es6-promise-0.0.33.tgz",
-      "integrity": "sha512-HKJFVLCGrWQ/1unEw8JdaTxu6n3EUxmwTxJ6D0O1x0gD8joCsgoTWxEgevb7fp2XIogNjof3KEd+3bJoGne/nw==",
-      "dev": true
-    },
     "typescript": {
       "version": "2.6.2",
       "resolved": "https://registry.npmjs.org/typescript/-/typescript-2.6.2.tgz",

+ 2 - 3
package.json

@@ -9,8 +9,7 @@
   "author": "Thomas Dy <thatsmydoing@gmail.com",
   "license": "ISC",
   "devDependencies": {
-    "@types/es6-collections": "^0.5.31",
-    "@types/es6-promise": "0.0.33",
     "typescript": "^2.6.2"
-  }
+  },
+  "dependencies": {}
 }

+ 80 - 15
src/game.ts

@@ -9,11 +9,84 @@ namespace game {
     PLAYING
   }
 
-  export class GameController {
+  interface GameSounds {
+    selectSound: audio.Track,
+    decideSound: audio.Track
+  }
+
+  class LoadingScreen {
+    controller: MainController;
+
+    constructor(controller: MainController) {
+      this.controller = controller;
+    }
+
+    load(): void {
+      console.log('Loading assets...');
+      let configUrl = this.controller.configUrl;
+      let configPromise;
+      if (configUrl.endsWith('.json')) {
+        configPromise = level.loadFromJson(configUrl);
+      } else {
+        configPromise = level.loadFromTM(configUrl);
+      }
+      configPromise.then(config => {
+        this.controller.config = config;
+        this.loadAssets();
+      })
+    }
+
+    loadAssets(): void {
+      let config = this.controller.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.controller.assets = {
+          selectSound,
+          decideSound
+        }
+        this.finishLoading();
+      })
+    }
+
+    finishLoading(): void {
+      let loadingElement = this.controller.container.querySelector('#loading');
+      loadingElement.addEventListener('transitionend', (event) => this.controller.onConfigLoad());
+      loadingElement.classList.add('finished');
+    }
+
+    loadTrack(url: string): Promise<audio.Track> {
+      if (url == null) {
+        return Promise.resolve(null);
+      } else {
+        return this.controller.audioManager.loadTrack(url);
+      }
+    }
+
+    loadImage(url: string): Promise<void> {
+      if (url.includes('.')) {
+        return new Promise((resolve, reject) => {
+          let image = new Image();
+          image.onload = (event) => resolve();
+          image.src = url;
+        });
+      } else {
+        return Promise.resolve();
+      }
+    }
+  }
+
+  export class MainController {
     container: HTMLElement;
     configUrl: string;
     config: level.Config | null;
     audioManager: audio.AudioManager;
+    assets: GameSounds | null;
 
     constructor(container: HTMLElement, configUrl: string) {
       this.container = container;
@@ -21,20 +94,13 @@ namespace game {
       this.audioManager = new audio.AudioManager();
     }
 
-    stateLoading(): void {
-      let configPromise;
-      if (this.configUrl.endsWith('.json')) {
-        configPromise = level.loadFromJson(this.configUrl);
-      } else {
-        configPromise = level.loadFromTM(this.configUrl);
-      }
-      configPromise.then(config => {
-        this.onConfigLoad(config);
-      })
+    start(): void {
+      let loadingScreen = new LoadingScreen(this);
+      loadingScreen.load();
     }
 
-    onConfigLoad(config: level.Config): void {
-      this.config = config;
+    onConfigLoad(): void {
+      let config = this.config;
       let background = config.background;
       if (background.indexOf('.') >= 0) {
         background = `url(${background}), black`;
@@ -42,10 +108,9 @@ namespace game {
       this.container.style.background = background;
       this.container.style.setProperty('--base-color', config.baseColor);
       this.container.style.setProperty('--highlight-color', config.highlightColor);
-      this.container.querySelector('#loading').style.opacity = 0;
 
       let controller = new display.LevelController(this.audioManager, this.config.levelSets[0].levels[0]);
-      container.appendChild(controller.element);
+      this.container.querySelector('#game').appendChild(controller.element);
     }
   }
 }

+ 3 - 3
src/index.ts

@@ -1,5 +1,5 @@
 /// <reference path="game.ts" />
 
-let container = document.querySelector('#container');
-let controller = new game.GameController(container, 'levels.json');
-controller.stateLoading();
+let container: HTMLElement = document.querySelector('#container');
+let controller = new game.MainController(container, 'levels.json');
+controller.start();

+ 1 - 1
tsconfig.json

@@ -4,7 +4,7 @@
     "removeComments": true,
     "sourceMap": true,
     "outFile": "dist/bundle.js",
-    "target": "es5"
+    "target": "es6"
   },
   "include": [
     "src/**/*"