1 # -*- coding: utf-8 -*-
3 bande qui compose le clavier minwii
9 from colorsys
import hls_to_rgb
10 from gradients
import gradients
11 from math
import floor
12 from globals import BACKGROUND_LAYER
13 from globals import FOREGROUND_LAYER
14 from config
import OFF_LUMINANCE
15 from config
import OFF_SATURATION
16 from config
import ON_TOP_LUMINANCE
17 from config
import ON_BOTTOM_LUMINANCE
18 from config
import ON_SATURATION
19 from config
import ON_COLUMN_OVERSIZING
20 from config
import ON_COLUMN_ALPHA
21 from config
import FONT
22 from config
import FONT_COLOR
25 class Column(pygame
.sprite
.DirtySprite
) :
27 def __init__(self
, group
, hue
, rect
, tone
) :
28 pygame
.sprite
.DirtySprite
.__init
__(self
, group
)
33 toneName
= FONT
.render(tone
.nom
, True, FONT_COLOR
)
35 # état off : surface unie et nom de l'intonation
36 sur
= pygame
.surface
.Surface(rect
.size
)
37 rgba
= hls_to_rgba_8bits(hue
, OFF_LUMINANCE
, OFF_SATURATION
)
40 tw
, th
, = toneName
.get_size()
41 toneRect
= pygame
.Rect(((w
- tw
) / 2, h
- th
), (tw
, th
))
42 sur
.blit(toneName
, toneRect
)
47 # état on : surface dégradée avec nom de la note avec largeur agrandie
48 topRgba
= hls_to_rgba_8bits(hue
, ON_TOP_LUMINANCE
, ON_SATURATION
, ON_COLUMN_ALPHA
)
49 bottomRgba
= hls_to_rgba_8bits(hue
, ON_BOTTOM_LUMINANCE
, ON_SATURATION
, ON_COLUMN_ALPHA
)
50 onWidth
= rect
.width
* ON_COLUMN_OVERSIZING
51 onLeft
= rect
.centerx
- onWidth
/ 2
52 rectOn
= pygame
.Rect((onLeft
, 0),
53 (onWidth
, rect
.height
))
54 self
.surOn
= gradients
.vertical(rectOn
.size
, topRgba
, bottomRgba
)
55 w
, h
= rectOn
.w
, rectOn
.h
56 toneRect
= pygame
.Rect(((w
- tw
) / 2, h
- th
), (tw
, th
))
57 self
.surOn
.blit(toneName
, toneRect
)
60 self
.image
= self
.surOff
62 #EventDispatcher.addEventListener(pygame.MOUSEBUTTONDOWN, self.onMouseDown)
63 #EventDispatcher.addEventListener(pygame.MOUSEBUTTONUP, self.onMouseUp)
65 def update(self
, state
, syllabus
='') :
66 group
= self
.groups()[0]
67 if state
== self
.state
:
71 group
.change_layer(self
, FOREGROUND_LAYER
)
75 renderedSyl
= FONT
.render(syllabus
, True, FONT_COLOR
)
76 sw
, sh
, = renderedSyl
.get_size()
77 w
, h
= self
.rectOn
.w
, self
.rectOn
.h
78 sylRect
= pygame
.Rect(((w
- sw
) / 2, (h
- sh
) / 2), (sw
, sh
))
79 sur
.blit(renderedSyl
, sylRect
)
82 self
.rect
= self
.rectOn
84 group
.change_layer(self
, BACKGROUND_LAYER
)
85 self
.image
= self
.surOff
86 self
.rect
= self
.rectOff
91 def hls_to_rgba_8bits(h
, l
, s
, a
=1) :
92 #convert to rgb ranging from 0 to 255
93 rgba
= [floor(255 * i
) for i
in hls_to_rgb(h
, l
, s
) + (a
,)]