WorldGameView.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. 'use strict';
  2. function addCard(x, y, game, heroName, heroCost, heroPower, heroDesc) {
  3. let textStyle = {
  4. font: "normal 12px Arial",
  5. fill: '#000000',
  6. align: 'center',
  7. boundsAlignH: "center", // bounds center align horizontally
  8. boundsAlignV: "middle" // bounds center align vertically
  9. };
  10. let graphics = game.add.graphics(0, 0);
  11. let color = 0xffff00;
  12. let thickness = 2;
  13. let alpha = 1;
  14. graphics.lineStyle(thickness, color, alpha);
  15. graphics.strokeRect(0, 0, 80, 120);
  16. let text = `${heroName}\ncost : ${heroCost}\npower : ${heroPower}`;
  17. let label = game.add.text(3, 3, text, textStyle);
  18. label.setOrigin(0, 0);
  19. let container = game.add.container(x, y, [graphics, label]).setSize(5, 5);
  20. // container.setOrigin(0, 0);
  21. }
  22. export default class World extends Phaser.Scene {
  23. constructor() {
  24. super({ key: 'World', active: false });
  25. console.log('constructor');
  26. }
  27. init(data){
  28. console.log('Init');
  29. this.heroesSet = data.heroesSet;
  30. }
  31. preload() {
  32. console.log('Preload');
  33. }
  34. create() {
  35. console.log('create');
  36. let i = 0;
  37. let j = 0;
  38. this.heroesSet.forEach(hero => {
  39. let x = 10 + (i * 80) + 5;
  40. let y = 10 + (j * 120) + 5;
  41. addCard(x, y, this, hero.name, hero.cost, hero.power, hero.ability.description);
  42. console.log(x, ' ', y);
  43. if (x >= 1040) {
  44. i = 0;
  45. j++;
  46. } else {
  47. i++;
  48. }
  49. });
  50. }
  51. update() {
  52. console.log('update');
  53. }
  54. }