X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/5f3d5fdc66dc67db40c5021a44380283bf97c9f7..b0a3123973062597484f6bc64ad0900eddc21ba7:/src/app/widgets/column.py diff --git a/src/app/widgets/column.py b/src/app/widgets/column.py index 4e8678b..bf1fb90 100755 --- a/src/app/widgets/column.py +++ b/src/app/widgets/column.py @@ -18,19 +18,23 @@ from config import ON_BOTTOM_LUMINANCE from config import ON_SATURATION from config import ON_COLUMN_OVERSIZING from config import ON_COLUMN_ALPHA -from config import FONT +from config import LYRICS_FONT, NOTES_FONT from config import FONT_COLOR +import events class Column(pygame.sprite.DirtySprite) : + ''' colonne utilisée pour l'affichage d'une touche du clavier de jeu. + ''' - def __init__(self, group, hue, rect, tone) : + def __init__(self, group, index, hue, rect, tone) : pygame.sprite.DirtySprite.__init__(self, group) + self.index = index self.state = False # nom de l'intonation self.tone = tone - toneName = FONT.render(tone.nom, True, FONT_COLOR) + toneName = NOTES_FONT.render(tone.nom, True, FONT_COLOR) # état off : surface unie et nom de l'intonation sur = pygame.surface.Surface(rect.size) @@ -71,7 +75,7 @@ class Column(pygame.sprite.DirtySprite) : if syllabus : sur = sur.copy() rect = self.rectOn - renderedSyl = FONT.render(syllabus, True, FONT_COLOR) + renderedSyl = LYRICS_FONT.render(syllabus, True, FONT_COLOR) sw, sh, = renderedSyl.get_size() w, h = self.rectOn.w, self.rectOn.h @@ -95,6 +99,9 @@ class Column(pygame.sprite.DirtySprite) : group.change_layer(self, BACKGROUND_LAYER) self.image = self.surOff self.rect = self.rectOff + self.state = state - self.dirty = 1 + self.dirty = 1 + evt = pygame.event.Event(events.COLSTATECHANGE, column=self, state=state, syllabus=syllabus) + pygame.event.post(evt)