Card/CardCursor.js

  1. /**
  2. * Находится ли указатель над картой.
  3. * @return {boolean}
  4. */
  5. Card.prototype.cursorIsOver = function(){
  6. return Phaser.Rectangle.containsRaw(
  7. this.x + this.sprite.x - this.sprite.width/2,
  8. this.y + this.sprite.y - this.sprite.height/2,
  9. this.sprite.width,
  10. this.sprite.height,
  11. this.game.input.x,
  12. this.game.input.y
  13. ) && this.draggable;
  14. };
  15. /**
  16. * Вызывается при нажатии на карту.
  17. * @param {Phaser.Sprite} sprite {@link Card#sprite}
  18. * @param {Phaser.Pointer} pointer вызвавший ивент указатель
  19. */
  20. Card.prototype._cursorDown = function(sprite, pointer){
  21. cardControl.cardClick(this, pointer);
  22. };
  23. /**
  24. * Вызывается при окончании нажатия на карту.
  25. * @param {Phaser.Sprite} sprite {@link Card#sprite}
  26. * @param {Phaser.Pointer} pointer вызвавший ивент указатель
  27. */
  28. Card.prototype._cursorUp = function(sprite, pointer){
  29. cardControl.cardUnclick(this, pointer);
  30. };
  31. /**
  32. * Вызывается при наведении на карту.
  33. * @param {Phaser.Sprite} sprite {@link Card#sprite}
  34. * @param {Phaser.Pointer} pointer вызвавший ивент указатель
  35. */
  36. Card.prototype._cursorOver = function(sprite, pointer){
  37. if(this.field){
  38. this.field.focusOnCard(this, pointer);
  39. }
  40. cardControl.pickNotifier.consider(this);
  41. };
  42. /**
  43. * Вызывается когда указатель покидает спрайт карты.
  44. * @param {Phaser.Sprite} sprite {@link Card#sprite}
  45. */
  46. Card.prototype._cursorOut = function(sprite){
  47. if(this.field){
  48. this.field.focusOffCard(this);
  49. }
  50. cardControl.pickNotifier.reject(this);
  51. };