Class: IleUI

Inherits:
CaseUI
  • Object
show all
Defined in:
lib/Hashiparmentier/UI/IleUI.rb

Overview

Auteur

Brabant Mano

Version

0.1

Date

09/04/2020

Cette classe permet d’afficher une ile de la grille

Instance Attribute Summary

Attributes inherited from CaseUI

#casee

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CaseUI

#clickOn, #estIle?, #estPont?

Constructor Details

#initialize(ile, taille) ⇒ IleUI

:nodoc:



30
31
32
# File 'lib/Hashiparmentier/UI/IleUI.rb', line 30

def initialize(ile, taille)
  super(ile, taille)
end

Class Method Details

.creer(ile, taille = 40) ⇒ Object

Ce constructeur permet de créer un nouveau afficheur d’ile

param
  • ile L’ile à afficher

  • taille La taille d’une case (40 par defaut)



25
26
27
# File 'lib/Hashiparmentier/UI/IleUI.rb', line 25

def IleUI.creer(ile, taille = 40)
  new(ile, taille)
end

Instance Method Details

#draw(window) ⇒ Object

Cette méthode permet de dessiner l’ile

param
  • window La fenetre sur laquelle l’ile va etre afficher



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/Hashiparmentier/UI/IleUI.rb', line 39

def draw(window)

  super(window)

  cr = window.create_cairo_context

  positionY = @taille * @casee.posY() + @taille/2
  positionX = @taille * @casee.posX() + @taille/2

  cr.set_source_rgb(255, 255, 255)
  cr.circle(positionY, positionX, @taille/2)
  cr.fill()

  choixCouleur(cr)

  cr.circle(positionY, positionX, @taille/2-1)

  if(@casee.getCapaciteResiduelle() <= 0)
    cr.fill()
    cr.set_source_rgb(255, 255, 255)
  else
    cr.stroke()
  end

  text = @casee.valeur.to_s()

  cr.select_font_face "Serif", Cairo::FONT_SLANT_NORMAL, Cairo::FONT_WEIGHT_NORMAL
  cr.set_font_size @taille/2

  width = cr.text_extents(text).width
  height = cr.text_extents(text).height #Centrer le texte

  cr.move_to(positionY - width/2, positionX + height/2)
  cr.show_text(text)

end