-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMidiFileGenerator.java
More file actions
129 lines (114 loc) · 4.09 KB
/
MidiFileGenerator.java
File metadata and controls
129 lines (114 loc) · 4.09 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
/***************************************************************************
* Copyright (C) 2006 by Arnaud Desaedeleer *
* arnaud@desaedeleer.com *
* *
* This file is part of OpenOMR *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
package openomr.midi;
import java.io.File;
import javax.sound.midi.*;
/**
* This class represents an Old Song that we might want to record for our
* listening pleasure.
*/
public abstract class MidiFileGenerator
{
private final Sequencer sequencer;
private final Sequence sequence;
private final Track track;
private final int resolution;
private int pos;
/**
* @param key
* is the note that this starts with. 60 is middle C.
* @param tempo
* is measured in beats per second
*/
public MidiFileGenerator(int key, int tempo, int resolution) throws MidiUnavailableException, InvalidMidiDataException
{
this.resolution = resolution;
this.sequence = new Sequence(Sequence.PPQ, resolution);
track = sequence.createTrack();
sequencer = MidiSystem.getSequencer();
sequencer.open();
sequencer.setSequence(sequence);
sequencer.setTempoInBPM(tempo);
}
public void start()
{
sequencer.start();
}
public void save()
{
try{
File midifile = new File("generated.mid");
if (sequence != null){
MidiSystem.write(sequence,1,midifile);
System.out.println("File written: [generated.mid]");
}else{
System.out.println("null midi sequence found");
}
}
catch(Exception e){
System.out.println("Exception caught " + e.toString());
}
}
protected void add(int note) throws InvalidMidiDataException
{
add(note, 1);
}
protected synchronized void add(int note, int length) throws InvalidMidiDataException
{
addStartEvent(note);
pos += length;
addStopEvent(note);
}
protected synchronized void addSilence(int length)
{
pos += length;
}
/**
* A piano teacher once told me that the first note in a bar should be
* emphasized.
*
* We assume that resolution has already been set and that we have the
* "this" monitor.
*/
private int volume()
{
return ((pos % resolution) == 0) ? 100 : 70;
}
/**
* We assume that we are holding the "this" monitor
*/
private void addStartEvent(int note) throws InvalidMidiDataException
{
ShortMessage message = new ShortMessage();
message.setMessage(ShortMessage.NOTE_ON, 0, note, volume());
track.add(new MidiEvent(message, pos));
}
/**
* We assume that we are holding the "this" monitor
*/
private void addStopEvent(int note) throws InvalidMidiDataException
{
ShortMessage message = new ShortMessage();
message.setMessage(ShortMessage.NOTE_OFF, 0, note, 0);
track.add(new MidiEvent(message, pos));
}
}