-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsequencer64.rc
More file actions
655 lines (548 loc) · 25.6 KB
/
sequencer64.rc
File metadata and controls
655 lines (548 loc) · 25.6 KB
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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
# Sequencer64 0.96.5 (and above) rc configuration file
#
# This file holds the main configuration options for Sequencer64.
# It follows the format of the legacy seq24 'rc' configuration
# file, but adds some new options, such as LASH, Mod4 interaction
# support, an auto-save-on-exit option, and more. Also provided
# is a legacy mode.
#
# The [comments] section can document this file. Lines starting
# with '#' and '[' are ignored. Blank lines are ignored. Show a
# blank line by adding a space character to the line.
[comments]
(Comments added to this section are preserved. Lines starting with
a '#' or '[', or that are blank, are ignored. Start lines that must
be blank with a space.)
[midi-control]
# The leftmost number on each line here is the pattern number, from
# 0 to 31; or it is the group number, from 32 to 63, for up to 32
# groups; or it is an automation control number, from 64 to 95.
# This internal MIDI control number is followed by three groups of
# bracketed numbers, each providing three different type of control:
#
# Normal: [toggle] [on] [off]
# Playback: [pause] [start] [stop]
# Playlist: [by-value] [next] [previous] (if active)
#
# In each group, there are six numbers:
#
# [on/off invert status d0 d1min d1max]
#
# 'on/off' enables/disables (1/0) the MIDI control for the pattern.
# 'invert' (1/0) causes the opposite if data is outside the range.
# 'status' is by MIDI event to match (channel is NOT ignored).
# 'd0' is the first data value. Example: if status is 144 (Note On),
# then d0 represents Note 0.
# 'd1min'/'d1max' are the range of second values that should match.
# Example: For a Note On for note 0, 0 and 127 indicate that any
# Note On velocity will cause the MIDI control to take effect.
# ------------------ on/off (indicate is the section is enabled)
# | ----------------- inverse
# | | -------------- MIDI status (event) byte (e.g. note on)
# | | | ------------ data 1 (e.g. note number)
# | | | | ---------- data 2 min
# | | | | | -------- data 2 max
# | | | | | |
# v v v v v v
# [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# Toggle On Off
96 # MIDI controls count (74/84/96)
# Pattern-group section:
0 [1 0 128 53 127 127] [0 0 0 0 0 0] [1 0 128 52 127 127]
1 [1 0 128 54 127 127] [0 0 0 0 0 0] [1 0 128 52 127 127]
2 [1 0 128 55 127 127] [0 0 0 0 0 0] [1 0 128 52 127 127]
3 [1 0 128 56 127 127] [0 0 0 0 0 0] [1 0 128 52 127 127]
4 [1 0 129 53 127 127] [0 0 0 0 0 0] [1 0 129 52 127 127]
5 [1 0 129 54 127 127] [0 0 0 0 0 0] [1 0 129 52 127 127]
6 [1 0 129 55 127 127] [0 0 0 0 0 0] [1 0 129 52 127 127]
7 [1 0 129 56 127 127] [0 0 0 0 0 0] [1 0 129 52 127 127]
8 [1 0 130 53 127 127] [0 0 0 0 0 0] [1 0 130 52 127 127]
9 [1 0 130 54 127 127] [0 0 0 0 0 0] [1 0 130 52 127 127]
10 [1 0 130 55 127 127] [0 0 0 0 0 0] [1 0 130 52 127 127]
11 [1 0 130 56 127 127] [0 0 0 0 0 0] [1 0 130 52 127 127]
12 [1 0 131 53 127 127] [0 0 0 0 0 0] [1 0 131 52 127 127]
13 [1 0 131 54 127 127] [0 0 0 0 0 0] [1 0 131 52 127 127]
14 [1 0 131 55 127 127] [0 0 0 0 0 0] [1 0 131 52 127 127]
15 [1 0 131 56 127 127] [0 0 0 0 0 0] [1 0 131 52 127 127]
16 [1 0 132 53 127 127] [0 0 0 0 0 0] [1 0 132 52 127 127]
17 [1 0 132 54 127 127] [0 0 0 0 0 0] [1 0 132 52 127 127]
18 [1 0 132 55 127 127] [0 0 0 0 0 0] [1 0 132 52 127 127]
19 [1 0 132 56 127 127] [0 0 0 0 0 0] [1 0 132 52 127 127]
20 [1 0 133 53 127 127] [0 0 0 0 0 0] [1 0 133 52 127 127]
21 [1 0 133 54 127 127] [0 0 0 0 0 0] [1 0 133 52 127 127]
22 [1 0 133 55 127 127] [0 0 0 0 0 0] [1 0 133 52 127 127]
23 [1 0 133 56 127 127] [0 0 0 0 0 0] [1 0 133 52 127 127]
24 [1 0 134 53 127 127] [0 0 0 0 0 0] [1 0 134 52 127 127]
25 [1 0 134 54 127 127] [0 0 0 0 0 0] [1 0 134 52 127 127]
26 [1 0 134 55 127 127] [0 0 0 0 0 0] [1 0 134 52 127 127]
27 [1 0 134 56 127 127] [0 0 0 0 0 0] [1 0 134 52 127 127]
28 [1 0 135 53 127 127] [0 0 0 0 0 0] [1 0 135 52 127 127]
29 [1 0 135 54 127 127] [0 0 0 0 0 0] [1 0 135 52 127 127]
30 [1 0 135 55 127 127] [0 0 0 0 0 0] [1 0 135 52 127 127]
31 [1 0 135 56 127 127] [0 0 0 0 0 0] [1 0 135 52 127 127]
# Mute-in group section:
32 [0 0 0 0 0 0] [1 0 144 57 127 127] [0 0 0 0 0 0]
33 [0 0 0 0 0 0] [1 0 145 57 127 127] [0 0 0 0 0 0]
34 [0 0 0 0 0 0] [1 0 146 57 127 127] [0 0 0 0 0 0]
35 [0 0 0 0 0 0] [1 0 147 57 127 127] [0 0 0 0 0 0]
36 [0 0 0 0 0 0] [1 0 148 57 127 127] [0 0 0 0 0 0]
37 [0 0 0 0 0 0] [1 0 149 57 127 127] [0 0 0 0 0 0]
38 [0 0 0 0 0 0] [1 0 150 57 127 127] [0 0 0 0 0 0]
39 [0 0 0 0 0 0] [1 0 144 82 127 127] [0 0 0 0 0 0]
40 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
41 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
42 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
43 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
44 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
45 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
46 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
47 [0 0 0 0 0 0] [1 0 144 83 127 127] [0 0 0 0 0 0]
48 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
49 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
50 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
51 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
52 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
53 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
54 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
55 [0 0 0 0 0 0] [1 0 144 84 127 127] [0 0 0 0 0 0]
56 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
57 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
58 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
59 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
60 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
61 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
62 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
63 [0 0 0 0 0 0] [1 0 144 85 127 127] [0 0 0 0 0 0]
# Automation group
# bpm up:
64 [0 0 0 0 0 0] [1 0 144 100 127 127] [0 0 0 0 0 0]
# bpm down:
65 [0 0 0 0 0 0] [1 0 144 101 127 127] [0 0 0 0 0 0]
# screen set up:
66 [0 0 0 0 0 0] [1 0 144 94 127 127] [0 0 0 0 0 0]
# screen set down:
67 [0 0 0 0 0 0] [1 0 144 95 127 127] [0 0 0 0 0 0]
# mod replace:
68 [0 0 0 0 0 0] [1 0 144 81 127 127] [0 0 0 0 0 0]
# mod snapshot:
69 [0 0 0 0 0 0] [1 0 144 86 127 127] [1 0 151 57 127 127]
# mod queue:
70 [0 0 0 0 0 0] [1 0 144 98 127 127] [0 0 0 0 0 0]
# mod gmute:
71 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# mod glearn:
72 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# screen set play:
73 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# Extended MIDI controls:
# start playback (pause, start, stop):
74 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# performance record:
75 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# solo (toggle, on, off):
76 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# MIDI THRU (toggle, on, off):
77 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# bpm page up:
78 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# bpm page down:
79 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# screen set by number:
80 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# MIDI RECORD (toggle, on, off):
81 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# MIDI Quantized RECORD (toggle, on, off):
82 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# Set Replace versus Merge for loop recording:
83 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# One-shot queueing and replacing. TO DO.
84 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# MIDI Control for fast-forward
85 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# MIDI Control for rewind
86 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# MIDI Control for top (song beginning or L marker)
87 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# MIDI Control to select playlist (value, next, previous)
88 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# MIDI Control to select song in current playlist (value, next, previous)
89 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# Hot-key slot shift (keystroke)
90 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# A second control for starting playback. TODO.
91 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# A second control for stopping playback. TODO.
92 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# A second snapshot control. TODO.
93 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# For toggling, muting, and unmuting. TODO.
94 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
# For setting the position in the song. TODO.
95 [0 0 0 0 0 0] [0 0 0 0 0 0] [0 0 0 0 0 0]
[midi-control-out]
# ------------------- on/off (indicate is the section is enabled)
# | ----------------- MIDI channel (0-15)
# | | --------------- MIDI status (event) byte (e.g. note on)
# | | | ------------- data 1 (e.g. note number)
# | | | | ----------- data 2 (e.g. velocity)
# | | | | |
# v v v v v
# [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0] [0 0 0 0 0]
# Arm Mute Queue Delete
32 15 1 # screenset size, output buss, enabled (1) /disabled (0)
0 [1 0 144 53 127] [1 0 144 53 5] [1 0 144 53 2] [1 0 144 53 0]
1 [1 0 144 54 127] [1 0 144 54 5] [1 0 144 54 2] [1 0 144 54 0]
2 [1 0 144 55 127] [1 0 144 55 5] [1 0 144 55 2] [1 0 144 55 0]
3 [1 0 144 56 127] [1 0 144 56 5] [1 0 144 56 2] [1 0 144 56 0]
4 [1 0 145 53 127] [1 0 145 53 5] [1 0 145 53 2] [1 0 145 53 0]
5 [1 0 145 54 127] [1 0 145 54 5] [1 0 145 54 2] [1 0 145 54 0]
6 [1 0 145 55 127] [1 0 145 55 5] [1 0 145 55 2] [1 0 145 55 0]
7 [1 0 145 56 127] [1 0 145 56 5] [1 0 145 56 2] [1 0 145 56 0]
8 [1 0 146 53 127] [1 0 146 53 5] [1 0 146 53 2] [1 0 146 53 0]
9 [1 0 146 54 127] [1 0 146 54 5] [1 0 146 54 2] [1 0 146 54 0]
10 [1 0 146 55 127] [1 0 146 55 5] [1 0 146 55 2] [1 0 146 55 0]
11 [1 0 146 56 127] [1 0 146 56 5] [1 0 146 56 2] [1 0 146 56 0]
12 [1 0 147 53 127] [1 0 147 53 5] [1 0 147 53 2] [1 0 147 53 0]
13 [1 0 147 54 127] [1 0 147 54 5] [1 0 147 54 2] [1 0 147 54 0]
14 [1 0 147 55 127] [1 0 147 55 5] [1 0 147 55 2] [1 0 147 55 0]
15 [1 0 147 56 127] [1 0 147 56 5] [1 0 147 56 2] [1 0 147 56 0]
16 [1 0 148 53 127] [1 0 148 53 5] [1 0 148 53 2] [1 0 148 53 0]
17 [1 0 148 54 127] [1 0 148 54 5] [1 0 148 54 2] [1 0 148 54 0]
18 [1 0 148 55 127] [1 0 148 55 5] [1 0 148 55 2] [1 0 148 55 0]
19 [1 0 148 56 127] [1 0 148 56 5] [1 0 148 56 2] [1 0 148 56 0]
20 [1 0 149 53 127] [1 0 149 53 5] [1 0 149 53 2] [1 0 149 53 0]
21 [1 0 149 54 127] [1 0 149 54 5] [1 0 149 54 2] [1 0 149 54 0]
22 [1 0 149 55 127] [1 0 149 55 5] [1 0 149 55 2] [1 0 149 55 0]
23 [1 0 149 56 127] [1 0 149 56 5] [1 0 149 56 2] [1 0 149 56 0]
24 [1 0 150 53 127] [1 0 150 53 5] [1 0 150 53 2] [1 0 150 53 0]
25 [1 0 150 54 127] [1 0 150 54 5] [1 0 150 54 2] [1 0 150 54 0]
26 [1 0 150 55 127] [1 0 150 55 5] [1 0 150 55 2] [1 0 150 55 0]
27 [1 0 150 56 127] [1 0 150 56 5] [1 0 150 56 2] [1 0 150 56 0]
28 [1 0 151 53 127] [1 0 151 53 5] [1 0 151 53 2] [1 0 151 53 0]
29 [1 0 151 54 127] [1 0 151 54 5] [1 0 151 54 2] [1 0 151 54 0]
30 [1 0 151 55 127] [1 0 151 55 5] [1 0 151 55 2] [1 0 151 55 0]
31 [1 0 151 56 127] [1 0 151 56 5] [1 0 151 56 2] [1 0 151 56 0]
# MIDI Control Out: play
0 [0 0 0 0]
# MIDI Control Out: stop
0 [0 0 0 0]
# MIDI Control Out: pause
0 [0 0 0 0]
# MIDI Control Out: queue on/opposite
0 [0 0 0 0] [0 0 0 0]
# MIDI Control Out: oneshot on/opposite
0 [0 0 0 0] [0 0 0 0]
# MIDI Control Out: replace on/opposite
0 [0 0 0 0] [0 0 0 0]
# MIDI Control Out: snap1 store/opposite
0 [0 0 0 0] [0 0 0 0]
# MIDI Control Out: snap2 store/opposite
0 [0 0 0 0] [0 0 0 0]
# MIDI Control Out: learn on/opposite
0 [0 0 0 0] [0 0 0 0]
[mute-group]
# All mute-group values are saved in this 'rc' file, even if they
# all are zero; but if all are zero, they will be stripped out from
# the MIDI file by the new strip-empty-mutes functionality (a build
# option). This is less confusing to the user, who expects that
# section to be intact.
1024 # group mute count
0 [1 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
1 [1 0 0 0 1 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
2 [1 0 0 0 1 0 0 0] [1 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
3 [1 0 0 0 1 0 0 0] [1 0 0 0 1 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
4 [1 0 0 0 1 0 0 0] [1 0 0 0 1 0 0 0] [1 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
5 [1 0 0 0 1 0 0 0] [1 0 0 0 1 0 0 0] [1 0 0 0 1 0 0 0] [0 0 0 0 0 0 0 0]
6 [1 0 0 0 1 0 0 0] [1 0 0 0 1 0 0 0] [1 0 0 0 1 0 0 0] [1 0 0 0 0 0 0 0]
7 [1 0 0 0 1 0 0 0] [1 0 0 0 1 0 0 0] [1 0 0 0 1 0 0 0] [1 0 0 0 1 0 0 0]
8 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
9 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
10 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
11 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
12 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
13 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
14 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
15 [0 1 0 0 0 1 0 0] [0 1 0 0 0 1 0 0] [0 1 0 0 0 1 0 0] [0 1 0 0 0 1 0 0]
16 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
17 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
18 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
19 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
20 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
21 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
22 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
23 [0 0 1 0 0 0 1 0] [0 0 1 0 0 0 1 0] [0 0 1 0 0 0 1 0] [0 0 1 0 0 0 1 0]
24 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
25 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
26 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
27 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
28 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
29 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
30 [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0] [0 0 0 0 0 0 0 0]
31 [0 0 0 1 0 0 0 1] [0 0 0 1 0 0 0 1] [0 0 0 1 0 0 0 1] [0 0 0 1 0 0 0 1]
# Handling of mute-groups. If set to 0, a legacy value, then
# any mute-groups read from the MIDI file (whether modified or
# not) are saved to the 'rc' file as well. If set to 1, the
# 'rc' mute-groups are overwritten only if they were not read
# from the MIDI file.
1 # preserve 'rc' mute-groups from MIDI mute groups
[midi-clock]
# The first line indicates the number of MIDI busses defined.
# Each buss line contains the buss (re 0) and the clock status of
# that buss. 0 = MIDI Clock is off; 1 = MIDI Clock on, and Song
# Position and MIDI Continue will be sent, if needed; 2 = MIDI
# Clock Modulo, where MIDI clocking will not begin until the song
# position reaches the start modulo value [midi-clock-mod-ticks].
# A value of -1 indicates that the output port is totally
# disabled. One can set this value manually for devices that are
# present, but not available, perhaps because another application
# has exclusive access to the device (e.g. on Windows).
16 # number of MIDI clocks/busses
# Output buss name: [0] 0:0 seq64 midi out 0 1
0 1 # buss number, clock status
# Output buss name: [1] 1:1 seq64 midi out 1 2
1 0 # buss number, clock status
# Output buss name: [2] 2:2 seq64 midi out 2 3
2 0 # buss number, clock status
# Output buss name: [3] 3:3 seq64 midi out 3 4
3 0 # buss number, clock status
# Output buss name: [4] 4:4 seq64 midi out 4 5
4 0 # buss number, clock status
# Output buss name: [5] 5:5 seq64 midi out 5 6
5 0 # buss number, clock status
# Output buss name: [6] 6:6 seq64 midi out 6 7
6 0 # buss number, clock status
# Output buss name: [7] 7:7 seq64 midi out 7 8
7 0 # buss number, clock status
# Output buss name: [8] 8:8 seq64 midi out 8 9
8 0 # buss number, clock status
# Output buss name: [9] 9:9 seq64 midi out 9 10
9 0 # buss number, clock status
# Output buss name: [10] 10:10 seq64 midi out 10 11
10 0 # buss number, clock status
# Output buss name: [11] 11:11 seq64 midi out 11 12
11 0 # buss number, clock status
# Output buss name: [12] 12:12 seq64 midi out 12 13
12 0 # buss number, clock status
# Output buss name: [13] 13:13 seq64 midi out 13 14
13 0 # buss number, clock status
# Output buss name: [14] 14:14 seq64 midi out 14 15
14 0 # buss number, clock status
# Output buss name: [15] 15:15 seq64 midi out 15 16
15 0 # buss number, clock status
[midi-clock-mod-ticks]
# The Song Position (in 16th notes) at which clocking will begin
# if the buss is set to MIDI Clock mod setting.
64
[midi-meta-events]
# This section defines some features of MIDI meta-event handling.
# Normally, tempo events are supposed to occur in the first track
# (pattern 0). But one can move this track elsewhere to accomodate
# one's existing body of tunes. If affects where tempo events are
# recorded. The default value is 0, the maximum is 1023.
# A pattern must exist at this number for it to work.
0 # tempo_track_number
[midi-input]
1 # number of input MIDI busses
# The first number is the port number, and the second number
# indicates whether it is disabled (0), or enabled (1).
# Input buss name: [0] 0:0 seq64 midi in 0 0
0 1 # buss number, input status
# If set to 1, this option allows the master MIDI bus to record
# (filter) incoming MIDI data by channel, allocating each incoming
# MIDI event to the sequence that is set to that channel.
# This is an option adopted from the Seq32 project at GitHub.
1 # flag to record incoming data by channel
[manual-alsa-ports]
# Set to 1 to have sequencer64 create its own ALSA ports and not
# connect to other clients. Use 1 to expose all 16 MIDI ports to
# JACK (e.g. via a2jmidid). Use 0 to access the ALSA MIDI ports
# already running on one's computer, or to use the autoconnect
# feature (Sequencer64 connects to existing JACK ports on startup.
1 # flag for manual ALSA ports
[reveal-alsa-ports]
# Set to 1 to have sequencer64 ignore any system port names
# declared in the 'user' configuration file. Use this option if
# you want to be able to see the port names as detected by ALSA.
0 # flag for reveal ALSA ports
[interaction-method]
# Sets the mouse handling style for drawing and editing a pattern
# This feature is current NOT supported in the Qt version of
# Sequencer64 (qpseq64).
# 0 - 'seq24' (original seq24 method)
# 1 - 'fruity' (similar to a certain fruity sequencer we like)
0 # interaction_method
# Set to 1 to allow Sequencer64 to stay in note-adding mode when
# the right-click is released while holding the Mod4 (Super or
# Windows) key.
0 # allow_mod4_mode
# Set to 1 to allow Sequencer64 to split performance editor
# triggers at the closest snap position, instead of splitting the
# trigger exactly in its middle. Remember that the split is
# activated by a middle click.
0 # allow_snap_split
# Set to 1 to allow a double-click on a slot to bring it up in
# the pattern editor. This is the default. Set it to 0 if
# it interferes with muting/unmuting a pattern.
1 # allow_click_edit
[keyboard-control]
# Defines the keys that toggle the state of each of up to 32
# patterns in the pattern/sequence window. These keys are normally
# shown in each box. The first number below specifies the key
# code, and the second number specifies the pattern number.
32 # number of keys
# Key-No. Sequence-No. Key-Name
44 31 # comma
49 0 # 1
50 4 # 2
51 8 # 3
52 12 # 4
53 16 # 5
54 20 # 6
55 24 # 7
56 28 # 8
97 2 # a
98 19 # b
99 11 # c
100 10 # d
101 9 # e
102 14 # f
103 18 # g
104 22 # h
105 29 # i
106 26 # j
107 30 # k
109 27 # m
110 23 # n
113 1 # q
114 13 # r
115 6 # s
116 17 # t
117 25 # u
118 15 # v
119 5 # w
120 7 # x
121 21 # y
122 3 # z
[keyboard-group]
# This section actually defines the mute-group keys for the group
# learn function. Pressing the 'L' button and then pressing one
# of the keys in this list will cause the current set of armed
# patterns to be memorized and associated with that key.
32 # number of group-learn keys (key groups)
# Key # group # Key name
33 0 # exclam
35 2 # numbersign
36 3 # dollar
37 4 # percent
38 6 # ampersand
42 7 # asterisk
60 31 # less
64 1 # at
65 16 # A
66 28 # B
67 26 # C
68 18 # D
69 10 # E
70 19 # F
71 20 # G
72 21 # H
73 15 # I
74 22 # J
75 23 # K
77 30 # M
78 29 # N
81 8 # Q
82 11 # R
83 17 # S
84 12 # T
85 14 # U
86 27 # V
87 9 # W
88 25 # X
89 13 # Y
90 24 # Z
94 5 # asciicircum
# bpm up and bpm down:
39 59 # apostrophe semicolon
# screen set up, screen set down, play:
93 91 65360 # bracketright bracketleft Home
# group on, group off, group learn:
96 39 65379 # grave apostrophe Insert
# replace, queue, snapshot_1, snapshot 2, keep queue:
65507 65508 65513 65514 92 # Control_L Control_R Alt_L Alt_R backslash
1 # show_ui_sequence_key and seq measures (1 = true / 0 = false)
32 # space start sequencer
65307 # Escape stop sequencer
46 # period pause sequencer
0 # show sequence numbers (1 = true / 0 = false); ignored in legacy mode
61 # equal is the shortcut key to bring up the pattern editor
45 # minus is the shortcut key to bring up the event editor
47 # slash shifts the hot-key so that it toggles pattern + 32
[extended-keys]
# The user interface for this section is Options / Ext Keys.
65470 # F1 handles the Song/Live mode
65471 # F2 handles the JACK mode
65472 # F3 handles the menu mode
65473 # F4 handles the following of JACK transport
65475 # F6 handles the Fast-Forward function
65474 # F5 handles Rewind function
65476 # F7 handles song pointer-position function
65478 # F9 emulates clicking the Tap (BPM) button
65477 # F8 handles the toggling-all-pattern-mutes function
0 # toggles the song-record function
0 # toggles the one-shot queue function
[jack-transport]
# jack_transport - Enable slave synchronization with JACK Transport.
# Also contains the new flag to use JACK MIDI.
0 # with_jack_transport
# jack_master - Sequencer64 attempts to serve as JACK Master.
# Also must enable jack_transport (the user interface forces this,
# and also disables jack_master_cond).
0 # with_jack_master
# jack_master_cond - Sequencer64 is JACK master if no other JACK
# master exists. Also must enable jack_transport (the user interface
# forces this, and disables jack_master).
0 # with_jack_master_cond
# song_start_mode (applies mainly if JACK is enabled).
# 0 = Playback in live mode. Allows muting and unmuting of loops.
# from the main (patterns) window. Disables both manual and
# automatic muting and unmuting from the performance window.
# 1 = Playback uses the song (performance) editor's data and mute
# controls, regardless of which window was used to start the
# playback.
0 # song_start_mode
# jack_midi - Enable JACK MIDI, which is a separate option from
# JACK Transport.
0 # with_jack_midi
[lash-session]
# Set the following value to 0 to disable LASH session management.
# Set the following value to 1 to enable LASH session management.
# This value will have no effect if LASH support is not built into
# the application. Use --help option to see if LASH is part of
# the options list.
0 # LASH session management support flag
[auto-option-save]
# Set the following value to 0 to disable the automatic saving of the
# current configuration to the 'rc' and 'user' files. Set it to 1 to
# follow legacy seq24 behavior of saving the configuration at exit.
# Note that, if auto-save is set, many of the command-line settings,
# such as the JACK/ALSA settings, are then saved to the configuration,
# which can confuse one at first. Also note that one currently needs
# this option set to 1 to save the configuration, as there is not a
# user-interface control for it at present.
1 # auto-save-options-on-exit support flag
[last-used-dir]
# Last-used and currently-active directory:
/home
[recent-files]
# Holds a list of the last few recently-loaded MIDI files.
3
[playlist]
# Provides a configured play-list and a flag to activate it.
0 # playlist_active, 1 = active, 0 = do not use it
# Provides the name of a play-list. If there is none, use '""'.
# Or set the flag above to 0.
""
# End of /home/user/.config/sequencer64/sequencer64.rc
#
# vim: sw=4 ts=4 wm=4 et ft=sh