-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBeatBox.java
More file actions
187 lines (156 loc) · 5.19 KB
/
Copy pathBeatBox.java
File metadata and controls
187 lines (156 loc) · 5.19 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
import java.awt.*;
import javax.swing.*;
import javax.sound.midi.*;
import java.util.*;
import java.awt.event.*;
public class BeatBox{
JPanel mainPanel;
ArrayList<JCheckBox> checkboxList;
Sequencer sequencer;
Sequence sequence;
Track track;
JFrame theFrame;
String[] instrumentNames = {"Bass Brum","Closed Hi-Hat",
"Open Hi-Hat","Acoustic Snare","Crash Cymbl","Hand Clap","High Tom",
"Hi Bongo","Maracas","Whistle","Low Conga","Cowbell","Vibraslap",
"Low-mid Tom","High Agogo","Open Hi Conga"};
int[] instruments = {35,42,46,38,49,39,50,60,70,72,64,56,58,47,67,63};
public static void main(String[] args){
new BeatBox().buildGUI();
}
public void buildGUI(){
theFrame = new JFrame("Cyber BeatBox");
theFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
BorderLayout layout = new BorderLayout();
JPanel background = new JPanel(layout);
//设定面板上摆设组件时的空白边缘
background.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
checkboxList = new ArrayList<JCheckBox>();
Box buttonBox = new Box(BoxLayout.Y_AXIS);
JButton start = new JButton("Start");
start.addActionListener(new MyStartListener());
buttonBox.add(start);
JButton stop = new JButton("Stop");
stop.addActionListener(new MyStopListener());
buttonBox.add(stop);
JButton upTempo = new JButton("Tempo Up");
upTempo.addActionListener(new MyUpTempoListener());
buttonBox.add(upTempo);
JButton downTempo = new JButton("Tempo Down");
downTempo.addActionListener(new MyDownTempoListener());
buttonBox.add(downTempo);
Box nameBox = new Box(BoxLayout.Y_AXIS);
for(int i = 0; i<16; i++){
nameBox.add(new Label(instrumentNames[i]));
}
background.add(BorderLayout.EAST,buttonBox);
background.add(BorderLayout.WEST,nameBox);
theFrame.getContentPane().add(background);
GridLayout grid = new GridLayout(16,16);
grid.setVgap(1);
grid.setHgap(2);
mainPanel = new JPanel(grid);
background.add(BorderLayout.CENTER,mainPanel);
//创建checkbox组,设定成未勾选的为false并加到ArrayList和面板上
for(int i = 0;i<256; i++){
JCheckBox c = new JCheckBox();
c.setSelected(false);
checkboxList.add(c);
mainPanel.add(c);
}
setUpMidi();
theFrame.setBounds(50,50,300,300);
theFrame.pack();
theFrame.setVisible(true);
}
//一般的MIDI程序代码
public void setUpMidi(){
try{
sequencer = MidiSystem.getSequencer();
sequencer.open();
sequence = new Sequence(Sequence.PPQ,4);
track = sequence.createTrack();
sequencer.setTempoInBPM(120);
}catch(Exception e){e.printStackTrace();}
}
//将复选框状态转换为MIDI事件并加到track上
public void buildTrackAndStart(){
//创建出16个元素的来存储一项乐器的值,
//如果该节应该要演奏,其值会是关键字值,否则值为零
int[] trackList = null;
//清除掉旧的track做一个新的
sequence.deleteTrack(track);
track = sequence.createTrack();
//对每个乐器都执行一次
for(int i = 0; i<16;i++){
trackList = new int[16];
int key = instruments[i];
for(int j = 0; j<16;j++){
JCheckBox jc = (JCheckBox) checkboxList.get(j+(16*i));
//如果有勾选,将关键字值放到数组的该位置上,不然就补零
if(jc.isSelected()){
trackList[j] = key;
}else{
trackList[j] = 0;
}
}//关闭内部循环
//创建此乐器的事件并加到track上
makeTracks(trackList);
track.add(makeEvent(176,1,127,0,16));
}//关闭外部循环
//确保第16拍有事件,否则BeatBox不会重复播放
track.add(makeEvent(192,9,1,0,15));
try{
sequencer.setSequence(sequence);
//指定无穷的重复次数
sequencer.setLoopCount(sequencer.LOOP_CONTINUOUSLY);
//开始播放
sequencer.start();
sequencer.setTempoInBPM(120);
}catch(Exception e){e.printStackTrace();}
}//关闭buildTrackAndStart方法
//按钮的监听者
public class MyStartListener implements ActionListener{
public void actionPerformed(ActionEvent a){
buildTrackAndStart();
}
}//关闭内部类
public class MyStopListener implements ActionListener{
public void actionPerformed(ActionEvent a){
sequencer.stop();
}
}//关闭内部类
//节奏因子,每次调整3%
public class MyUpTempoListener implements ActionListener{
public void actionPerformed(ActionEvent a){
float tempoFactor = sequencer.getTempoFactor();
sequencer.setTempoFactor((float)(tempoFactor * 1.03));
}
}//关闭内部类
public class MyDownTempoListener implements ActionListener{
public void actionPerformed(ActionEvent a){
float tempoFactor = sequencer.getTempoFactor();
sequencer.setTempoFactor((float)(tempoFactor * 0.97));
}
}//关闭内部类
//创建某项乐器的所有事件
public void makeTracks(int[] list){
for(int i = 0; i <16; i++){
int key = list[i];
// 创建NOTE On和NOTE OFF事件并加入到track上
if(key != 0){
track.add(makeEvent(144,9,key,100,i));
track.add(makeEvent(128,9,key,100,i+1));
}
}
}
public MidiEvent makeEvent(int comd, int chan, int one, int two, int tick){
MidiEvent event = null;
try{
ShortMessage a = new ShortMessage();
a.setMessage(comd,chan,one,two);
event = new MidiEvent(a,tick);
}catch(Exception e){e.printStackTrace();}
return event;
}
}//关闭类