heroesHelper.js 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.getDraftSets = exports.getRandomHeroesByFaction = exports.initHeroesFromJson = void 0;
  6. function shuffle(a) {
  7. for (var i = a.length - 1; i > 0; i--) {
  8. var j = Math.floor(Math.random() * (i + 1));
  9. var _ref = [a[j], a[i]];
  10. a[i] = _ref[0];
  11. a[j] = _ref[1];
  12. }
  13. return a;
  14. }
  15. var initHeroesFromJson = function initHeroesFromJson(allHeroesJson) {
  16. var abilitiesMap = new Map();
  17. allHeroesJson.abilities.forEach(function (ability) {
  18. abilitiesMap.set(ability.abilityName, {
  19. name: ability.abilityName,
  20. hook: ability.abilityHook,
  21. isOptionnal: ability.optionnal,
  22. desc: ability['abilityDesc-FR']
  23. });
  24. });
  25. var heroesSet = new Set();
  26. allHeroesJson.heroes.forEach(function (hero) {
  27. var i = 0;
  28. while (i < hero.nbInDeck) {
  29. heroesSet.add({
  30. name: hero.name,
  31. cost: hero.cost,
  32. power: hero.power,
  33. faction: hero.faction,
  34. ability: abilitiesMap.get(hero.ability),
  35. isDraftable: hero.draftMode,
  36. popularity: hero.popularity
  37. });
  38. i++;
  39. }
  40. });
  41. return heroesSet;
  42. };
  43. exports.initHeroesFromJson = initHeroesFromJson;
  44. var getRandomHeroesByFaction = function getRandomHeroesByFaction(allHeroes, faction) {
  45. var factionArray = allHeroes.filter(function (hero) {
  46. return hero.faction === faction;
  47. });
  48. return shuffle(factionArray);
  49. };
  50. exports.getRandomHeroesByFaction = getRandomHeroesByFaction;
  51. var getDraftSets = function getDraftSets(allHeroes) {
  52. var heroesDraftable = allHeroes.filter(function (hero) {
  53. return hero.isDraftable === true;
  54. });
  55. var shuffledHeroes = shuffle(heroesDraftable); // Return two sets of 12 heroes for draft mode
  56. var draftSets = [shuffledHeroes.slice(0, 11), shuffledHeroes.slice(12, 23)];
  57. return draftSets;
  58. };
  59. exports.getDraftSets = getDraftSets;
  60. //# sourceMappingURL=heroesHelper.js.map