-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmusic.js
444 lines (354 loc) · 9.23 KB
/
music.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
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
/*****************************************************************************
*
* This file is part of the MusicToy project. The project is
* distributed at:
* https://github.com/maximecb/MusicToy
*
* Copyright (c) 2012, Maxime Chevalier-Boisvert. All rights reserved.
*
* This software is licensed under the following license (Modified BSD
* License):
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*****************************************************************************/
//============================================================================
// Note representation
//============================================================================
/**
Number of MIDI notes
*/
var NUM_NOTES = 128;
/**
Number of notes per octave
*/
var NOTES_PER_OCTAVE = 12;
/**
Number of cents per octave
*/
var CENTS_PER_OCTAVE = 1200;
/**
Frequency of the A4 note
*/
var A4_NOTE_FREQ = 440;
/**
Note number of the A4 note
*/
var A4_NOTE_NO = 69;
/**
Note number of the C4 note
*/
var C4_NOTE_NO = 71;
/**
Mapping from note names to pitch classes
*/
var NOTE_NAME_PC = {
'C' : 0,
'C#': 1,
'D' : 2,
'D#': 3,
'E' : 4,
'F' : 5,
'F#': 6,
'G' : 7,
'G#': 8,
'A' : 9,
'A#': 10,
'B' : 11
};
/**
Mapping from pitch classes to note names
*/
var PC_NOTE_NAME = {
0 : 'C',
1 : 'C#',
2 : 'D',
3 : 'D#',
4 : 'E',
5 : 'F',
6 : 'F#',
7 : 'G',
8 : 'G#',
9 : 'A',
10 : 'A#',
11 : 'B'
};
/**
@class Represents note values.
Midi note numbers go from 0 to 127.
A4 is tuned to 440Hz, and corresponds to midi note 69.
F(n) = 440 * (2^(1/12))^(n - 69)
= 440 * 2 ^ ((n-69)/12)
*/
function Note(val)
{
// If we got a note name, convert it to a note number
if (typeof val === 'string')
val = Note.nameToNo(val);
assert (
typeof val === 'number',
'invalid note number'
);
if (Note.notesByNo[val] !== undefined)
return Note.notesByNo[val];
// Create a note object
var note = Object.create(Note.prototype);
note.noteNo = val;
// Store the note object in the note table
Note.notesByNo[val] = note;
return note;
}
/**
Array of note numbers to note objects
*/
Note.notesByNo = [];
/**
Get the note number for a note name
*/
Note.nameToNo = function (name)
{
// Use a regular expression to parse the name
var matches = name.match(/([A-G]#?)([0-9])/i);
assert (
matches !== null,
'invalid note name: "' + name + '"'
);
var namePart = matches[1];
var numPart = matches[2];
var pc = NOTE_NAME_PC[namePart];
assert (
typeof pc === 'number',
'invalid note name: ' + namePart
);
var octNo = parseInt(numPart);
// Compute the note number
var noteNo = (octNo + 1) * NOTES_PER_OCTAVE + pc;
assert (
noteNo >= 0 || noteNo < NUM_NOTES,
'note parsing failed'
);
return noteNo;
}
/**
Sorting function for note objects
*/
Note.sortFn = function (n1, n2)
{
return n1.noteNo - n2.noteNo;
}
/**
Get the pitch class
*/
Note.prototype.getPC = function ()
{
return this.noteNo % NOTES_PER_OCTAVE;
}
/**
Get the octave number
*/
Note.prototype.getOctNo = function ()
{
return Math.floor(this.noteNo / NOTES_PER_OCTAVE) - 1;
}
/**
Get the name for a note
*/
Note.prototype.getName = function ()
{
// Compute the octave number of the note
var octNo = this.getOctNo();
// Get the pitch class for this note
var pc = this.getPC();
var name = PC_NOTE_NAME[pc];
// Add the octave number to the note name
name += String(octNo);
return name;
}
/**
The string representation of a note is its name
*/
Note.prototype.toString = Note.prototype.getName;
/**
Get the frequency for a note
@param offset detuning offset in cents
*/
Note.prototype.getFreq = function (offset)
{
if (offset === undefined)
offset = 0;
// F(n) = 440 * 2 ^ ((n-69)/12)
var noteExp = (this.noteNo - A4_NOTE_NO) / NOTES_PER_OCTAVE;
// b = a * 2 ^ (o / 1200)
var offsetExp = offset / CENTS_PER_OCTAVE;
// Compute the note frequency
return A4_NOTE_FREQ * Math.pow(
2,
noteExp + offsetExp
);
}
/**
Offset a note by a number of semitones
*/
Note.prototype.offset = function (numSemis)
{
var offNo = this.noteNo + numSemis;
assert (
offNo >= 0 && offNo < NUM_NOTES,
'invalid note number after offset'
);
return new Note(offNo);
}
/**
Shift a note to higher or lower octaves
*/
Note.prototype.shift = function (numOcts)
{
return this.offset(numOcts * NOTES_PER_OCTAVE);
}
/**
Interval consonance table
*/
var intervCons = {
0 : 3, // Unison
1 : -3, // Minor second
2 : -1, // Major second
3 : 3, // Minor third
4 : 3, // Major third
5 : 1, // Perfect fourth
6 : -1, // Tritone
7 : 3, // Perfect fifth
8 : 1, // Minor sixth
9 : 2, // Major sixth
10: -1, // Minor seventh
11: -2 // Major seventh
};
/**
Consonance rating function for two notes
*/
function consonance(n1, n2)
{
var no1 = n1.noteNo;
var no2 = n2.noteNo;
var diff = Math.max(no1 - no2, no2 - no1);
// Compute the simple interval between the two notes
var interv = diff % 12;
return intervCons[interv];
}
//============================================================================
// Scale and chord generation
//============================================================================
/**
Semitone intervals for different scales
*/
var scaleIntervs = {
// Major scale
'major': [2, 2, 1, 2, 2, 2],
// Natural minor scale
'natural minor': [2, 1, 2, 2, 1, 2],
// Major pentatonic scale
'major pentatonic': [2, 2, 3, 2],
// Minor pentatonic scale
'minor pentatonic': [3, 2, 2, 3],
// Blues scale
'blues': [3, 2, 1, 1, 3],
// Chromatic scale
'chromatic': [1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
};
/**
Generate the notes of a scale based on a root note
*/
function genScale(rootNote, scale, numOctaves)
{
if ((rootNote instanceof Note) === false)
rootNote = new Note(rootNote);
if (numOctaves === undefined)
numOctaves = 1;
// Get the intervals for this type of chord
var intervs = scaleIntervs[scale];
assert (
intervs instanceof Array,
'invalid scale name: ' + scale
);
// List of generated notes
var notes = [];
// For each octave
for (var octNo = 0; octNo < numOctaves; ++octNo)
{
var octRoot = rootNote.shift(octNo);
// Add the root note to the scale
notes.push(octRoot);
// Add the scale notes
for (var i = 0; i < intervs.length; ++i)
{
var prevNote = notes[notes.length-1];
var interv = intervs[i];
notes.push(prevNote.offset(interv));
}
}
// Add the note closing the last octave
notes.push(rootNote.shift(numOctaves));
return notes;
}
/**
Semitone intervals for different kinds of chords
*/
var chordIntervs = {
// Major chord
'maj': [0, 4, 7],
// Minor chord
'min': [0, 3, 7],
// Diminished chord
'dim': [0, 3, 6],
// Major 7th
'maj7': [0, 4, 7, 11],
// Minor 7th
'min7': [0, 3, 7, 10],
// Diminished 7th chord
'dim7': [0, 3, 6, 9],
// Dominant 7th
'7': [0, 4, 7, 10],
// Suspended 4th
'sus4': [0, 5, 7],
// Suspended second
'sus2': [0, 2, 7]
};
/**
Generate a list of notes for a chord
*/
function genChord(rootNote, type)
{
if ((rootNote instanceof Note) === false)
rootNote = new Note(rootNote);
// Get the intervals for this type of chord
var intervs = chordIntervs[type];
assert (
intervs instanceof Array,
'invalid chord type: ' + type
);
// Get the root note number
var rootNo = rootNote.noteNo;
// Compute the note numbers for the notes
var notes = intervs.map(function (i) { return new Note(rootNo + i); });
return notes;
}