-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy patheuclid.py
346 lines (278 loc) · 10.4 KB
/
euclid.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
#!/usr/bin/env python3
"""Euclidean rhythm generator for the EuroPi
@author Chris Iverach-Brereton <[email protected]>
@author Brian House
@year 2011, 2023
This script contains code released under the MIT license, as
noted below
"""
import random
import time
from europi import *
from europi_script import EuroPiScript
from experimental.euclid import generate_euclidean_pattern
from experimental.screensaver import Screensaver
from experimental.settings_menu import *
class EuclidGenerator:
"""Generates the euclidean rhythm for a single output
"""
def __init__(self, cv_out, name, steps=1, pulses=0, rotation=0, skip=0):
"""Create a generator that sends its output to the given CV output
@param cv_out One of the six output jacks (cv1..cv6)
@param steps The initial number of steps (1-32)
@param pulses The initial number of pulses (0-32)
@param rotation The initial rotation (0-32)
@param skip The skip probability (0-1)
"""
setting_prefix = name.lower()
self.rotatation = None
self.pulses = None
self.steps = None
self.steps = SettingMenuItem(
config_point = IntegerConfigPoint(
f"{setting_prefix}_steps",
1,
32,
steps,
),
prefix = name,
title = "Steps",
callback = self.update_steps,
autoselect_cv = True,
autoselect_knob = True,
)
self.rotation = SettingMenuItem(
config_point = IntegerConfigPoint(
f"{setting_prefix}_rotation",
0,
32,
rotation,
),
prefix = name,
title = "Rotation",
callback = self.update_rotation,
autoselect_cv = True,
autoselect_knob = True,
)
self.pulses = SettingMenuItem(
config_point = IntegerConfigPoint(
f"{setting_prefix}_pulses",
0,
32,
pulses,
),
prefix = name,
title = "Pulses",
callback = self.update_pulses,
autoselect_cv = True,
autoselect_knob = True,
)
self.skip = SettingMenuItem(
config_point = IntegerConfigPoint(
f"{setting_prefix}_skip_prob",
0,
100,
skip,
),
prefix = name,
title = "Skip %",
autoselect_cv = True,
autoselect_knob = True,
)
## The CV output this generator controls
self.cv = cv_out
## The name for this channel
self.name = name
## The current position within the pattern
self.position = 0
## The on/off pattern we generate
self.pattern = []
## Cached copy of the string representation
#
# __str__(self) will do some extra string processing
# if this is None; otherwise its value is simply returned
self.str = None
# Initialize the pattern
self.update_steps(self.steps.value, 0, None, None)
self.regenerate()
def update_steps(self, new_steps, old_steps, config_point, arg=None):
"""Update the max range of pulses & rotation to match the number of steps
"""
self.pulses.modify_choices(choices=list(range(new_steps+1)), new_default=new_steps)
self.rotation.modify_choices(choices=list(range(new_steps+1)), new_default=new_steps)
self.regenerate()
def update_pulses(self, new_pulses, old_pulses, config_point, arg=None):
self.regenerate()
def update_rotation(self, new_rot, old_rot, config_point, arg=None):
self.regenerate()
def __str__(self):
"""Return a string representation of the pattern
The string consists of 4 characters:
- ^ current beat, high
- v current beat, low
- | high beat
- . low beat
e.g. |.|.^|.|.||. is a 7/12 pattern, where the 5th note
is currently playing
"""
if self.str is None:
s = ""
for i in range(len(self.pattern)):
if i == self.position:
if self.pattern[i] == 0:
s = s+"v"
else:
s = s+"^"
else:
if self.pattern[i] == 0:
s = s+"."
else:
s = s+"|"
self.str = s
return self.str
def regenerate(self):
"""Re-calculate the pattern for this generator
Call this after changing any of steps, pulses, or rotation to apply
the changes.
Changing the pattern will reset the position to zero
"""
self.position = 0
self.pattern = generate_euclidean_pattern(self.steps.value, self.pulses.value, self.rotation.value)
# clear the cached string representation
self.str = None
def advance(self):
"""Advance to the next step in the pattern and set the CV output
"""
# advance the position
# to ease CPU usage don't do any divisions, just reset to zero
# if we overflow
self.position = self.position+1
if self.position >= len(self.pattern):
self.position = 0
if self.steps == 0 or self.pattern[self.position] == 0:
self.cv.off()
else:
if self.skip.value / 100 > random.random():
self.cv.off()
else:
self.cv.on()
# clear the cached string representation
self.str = None
class EuclidVisualization(MenuItem):
"""A menu item for displaying a specific Euclidean channel
"""
def __init__(self, generator, children=None, parent=None):
super().__init__(children=children, parent=parent)
self.generator = generator
def draw(self, oled=oled):
pattern_str = str(self.generator)
oled.text(f"-- {self.generator.name} --", 0, 0)
if len(pattern_str) > 16:
pattern_row1 = pattern_str[0:16]
pattern_row2 = pattern_str[16:]
oled.text(f"{pattern_row1}", 0, 10)
oled.text(f"{pattern_row2}", 0, 20)
else:
oled.text(f"{pattern_str}", 0, 10)
class EuclideanRhythms(EuroPiScript):
"""Generates 6 different Euclidean rhythms, one per output
Must be clocked externally into DIN
"""
def __init__(self):
super().__init__()
## The euclidean pattern generators for each CV output
#
# We pre-load the defaults with some interesting patterns so the script
# does _something_ out of the box
self.generators = [
EuclidGenerator(cv1, "CV1", 8, 5),
EuclidGenerator(cv2, "CV2", 16, 7),
EuclidGenerator(cv3, "CV3", 16, 11),
EuclidGenerator(cv4, "CV4", 32, 9),
EuclidGenerator(cv5, "CV5", 32, 15),
EuclidGenerator(cv6, "CV6", 32, 19)
]
menu_items = []
for i in range(len(self.generators)):
menu_items.append(
EuclidVisualization(
self.generators[i],
children = [
self.generators[i].steps,
self.generators[i].pulses,
self.generators[i].rotation,
self.generators[i].skip,
]
)
)
self.menu = SettingsMenu(
navigation_knob = k2,
navigation_button = b2,
menu_items = menu_items,
short_press_cb = self.on_menu_short_press,
long_press_cb = self.on_menu_long_press
)
self.menu.load_defaults(self._state_filename)
# Is the visualization stale (i.e. have we received a pulse and not updated the visualization?)
self.viz_dirty = True
self.screensaver = Screensaver()
self.last_user_interaction_at = time.ticks_ms()
@din.handler
def on_rising_clock():
"""Handler for the rising edge of the input clock
Advance all of the rhythms
"""
for g in self.generators:
g.advance()
self.viz_dirty = True
@din.handler_falling
def on_falling_clock():
"""Handler for the falling edge of the input clock
Turn off all of the CVs so we don't stay on for adjacent pulses
"""
turn_off_all_cvs()
@b1.handler
def on_b1_press():
"""Handler for pressing button 1
Advance all of the rhythms
"""
self.last_user_interaction_at = time.ticks_ms()
for g in self.generators:
g.advance()
self.viz_dirty = True
@b1.handler_falling
def on_b1_release():
"""Handler for releasing button 1
Turn off all of the CVs so we don't stay on for adjacent pulses
"""
self.last_user_interaction_at = time.ticks_ms()
turn_off_all_cvs()
def on_menu_long_press(self):
self.last_user_interaction_at = time.ticks_ms()
def on_menu_short_press(self):
self.last_user_interaction_at = time.ticks_ms()
def main(self):
# manually check the state of k1 since it's otherwise not used, but should
# disable the screensaver
prev_k1 = int(k1.percent() * 100)
while True:
now = time.ticks_ms()
current_k1 = int(k1.percent() * 100)
if current_k1 != prev_k1:
self.last_user_interaction_at = now
prev_k1 = current_k1
if self.menu.ui_dirty:
self.last_user_interaction_at = now
if time.ticks_diff(now, self.last_user_interaction_at) >= self.screensaver.ACTIVATE_TIMEOUT_MS:
self.last_user_interaction_at = time.ticks_add(now, -self.screensaver.ACTIVATE_TIMEOUT_MS)
self.screensaver.draw()
else:
if self.viz_dirty or self.menu.ui_dirty:
self.viz_dirty = False
oled.fill(0)
self.menu.draw()
oled.show()
if self.menu.settings_dirty:
self.menu.save(self._state_filename)
if __name__=="__main__":
EuclideanRhythms().main()