X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/d8d786898468fe6b6065a626070593cc162f5171..7d014e3dc9f077f1b0402aed8f957146bf317ea7:/src/app/widgets/playingscreen.py diff --git a/src/app/widgets/playingscreen.py b/src/app/widgets/playingscreen.py index 055ed71..248f0bb 100755 --- a/src/app/widgets/playingscreen.py +++ b/src/app/widgets/playingscreen.py @@ -9,6 +9,8 @@ $URL$ import pygame from colorsys import hls_to_rgb from gradients import gradients +from cursors import WarpingCursor +from eventutils import event_handler, EventDispatcher, EventHandlerMixin from math import floor import types # TODO : positionner cette constance en fonction de la résolution d'affichage @@ -23,40 +25,24 @@ ON_SATURATION = 1 ON_COLUMN_OVERSIZING = 1.5 -def event_handler(eventType) : - def doRename(m) : - m.__name__ = 'eventHandler%s' % eventType - return m - return doRename - - -class MetaRenamer(type): - def __new__(mcs, name, bases, dict) : - for k, v in dict.items() : - if isinstance(v, types.FunctionType) : - if k != v.__name__ : - print 'renommage de %s en %s' % (k, v.__name__) - dict[v.__name__] = v - del dict[k] - return type.__new__(mcs, name, bases, dict) - - -class _PlayingScreenBase(pygame.sprite.OrderedUpdates) : - - __metaclass__ = MetaRenamer +class _PlayingScreenBase(pygame.sprite.OrderedUpdates, EventHandlerMixin) : def __init__(self, distinctNotes=[]) : """ distinctNotes : notes disctinctes présentes dans la chanson triées du plus grave au plus aigu. """ + print '__init__ _PlayingScreenBase' super(_PlayingScreenBase, self).__init__() self.distinctNotes = distinctNotes self.keyboardLength = 0 self.keyboardRects = [] + self.cursor = None self._initRects() self._initColumns() self._running = False + self.draw(pygame.display.get_surface()) + self._initCursor() @@ -91,10 +77,13 @@ class _PlayingScreenBase(pygame.sprite.OrderedUpdates) : hueStep = FIRST_HUE / (self.keyboardLength - 1) for i, rect in enumerate(self.keyboardRects) : hue = FIRST_HUE - hueStep * i - print hue c = Column(hue, rect) self.add(c) - + + def _initCursor(self) : + self.cursor = WarpingCursor() + #self.add(self.cursor) + def highlightColumn(self, index) : for i, sprite in enumerate(self.sprites()) : @@ -103,15 +92,11 @@ class _PlayingScreenBase(pygame.sprite.OrderedUpdates) : def run(self): self._running = True + clock = pygame.time.Clock() while self._running : pygame.display.flip() - events = pygame.event.get() - for event in events: - self.input(event) - - def input(self, event) : - handler = getattr(self, 'eventHandler%s' % event.type, lambda e:None) - handler(event) + EventDispatcher.dispatchEvents() + clock.tick(50) @event_handler(pygame.KEYDOWN) def handleKeyDown(self, event) : @@ -124,6 +109,7 @@ class _PlayingScreenBase(pygame.sprite.OrderedUpdates) : @event_handler(pygame.MOUSEMOTION) def handleMouseMotion(self, event) : + pass @@ -136,6 +122,7 @@ class SongPlayingScreen(_PlayingScreenBase) : class SongPlayingScreenTest(_PlayingScreenBase) : def __init__(self) : + print '__init__ SongPlayingScreenTest' class C:pass o = C() o.midi=1