import pygame
from colorsys import hls_to_rgb
from gradients import gradients
+from cursors import WarpingCursor
+from eventutils import event_handler, EventHandlerMixin
from math import floor
+import types
# TODO : positionner cette constance en fonction de la résolution d'affichage
# externaliser la conf.
BORDER = 5 # 5px
ON_SATURATION = 1
ON_COLUMN_OVERSIZING = 1.5
-class _PlayingScreenBase(pygame.sprite.OrderedUpdates) :
+
+class _PlayingScreenBase(pygame.sprite.OrderedUpdates, EventHandlerMixin) :
+
def __init__(self, distinctNotes=[]) :
"""
distinctNotes : notes disctinctes présentes dans la chanson
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()
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()) :
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)
+
+ @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 SongPlayingScreen(_PlayingScreenBase) :
o = C()
o.midi=1
super(SongPlayingScreenTest, self).__init__([o])
-
- def input(self, event) :
- if event.type == pygame.KEYDOWN:
- if event.key == pygame.K_q:
- self._running = False
- uni = event.unicode
-
- if uni.isdigit() and int(uni) <=8 :
- self.highlightColumn(int(uni))
class Column(pygame.sprite.Sprite) :
#convert to rgb ranging from 0 to 255
rgba = [floor(255 * i) for i in hls_to_rgb(h, l, s) + (1,)]
return tuple(rgba)
-
\ No newline at end of file