-
Notifications
You must be signed in to change notification settings - Fork 17
/
pp_liveshow.py
90 lines (75 loc) · 3.25 KB
/
pp_liveshow.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
import os
import time
from pp_gapshow import GapShow
from pp_livelist import LiveList
from pp_options import command_options
class LiveShow(GapShow):
def __init__(self,
show_id,
show_params,
root,
canvas,
showlist,
pp_dir,
pp_home,
pp_profile,
command_callback):
# init the common bits
GapShow.__init__(self,
show_id,
show_params,
root,
canvas,
showlist,
pp_dir,
pp_home,
pp_profile,
command_callback)
self.options=command_options()
def play(self,end_callback,show_ready_callback, direction_command,level,controls_list):
self.end_callback=end_callback
# get the livetracks directories
if self.show_params['live-tracks-dir1'] != '':
self.pp_live_dir1= self.show_params['live-tracks-dir1']
else:
self.pp_live_dir1 = self.pp_home + os.sep + 'pp_live_tracks'
if not os.path.exists(self.pp_live_dir1):
os.mkdir(self.pp_live_dir1)
# wait for usb stick to be mounted when testing existence
found=False
for i in range (1, 10):
self.mon.log(self,"Trying live tracks directory 1 at: " + self.pp_live_dir1)
if os.path.exists(self.pp_live_dir1):
found=True
break
time.sleep (1)
if found is True:
self.mon.log(self,"Found Requested live tracks Directory 1, at: " + self.pp_live_dir1)
else:
self.mon.warn(self,"Failed to find live tracks Directory 1"+ self.pp_live_dir1)
# self.end('error','Failed to find live tracks dir 1')
if self.show_params['live-tracks-dir2'] != '':
self.pp_live_dir2= self.show_params['live-tracks-dir2']
else:
self.pp_live_dir2=''
if self.options['liveshow'] != '':
self.pp_live_dir2 = self.options['liveshow']
# wait for usb stick to be mounted when testing existence
if self.pp_live_dir2 !='':
found=False
for i in range (1, 10):
self.mon.log(self,"Trying live tracks directory 2 at: " + self.pp_live_dir2)
if os.path.exists(self.pp_live_dir2):
found=True
break
time.sleep (1)
if found is True:
self.mon.log(self,"Found Requested live tracks Directory 2, at: " + self.pp_live_dir2)
else:
self.mon.warn(self,"Failed to find live tracks Directory 2"+ self.pp_live_dir2)
# self.end('error','Failed to find live tracks dir 2')
# use the appropriate medialist
self.medialist=LiveList(self.show_params['sequence'])
# and pass directories to livelist
self.medialist.live_tracks(self.pp_live_dir1,self.pp_live_dir2)
GapShow.play(self,end_callback,show_ready_callback, direction_command,level,controls_list)