forked from hdavid/Launchpad95
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SpecialSessionComponent.py
executable file
·88 lines (76 loc) · 2.87 KB
/
SpecialSessionComponent.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
from _Framework.SessionComponent import SessionComponent
from ClipSlotMK2 import ClipSlotMK2
from _Framework.SceneComponent import SceneComponent
import Live
class SpecialSessionComponent(SessionComponent):
""" Special session subclass that handles ConfigurableButtons """
def __init__(self, num_tracks, num_scenes, stop_clip_buttons, control_surface, main_selector):
self._stop_clip_buttons = stop_clip_buttons
self._control_surface = control_surface
self._main_selector = main_selector
self._osd = None
if self._control_surface._mk2_rgb:
#use custom clip colour coding : blink and pulse for trig and play
SceneComponent.clip_slot_component_type = ClipSlotMK2
SessionComponent.__init__(self, num_tracks = num_tracks, num_scenes = num_scenes, enable_skinning = True, name='Session', is_root=True)
if self._control_surface._mk2_rgb:
from .ColorsMK2 import CLIP_COLOR_TABLE, RGB_COLOR_TABLE
self.set_rgb_mode(CLIP_COLOR_TABLE, RGB_COLOR_TABLE)
def link_with_track_offset(self, track_offset):
assert (track_offset >= 0)
if self._is_linked():
self._unlink()
self.set_offsets(track_offset, 0)
self._link()
def _update_stop_clips_led(self, index):
if ((self.is_enabled()) and (self._stop_track_clip_buttons != None) and (index < len(self._stop_track_clip_buttons))):
button = self._stop_track_clip_buttons[index]
tracks_to_use = self.tracks_to_use()
track_index = index + self.track_offset()
if 0 <= track_index < len(tracks_to_use):
track = tracks_to_use[track_index]
if track.fired_slot_index == -2:
button.send_value(self._stop_clip_triggered_value)
elif track.playing_slot_index >= 0:
button.send_value(self._stop_clip_value)
else:
button.turn_off()
else:
button.send_value(4)
def set_osd(self, osd):
self._osd = osd
def _update_OSD(self):
if self._osd != None:
self._osd.mode = "Session"
for i in range(self._num_tracks):
self._osd.attribute_names[i] = " "
self._osd.attributes[i] = " "
tracks = self.tracks_to_use()
idx = 0
for i in range(len(tracks)):
if idx < self._num_tracks and len(tracks) > i + self._track_offset:
track = tracks[i + self._track_offset]
if track != None:
self._osd.attribute_names[idx] = str(track.name)
else:
self._osd.attribute_names[idx] = " "
self._osd.attributes[idx] = " "
idx += 1
self._osd.info[0] = " "
self._osd.info[1] = " "
self._osd.update()
def unlink(self):
if self._is_linked():
self._unlink()
def update(self):
SessionComponent.update(self)
if self._main_selector._main_mode_index == 0:
self._update_OSD()
def set_enabled(self, enabled):
SessionComponent.set_enabled(self, enabled)
if self._main_selector._main_mode_index == 0:
self._update_OSD()
def _reassign_tracks(self):
SessionComponent._reassign_tracks(self)
if self._main_selector._main_mode_index == 0:
self._update_OSD()