ON_TOP_LUMINANCE = 0.6
ON_BOTTOM_LUMINANCE = 0.9
ON_SATURATION = 1
-ON_COLUMN_OVERSIZING = 1.5
+ON_COLUMN_OVERSIZING = 2
class _PlayingScreenBase(pygame.sprite.OrderedUpdates, EventHandlerMixin) :
self.add(c)
def _initCursor(self) :
- self.cursor = WarpingCursor()
+ self.cursor = WarpingCursor(blinkMode=True)
self.add(self.cursor)
super(SongPlayingScreenTest, self).__init__([o])
-class Column(pygame.sprite.Sprite) :
+class Column(pygame.sprite.Sprite, EventHandlerMixin) :
def __init__(self, hue, rect) :
pygame.sprite.Sprite.__init__(self)
topRgba = hls_to_rgba_8bits(hue, ON_TOP_LUMINANCE, ON_SATURATION)
bottomRgba = hls_to_rgba_8bits(hue, ON_BOTTOM_LUMINANCE, ON_SATURATION)
- rectOn = rect.inflate(ON_COLUMN_OVERSIZING * rect.width, 0)
+ rectOn = pygame.Rect((rect.left - rect.width/2, 0),
+ (rect.width * ON_COLUMN_OVERSIZING, rect.height))
self.stateOn = gradients.vertical(rectOn.size, topRgba, bottomRgba)
self.rectOn = rectOn
else :
self.image = self.stateOff
self.rect = self.rectOff
+
+ @event_handler(pygame.MOUSEBUTTONDOWN)
+ def onMouseDown(self, event) :
+ if self.rect.collidepoint(*event.pos) :
+ self.update(True)
+
+ @event_handler(pygame.MOUSEBUTTONUP)
+ def onMouseUp(self, event) :
+ self.update(False)
def hls_to_rgba_8bits(h, l, s) :
#convert to rgb ranging from 0 to 255