forked from KenT2/pipresents-gapless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pp_player.py
460 lines (357 loc) · 17.3 KB
/
pp_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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
import os
from Tkinter import NW
from PIL import Image
from PIL import ImageTk
from pp_pluginmanager import PluginManager
from pp_animate import Animate
from pp_utils import Monitor,calculate_text_position
class Player(object):
# common bits of __init__(...)
def __init__(self,
show_id,
showlist,
root,
canvas,
show_params,
track_params,
pp_dir,
pp_home,
pp_profile,
end_callback,
command_callback):
# create debugging log object
self.mon=Monitor()
self.mon.trace(self,'')
# instantiate arguments
self.show_id=show_id
self.showlist=showlist
self.root=root
self.canvas=canvas['canvas-obj']
self.show_canvas_x1 = canvas['show-canvas-x1']
self.show_canvas_y1 = canvas['show-canvas-y1']
self.show_canvas_x2 = canvas['show-canvas-x2']
self.show_canvas_y2 = canvas['show-canvas-y2']
self.show_canvas_width = canvas['show-canvas-width']
self.show_canvas_height= canvas['show-canvas-height']
self.show_canvas_centre_x= canvas['show-canvas-centre-x']
self.show_canvas_centre_y= canvas['show-canvas-centre-y']
self.show_params=show_params
self.track_params=track_params
self.pp_dir=pp_dir
self.pp_home=pp_home
self.pp_profile=pp_profile
self.end_callback=end_callback
self.command_callback=command_callback
# get background image from profile.
self.background_file=''
if self.track_params['background-image'] != '':
self.background_file= self.track_params['background-image']
# get background colour from profile.
if self.track_params['background-colour'] != '':
self.background_colour= self.track_params['background-colour']
else:
self.background_colour= self.show_params['background-colour']
# get animation instructions from profile
self.animate_begin_text=self.track_params['animate-begin']
self.animate_end_text=self.track_params['animate-end']
# create an instance of showmanager so we can control concurrent shows
# self.show_manager=ShowManager(self.show_id,self.showlist,self.show_params,self.root,self.canvas,self.pp_dir,self.pp_profile,self.pp_home)
# open the plugin Manager
self.pim=PluginManager(self.show_id,self.root,self.canvas,self.show_params,self.track_params,self.pp_dir,self.pp_home,self.pp_profile)
# create an instance of Animate so we can send animation commands
self.animate = Animate()
# initialise state and signals
self.background_obj=None
self.show_text_obj=None
self.track_text_obj=None
self.hint_obj=None
self.background=None
self.freeze_at_end_required='no' # overriden by videoplayer
self.tick_timer=None
self.terminate_signal=False
self.play_state=''
def pre_load(self):
pass
# common bits of show(....)
def pre_show(self):
self.mon.trace(self,'')
# show_x_content moved to just before ready_callback to improve flicker.
self.show_x_content()
#ready callback hides and closes players from previous track, also displays show background
if self.ready_callback is not None:
self.ready_callback(self.enable_show_background)
# Control other shows and do counters and osc at beginning
self.show_control(self.track_params['show-control-begin'])
# and show whatever the plugin has created
self.show_plugin()
# create animation events
reason,message=self.animate.animate(self.animate_begin_text,id(self))
if reason == 'error':
self.mon.err(self,message)
self.play_state='show-failed'
if self.finished_callback is not None:
self.finished_callback('error',message)
else:
# return to start playing the track.
self.mon.log(self,">show track received from show Id: "+ str(self.show_id))
return
# to keep landscape happy
def ready_callback(self,enable_show_background):
self.mon.fatal(self,'ready callback not overridden')
self.end('error','ready callback not overridden')
def finished_callback(self,reason,message):
self.mon.fatal(self,'finished callback not overridden')
self.end('error','finished callback not overridden')
def closed_callback(self,reason,message):
self.mon.fatal(self,'closed callback not overridden')
self.end('error','closed callback not overridden')
# Control shows so pass the show control commands back to PiPresents via the command callback
def show_control(self,show_control_text):
lines = show_control_text.split('\n')
for line in lines:
if line.strip() == "":
continue
# print 'show control command: ',line
self.command_callback(line, source='track',show=self.show_params['show-ref'])
# *****************
# hide content and end animation, show control etc.
# called by ready calback and end
# *****************
def hide(self):
self.mon.trace(self,'')
# abort the timer
if self.tick_timer is not None:
self.canvas.after_cancel(self.tick_timer)
self.tick_timer=None
self.hide_x_content()
# stop the plugin
self.hide_plugin()
# Control concurrent shows at end
self.show_control(self.track_params['show-control-end'])
# clear events list for this track
if self.track_params['animate-clear'] == 'yes':
self.animate.clear_events_list(id(self))
# create animation events for ending
# !!!!! TEMPORARY FIX
reason,message=self.animate.animate(self.animate_end_text,id(self))
if reason == 'error':
self.mon.err(self,message)
# self.play_state='show-failed'
# if self.finished_callback is not None:
# self.finished_callback('error',message)
else:
return
def terminate(self):
self.mon.trace(self,'')
self.terminate_signal=True
if self.play_state == 'showing':
# call the derived class's stop method
self.stop()
else:
self.end('killed','terminate with no track or show open')
# must be overriden by derived class
def stop(self):
self.mon.fatal(self,'stop not overidden by derived class')
self.play_state='show-failed'
if self.finished_callback is not None:
self.finished_callback('error','stop not overidden by derived class')
def get_play_state(self):
return self.play_state
# *****************
# ending the player
# *****************
def end(self,reason,message):
self.mon.trace(self,'')
# stop the plugin
if self.terminate_signal is True:
reason='killed'
self.terminate_signal=False
self.hide()
self.end_callback(reason,message)
self=None
# *****************
# displaying common things
# *****************
def load_plugin(self):
# called in load before load_x_content modify the track here
if self.track_params['plugin'] != '':
reason,message,self.track = self.pim.load_plugin(self.track,self.track_params['plugin'])
return reason,message
def show_plugin(self):
# called at show time, write to the track here if you need it after show_control_begin (counters)
if self.track_params['plugin'] != '':
self.pim.show_plugin()
def hide_plugin(self):
# called at the end of the track
if self.track_params['plugin'] != '':
self.pim.stop_plugin()
def load_x_content(self,enable_menu):
self.mon.trace(self,'')
self.background_obj=None
self.background=None
self.track_text_obj=None
self.show_text_obj=None
self.hint_obj=None
self.track_obj=None
# background image
if self.background_file != '':
background_img_file = self.complete_path(self.background_file)
if not os.path.exists(background_img_file):
return 'error',"Track background file not found "+ background_img_file
else:
try:
pil_background_img=Image.open(background_img_file)
except:
pil_background_img=None
self.background=None
self.background_obj=None
return 'error','Track background, not a recognised image format '+ background_img_file
# print 'pil_background_img ',pil_background_img
image_width,image_height=pil_background_img.size
window_width=self.show_canvas_width
window_height=self.show_canvas_height
if image_width != window_width or image_height != window_height:
pil_background_img=pil_background_img.resize((window_width, window_height))
self.background = ImageTk.PhotoImage(pil_background_img)
del pil_background_img
self.background_obj = self.canvas.create_image(self.show_canvas_x1,
self.show_canvas_y1,
image=self.background,
anchor=NW)
# print '\nloaded background_obj: ',self.background_obj
# load the track content. Dummy function below is overridden in players
status,message=self.load_track_content()
if status == 'error':
return 'error',message
# load show text if enabled
if self.show_params['show-text'] != '' and self.track_params['display-show-text'] == 'yes':
x,y,anchor,justify=calculate_text_position(self.show_params['show-text-x'],self.show_params['show-text-y'],
self.show_canvas_x1,self.show_canvas_y1,
self.show_canvas_centre_x,self.show_canvas_centre_y,
self.show_canvas_x2,self.show_canvas_y2,self.show_params['show-text-justify'])
self.show_text_obj=self.canvas.create_text(x,y,
anchor=anchor,
justify=justify,
text=self.show_params['show-text'],
fill=self.show_params['show-text-colour'],
font=self.show_params['show-text-font'])
# load track text if enabled
if self.track_params['track-text-x'] =='':
track_text_x= self.show_params['track-text-x']
else:
track_text_x= self.track_params['track-text-x']
if self.track_params['track-text-y'] =='':
track_text_y= self.show_params['track-text-y']
else:
track_text_y= self.track_params['track-text-y']
if self.track_params['track-text-justify'] =='':
track_text_justify= self.show_params['track-text-justify']
else:
track_text_justify= self.track_params['track-text-justify']
if self.track_params['track-text-font'] =='':
track_text_font= self.show_params['track-text-font']
else:
track_text_font= self.track_params['track-text-font']
if self.track_params['track-text-colour'] =='':
track_text_colour= self.show_params['track-text-colour']
else:
track_text_colour= self.track_params['track-text-colour']
if self.track_params['track-text'] != '':
x,y,anchor,justify=calculate_text_position(track_text_x,track_text_y,
self.show_canvas_x1,self.show_canvas_y1,
self.show_canvas_centre_x,self.show_canvas_centre_y,
self.show_canvas_x2,self.show_canvas_y2,track_text_justify)
self.track_text_obj=self.canvas.create_text(x,y,
anchor=anchor,
justify=justify,
text=self.track_params['track-text'],
fill=track_text_colour,
font=track_text_font)
# load instructions if enabled
if enable_menu is True:
x,y,anchor,justify=calculate_text_position(self.show_params['hint-x'],self.show_params['hint-y'],
self.show_canvas_x1,self.show_canvas_y1,
self.show_canvas_centre_x,self.show_canvas_centre_y,
self.show_canvas_x2,self.show_canvas_y2,self.show_params['hint-justify'])
self.hint_obj=self.canvas.create_text(x,y,
justify=justify,
text=self.show_params['hint-text'],
fill=self.show_params['hint-colour'],
font=self.show_params['hint-font'],
anchor=anchor)
self.display_show_canvas_rectangle()
self.canvas.tag_raise('pp-click-area')
self.canvas.itemconfig(self.background_obj,state='hidden')
self.canvas.itemconfig(self.show_text_obj,state='hidden')
self.canvas.itemconfig(self.track_text_obj,state='hidden')
self.canvas.itemconfig(self.hint_obj,state='hidden')
self.canvas.update_idletasks( )
return 'normal','x-content loaded'
# display the rectangle that is the show canvas
def display_show_canvas_rectangle(self):
# coords=[self.show_canvas_x1,self.show_canvas_y1,self.show_canvas_x2-1,self.show_canvas_y2-1]
# self.canvas.create_rectangle(coords,
# outline='yellow',
# fill='')
pass
# dummy functions to manipulate the track content, overidden in some players,
# message text in messageplayer
# image in imageplayer
# menu stuff in menuplayer
def load_track_content(self):
return 'normal','player has no track content to load'
def show_track_content(self):
pass
def hide_track_content(self):
pass
def show_x_content(self):
self.mon.trace(self,'')
# background colour
if self.background_colour != '':
self.canvas.config(bg=self.background_colour)
# print 'showing background_obj: ', self.background_obj
# reveal background image and text
self.canvas.itemconfig(self.background_obj,state='normal')
self.show_track_content()
self.canvas.itemconfig(self.show_text_obj,state='normal')
self.canvas.itemconfig(self.track_text_obj,state='normal')
self.canvas.itemconfig(self.hint_obj,state='normal')
# self.canvas.update_idletasks( )
# decide whether the show background should be enabled.
# print 'DISPLAY SHOW BG',self.track_params['display-show-background'],self.background_obj
if self.background_obj is None and self.track_params['display-show-background']=='yes':
self.enable_show_background=True
else:
self.enable_show_background=False
# print 'ENABLE SB',self.enable_show_background
def hide_x_content(self):
self.mon.trace(self,'')
self.hide_track_content()
self.canvas.itemconfig(self.background_obj,state='hidden')
self.canvas.itemconfig(self.show_text_obj,state='hidden')
self.canvas.itemconfig(self.track_text_obj,state='hidden')
self.canvas.itemconfig(self.hint_obj,state='hidden')
# self.canvas.update_idletasks( )
self.canvas.delete(self.background_obj)
self.canvas.delete(self.show_text_obj)
self.canvas.delete(self.track_text_obj)
self.canvas.delete(self.hint_obj)
self.background=None
# self.canvas.update_idletasks( )
# ****************
# utilities
# *****************
def get_links(self):
return self.track_params['links']
# produce an absolute path from the relative one in track paramters
def complete_path(self,track_file):
# complete path of the filename of the selected entry
if track_file[0] == "+":
track_file=self.pp_home+track_file[1:]
elif track_file[0] == "@":
track_file=self.pp_profile+track_file[1:]
return track_file
# get a text string from resources.cfg
def resource(self,section,item):
value=self.rr.get(section,item)
return value # False if not found