wave.js
37.5 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
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
var global = typeof global !== 'undefined' ? global : window;
global.edide = {};
"use strict";edide.global = (function _global (edide) {
return typeof global !== 'undefined' ? global : window;
return this;
}).call({}, edide);
"use strict";edide.editorModule = (function _editorModule (edide) {
var ref;
return typeof file !== "undefined" && file !== null ? (ref = file.modules) != null ? ref.all : void 0 : void 0;
return this;
}).call({}, edide);
"use strict";edide.logProd = (function _logProd (edide) {
return (...args) => {
var console, ref;
({console} = (ref = edide.editorModule) != null ? ref : window);
return console.log(...args);
};
return this;
}).call({}, edide);
"use strict";edide.var = (function _var (edide) {
var currentReact, debugging, dependees, dependsOn, depsRequired, inInitCall, infinityCheck, initSetter, newVar, parent, setLinks, setters, updateVar, values;
values = new Map; // //edide.keep ?
setters = new Map; // varName => setter:func
dependees = new Map; // varName => deps:
setLinks = new Map; // for reactiveGraph, show setters inside reactive/setter:s
debugging = false; //edide.editorModule?
depsRequired = new Map; // varName : dependsOn
inInitCall = false; // TODO use dependsOn? instead
dependsOn = new Set(); // remove
initSetter = (name, setter) => {
var debugName, err, parent, ref, val;
debugName = (ref = setter.type) != null ? ref : name;
if ((setters.get(name)) != null) {
throw Error(`Reactive for '${debugName}' already exists`);
}
setters.set(name, setter);
if (inInitCall) {
throw Error(`can't create reactive setter (for '${debugName}') inside reactive context`);
}
inInitCall = name;
dependsOn.clear(); // TODO clear => new Set
try {
val = setter(); // TODO: some day add revar and unvar as params; helps with multiple reactives to keep the separated
} catch (error) {
err = error;
inInitCall = false;
err.message = `Reactive initialization of '${debugName}' failed: ${err.message}`;
throw err;
}
parent = null;
dependsOn.forEach((depName) => {
var deps;
if ((deps = dependees.get(depName)) == null) {
dependees.set(depName, deps = new Set);
}
return deps.add(name);
});
inInitCall = false;
return val;
};
infinityCheck = new Set; //edide.keep
parent = null;
updateVar = function(name, val) {
var ref, ref1, type;
if (arguments.length === 1) {
val = setters.get(name)();
if (debugging && (type = setters.get(name).type)) {
edide.logProd(`running ${(setters.get(name).type)}`);
}
}
if (typeof name !== 'string') { // symbol ~ react function
return;
}
if (values.get(name) === val) { // can't reset same value
return;
}
if (infinityCheck.has(name)) {
infinityCheck.forEach((k) => {
return edide.logProd(k);
});
edide.logProd(name);
if ((ref = edide.editorModule) != null) {
if (typeof ref.reactiveGraph === "function") {
ref.reactiveGraph();
}
}
throw Error("Inifinite loop in \:var dependencies");
}
if (debugging) {
edide.logProd(`updating ${name}`);
}
values.set(name, val);
if (!inInitCall) {
infinityCheck.add(name);
if ((ref1 = dependees.get(name)) != null) {
ref1.forEach((depName) => {
return updateVar(depName);
});
}
infinityCheck.delete(name);
}
return val;
};
currentReact = [];
newVar = function(name, setter) {
var context, contextSet, err;
if (arguments.length === 1) {
if (typeof name === 'string') {
if (inInitCall) {
dependsOn.add(name);
}
return values.get(name);
} else {
setter = name;
name = Symbol();
values.set(name, name); // for debugging (showing react/dom funcs in graph)
}
}
if (currentReact.length) { // and debugging
context = currentReact[currentReact.length - 1];
if (!(contextSet = setLinks.get(context))) {
setLinks.set(context, contextSet = new Set);
}
contextSet.add(name);
}
currentReact.push(name);
if (typeof setter === 'function') {
setter = initSetter(name, setter); // setter becomes value
}
if (typeof name === 'string') {
try {
updateVar(name, setter);
} catch (error) {
err = error;
infinityCheck.clear();
throw err;
}
}
currentReact.pop();
return setter;
};
Object.assign(newVar, {dependees, values, setters, setLinks});
return newVar;
return this;
}).call({}, edide);
"use strict";edide.strRandom = (function _strRandom (edide) {
return (limit = 20) => {
return (Math.random() + '').slice(2, +(limit + 1) + 1 || 9e9);
};
return this;
}).call({}, edide);
"use strict";edide.reactive = (function _reactive (edide) {
return (initialVars = {}) => {
var handler, id, key, react, revar, todoMap, unvar, val;
id = edide.strRandom();
handler = {
get: (map, prop) => {
var ref;
if ((ref = edide.editorModule) != null ? ref.editor_inspector.inspectingNow : void 0) {
console.log('IN inspector? Find out is it possible to end up here form inside setter');
return edide.var.values.get(`${id}.${prop}`);
}
return edide.var(`${id}.${prop}`);
},
set: (map, prop, value) => {
edide.var(`${id}.${prop}`, value);
return true; // Proxy set must return true if set is successfull; In the future use Reflect.set, which returns true automatically?
}
};
revar = new Proxy((todoMap = new Map), handler); // NOTE: map is not used yet
unvar = new Proxy(todoMap, {
get: (map, prop) => {
return edide.var.values.get(`${id}.${prop}`);
},
set: (map, prop, value) => {
return edide.var.values.set(`${id}.${prop}`, value);
}
});
for (key in initialVars) {
val = initialVars[key];
revar[key] = val;
}
react = (nameOrFunc, func) => {
if (func != null) {
func.type = nameOrFunc;
} else {
func = nameOrFunc;
func.type = 'react'; // for debugging
}
return edide.var(func);
};
return {
react,
revar,
unvar,
un: unvar,
re: revar // , dom
};
};
return this;
}).call({}, edide);
"use strict";edide.mmState = (function _mmState (edide) {Object.defineProperty(this, 'module_name', {value:'mmState'});
this.defaults = {
playing: false,
recorderOn: false,
sheet: '',
diffText: '',
note: null, // currently playing note
bpm: 400, // -> beatDelay
blur: 0,
itch: 0,
instrument: 'guitar-electric',
scale: 'pentatonicMinor',
highlight: null,
keyboardInd: 0 // TODO --> keyboard
};
this.react = null;
this.init = (startingProps = {}) => {
if (this.react != null) {
return this;
}
({react: this.react, revar: this.revar, unvar: this.unvar} = edide.reactive(Object.assign({}, this.defaults, startingProps)));
return this;
};
return this;
}).call({}, edide);
"use strict";edide.mmEffects = (function _mmEffects (edide) {Object.defineProperty(this, 'module_name', {value:'mmEffects'});
({revar: this.revar} = edide.mmState.init());
this.maxLowpass = 10000;
this.maxDistortion = 3;
this.revar.lowpass = () => {
var blur;
({blur} = this.revar);
return this.maxLowpass - blur * (this.maxLowpass - 200);
};
this.revar.distortion = () => {
var itch;
({itch} = this.revar);
return this.maxDistortion * itch;
};
return this;
}).call({}, edide);
"use strict";edide.musicScales = (function _musicScales (edide) {Object.defineProperty(this, 'module_name', {value:'musicScales'});
this.full = ['C', 'C#', 'D', 'D#', 'E', 'F', 'F#', 'G', 'G#', 'A', 'A#', 'B'];
this.scaleSteps = {
pentatonicMinor: [
0,
3,
2,
2,
3 // hidden 2
],
naturalMajor: [
0,
2,
2,
1,
2,
2,
2 // hidden to beginning: 1
],
naturalMinor: [
0,
2,
1,
2,
2,
1,
2 // hidden to beginning: 2
]
};
this.triadSteps = {
major: [
0,
4,
3 // positive valence
],
minor: [0, 3, 4]
};
this.triadCombinations = {
protagonism: 'M2M',
outerSpace: 'M6M',
fantastical: 'M8M',
sadness: 'M4m',
romantic: 'M5m', // and middle eastern
wonder: 'm5M', // and trancendence
mystery: 'm2M', // and dark comedy
dramatic: 'm11M',
antagonismDanger: 'm6m', // less character based
antagonismEvil: 'm8m' // cahracter based
};
return this;
}).call({}, edide);
"use strict";edide.noteFreq = (function _noteFreq (edide) {Object.defineProperty(this, 'module_name', {value:'noteFreq'});
var a4;
this.notes = [['C0', 16.35, 2109.89], ['C#0', 17.32, 1991.47], ['D0', 18.35, 1879.69], ['D#0', 19.45, 1774.20], ['E0', 20.60, 1674.62], ['F0', 21.83, 1580.63], ['F#0', 23.12, 1491.91], ['G0', 24.50, 1408.18], ['G#0', 25.96, 1329.14], ['A0', 27.50, 1254.55], ['A#0', 29.14, 1184.13], ['B0', 30.87, 1117.67], ['C1', 32.70, 1054.94], ['C#1', 34.65, 995.73], ['D1', 36.71, 939.85], ['D#1', 38.89, 887.10], ['E1', 41.20, 837.31], ['F1', 43.65, 790.31], ['F#1', 46.25, 745.96], ['G1', 49.00, 704.09], ['G#1', 51.91, 664.57], ['A1', 55.00, 627.27], ['A#1', 58.27, 592.07], ['B1', 61.74, 558.84], ['C2', 65.41, 527.47], ['C#2', 69.30, 497.87], ['D2', 73.42, 469.92], ['D#2', 77.78, 443.55], ['E2', 82.41, 418.65], ['F2', 87.31, 395.16], ['F#2', 92.50, 372.98], ['G2', 98.00, 352.04], ['G#2', 103.83, 332.29], ['A2', 110.00, 313.64], ['A#2', 116.54, 296.03], ['B2', 123.47, 279.42], ['C3', 130.81, 263.74], ['C#3', 138.59, 248.93], ['D3', 146.83, 234.96], ['D#3', 155.56, 221.77], ['E3', 164.81, 209.33], ['F3', 174.61, 197.58], ['F#3', 185.00, 186.49], ['G3', 196.00, 176.02], ['G#3', 207.65, 166.14], ['A3', 220.00, 156.82], ['A#3', 233.08, 148.02], ['B3', 246.94, 139.71], ['C4', 261.63, 131.87], ['C#4', 277.18, 124.47], ['D4', 293.66, 117.48], ['D#4', 311.13, 110.89], ['E4', 329.63, 104.66], ['F4', 349.23, 98.79], ['F#4', 369.99, 93.24], ['G4', 392.00, 88.01], ['G#4', 415.30, 83.07], ['A4', 440.00, 78.41], ['A#4', 466.16, 74.01], ['B4', 493.88, 69.85], ['C5', 523.25, 65.93], ['C#5', 554.37, 62.23], ['D5', 587.33, 58.74], ['D#5', 622.25, 55.44], ['E5', 659.25, 52.33], ['F5', 698.46, 49.39], ['F#5', 739.99, 46.62], ['G5', 783.99, 44.01], ['G#5', 830.61, 41.54], ['A5', 880.00, 39.20], ['A#5', 932.33, 37.00], ['B5', 987.77, 34.93], ['C6', 1046.50, 32.97], ['C#6', 1108.73, 31.12], ['D6', 1174.66, 29.37], ['D#6', 1244.51, 27.72], ['E6', 1318.51, 26.17], ['F6', 1396.91, 24.70], ['F#6', 1479.98, 23.31], ['G6', 1567.98, 22.00], ['G#6', 1661.22, 20.77], ['A6', 1760.00, 19.60], ['A#6', 1864.66, 18.50], ['B6', 1975.53, 17.46], ['C7', 2093.00, 16.48], ['C#7', 2217.46, 15.56], ['D7', 2349.32, 14.69], ['D#7', 2489.02, 13.86], ['E7', 2637.02, 13.08], ['F7', 2793.83, 12.35], ['F#7', 2959.96, 11.66], ['G7', 3135.96, 11.00], ['G#7', 3322.44, 10.38], ['A7', 3520.00, 9.80], ['A#7', 3729.31, 9.25], ['B7', 3951.07, 8.73], ['C8', 4186.01, 8.24], ['C#8', 4434.92, 7.78], ['D8', 4698.63, 7.34], ['D#8', 4978.03, 6.93], ['E8', 5274.04, 6.54], ['F8', 5587.65, 6.17], ['F#8', 5919.91, 5.83], ['G8', 6271.93, 5.50], ['G#8', 6644.88, 5.19], ['A8', 7040.00, 4.90], ['A#8', 7458.62, 4.63], ['B8', 7902.13, 4.37]];
this.findNote = (name) => {
var ind;
ind = this.notes.findIndex((arr) => {
return arr[0] === name;
});
if (ind === -1) {
return edide.logProd(`can't find: ${name}`);
}
return [ind, name, this.notes[ind][1]];
};
a4 = this.findNote('A4');
this.diffToA4 = (name) => {
var note;
note = this.findNote(name);
return note[0] - a4[0];
};
this.diff = (n1, n2) => {
return this.findNote(n2)[0] - this.findNote(n1)[0];
};
return this;
}).call({}, edide);
"use strict";edide.mathOp = (function _mathOp (edide) {Object.defineProperty(this, 'module_name', {value:'mathOp'});
this.sum = function(a, b) {
return a + b;
};
this.multiply = function(a, b) {
return a * b;
};
return this;
}).call({}, edide);
"use strict";edide.mmKeyboard = (function _mmKeyboard (edide) {Object.defineProperty(this, 'module_name', {value:'mmKeyboard'});
var A, a, char, chari, i, j, len, len1, noncaps, qwertyChar, qwertyRows, revar, row, rowi, space, unvar;
({revar, unvar} = edide.mmState.init());
revar.scaleSteps = () => {
return edide.musicScales.scaleSteps[revar.scale];
};
this.special = {
rest: '.',
long: '=',
comment: '#',
var: ':',
confStart: '{',
confEnd: '}'
};
this.specialKeyCodes = new Set(Object.values(this.special).map((s) => {
return s.charCodeAt(0);
}));
this.specialChars = new Set(Object.values(this.special));
this.isPauseKey = (keyCode) => {
return this.specialKeyCodes.has(keyCode);
};
this.isSpecialChar = (char) => {
return this.specialChars.has(char);
};
this.isPauseChar = this.isSpecialChar; // not really...
this.keyboards = ['qwerty', 'abc'];
a = 'a'.charCodeAt(0);
A = 'A'.charCodeAt(0);
space = ' '.charCodeAt(0);
this.isCaps = (key) => {
return A <= key && key < a;
};
this.capsDiff = a - A;
noncaps = (key) => {
if (this.isCaps(key)) {
return key + this.capsDiff;
} else {
return key;
}
};
this.getNoteInd = (key) => {
var maxInstrumentNoteInd, noteBaseInd, noteInd, notes, startNote, step;
({startNote, notes, step} = revar.instrumentConf);
noteBaseInd = edide.noteFreq.findNote(startNote)[0];
noteInd = this[this.keyboards[revar.keyboardInd]](noncaps(key), noteBaseInd);
maxInstrumentNoteInd = noteBaseInd + notes * step;
while (noteInd > maxInstrumentNoteInd) {
noteInd -= 2 * 12;
}
return noteInd;
};
this.abc = (key, baseInd) => {
var fromLowest, noteInd, stepsFromClosestOctave;
fromLowest = key - a;
stepsFromClosestOctave = fromLowest % revar.scaleSteps.length;
noteInd = 0;
noteInd += revar.scaleSteps.slice(0, +stepsFromClosestOctave + 1 || 9e9).reduce(edide.mathOp.sum);
noteInd += 12 * Math.floor(fromLowest / revar.scaleSteps.length);
return baseInd + noteInd;
};
qwertyRows = ['1234567890', 'qwertyuiop', 'asdfghjkl', 'zxcvbnm'];
qwertyChar = {};
for (rowi = i = 0, len = qwertyRows.length; i < len; rowi = ++i) {
row = qwertyRows[rowi];
for (chari = j = 0, len1 = row.length; j < len1; chari = ++j) {
char = row[chari];
qwertyChar[char.charCodeAt(0)] = [rowi, chari];
}
}
this.qwerty = (key, baseInd) => {
var charSteps, halfSteps, noteInd, octave, rowchar;
if (!(rowchar = qwertyChar[key])) {
return;
}
[row, char] = rowchar;
octave = qwertyRows.length - 1 - row + Math.floor(char / unvar.scaleSteps.length);
char = char % revar.scaleSteps.length;
charSteps = revar.scaleSteps.slice(0, +char + 1 || 9e9).reduce((a, b) => {
return a + b;
});
halfSteps = 12 * octave + charSteps;
return noteInd = baseInd + halfSteps;
};
return this;
}).call({}, edide);
"use strict";edide.mmNote = (function _mmNote (edide) {Object.defineProperty(this, 'module_name', {value:'mmNote'});
this.fromChar = (char) => {
return this.fromKeyCode(char.charCodeAt(0));
};
this.fromKeyCode = (key) => {
var noteInd, ref;
if (typeof (noteInd = edide.mmKeyboard.getNoteInd(key)) === 'number') {
return (ref = edide.noteFreq.notes[noteInd]) != null ? ref[0] : void 0;
}
};
return this;
}).call({}, edide);
"use strict";edide.clone = (function _clone (edide) {
return function(...objects) {
if (Array.isArray(objects[0])) {
return Object.assign([], ...objects);
} else {
return Object.assign({}, ...objects);
}
};
return this;
}).call({}, edide);
"use strict";edide.strParsesToNumber = (function _strParsesToNumber (edide) {
return (str) => {
return !Number.isNaN(parseInt(str));
};
return this;
}).call({}, edide);
"use strict";edide.mmConfigs = (function _mmConfigs (edide) {Object.defineProperty(this, 'module_name', {value:'mmConfigs'});
var defaultVars, mutatingProp, mutatingVars, vars;
vars = {}; // varName: config object
mutatingVars = {};
this.hasVar = (varName) => {
var ref;
return !!((ref = vars[varName]) != null ? ref : mutatingVars[varName]);
};
this.activateVar = (name, value) => {
var configs;
if (value != null) {
configs = edide.clone(mutatingVars[name]);
if (edide.strParsesToNumber(value)) {
value = parseFloat(value);
}
configs[mutatingProp(configs)] = value;
return this.activate(configs);
} else {
return this.activate(vars[name]);
}
};
mutatingProp = (configs) => {
var name, val;
for (name in configs) {
val = configs[name];
if (val === '*') {
return name;
}
}
return false;
};
this.activate = (conf) => {
if (conf.name != null) {
return; // throw warning?
}
return Object.assign(edide.mmState.revar, conf);
};
this.addVar = (varName, config) => { // , activate=true
if (mutatingProp(config)) {
return mutatingVars[varName] = config;
} else {
return vars[varName] = config;
}
};
defaultVars = {
bass: {
"instrument": "bass-electric"
},
cello: {
"instrument": "cello"
},
guitar: {
"instrument": "guitar-acoustic"
},
eguitar: {
"instrument": "guitar-electric"
},
piano: {
"instrument": "piano"
},
synth: {
"instrument": "synth-simple"
},
xylophone: {
"instrument": "xylophone"
},
pentatonic: {
"scale": "pentatonicMinor"
},
major: {
"scale": "naturalMajor"
},
minor: {
"scale": "naturalMinor"
}
};
this.init = () => {
var conf, name, results;
vars = {};
results = [];
for (name in defaultVars) {
conf = defaultVars[name];
results.push(this.addVar(name, conf, false));
}
return results;
};
this.init();
return this;
}).call({}, edide);
"use strict";edide.inEditor = (function _inEditor (edide) {
return typeof window === 'object' &&
typeof window.serverModule === 'object'
return this;
}).call({}, edide);
"use strict";edide.edideNamespace = (function _edideNamespace (edide) {
return 'edide'
return this;
}).call({}, edide);
"use strict";edide.showError = (function _showError (edide) {
var showError;
showError = (err) => {
if (edide.inEditor) {
return edide.editorModule.editor_error.show(err);
} else if (typeof edide.global.require === 'object' && (edide.global[edide.edideNamespace].prodErrorPrinter != null)) {
return edide.global[edide.edideNamespace].prodErrorPrinter.showError(err);
} else {
return console.error(err);
}
};
return (err) => {
var error;
if (err != null ? err.stack : void 0) {
return showError(err); // create error to capture stack trace
} else {
try {
throw Error(err);
} catch (error1) {
error = error1;
return showError(error);
}
}
};
return this;
}).call({}, edide);
"use strict";edide.mmParserSpecial = (function _mmParserSpecial (edide) {Object.defineProperty(this, 'module_name', {value:'mmParserSpecial'});
this.config = (trackStr, ts = {}) => {
var endInd, err, name;
endInd = trackStr.search('}') || trackStr.length;
try {
ts.conf = JSON.parse(trackStr.slice(0, +endInd + 1 || 9e9));
if (ts.conf.name != null) {
({name} = ts.conf);
delete ts.conf.name;
edide.mmConfigs.addVar(name, ts.conf);
} else {
edide.mmConfigs.activate(ts.conf); // add variable if exists
}
} catch (error) {
err = error;
ts.skip = true; // could be used to show error highlighting in editor
edide.showError(err); // remove this if error highlighting implemented
}
return endInd;
};
this.var = (track, trackState) => {
var i, value, varLength, varName, varStr;
({i} = trackState);
varLength = track.slice(i + 1).indexOf(edide.mmKeyboard.special.var);
if (varLength === -1) {
return false;
}
varStr = track.slice(i + 1, +(i + varLength) + 1 || 9e9);
[varName, value] = varStr.split(' ');
if (!edide.mmConfigs.hasVar(varName)) {
return false;
}
edide.mmConfigs.activateVar(varName, value);
trackState.i += varLength + 2;
return true;
};
return this;
}).call({}, edide);
"use strict";edide.onUnload = (function _onUnload (edide) {
var ref, ref1;
return (ref = (ref1 = edide.editorModule) != null ? ref1.unload.add : void 0) != null ? ref : () => {};
return this;
}).call({}, edide);
"use strict";edide.mmPipe = (function _mmPipe (edide) {Object.defineProperty(this, 'module_name', {value:'mmPipe'});
var dist, lowpass, react, revar, reverber, unvar;
({revar, unvar, react} = edide.mmState.init());
dist = lowpass = reverber = null;
this.initPipe = () => {
lowpass = new Tone.Filter(unvar.lowpass, 'lowpass', -12);
dist = new Tone.Distortion(unvar.distortion);
this.output = lowpass;
lowpass.toMaster();
dist.connect(lowpass);
revar.pipeReady = true;
return edide.onUnload(() => {
if (dist != null) {
if (typeof dist.dipose === "function") {
dist.dipose();
}
}
return lowpass != null ? typeof lowpass.dispose === "function" ? lowpass.dispose() : void 0 : void 0;
});
};
this.initInstrument = (instrument) => {
instrument.connect(dist);
edide.onUnload(() => {
return instrument != null ? instrument.disconnect() : void 0;
});
return instrument;
};
react('pipe distortion', () => {
var ref;
revar.distortion;
revar.lowpass;
if (dist != null) {
dist.distortion = revar.distortion;
}
return lowpass != null ? (ref = lowpass.frequency) != null ? ref.linearRampTo(revar.lowpass, 0) : void 0 : void 0;
});
return this;
}).call({}, edide);
"use strict";edide.moduleGate = (function _moduleGate (edide) {Object.defineProperty(this, 'module_name', {value:'moduleGate'});
if (!edide.inEditor) {
return this;
}
this.all = typeof serverModule !== "undefined" && serverModule !== null ? serverModule.modules.all : void 0; // why not just use \:modules.all ?
this.root; // module that is edited in root
this.rootName;
this.active; // module that is currently being edited (can be root or in window)
this.activeName;
this.executing;
this.executingName;
return this;
}).call({}, edide);
"use strict";edide.rejectIfRecompiled = (function _rejectIfRecompiled (edide) {
if (!edide.inEditor) {
return;
}
return (promise) => {
var recompiled, rootModuleFunc, rootName;
({rootName} = edide.moduleGate);
recompiled = false;
edide.editorModule.editor_events.on('before_recompile', () => {
return recompiled = true;
});
rootModuleFunc = edide.editorModule.modules.moduleFunc[rootName];
return promise.then(function(arg) {
if (recompiled || rootName !== edide.moduleGate.rootName) { // root module changed
return Promise.reject(); // quiet rejection; no need to show error
} else {
return arg; // arg get wrapped in promise
}
});
};
return this;
}).call({}, edide);
"use strict";edide.promise = (function _promise (edide) {Object.defineProperty(this, 'module_name', {value:'promise'});
this.new = function(cb) {
if (edide.inEditor) {
return edide.rejectIfRecompiled(new Promise(cb)); // don't fire cb if code has been re-executed in the meantime
} else {
return new Promise(cb); //, edide.editorModule?.editor_error.show
}
};
this.all = function(cbArray) {
if (edide.inEditor) { // check that after resolved, still editing same module
return edide.rejectIfRecompiled(Promise.all(cbArray));
} else {
return Promise.all(cbArray);
}
};
this.resolve = Promise.resolve.bind(Promise);
this.reject = Promise.reject.bind(Promise);
return this;
}).call({}, edide);
"use strict";edide.qs = (function _qs (edide) {
return (selector) => {
return document.querySelector(selector);
};
return this;
}).call({}, edide);
"use strict";edide.scriptContainer = (function _scriptContainer (edide) {
var createContainer, ref;
createContainer = () => {
var s;
s = document.createElement('div');
s.id = 'scripts';
return s;
};
return (ref = edide.qs('#scripts')) != null ? ref : document.body.appendChild(createContainer());
return this;
}).call({}, edide);
"use strict";edide.requireScript = (function _requireScript (edide) {
var base;
if ((base = edide.global).requireScriptPromises == null) {
base.requireScriptPromises = new Map;
}
return (scriptSrc) => {
var promise;
if (promise = requireScriptPromises.get(scriptSrc)) {
return promise;
} else {
requireScriptPromises.set(scriptSrc, promise = edide.promise.new((resolve) => {
var el;
console.log('adding promised', scriptSrc);
el = document.createElement('script');
edide.scriptContainer.appendChild(el);
el.onload = resolve; //load_ready
el.type = 'application/javascript';
return el.src = scriptSrc;
}));
return promise.catch((err) => {
edide.showError(err);
return requireScriptPromises.delete(scriptSrc);
});
}
};
return this;
}).call({}, edide);
"use strict";edide.set = (function _set (edide) {
return (...args) => new Set(args)
return this;
}).call({}, edide);
"use strict";edide.membrameSynth = (function _membrameSynth (edide) {Object.defineProperty(this, 'module_name', {value:'membrameSynth'});
this.startNote = 'A0';
this.init = () => {
var bd, compressor, distortion, gain, reverb;
distortion = new Tone.Distortion({
distortion: 0.1,
oversample: "4x" // none, 2x, 4x
});
reverb = new Tone.Freeverb(0.75, 1000);
gain = new Tone.Gain(0.5);
compressor = new Tone.Compressor({
ratio: 12,
threshold: -24,
release: 0.05,
attack: 0.003,
knee: 1
});
bd = new Tone.MembraneSynth({
pitchDecay: 0.05,
octaves: 4,
envelope: {
attack: 0.01,
decay: 0.74,
sustain: 0.71,
release: 0.05,
attackCurve: "exponential"
}
});
bd.chain(gain, distortion, reverb, compressor);
return [bd, compressor];
};
return this;
}).call({}, edide);
"use strict";edide.toneSynth = (function _toneSynth (edide) {Object.defineProperty(this, 'module_name', {value:'toneSynth'});
this.startNote = 'C3';
this.init = () => {
var ss;
return ss = new Tone.PolySynth(12, Tone.Synth, {
oscillator: {
type: 'sine'
},
envelope: {
attack: 0.005,
decay: 0.1,
sustain: 0.3,
release: 1
}
});
};
return this;
}).call({}, edide);
"use strict";edide.instrumentConfigs = (function _instrumentConfigs (edide) {Object.defineProperty(this, 'module_name', {value:'instrumentConfigs'});
var defaultUrl = 'https://nbrosowsky.github.io/tonejs-instruments/samples/'
var { revar, unvar, react } = edide.mmState
var defaultInstrument = 'electric-guitar'
this.initInstrument = async (resolve) => {
await edide.requireScript('https://cdnjs.cloudflare.com/ajax/libs/tone/13.8.9/Tone.js')
edide.mmPipe.initPipe()
}
this.createNew = () => {
var {name} = unvar.instrumentConf
var instrument, endOfPipe
var instrumentConf = this.instruments[name]
if (instrumentConf.module_name) {
var res = instrumentConf.init()
if (Array.isArray(res)) {
instrument = res[0]
endOfPipe = res[1]
} else {
instrument = endOfPipe = res
}
} else {
var noteFiles = buildNotes(instrumentConf)
var inst = new Tone.Sampler(noteFiles, { //edide.instrumentConfigssAll[name]
"release" : 1,
"baseUrl" : instrumentConf.url || defaultUrl + name + '/'
})
inst.soundFontInstrument = true
instrument = endOfPipe = inst //[inst, inst]
}
edide.mmPipe.initInstrument(endOfPipe)
return instrument
}
this.isReady = () => {
var { current } = this
return current && (typeof current.loaded == 'undefined' || current.loaded === true)
}
function buildNotes({startNote, notes, step, skipNotes}) {
var [startInd] = edide.noteFreq.findNote(startNote)
var noteFiles = {}
if (Array.isArray(notes)) {
notes.forEach(note => {
noteFiles[note] = note.replace('#','s') + '.[mp3|ogg]'
})
} else {
for (let i=0; i < notes*step; i+=step) {
let note = edide.noteFreq.notes[startInd + i][0];
if (skipNotes && skipNotes.has(note))
continue
noteFiles[note] = note.replace('#','s') + '.[mp3|ogg]'
}
}
return noteFiles
}
this.instruments = {
'bass-electric': {
startNote: 'C#2',
notes: 8, // 16
step: 3
},
'cello': {
startNote: 'C2',
notes: 11,
step: 2,
skipNotes: edide.set('F#2', 'C4')
},
'drum-electric': edide.membrameSynth,
'guitar-acoustic': {
startNote: 'D1',
notes: 26, // 36
step: 2,
skipNotes: edide.set('E4', 'F#4', 'G#4', 'A#4', 'C5', 'D5', 'E5')
}, // umm, would be simpler to just add all notes
'guitar-electric': {
startNote: 'F#2',
notes: 15, // 15
step: 3,
},
'piano': {
startNote: 'A1',
notes: 30, // 29
step: 2,
volume: -6, // TODO implement this
baseUrl: "https://tonejs.github.io/examples/audio/salamander/"
},
'synth-simple': edide.toneSynth,
'xylophone': {
startNote: 'G3',
notes: ['G3', 'C4', 'G4', 'C5', 'G5', 'C6', 'G6', 'C7']
}
}
for (let inst in this.instruments) {
this.instruments[inst].name = inst
}
this.instrumentList = Object.values(this.instruments)
react('active instrument config', () => {
revar.instrumentConf = this.instruments[revar.instrument] // this.instrumentList[revar.instrumentInd]
})
return this;
}).call({}, edide);
"use strict";edide.cloneSibling = (function _cloneSibling (edide) {
return (srcObj) => {
var o;
o = Object.create(Object.getPrototypeOf(srcObj));
Object.assign(o, srcObj);
return o;
};
return this;
}).call({}, edide);
"use strict";edide.times = (function _times (edide) {
return (timesNum, action) => {
while (timesNum-- > 0) {
action(timesNum + 1);
}
};
return this;
}).call({}, edide);
"use strict";edide.setTimeout = (function _setTimeout (edide) {
return function(arg1, arg2) {
var fun, id, num;
[fun, num] = typeof arg2 === 'function' ? [arg2, arg1] : [arg1, arg2];
id = setTimeout(fun, num);
edide.onUnload(() => {
return clearTimeout(id);
});
return id;
};
return this;
}).call({}, edide);
"use strict";edide.sleep = (function _sleep (edide) {
var sleep;
sleep = (ms) => {
var resolve, timeout;
timeout = resolve = null;
return edide.promise.new((res) => {
resolve = res;
return timeout = edide.setTimeout(ms, res);
});
};
return sleep;
return this;
}).call({}, edide);
"use strict";edide.mmInstrument = (function _mmInstrument (edide) {Object.defineProperty(this, 'module_name', {value:'mmInstrument'});
var cloneOrCreateInstrument, getInstruments, instruments, play, react, revar, unvar, updateVolAndTune;
instruments = {}; // name: [instrument instances...]
({unvar, revar, react} = edide.mmState);
react('delay from bmp', () => {
return revar.beatDelay = (1 / revar.bpm) * 60 * 1000;
});
react(() => {});
updateVolAndTune = (inst) => {
var detune, volume;
({volume, detune} = unvar);
if ((detune != null) && (inst.detune != null)) {
inst.set("detune", detune);
}
if ((volume != null) && (inst.volume != null)) {
return inst.set("volume", volume);
}
};
react(() => {
var inst, insts, j, len, name;
revar.volume;
revar.detune;
for (name in instruments) {
insts = instruments[name];
for (j = 0, len = insts.length; j < len; j++) {
inst = insts[j];
updateVolAndTune(inst);
}
}
});
react('create first instrument', () => {
var name, ref;
if (!(name = (ref = revar.instrumentConf) != null ? ref.name : void 0)) { // e.g. illegal instrument name
return edide.showError(`Unknown instrument: ${unvar.instrument}`);
}
if (revar.pipeReady && !instruments[name]) {
'create initial instrument';
return instruments[name] = [edide.instrumentConfigs.createNew()];
}
});
cloneOrCreateInstrument = (name) => {
var inst;
inst = instruments[name][0].soundFontInstrument ? (inst = edide.cloneSibling(instruments[name][0]), inst.isPlaying = false, inst) : edide.instrumentConfigs.createNew();
updateVolAndTune(inst);
return inst;
};
getInstruments = (n) => {
var all, free, name;
({name} = unvar.instrumentConf);
all = instruments[name];
free = all.filter((i) => {
return !i.isPlaying;
});
edide.times(n - free.length, () => {
var inst;
free.push(inst = cloneOrCreateInstrument(name));
return all.push(inst);
});
return free.slice(0, n);
};
this.playChord = (chord, noteLength = 1) => {};
this.playNote = (chord, noteLength = 1) => {
var ind, inst, insts, j, len, ref;
if (!Array.isArray(chord)) {
chord = [chord];
}
ref = insts = getInstruments(chord.length);
for (ind = j = 0, len = ref.length; j < len; ind = ++j) {
inst = ref[ind];
play(inst, chord[ind], noteLength);
}
};
play = async(instrument, note, length) => {
var err;
instrument.isPlaying = note; // true
try {
instrument.triggerAttackRelease(note, (length * unvar.beatDelay) / 1000);
} catch (error) {
err = error;
err.message = `Error in playing note ${note}, '${unvar.instrumentConf.name}' probably not loaded yet`;
edide.showError(err);
}
revar.note = note;
await edide.sleep(unvar.nextDelay);
return instrument.isPlaying = false;
};
return this;
}).call({}, edide);
"use strict";edide.mmParser = (function _mmParser (edide) {Object.defineProperty(this, 'module_name', {value:'mmParser'});
var getNoteLength, processTrack, react, revar, unvar;
({revar, unvar, react} = edide.mmState);
getNoteLength = (row, noteInd) => {
var char, length;
length = 1;
while (char = row[++noteInd]) {
if (char === edide.mmKeyboard.special.long) {
length++;
} else {
break;
}
}
return length;
};
processTrack = (track, ccs, ts) => {
var chord, keyCode, note;
if (!track[ts.i]) {
return;
}
if (ts.skip) { // comment or erroneous chars
return;
}
switch (track[ts.i]) {
case '{':
return ts.i += edide.mmParserSpecial.config(track.slice(ts.i), ts); // parseConfigs
case '[':
ccs.chord = [];
ts.i++;
return processTrack(track, ccs, ts);
case ']':
({chord} = ccs);
ccs.chord = null;
ts.i++;
if (chord.length) {
edide.mmInstrument.playNote(chord, getNoteLength(track, ts.i));
ccs.played = true;
} else {
processTrack(track, ccs, ts);
}
return;
case edide.mmKeyboard.special.var:
if (edide.mmParserSpecial.var(track, ts)) {
processTrack(track, ccs, ts); // recursive, since next char could be another var, e.g. \:bass::minor:
} else {
ts.skip = true; // parse error
}
return;
case edide.mmKeyboard.special.comment:
return ts.skip = true;
}
if (!(keyCode = track.charCodeAt(ts.i))) {
return;
}
ts.i++;
if (note = edide.mmNote.fromKeyCode(keyCode)) {
if (ccs.chord) {
ccs.chord.push(note);
processTrack(track, ccs, ts);
} else {
edide.mmInstrument.playNote(note, getNoteLength(track, ts.i));
ccs.played = true;
}
} else if (edide.mmKeyboard.isPauseKey(keyCode)) {
ccs.played = true; // "play silence"
} else {
processTrack(track, ccs, ts);
}
};
this.splitSections = (str) => {
var i, j, prevInd, ref, row, section, sections;
str = str.replace('&\n', ''); // TODO fix row tracking with &\n
sections = [];
section = null;
row = 0;
prevInd = 0;
for (i = j = 0, ref = str.length; (0 <= ref ? j <= ref : j >= ref); i = 0 <= ref ? ++j : --j) {
if (!(str[i] === '\n' || i === str.length)) {
continue;
}
if (str[i - 1] === '\n') {
if (section != null) {
sections.push(section);
}
section = null;
}
if (i > prevInd) {
if (section == null) {
section = {
row: row,
tracks: []
};
}
section.tracks.push(str.slice(prevInd, i));
}
row++;
prevInd = i + 1;
}
if (section != null) {
sections.push(section);
}
sections.row = 0;
return sections;
};
this.play = (song, sectionInd, trackStates) => {
var ccs, section;
if (!unvar.playing) {
return;
}
revar.highlight = null;
sectionInd = sectionInd || 0;
if (typeof song === 'string') {
song = this.splitSections(song);
}
section = song[sectionInd];
if (!section) { // song finished
return revar.playing = false;
}
if (!Array.isArray(trackStates)) {
trackStates = section.tracks.map(() => {
return {
i: 0 // initi track indices on first call to section
};
});
}
ccs = {}; // chord, played # TODO change back to chord: [C3, D3] and [].played = true
section.tracks.forEach((track, tInd) => {
var conf, i, iStart;
if (conf = trackStates[tInd].conf) {
return edide.mmConfigs.activate(conf);
} else {
trackStates[tInd].iStart = trackStates[tInd].i;
processTrack(track, ccs, trackStates[tInd]);
({iStart, i} = trackStates[tInd]);
if (i > iStart) {
return revar.highlight = [song.row + section.row + tInd, iStart, i - 1];
}
}
});
if (ccs.played) {
edide.setTimeout(() => {
return this.play(song, sectionInd, trackStates);
}, unvar.beatDelay);
} else {
edide.setTimeout(() => {
return this.play(song, sectionInd + 1);
});
}
};
return this;
}).call({}, edide);
"use strict";edide.music = (function _music (edide) {Object.defineProperty(this, 'module_name', {value:'music'});
edide.global.music = this
edide.mmEffects
var { revar, unvar, react } = edide.mmState
var playQueue = []
this.play = (str) => {
if (!unvar.pipeReady) return playQueue.push(str)
revar.playing = true
edide.mmParser.play(str)
}
this.stop = () => revar.playing = false
edide.instrumentConfigs.initInstrument()
var initialSettings = {
"instrument": "synth-simple", //"piano"
}
react(() => {
if(!revar.pipeReady) return
edide.mmConfigs.activate(initialSettings)
this.play(playQueue.join("\n\n")) // JSON.stringify(initialSettings)
}) // TEMP init instrument
return this;
}).call({}, edide);
"use strict";edide.wave = (function _wave (edide) {
var parent = {
play: function(){
edide.music.play(this.sheet)
return this
},
stop: function(){
edide.music.stop(this.sheet)
return this
},
blur: function(val){
edide.mmConfigs.activate({'blur': val})
return this
},
itch: function(val){
edide.mmConfigs.activate({'itch': val})
return this
},
long: function(val){ // note delay in seconds
edide.mmConfigs.activate({'beatDelay': val*1000})
return this
},
pace: function(val) { // note delay in beats per minute
edide.mmConfigs.activate({'bpm': val})
return this
},
vary: function(val){
edide.mmConfigs.activate({'detune': val})
return this
},
loud: function(val){ // increase (>0) or decrease (<0) amplitude in decibels
edide.mmConfigs.activate({'volume': val})
return this
},
}
return edide.global.wave = (str) => {
var obj = Object.create(parent)
obj.sheet = str
return obj
}
return this;
}).call({}, edide);