Browse Source

random hero cards per faction

Jojo 5 years ago
parent
commit
389bdcd31a

+ 3 - 2
package.json

@@ -6,8 +6,9 @@
     "ecosystem:cordova"
   ],
   "scripts": {
-    "precordova-run": "babel webpack.config.dev.js -o webpack.config.dev.babel.js && cordova build -- --webpackConfig webpack.config.dev.babel.js",
-    "cordova-run": "cordova run -- -w webpack.config.dev.babel.js -l",
+    "precor-build": "cordova prepare",
+    "cor-build": "babel webpack.config.dev.js -o webpack.config.dev.babel.js && cordova build -- --webpackConfig webpack.config.dev.babel.js",
+    "cor-run": "cordova run -- -w webpack.config.dev.babel.js -l",
     "prestart": "babel-node buildScripts/startMessage.js",
     "start": "npm-run-all --parallel open:src lint:watch test:watch",
     "open:src": "babel-node buildScripts/srcServer.js",

+ 3 - 3
src/GameCreator.js

@@ -1,18 +1,18 @@
 'use strict';
 import HeroFactory from './heroes/HeroFactory';
 import PhaserGame from './view/PhaserGame';
+import { Faction } from './model/const/faction-enum';
 
 export default class GameCreator {
   constructor() {
     let heroFactory = new HeroFactory();
 
-    let heroesSet = heroFactory.getHeroesSet();
 
-    console.log('Heroes Set : ', heroesSet);
+    let heroesSet = heroFactory.getFactionRandom(Faction.MECA);
+    console.log('Faction Set : ', heroesSet);
 
     let phaser = new PhaserGame(heroesSet);
 
 
-
   }
 }

+ 19 - 8
src/heroes/HeroFactory.js

@@ -3,13 +3,8 @@ import allHeroesJson from "../assets/all-heroes.json";
 import Hero from './Hero';
 import HeroAbility from './HeroAbility';
 
-
 export default class HeroFactory {
   constructor() {
-
-  }
-
-  getHeroesSet() {
     let abilitiesMap = new Map();
     allHeroesJson.abilities.forEach(ability => {
       let abilityObj = new HeroAbility(ability.abilityName,
@@ -19,7 +14,7 @@ export default class HeroFactory {
       abilitiesMap.set(ability.abilityName, abilityObj);
     });
 
-    let heroesSet = new Set();
+    this.heroesSet = new Set();
     allHeroesJson.heroes.forEach(hero => {
       let i = 0;
       while (i < hero.nbInDeck) {
@@ -31,11 +26,27 @@ export default class HeroFactory {
           abilitiesMap.get(hero.ability),
           hero.draftMode
         );
-        heroesSet.add(heroObj);
+        this.heroesSet.add(heroObj);
         i++;
       }
     });
-    return heroesSet;
   }
 
+  getAllHeroesSet() {
+    return this.heroesSet;
+  }
+
+  getFactionRandom(faction) {
+    let factionHeroes = shuffleArray(Array.from(this.heroesSet).filter(hero => hero.faction === faction));
+    return factionHeroes;
+  }
+
+}
+
+function shuffleArray(a) {
+  for (let i = a.length - 1; i > 0; i--) {
+      const j = Math.floor(Math.random() * (i + 1));
+      [a[i], a[j]] = [a[j], a[i]];
+  }
+  return a;
 }

+ 4 - 0
src/index.html

@@ -44,5 +44,9 @@
             </div>
         </div>
         <!-- <script type="text/javascript" src="cordova.js"></script> -->
+
+<select class="form-control" id="optList" name="selectbasic">
+
+    </select>
     </body>
 </html>

+ 9 - 0
src/model/const/faction-enum.js

@@ -0,0 +1,9 @@
+'use strict';
+
+export const Faction = Object.freeze({
+    HUMANS : "Humans",
+    ORCS: "Orcs",
+    ELVES: "Elves",
+    MECA: "Meca",
+    None:"None"
+  });

+ 0 - 2
src/view/PhaserGame.js

@@ -19,9 +19,7 @@ export default class PhaserGameScene {
 
     // create the game, and pass it the configuration
     this.game = new Phaser.Game(config);
-    console.log('Scene : ' , this.game.scene);
     this.game.scene.start('World',{heroesSet:this.heroesSet});
-    console.log('after Scene');
   }
 
 }

+ 3 - 3
src/view/WorldGameView.js

@@ -9,7 +9,7 @@ function addCard(x, y, game, heroName, heroCost, heroPower, heroDesc) {
     boundsAlignV: "middle" // bounds center align vertically
   };
   let graphics = game.add.graphics(0, 0);
-  let color = 0xffff00;
+  let color = 0x654321;
   let thickness = 2;
   let alpha = 1;
 
@@ -46,7 +46,6 @@ export default class World extends Phaser.Scene {
       let x = 10 + (i * 80) + 5;
       let y = 10 + (j * 120) + 5;
       addCard(x, y, this, hero.name, hero.cost, hero.power, hero.ability.description);
-      console.log(x, ' ', y);
       if (x >= 1040) {
         i = 0;
         j++;
@@ -56,10 +55,11 @@ export default class World extends Phaser.Scene {
       }
 
     });
+//     this.fformUtil.scaleToGameW("optList", .8);
+// this.formUtil.placeElementAt(27, "optList");
   }
 
   update() {
-    console.log('update');
 
   }
 }