-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCreateAndPlay.java
340 lines (282 loc) · 10.3 KB
/
CreateAndPlay.java
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
import java.applet.Applet;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.lang.IndexOutOfBoundsException;
import javax.sound.midi.Sequence;
import javax.sound.midi.MidiEvent;
import javax.sound.midi.MidiMessage;
import javax.sound.midi.MidiSystem;
import javax.sound.midi.ShortMessage;
import javax.sound.midi.Track;
import javax.sound.midi.InvalidMidiDataException;
import javax.sound.midi.MidiUnavailableException;
import javax.sound.midi.MetaEventListener;
import javax.sound.midi.MetaMessage;
import javax.sound.midi.Sequencer;
import javax.sound.midi.Synthesizer;
import javax.sound.midi.Receiver;
import javax.sound.midi.Transmitter;
public class CreateAndPlay extends Applet {
private static final int VELOCITY = 48; // default volume
private static final int ACCENT = 100;
private static Sequencer sequencer = null;
private static Synthesizer synthesizer = null;
private static final int CLAVE = 75;
private static final int BELL = 56;
private static final int CONGA_LH = 63; // LH hitting it
private static final int CONGA_LT = 63; // LH tap (heel on drum, just fingers hitting it)
private static final int CONGA_RO = 63; // RH open
private static final int CONGA_RS = 62; // RH slap
private static final int STICK = 42; // for cascara
private static final int GUIRO_L = 74; // long
private static final int GUIRO_S = 73; // short
private static final int INTRO = 42;
private static final int BONGO_RS = 60; // high bongo - doesn't sound good....
private static final int BONGO_LT = 60;
private static final int BONGO_LH = 60;
private static final int BONGO_RO = 61; // low bongo
private static int introOffset = 0;
private static ArrayList tracks = new ArrayList();
public void init() {
System.out.println("init");
create();
}
public static void main(String[] args) {
}
public static void create() throws RuntimeException {
System.out.println("create");
try {
Sequence sequence = null;
sequence = new Sequence(Sequence.PPQ, 2); // so we are saying that there are 2 midi ticks per beat
Track intro = sequence.createTrack();
tracks.add("intro");
// introOffset = 0; // setting this shifts all other drumEvents forward by this amount
drumEvent(intro, INTRO, 0);
drumEvent(intro, INTRO, 4);
drumEvent(intro, INTRO, 8);
drumEvent(intro, INTRO, 10);
drumEvent(intro, INTRO, 12);
drumEvent(intro, INTRO, 14);
introOffset = 16; // setting this shifts all other drumEvents forward by this amount
Track clave = sequence.createTrack();
tracks.add("clave");
drumEvent(clave, CLAVE, 0, 127);
drumEvent(clave, CLAVE, 3, 127);
drumEvent(clave, CLAVE, 6, 127);
drumEvent(clave, CLAVE, 10, 127);
drumEvent(clave, CLAVE, 12, 127);
drumEvent(clave, CLAVE, 15, 0); // add this one to pad out the track to the full length
// MetaMessage tempoMsg = new MetaMessage();
// // (60000000 / 300) gives microseconds per quarter note. Change this to hex gives 0x30d40 which we put in the last 3 bytes.
// tempoMsg.setMessage(type, new byte[]{0xff, 0x51, 0x03, 0x03, 0x0d, 0x40}, 6);
// MidiEvent tempoEvent = new MidiEvent(tempoMsg, 0);
// clave.add(tempoEvent);
Track bellS = sequence.createTrack();
tracks.add("bellS");
drumEvent(bellS, BELL, 0);
drumEvent(bellS, BELL, 4);
drumEvent(bellS, BELL, 8);
drumEvent(bellS, BELL, 12);
drumEvent(bellS, BELL, 15, 0);
Track bell = sequence.createTrack();
tracks.add("bell");
drumEvent(bell, BELL, 0, 2, ACCENT);
drumEvent(bell, BELL, 2);
drumEvent(bell, BELL, 3);
drumEvent(bell, BELL, 4, 6, ACCENT);
drumEvent(bell, BELL, 6);
drumEvent(bell, BELL, 7);
drumEvent(bell, BELL, 8, 10, ACCENT);
drumEvent(bell, BELL, 10, 12, VELOCITY);
drumEvent(bell, BELL, 12, 14, ACCENT);
drumEvent(bell, BELL, 14);
drumEvent(bell, BELL, 15);
Track conga = sequence.createTrack();
tracks.add("conga");
drumEvent(conga, CONGA_LH, 0, 43);
drumEvent(conga, CONGA_LT, 1, 54);
drumEvent(conga, CONGA_RS, 2, 101);
drumEvent(conga, CONGA_LT, 3, 50);
drumEvent(conga, CONGA_LH, 4, 42);
drumEvent(conga, CONGA_LT, 5, 51);
drumEvent(conga, CONGA_RO, 6, 100);
drumEvent(conga, CONGA_LT, 7, 54);
drumEvent(conga, CONGA_LH, 8, 42);
drumEvent(conga, CONGA_LT, 9, 56);
drumEvent(conga, CONGA_RS, 10, 101);
drumEvent(conga, CONGA_LT, 11, 51);
drumEvent(conga, CONGA_LH, 12, 42);
drumEvent(conga, CONGA_LT, 13, 51);
drumEvent(conga, CONGA_RO, 14, 100);
drumEvent(conga, CONGA_RO, 15, 100);
Track stick = sequence.createTrack(); // track 3
tracks.add("stick");
drumEvent(stick, STICK, 0, 80);
drumEvent(stick, STICK, 2, 80);
drumEvent(stick, STICK, 3, 80);
drumEvent(stick, STICK, 5, 80);
drumEvent(stick, STICK, 7, 80);
drumEvent(stick, STICK, 8, 80);
drumEvent(stick, STICK, 10, 80);
drumEvent(stick, STICK, 12, 80);
drumEvent(stick, STICK, 13, 80);
drumEvent(stick, STICK, 15, 80);
Track congaS = sequence.createTrack();
tracks.add("congaS");
drumEvent(congaS, CONGA_RS, 2, 101);
drumEvent(congaS, CONGA_RO, 6, 100);
drumEvent(congaS, CONGA_RO, 7, 100);
drumEvent(congaS, CONGA_RS, 10, 101);
drumEvent(congaS, CONGA_RO, 14, 100);
drumEvent(congaS, CONGA_RO, 15, 100);
Track guiro = sequence.createTrack();
tracks.add("guiro");
drumEvent(guiro, GUIRO_L, 0, 2, VELOCITY);
drumEvent(guiro, GUIRO_S, 2);
drumEvent(guiro, GUIRO_S, 3);
drumEvent(guiro, GUIRO_L, 4, 6, VELOCITY);
drumEvent(guiro, GUIRO_S, 6);
drumEvent(guiro, GUIRO_S, 7);
drumEvent(guiro, GUIRO_L, 8, 10, VELOCITY);
drumEvent(guiro, GUIRO_S, 10);
drumEvent(guiro, GUIRO_S, 11);
drumEvent(guiro, GUIRO_L, 12, 14, VELOCITY);
drumEvent(guiro, GUIRO_S, 14);
drumEvent(guiro, GUIRO_S, 15);
// Track bongo = sequence.createTrack();
// tracks.add("bongo");
// drumEvent(bongo, BONGO_RS, 0, 100);
// drumEvent(bongo, BONGO_LT, 1, 40);
// drumEvent(bongo, BONGO_RS, 2, 54);
// drumEvent(bongo, BONGO_LH, 3, 40);
// drumEvent(bongo, BONGO_RS, 4, 100);
// drumEvent(bongo, BONGO_LT, 5, 40);
// drumEvent(bongo, BONGO_RO, 6, 100);
// drumEvent(bongo, BONGO_LH, 7, 40);
// drumEvent(bongo, BONGO_RS, 8, 100); // repeat
// drumEvent(bongo, BONGO_LT, 9, 40);
// drumEvent(bongo, BONGO_RS, 10, 54);
// drumEvent(bongo, BONGO_LH, 11, 40);
// drumEvent(bongo, BONGO_RS, 12, 100);
// drumEvent(bongo, BONGO_LT, 13, 40);
// drumEvent(bongo, BONGO_RO, 14, 100);
// drumEvent(bongo, BONGO_LH, 15, 40);
sequencer = MidiSystem.getSequencer();
System.out.println(sequencer.getClass());
if (sequencer == null) {
System.out.println("No Sequencer available");
System.exit(1);
}
sequencer.addMetaEventListener(new MetaEventListener() {
public void meta(MetaMessage event) {
if (event.getType() == 47) { // end of track
sequencer.close();
if (synthesizer != null) {
synthesizer.close();
}
System.exit(0);
}
}
});
sequencer.open();
sequencer.setSequence(sequence);
if (!(sequencer instanceof Synthesizer)) {
synthesizer = MidiSystem.getSynthesizer();
synthesizer.open();
Receiver synthReceiver = synthesizer.getReceiver();
Transmitter seqTransmitter = sequencer.getTransmitter();
seqTransmitter.setReceiver(synthReceiver);
}
setTempo(120);
sequencer.setLoopStartPoint(introOffset);
sequencer.setLoopCount(Sequencer.LOOP_CONTINUOUSLY);
} catch (MidiUnavailableException e) {
throw new RuntimeException(e);
} catch (InvalidMidiDataException e) {
throw new RuntimeException(e);
}
}
public static void playSeq() {
System.out.println("play");
sequencer.start();
}
public static void playSeq(String instrument) {
System.out.println("play " + instrument);
resetSeq();
for (int i = 0; i < tracks.size(); i++) {
sequencer.setTrackMute(i, true);
}
int t = getTrackNumFromName(instrument);
sequencer.setTrackMute(t, false);
t = getTrackNumFromName("intro");
sequencer.setTrackMute(t, false);
playSeq();
}
public static void stopSeq() {
System.out.println("stop");
sequencer.stop();
}
public static void resetSeq() {
System.out.println("reset");
stopSeq();
sequencer.setTickPosition(0);
}
public static void setTempo(int tempo) {
//sequencer.setTempoInBPM(tempo); can't use this as there is a bug in Sun's libraries that causes the tempo to reset to 120bpm
System.out.println("tempo: " + tempo);
float current = sequencer.getTempoInBPM();
float factor = tempo / current;
sequencer.setTempoFactor(factor);
}
public static void getTempo() {
System.out.println("tempo: " + sequencer.getTempoInBPM() + " tempoFactor: " + sequencer.getTempoFactor());
}
private static int getTrackNumFromName(String name) {
int track = tracks.indexOf(name);
if (track == -1) {
throw new IndexOutOfBoundsException("No track for '" + name + "'");
}
return track;
}
public static void setMute(String instrument, boolean mute) {
System.out.println("mute: " + instrument + " " + mute);
int t = getTrackNumFromName(instrument);
sequencer.setTrackMute(t, mute);
}
public static void toggle(String instrument) {
System.out.println("toggle mute: " + instrument);
int t = getTrackNumFromName(instrument);
boolean state = sequencer.getTrackMute(t);
sequencer.setTrackMute(t, !state);
if (sequencer.getTrackMute(t) == state) {
System.out.println("Failed to mute");
}
}
private static void drumEvent(Track track, int drum, long tick, long stop, int velocity) throws RuntimeException {
try {
ShortMessage message;
MidiEvent event;
message = new ShortMessage();
message.setMessage(ShortMessage.NOTE_ON, 9, drum, velocity);
event = new MidiEvent(message, tick + introOffset);
track.add(event);
message = new ShortMessage();
message.setMessage(ShortMessage.NOTE_OFF, 9, drum, 0);
event = new MidiEvent(message, stop + introOffset);
track.add(event);
} catch (InvalidMidiDataException e) {
throw new RuntimeException(e);
}
}
private static void drumEvent(Track track, int drum, long tick) {
drumEvent(track, drum, tick, VELOCITY);
}
private static void drumEvent(Track track, int drum, long tick, int velocity) {
drumEvent(track, drum, tick, tick + 1, velocity);
}
private static void out(String strMessage)
{
System.out.println(strMessage);
}
}