-
Notifications
You must be signed in to change notification settings - Fork 0
/
sequencer.js
366 lines (320 loc) · 7.64 KB
/
sequencer.js
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
'use strict';
var midiConnector = require('midi-launchpad').connect(1) // change this to your midi port n
var file = require('fs')
var midi = require('midi')
var output = new midi.output()
output.getPortCount()
output.getPortName(0)
output.openVirtualPort('Path Sequencer') // this is only for linux & mac
// on app close
// output.closePort();
var lp = null;
var Seq = null;
var btnconf = null;
var time = function()
{
return new Date().getTime()
}
// todo add the colors to the btnconf.json as well
var loadButtonConfig = function()
{
try {
var conf = file.readFileSync('btnconf.json').toString();
btnconf = JSON.parse(conf)
} catch(e)
{
// file not present or bad format, exit
console.log('configuration file btnconf.json file is missing or is badly formatted, exiting')
console.log(e)
process.exit(1)
}
}
// main app call
var main = function(launchpad)
{
loadButtonConfig()
lp = launchpad
Seq = new Sequencer();
Seq.main()
}
// one Sequencer
// the Sequencer hasMany Sequences
// Sequence hasMany Notes
// Notes have duration, end time and a Button
// Button has Functions
class Sequencer
{
constructor()
{
this.sequences = []
console.log(['this.sequences', this.sequences])
this.recording = false
}
main()
{
// boot the buttons
this.buttons = [];
for (var i = 0; i < 9; i++) {
for (var j = 0; j < 9; j++) {
var id = ('' + i + '' + j + '')
this.buttons[id] = new Button(id, lp.getButton(i,j));
}
}
}
play(){}
lastSequence()
{
return this.sequences[this.sequences.length-1]
}
playLastSequence()
{
this.lastSequence().play()
}
stop()
{
debug('stopping last sequence')
this.lastSequence().stop = true
this.sequences.pop()
// console.log(this.lastSequence())
// this.lastSequence().stop()
}
tapTempo(){}
record()
{
this.sequences.push(new Sequence())
if (!this.recording) {
this.recording = true
} else {
this.recording = false
}
}
press(btn)
{
if (!this.recording) {
return
}
if (this.lastSequence().isFirstNote(btn)) {
this.playLastSequence()
}
this.lastSequence().addBegin(btn)
}
release(btn)
{
if (!this.recording) {
return
}
this.lastSequence().addEnd(btn)
}
}
class Sequence
{
constructor()
{
this.stop = false
this.notes = []
this.recordingNote = null
this.currentNote = 0
}
addBegin(btn)
{
if (this.recordingNote !== null) {
this.recordingNote.len = (time() - this.recordingNote.len);
this.notes.push(this.recordingNote)
}
this.recordingNote = new Note(btn)
this.recordingNote.len = this.recordingNote.stime = time()
}
addEnd(btn)
{
this.recordingNote.etime = (time() - this.recordingNote.stime)
}
isFirstNote(btn)
{
if (!this.notes.length) {
return false
}
if (btn.id === this.notes[0].btn.id) {
return true
}
return false
}
clear(){}
mute(){}
redouble(){}
stop()
{
this.stop = true
}
play()
{
if (this.stop) {
return
}
if (this.currentNote >= this.notes.length) {
this.currentNote = 0
}
var curNote = this.notes[this.currentNote]
var curButton = curNote.btn
curButton.actionFromSeq(true)
setTimeout(function(btn){
btn.actionFromSeq(false)
}, curNote.etime, curButton)
setTimeout(function(parent){
parent.play()
}, curNote.len, this)
this.currentNote++
}
}
class Note
{
constructor(btn)
{
this.btn = btn
this.len = 0 // total note len
this.stime = 0
this.etime = 0 // pressed duration
}
}
class Button
{
constructor(id, btn)
{
// construct
this.id = id
this.specialColor = lp.colors.red.low
this.specialColorOn = false
var parent = this
this.btn = btn
this.btn.on('press', function(){
parent.action(true);
});
this.btn.on('release', function(){
parent.action(false);
});
}
action(por)
{
if (!this.btn.special) {
if (por) {
this.btn.light(lp.colors.red.high)
} else {
this.btn.light(lp.colors.off)
}
return this.actionToNote(por, this.btn.toNote());
}
if (this.btn.special == 'up,page') {
return this.actionRecord(por)
}
if (this.btn.special == 'down,page') {
return this.actionPlay(por)
}
if (this.btn.special == 'left,page') {
return this.actionStop(por)
}
}
actionFromSeq(por)
{
if (por) {
output.sendMessage([144, this.btn.toNote(), 127]);
this.btn.light(lp.colors.red.high)
} else {
output.sendMessage([128, this.btn.toNote(), 40]);
this.btn.light(lp.colors.off)
}
// console.log(this.btn.toNote())
}
actionToNote(por, note)
{
if (por) {
Seq.press(this)
} else {
Seq.release(this)
}
//
// todo send midi signal here
// console.log(note)
}
actionPlay(por)
{
Seq.play(por)
}
actionStop(por)
{
Seq.stop(por)
}
actionRecord(por)
{
if (!por) {
return; // this button ignores release
}
if (this.specialColorOn) {
this.specialColorOn = false
this.btn.light(lp.colors.off)
} else {
debug('recording')
this.specialColorOn = true
this.btn.light(this.specialColor)
}
Seq.record()
}
}
midiConnector.on("ready", function(launchpad) {
console.log("the hardware is ready")
main(launchpad)
});
var debugLevel = 1
var debug = function(w)
{
if (!debugLevel) {
return
}
console.log(w)
}
var debugButton = function(btn)
{
if (!debugLevel) {
return
}
console.log(
"Pressed: "+
"x:" +btn.x +", "+
"y:" +btn.y +", "+
"state:" +btn.getState() +", "+
"special:" +btn.special
);
}
/*
Pressed: x:0, y:0, state:1, special:false
Released: x:0, y:0, state:0, special:false
Pressed: x:7, y:7, state:1, special:false
Pressed: x:7, y:7, state:0, special:false
Pressed: x:0, y:8, state:1, special:up,page
Pressed: x:1, y:8, state:1, special:down,page
Pressed: x:2, y:8, state:1, special:left,page
Pressed: x:3, y:8, state:1, special:right,page
Pressed: x:4, y:8, state:1, special:session,inst
Pressed: x:5, y:8, state:1, special:user 1,fx
Pressed: x:6, y:8, state:1, special:user 2,user
Pressed: x:7, y:8, state:1, special:mixer,mixer
Pressed: x:8, y:0, state:1, special:right,vol
Pressed: x:8, y:1, state:1, special:right,pan
Pressed: x:8, y:2, state:1, special:right,snd A
Pressed: x:8, y:3, state:1, special:right,snd B
Pressed: x:8, y:4, state:1, special:right,stop
Pressed: x:8, y:5, state:1, special:right,trk on
Pressed: x:8, y:6, state:1, special:right,solo
Pressed: x:8, y:7, state:1, special:right,arm
*/
/*
basic layout per btnconf.json:
8 sequences + {arm the sequence, deselect any sequence}
x * * * * * * * * y
n 2 3 4 5 6 7 8 * {fn-play-stop: fn+x play/stop x}
1 n 3 4 5 6 7 8 * {fn-mute: fn+x = mute sequence, fn+n = mute n } // mute color yellow
1 2 n 4 5 6 7 8 * {fn-clear: fn+x = clear sequence, fn+n = clear n}
1 2 3 n 5 6 7 8 *
1 2 3 4 n 6 7 8 *
1 2 3 4 5 n 7 8 *
1 2 3 4 5 6 n 8 * {fn-redoubles: fn+n = select, }
1 2 3 4 5 6 7 n * {tempo blink tappable}
*/