-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathdemo-min.html
145 lines (114 loc) · 4.33 KB
/
demo-min.html
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
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="N.P. Brosowsky" content="Tone.js instrument library loader" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Styling -->
<link rel="stylesheet" href="nprogress.css" type="text/css" />
<!-- Document Title
============================================= -->
<title>ToneJS-Instruments Demo</title>
</head>
<body>
<style type="text/css">
body {
height: 100vh;
width: 100vw;
font-family: Helvetica, arial;
font-size: 16px;
}
#content {
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.container {
display: none;
}
#Keyboard {
margin: 3px!important;
}
</style>
<div id="content">
<H3 id="loading">Loading...</H3>
<div class="container">
<h1> Tone.js-Instruments</h1>
<p> Loads four random instruments from the list. Refresh for different instruments.</p>
<div id="Selector"></div>
<br/>
<div id="Keyboard"></div>
</div>
</div>
<script type="text/javascript" src="external-js/nprogress.js"></script>
<script type="text/javascript" src="external-js/NexusUI.js"></script>
<script type="text/javascript" src="external-js/Tone.js"></script>
<script type="text/javascript" src="Tonejs-Instruments.js"></script>
<script>
NProgress.start();
// load samples / choose 4 random instruments from the list //
chooseFour = ['piano', 'bass-electric', 'bassoon', 'cello', 'clarinet', 'contrabass', 'flute', 'french-horn', 'guitar-acoustic', 'guitar-electric','guitar-nylon', 'harmonium', 'harp', 'organ', 'saxophone', 'trombone', 'trumpet', 'tuba', 'violin', 'xylophone']
shuffle(chooseFour);
chooseFour = chooseFour.slice(0, 4);
var samples = SampleLibrary.load({
instruments: chooseFour,
baseUrl: "samples/"
})
var current
// show keyboard on load //
Tone.Buffer.on('load', function() {
document.querySelector(".container").style.display = 'block';
document.querySelector("#loading").style.display = 'none';
NProgress.done();
// loop through instruments and set release, connect to master output
for (var property in samples) {
if (samples.hasOwnProperty(property)) {
console.log(samples[property])
samples[property].release = .5;
samples[property].toMaster();
}
}
current = samples[chooseFour[0]];
select.on('change', function(v) {
current = samples[v.value];
})
})
// show error message on loading error //
Tone.Buffer.on('error', function() {
document.querySelector("#loading").innerHTML = "I'm sorry, there has been an error loading the samples.";
})
// create Nexus UI //
Nexus.colors.accent = "#f00"
var select = new Nexus.Select('#Selector', {
'size': [300, 30],
'options': Object.keys(samples)
});
var keyboardUI = new Nexus.Piano('#Keyboard', {
'size': [1000, 125],
'mode': 'button', // 'button', 'toggle', or 'impulse'
'lowNote': 36,
'highNote': 72
})
keyboardUI.on('change', function(note) {
console.log(Tone.Frequency(note.note, "midi").toNote());
if (note.state === true) {
current.triggerAttack(Tone.Frequency(note.note, "midi").toNote());
} else if (note.state === false) {
current.triggerRelease(Tone.Frequency(note.note, "midi").toNote());
}
})
// Shuffle function //
function shuffle(a) {
var j, x, i;
for (i = a.length - 1; i > 0; i--) {
j = Math.floor(Math.random() * (i + 1));
x = a[i];
a[i] = a[j];
a[j] = x;
}
}
</script>
</body>
</html>