1 # -*- coding: utf-8 -*-
4 bandes arc-en-ciel représentant un clavier.
10 from colorsys
import hls_to_rgb
11 from gradients
import gradients
12 from cursors
import WarpingCursor
13 from eventutils
import event_handler
, EventDispatcher
, EventHandlerMixin
14 from math
import floor
17 from config
import BORDER
18 from config
import FIRST_HUE
19 from config
import OFF_LUMINANCE
20 from config
import OFF_SATURATION
21 from config
import ON_TOP_LUMINANCE
22 from config
import ON_BOTTOM_LUMINANCE
23 from config
import ON_SATURATION
24 from config
import ON_COLUMN_OVERSIZING
27 class _PlayingScreenBase(pygame
.sprite
.LayeredUpdates
, EventHandlerMixin
) :
29 def __init__(self
, distinctNotes
=[]) :
31 distinctNotes : notes disctinctes présentes dans la chanson
32 triées du plus grave au plus aigu.
34 super(_PlayingScreenBase
, self
).__init
__()
35 self
.distinctNotes
= distinctNotes
36 self
.keyboardLength
= 0
37 self
.keyboardRects
= []
42 self
.draw(pygame
.display
.get_surface())
47 def _initRects(self
) :
48 """ création des espaces réservés pour
49 afficher les colonnes.
51 ambitus
= self
.distinctNotes
[-1].midi
- self
.distinctNotes
[0].midi
53 self
.keyboardLength
= 8
55 self
.keyboardLength
= 11
57 screen
= pygame
.display
.get_surface()
59 # taille de la zone d'affichage utile (bordure autour)
60 dispWidth
= screen
.get_width() - 2 * BORDER
61 dispHeight
= screen
.get_height() - 2 * BORDER
63 columnWidth
= int(round(float(dispWidth
) / self
.keyboardLength
))
66 for i
in range(self
.keyboardLength
) :
67 upperLeftCorner
= (i
*columnWidth
+ BORDER
, BORDER
)
68 rect
= pygame
.Rect(upperLeftCorner
, (columnWidth
, dispHeight
))
71 self
.keyboardRects
= rects
73 def _initColumns(self
) :
75 hueStep
= FIRST_HUE
/ (self
.keyboardLength
- 1)
76 for i
, rect
in enumerate(self
.keyboardRects
) :
77 hue
= FIRST_HUE
- hueStep
* i
81 def _initCursor(self
) :
82 self
.cursor
= WarpingCursor(blinkMode
=True)
83 self
.add(self
.cursor
, layer
=2)
86 def highlightColumn(self
, index
) :
87 for i
, sprite
in enumerate(self
.sprites()) :
88 sprite
.update(i
==index
)
89 self
.draw(pygame
.display
.get_surface())
93 clock
= pygame
.time
.Clock()
96 EventDispatcher
.dispatchEvents()
97 dirty
= self
.draw(pygame
.display
.get_surface())
98 pygame
.display
.update(dirty
)
101 @event_handler(pygame
.KEYDOWN
)
102 def handleKeyDown(self
, event
) :
103 if event
.key
== pygame
.K_q
:
104 self
._running
= False
107 if uni
.isdigit() and int(uni
) <=8 :
108 self
.highlightColumn(int(uni
))
110 @event_handler(pygame
.MOUSEMOTION
)
111 def handleMouseMotion(self
, event
) :
117 class SongPlayingScreen(_PlayingScreenBase
) :
119 def __init__(self
, song
) :
120 super(SongPlayingScreen
, self
).__init
__(song
.distinctNotes
)
123 class SongPlayingScreenTest(_PlayingScreenBase
) :
128 super(SongPlayingScreenTest
, self
).__init
__([o
])
131 class Column(pygame
.sprite
.Sprite
, EventHandlerMixin
) :
133 def __init__(self
, hue
, rect
) :
134 pygame
.sprite
.Sprite
.__init
__(self
)
135 sur
= pygame
.surface
.Surface(rect
.size
)
136 rgba
= hls_to_rgba_8bits(hue
, OFF_LUMINANCE
, OFF_SATURATION
)
141 topRgba
= hls_to_rgba_8bits(hue
, ON_TOP_LUMINANCE
, ON_SATURATION
)
142 bottomRgba
= hls_to_rgba_8bits(hue
, ON_BOTTOM_LUMINANCE
, ON_SATURATION
)
143 onWidth
= rect
.width
* ON_COLUMN_OVERSIZING
144 onLeft
= rect
.centerx
- onWidth
/ 2
145 rectOn
= pygame
.Rect((onLeft
, 0),
146 (onWidth
, rect
.height
))
147 self
.stateOn
= gradients
.vertical(rectOn
.size
, topRgba
, bottomRgba
)
150 self
.image
= self
.stateOff
153 def update(self
, state
) :
154 group
= self
.groups()[0]
156 group
.change_layer(self
, 1)
157 self
.image
= self
.stateOn
158 self
.rect
= self
.rectOn
160 group
.change_layer(self
, 0)
161 self
.image
= self
.stateOff
162 self
.rect
= self
.rectOff
164 @event_handler(pygame
.MOUSEBUTTONDOWN
)
165 def onMouseDown(self
, event
) :
166 if self
.rect
.collidepoint(*event
.pos
) :
169 @event_handler(pygame
.MOUSEBUTTONUP
)
170 def onMouseUp(self
, event
) :
173 def hls_to_rgba_8bits(h
, l
, s
) :
174 #convert to rgb ranging from 0 to 255
175 rgba
= [floor(255 * i
) for i
in hls_to_rgb(h
, l
, s
) + (1,)]