forked from mark-me/Pi-Jukebox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscreen_player.py
executable file
·378 lines (352 loc) · 18 KB
/
screen_player.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
# This file is part of pi-jukebox.
#
# pi-jukebox is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# pi-jukebox is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with pi-jukebox. If not, see < http://www.gnu.org/licenses/ >.
#
# (C) 2015- by Mark Zwart, <[email protected]>
"""
=======================================================
**screen_player.py**: Playback screen.
=======================================================
"""
import sys, pygame
from pygame.locals import *
import time
import subprocess
import os
import glob
from gui_widgets import *
from gui_screens import *
from pij_screen_navigation import *
from mpd_client import *
from settings import *
from screen_settings import *
class ScreenPlaying(Screen):
""" Screen cover art
:param screen_rect: The display's rectangle where the screen is drawn on.
"""
def __init__(self, screen_surface):
Screen.__init__(self, screen_surface)
# Screen navigation buttons
self.add_component(ScreenNavigation('screen_nav', self.surface, 'btn_player'))
# Player specific buttons
self.add_component(ButtonIcon('btn_play', self.surface, ICO_PLAY, SCREEN_WIDTH - 51, 5))
self.add_component(ButtonIcon('btn_stop', self.surface, ICO_STOP, SCREEN_WIDTH - 51, 45))
self.add_component(ButtonIcon('btn_prev', self.surface, ICO_PREVIOUS, SCREEN_WIDTH - 51, 85))
self.add_component(ButtonIcon('btn_next', self.surface, ICO_NEXT, SCREEN_WIDTH - 51, 125))
self.add_component(ButtonIcon('btn_volume', self.surface, ICO_VOLUME, SCREEN_WIDTH - 51, 165))
# Cover art
# self.add_component(Picture('pic_cover_art', self.surface, 79, 40, 162, 162, mpd.get_cover_art()))
self.draw_cover_art()
# Player specific labels
self.add_component(LabelText('lbl_track_artist', self.surface, 54, 3, SCREEN_WIDTH - 110, 18))
self.components['lbl_track_artist'].set_alignment(HOR_MID, VERT_MID)
self.add_component(LabelText('lbl_track_album', self.surface, 54, 19, SCREEN_WIDTH - 110, 18))
self.components['lbl_track_album'].set_alignment(HOR_MID, VERT_MID)
self.add_component(LabelText('lbl_track_title', self.surface, 55, SCREEN_HEIGHT - 27, SCREEN_WIDTH - 108, 18))
self.components['lbl_track_title'].set_alignment(HOR_MID, VERT_MID)
self.add_component(LabelText('lbl_time_current', self.surface, SCREEN_WIDTH - 51, 205, 48, 18))
self.components['lbl_time_current'].set_alignment(HOR_MID, VERT_MID)
self.add_component(LabelText('lbl_time_total', self.surface, SCREEN_WIDTH - 51, SCREEN_WIDTH - 99, 48, 18))
self.components['lbl_time_total'].set_alignment(HOR_MID, VERT_MID)
self.add_component(Slider2('slide_time', self.surface, 55, SCREEN_HEIGHT - 35, SCREEN_WIDTH - 108, 3))
def show(self):
""" Displays the screen. """
self.components['screen_nav'].radio_mode_set(mpd.radio_mode_get())
self.components['lbl_time_current'].text_set(mpd.now_playing.time_current)
self.components['lbl_time_total'].text_set(mpd.now_playing.time_total)
if mpd.player_control_get() == 'play':
self.components['btn_play'].set_image_file(ICO_PAUSE)
else:
self.components['btn_play'].set_image_file(ICO_PLAY)
self.components['btn_play'].draw()
self.components['lbl_track_title'].text_set(mpd.now_playing.title)
self.components['lbl_track_artist'].text_set(mpd.now_playing.artist)
self.components['lbl_track_album'].text_set(mpd.now_playing.album)
if mpd.radio_mode_get():
self.components['lbl_track_artist'].visible = False
self.components['lbl_track_album'].position_set(54, 3, SCREEN_WIDTH - 105, 39)
self.components['pic_cover_art'].picture_set(COVER_ART_RADIO)
else:
self.components['lbl_track_artist'].visible = True
self.components['lbl_track_artist'].text_set(mpd.now_playing.artist)
self.components['lbl_track_album'].position_set(54, 19, SCREEN_WIDTH - 105, 18)
self.components['pic_cover_art'].picture_set(mpd.now_playing.cover_art_get())
return super(ScreenPlaying, self).show() # Draw screen
def update(self):
while True:
try:
event = mpd.events.popleft()
self.components['screen_nav'].radio_mode_set(mpd.radio_mode_get())
playing = mpd.now_playing
if event == 'time_elapsed':
self.components['lbl_time_current'].text_set(playing.time_current)
self.components['slide_time'].draw(playing.time_percentage)
elif event == 'playing_file':
self.components['lbl_track_title'].text_set(playing.title)
if mpd.radio_mode_get():
self.components['lbl_track_artist'].visible = False
self.components['lbl_track_album'].position_set(54, 3, SCREEN_WIDTH - 105, 39)
self.components['pic_cover_art'].picture_set(COVER_ART_RADIO)
else:
self.components['lbl_track_artist'].visible = True
self.components['lbl_track_artist'].text_set(playing.artist)
self.components['lbl_track_album'].position_set(54, 19, SCREEN_WIDTH - 105, 18)
self.components['pic_cover_art'].picture_set(mpd.now_playing.cover_art_get())
self.components['lbl_track_album'].text_set(playing.album)
self.components['lbl_time_total'].text_set(playing.time_total)
elif event == 'state':
if self.components['btn_play'].image_file != ICO_PAUSE and mpd.player_control_get() == 'play':
self.components['btn_play'].draw(ICO_PAUSE)
elif self.components['btn_play'].image_file == ICO_PAUSE and mpd.player_control_get() != 'play':
self.components['btn_play'].draw(ICO_PLAY)
except IndexError:
break
def on_click(self, x, y):
tag_name = super(ScreenPlaying, self).on_click(x, y)
if tag_name == 'btn_player':
self.return_object = 0
self.close()
elif tag_name == 'btn_playlist':
self.return_object = 1
self.close()
elif tag_name == 'btn_library':
self.return_object = 2
self.close()
elif tag_name == 'btn_directory':
self.return_object = 3
self.close()
elif tag_name == 'btn_radio':
self.return_object = 4
self.close()
elif tag_name == 'btn_settings':
setting_screen = ScreenSettings(self)
setting_screen.show()
self.show()
elif tag_name == 'btn_play':
if mpd.player_control_get() == 'play':
mpd.player_control_set('pause')
self.components['btn_play'].set_image_file(ICO_PLAY)
else:
mpd.player_control_set('play')
self.components['btn_play'].set_image_file(ICO_PAUSE)
self.components['btn_play'].draw()
elif tag_name == 'btn_stop':
self.components['btn_play'].set_image_file(ICO_PLAY)
mpd.player_control_set('stop')
elif tag_name == 'btn_prev':
mpd.player_control_set('previous')
elif tag_name == 'btn_next':
mpd.player_control_set('next')
elif tag_name == 'btn_volume':
screen_volume = ScreenVolume(self)
screen_volume.show()
self.show()
def draw_cover_art(self):
left_position = 79
hor_length = SCREEN_WIDTH - 2 * 79
top_position = 40
vert_length = SCREEN_HEIGHT - 2 * 40
if hor_length > vert_length:
cover_size = vert_length
top_position = 40
left_position = (SCREEN_WIDTH - cover_size) / 2
else:
cover_size = hor_length
top_position = (SCREEN_HEIGHT - cover_size) / 2
left_position = 79
self.add_component(Picture('pic_cover_art', self.surface, left_position, top_position, cover_size, cover_size,
mpd.get_cover_art()))
class ScreenPlaylist(Screen):
""" The screen containing everything to control playback.
"""
def __init__(self, screen_rect):
Screen.__init__(self, screen_rect)
# Screen navigation buttons
self.add_component(ScreenNavigation('screen_nav', self.surface, 'btn_playlist'))
# Player specific buttons
self.add_component(ButtonIcon('btn_play', self.surface, ICO_PLAY, SCREEN_WIDTH - 51, 45))
self.add_component(ButtonIcon('btn_stop', self.surface, ICO_STOP, SCREEN_WIDTH - 51, 85))
self.add_component(ButtonIcon('btn_prev', self.surface, ICO_PREVIOUS, SCREEN_WIDTH - 51, 125))
self.add_component(ButtonIcon('btn_next', self.surface, ICO_NEXT, SCREEN_WIDTH - 51, 165))
self.add_component(ButtonIcon('btn_volume', self.surface, ICO_VOLUME, SCREEN_WIDTH - 51, 205))
# Player specific labels
self.add_component(LabelText('lbl_track_title', self.surface, 55, 5, SCREEN_WIDTH - 130, 18))
self.add_component(LabelText('lbl_track_artist', self.surface, 55, 23, SCREEN_WIDTH - 130, 18))
self.add_component(LabelText('lbl_time', self.surface, SCREEN_WIDTH - 67, 5, 67, 18))
self.add_component(LabelText('lbl_volume', self.surface, SCREEN_WIDTH - 70, 23, 70, 18))
# Splits labels from playlist
self.add_component(Rectangle('rct_split', self.surface, 55, 43, SCREEN_WIDTH - 112, 1))
# Playlist
self.add_component(Playlist(self.surface))
self.components['list_playing'].active_item_index = mpd.playlist_current_playing_index_get()
def show(self):
""" Displays the screen. """
self.components['screen_nav'].radio_mode_set(mpd.radio_mode_get())
now_playing = mpd.now_playing
self.components['lbl_time'].text_set(now_playing.time_current + '/' + now_playing.time_total)
self.components['lbl_volume'].text_set('Vol: ' + str(mpd.volume) + '%')
if mpd.player_control_get() == 'play':
self.components['btn_play'].set_image_file(ICO_PAUSE)
else:
self.components['btn_play'].set_image_file(ICO_PLAY)
self.components['btn_play'].draw()
self.components['lbl_track_title'].text_set(now_playing.title)
self.components['lbl_track_artist'].text_set(now_playing.artist)
self.components['list_playing'].show_playlist()
self.components['list_playing'].show_item_active() # Makes sure currently playing playlist item is on screen
return super(ScreenPlaylist, self).show()
def update(self):
now_playing = mpd.now_playing
self.components['screen_nav'].radio_mode_set(mpd.radio_mode_get())
while True:
try:
event = mpd.events.popleft()
if event == 'volume':
self.components['lbl_volume'].text_set('Vol: ' + str(mpd.volume) + '%')
elif event == 'playing_index':
self.components['list_playing'].show_playlist()
elif event == 'time_elapsed' or event == 'playing_time_total':
self.components['lbl_time'].text_set(now_playing.time_current + '/' + now_playing.time_total)
elif event == 'playing_file':
self.components['lbl_track_title'].text_set(now_playing.title)
self.components['lbl_track_artist'].text_set(now_playing.artist)
elif event == 'state':
state = mpd.player_control_get()
if self.components['btn_play'].image_file != ICO_PAUSE and state == 'play':
self.components['btn_play'].draw(ICO_PAUSE)
elif self.components['btn_play'].image_file == ICO_PAUSE and state != 'play':
self.components['btn_play'].draw(ICO_PLAY)
except IndexError:
break
def on_click(self, x, y):
"""
:param x: The horizontal click position.
:param y: The vertical click position.
:return: Possibly returns a screen index number to switch to.
"""
tag_name = super(ScreenPlaylist, self).on_click(x, y)
if tag_name == 'btn_player':
self.return_object = 0
self.close()
elif tag_name == 'btn_playlist':
self.return_object = 1
self.close()
elif tag_name == 'btn_library':
self.return_object = 2
self.close()
elif tag_name == 'btn_directory':
self.return_object = 3
self.close()
elif tag_name == 'btn_radio':
self.return_object = 4
self.close()
elif tag_name == 'btn_settings':
setting_screen = ScreenSettings(self)
setting_screen.show()
self.show()
elif tag_name == 'btn_play':
if mpd.player_control_get() == 'play':
mpd.player_control_set('pause')
self.components['btn_play'].set_image_file(ICO_PLAY)
else:
mpd.player_control_set('play')
self.components['btn_play'].set_image_file(ICO_PAUSE)
self.components['btn_play'].draw()
elif tag_name == 'btn_stop':
self.components['btn_play'].set_image_file(ICO_PLAY)
mpd.player_control_set('stop')
elif tag_name == 'btn_prev':
mpd.player_control_set('previous')
elif tag_name == 'btn_next':
mpd.player_control_set('next')
elif tag_name == 'btn_volume':
screen_volume = ScreenVolume(self)
screen_volume.show()
self.show()
elif tag_name == 'list_playing':
selected_index = self.components['list_playing'].item_selected_index
if selected_index >= 0:
mpd.play_playlist_item(selected_index + 1)
self.components['list_playing'].active_item_index = selected_index
self.components['list_playing'].draw()
class Playlist(ItemList):
""" Displays playlist information.
:param screen_rect: The display's rect where the library browser is drawn on.
"""
def __init__(self, surface):
ItemList.__init__(self, 'list_playing', surface, 52, 46, SCREEN_WIDTH - 104, SCREEN_HEIGHT - 51)
self.item_height = 27
self.item_active_color = FIFTIES_ORANGE
self.outline_color = FIFTIES_CHARCOAL
self.font_color = FIFTIES_YELLOW
self.outline_visible = False
def show_playlist(self):
""" Display the playlist. """
updated = False
playing_nr = mpd.playlist_current_playing_index_get()
if self.list != mpd.playlist_current_get():
self.list = mpd.playlist_current_get()
updated = True
if self.active_item_index != mpd.playlist_current_playing_index_get():
self.active_item_index = mpd.playlist_current_playing_index_get()
updated = True
if updated:
self.draw()
class ScreenVolume(ScreenModal):
""" Screen setting volume
:param screen_rect: The display's rectangle where the screen is drawn on.
"""
def __init__(self, screen):
ScreenModal.__init__(self, screen, "Volume")
self.window_x = 15
self.window_y = 52
self.window_width -= 2 * self.window_x
self.window_height -= 2 * self.window_y
self.outline_shown = True
self.title_color = FIFTIES_GREEN
self.outline_color = FIFTIES_GREEN
self.add_component(ButtonIcon('btn_mute', self.surface, ICO_VOLUME_MUTE, self.window_x + 5, self.window_y + 25))
self.components['btn_mute'].x_pos = self.window_x + self.window_width / 2 - self.components[
'btn_mute'].width / 2
self.add_component(
ButtonIcon('btn_volume_down', self.surface, ICO_VOLUME_DOWN, self.window_x + 5, self.window_y + 25))
self.add_component(
ButtonIcon('btn_volume_up', self.surface, ICO_VOLUME_UP, self.window_width - 40, self.window_y + 25))
self.add_component(
Slider('slide_volume', self.surface, self.window_x + 8, self.window_y + 63, self.window_width - 18, 30))
self.components['slide_volume'].progress_percentage_set(mpd.volume)
self.add_component(
ButtonText('btn_back', self.surface, self.window_x + self.window_width / 2 - 23, self.window_y + 98, 46, 32,
"Back"))
self.components['btn_back'].button_color = FIFTIES_TEAL
def on_click(self, x, y):
tag_name = super(ScreenModal, self).on_click(x, y)
if tag_name == 'btn_mute':
mpd.volume_mute_switch()
self.components['slide_volume'].progress_percentage_set(mpd.volume)
elif tag_name == 'btn_volume_down':
mpd.volume_set_relative(-10)
self.components['slide_volume'].progress_percentage_set(mpd.volume)
elif tag_name == 'btn_volume_up':
mpd.volume_set_relative(10)
self.components['slide_volume'].progress_percentage_set(mpd.volume)
elif tag_name == 'slide_volume':
mpd.volume_set(self.components['slide_volume'].progress_percentage)
elif tag_name == 'btn_back':
self.close()
if mpd.volume == 0 or mpd.volume_mute_get():
self.components['btn_mute'].set_image_file(ICO_VOLUME_MUTE_ACTIVE)
else:
self.components['btn_mute'].set_image_file(ICO_VOLUME_MUTE)
self.components['btn_mute'].draw()