|
@@ -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;
|
|
|
}
|