-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyscript.js
158 lines (132 loc) · 3.94 KB
/
myscript.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
var context = null;
var usingWebAudio = true;
if (typeof AudioContext !== 'undefined') {
context = new AudioContext();
} else if (typeof webkitAudioContext !== 'undefined') {
context = new webkitAudioContext();
} else {
usingWebAudio = false;
}
var playing = false;
var osc = null;
var freq = 100;
var STEP_CONSTANT = Math.pow(2.0, 1.0/12.0);
//second set of variables
var playing2 = false;
var osc2 = null;
var freq2 = 200;
var STEP_CONSTANT2 = Math.pow(2.0, 1.0/12.0);
//third set of variables
var playing3 = false;
var osc3 = null;
var freq3 = 300;
var STEP_CONSTANT3 = Math.pow(2.0, 1.0/12.0);
function toggle() {
var button = document.getElementById("toggle");
if (playing && osc) {
playing = false;
osc.stop(0);
button.value = "Play";
} else {
playing = true;
osc = context.createOscillator();
osc.connect(context.destination);
osc.frequency.value = freq;
osc.start(0);
button.value = "Stop";
}
if (playing2 && osc2) {
playing2 = false;
osc2.stop(0);
button.value = "Play";
} else {
playing2 = true;
osc2 = context.createOscillator();
osc2.connect(context.destination);
osc2.frequency.value = freq2;
osc2.start(0);
button.value = "Stop";
}
if (playing3 && osc3) {
playing3 = false;
osc3.stop(0);
button.value = "Play";
} else {
playing3 = true;
osc3 = context.createOscillator();
osc3.connect(context.destination);
osc3.frequency.value = freq3;
osc3.start(0);
button.value = "Stop";
}
}
function updateFreq(newFreq) {
freq = newFreq;
if (osc) {
osc.frequency.value = freq;
}
var text = document.getElementById("freqText").value = freq;
var range = document.getElementById("freqRange").value = freq;
}
window.onload = function() {
if (!usingWebAudio) {
document.getElementById("audioControls").innerHTML = "<p>Web audio required.</p>"
}
}
function updateFreq2(newFreq2) {
freq2 = newFreq2;
if (osc2) {
osc2.frequency.value = freq2;
}
var text = document.getElementById("freqText2").value = freq2;
var range = document.getElementById("freqRange2").value = freq2;
}
window.onload = function() {
if (!usingWebAudio) {
document.getElementById("audioControls2").innerHTML = "<p>Web audio required.</p>"
}
}
function updateFreq3(newFreq3) {
freq3 = newFreq3;
if (osc3) {
osc3.frequency.value = freq3;
}
var text = document.getElementById("freqText3").value = freq3;
var range = document.getElementById("freqRange3").value = freq3;
}
window.onload = function() {
if (!usingWebAudio) {
document.getElementById("audioControls3").innerHTML = "<p>Web audio required.</p>"
}
}
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var scale = (250*freq);
var step = 1;
var data = google.visualization.arrayToDataTable([]);
data.addColumn('string', '');
data.addColumn('number', 'Tone 1');
data.addColumn('number', 'Tone 2');
data.addColumn('number', 'Tone 3');
data.addColumn('number', 'Sum');
data.addRow(['|', 0, 0, 0, 0]);
var i = 1;
while(i < 500){
data.addRow(['|', 1.1*Math.sin(2*Math.PI*(i/scale)*freq), 1.1*Math.sin(2*Math.PI*(i/scale)*freq2), 1.1*Math.sin(2*Math.PI*(i/scale)*freq3), 1.1*Math.sin(2*Math.PI*(i/scale)*freq) + 1.1*Math.sin(2*Math.PI*(i/scale)*freq2) + 1.1*Math.sin(2*Math.PI*(i/scale)*freq3)]);
i++;
}
var options = {
title: 'Tone Waves',
curveType: 'function',
legend: { position: 'bottom' },
series: {
0: { color: '#041E42' },
1: { color: '#807E7F' },
2: { color: '#231F20' },
3: { color: '#1560FB' },
}
};
var chart = new google.visualization.LineChart(document.getElementById('curve_chart'));
chart.draw(data, options);
}