X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/9d4a748a0863cd7f9dd919362fb2c989e41f5f06..8e4a9825b3464ea2600eb193151b03f903aed5f4:/src/app/widgets/playingscreen.py diff --git a/src/app/widgets/playingscreen.py b/src/app/widgets/playingscreen.py index f881433..b4d5cb4 100755 --- a/src/app/widgets/playingscreen.py +++ b/src/app/widgets/playingscreen.py @@ -13,6 +13,7 @@ from cursors import WarpingCursor from eventutils import event_handler, EventDispatcher, EventHandlerMixin from math import floor import types +from musicxml import Tone from config import BORDER from config import FIRST_HUE @@ -22,7 +23,9 @@ from config import ON_TOP_LUMINANCE 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 FONT_COLOR class _PlayingScreenBase(pygame.sprite.LayeredUpdates, EventHandlerMixin) : @@ -75,19 +78,14 @@ class _PlayingScreenBase(pygame.sprite.LayeredUpdates, EventHandlerMixin) : hueStep = FIRST_HUE / (self.keyboardLength - 1) for i, rect in enumerate(self.keyboardRects) : hue = FIRST_HUE - hueStep * i - c = Column(hue, rect) + tone = self.distinctNotes[i] + c = Column(self, hue, rect, tone) self.add(c, layer=0) def _initCursor(self) : self.cursor = WarpingCursor(blinkMode=True) self.add(self.cursor, layer=2) - - def highlightColumn(self, index) : - for i, sprite in enumerate(self.sprites()) : - sprite.update(i==index) - self.draw(pygame.display.get_surface()) - def run(self): self._running = True clock = pygame.time.Clock() @@ -97,22 +95,30 @@ class _PlayingScreenBase(pygame.sprite.LayeredUpdates, EventHandlerMixin) : dirty = self.draw(pygame.display.get_surface()) pygame.display.update(dirty) clock.tick(50) - + @event_handler(pygame.KEYDOWN) def handleKeyDown(self, event) : if event.key == pygame.K_q: self._running = False - uni = event.unicode + - if uni.isdigit() and int(uni) <=8 : - self.highlightColumn(int(uni)) - @event_handler(pygame.MOUSEMOTION) def handleMouseMotion(self, event) : pass - +class PlayingScreen(_PlayingScreenBase) : + "fenêtre de jeu pour improvisation" + scale = [55, 57, 59, 60, 62, 64, 65, 67, 69, 71, 72] + + def __init__(self) : + distinctNotes = [] + for midi in self.scale : + tone = Tone(midi) + distinctNotes.append(tone) + + super(PlayingScreen, self).__init__(distinctNotes) + class SongPlayingScreen(_PlayingScreenBase) : @@ -130,16 +136,16 @@ class SongPlayingScreenTest(_PlayingScreenBase) : class Column(pygame.sprite.Sprite, EventHandlerMixin) : - def __init__(self, hue, rect) : - pygame.sprite.Sprite.__init__(self) + def __init__(self, group, hue, rect, tone) : + pygame.sprite.Sprite.__init__(self, group) sur = pygame.surface.Surface(rect.size) rgba = hls_to_rgba_8bits(hue, OFF_LUMINANCE, OFF_SATURATION) sur.fill(rgba) self.stateOff = sur self.rectOff = rect - topRgba = hls_to_rgba_8bits(hue, ON_TOP_LUMINANCE, ON_SATURATION) - bottomRgba = hls_to_rgba_8bits(hue, ON_BOTTOM_LUMINANCE, ON_SATURATION) + topRgba = hls_to_rgba_8bits(hue, ON_TOP_LUMINANCE, ON_SATURATION, ON_COLUMN_ALPHA) + bottomRgba = hls_to_rgba_8bits(hue, ON_BOTTOM_LUMINANCE, ON_SATURATION, ON_COLUMN_ALPHA) onWidth = rect.width * ON_COLUMN_OVERSIZING onLeft = rect.centerx - onWidth / 2 rectOn = pygame.Rect((onLeft, 0), @@ -149,6 +155,7 @@ class Column(pygame.sprite.Sprite, EventHandlerMixin) : self.image = self.stateOff self.rect = rect + self.toneName = FONT.render(tone.nom, True, (0,0,0)) def update(self, state) : group = self.groups()[0] @@ -169,8 +176,16 @@ class Column(pygame.sprite.Sprite, EventHandlerMixin) : @event_handler(pygame.MOUSEBUTTONUP) def onMouseUp(self, event) : self.update(False) + + def raiseNoteOn(self) : + pass + + def raiseNoteOff(self) : + pass + + -def hls_to_rgba_8bits(h, l, s) : +def hls_to_rgba_8bits(h, l, s, a=1) : #convert to rgb ranging from 0 to 255 - rgba = [floor(255 * i) for i in hls_to_rgb(h, l, s) + (1,)] + rgba = [floor(255 * i) for i in hls_to_rgb(h, l, s) + (a,)] return tuple(rgba)