Last active
August 29, 2015 14:26
-
-
Save tjmaher/407e4947567eb859329f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.java.headfirst.beatbox; | |
| import javax.sound.midi.*; | |
| import javax.swing.*; | |
| import javax.swing.border.Border; | |
| import java.awt.*; | |
| import java.awt.event.ActionEvent; | |
| import java.awt.event.ActionListener; | |
| import java.io.*; | |
| import java.util.ArrayList; | |
| public class BeatBox { | |
| JPanel mainPanel; | |
| ArrayList<JCheckBox> checkboxList; | |
| Sequencer sequencer; | |
| Sequence sequence; | |
| Track track; | |
| JFrame theFrame; | |
| public static void main(String[] args) { | |
| new BeatBox().buildGUI(); | |
| } | |
| public void buildGUI() { | |
| theFrame = new JFrame("Beatbox 0.3"); | |
| 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.X_AXIS); | |
| JButton start = new JButton("Start"); | |
| start.addActionListener(new MyStartListener()); | |
| buttonBox.add(start); | |
| //More Buttons | |
| JButton clear = new JButton("Clear"); | |
| clear.addActionListener(new MyClearListener()); | |
| buttonBox.add(clear); | |
| // Even More Buttons | |
| Box nameBox = new Box(BoxLayout.Y_AXIS); | |
| for (Instrument ins : Instrument.values()) { | |
| nameBox.add(new Label(ins.getLabel())); | |
| } | |
| background.add(BorderLayout.NORTH, buttonBox); | |
| background.add(BorderLayout.WEST, nameBox); | |
| theFrame.getContentPane().add(background); | |
| GridLayout grid = new GridLayout(Instrument.values().length, 16); | |
| grid.setVgap(1); | |
| grid.setHgap(1); | |
| mainPanel = new JPanel(grid); | |
| background.add(BorderLayout.CENTER, mainPanel); | |
| for (int i = 0; i < (Instrument.values().length*16) ; i++) { | |
| JCheckBox c = new JCheckBox(); | |
| c.setSelected(false); | |
| c.addActionListener(new MyStartListener()); | |
| checkboxList.add(c); | |
| mainPanel.add(c); | |
| } | |
| setUpMidi(); | |
| theFrame.setBounds(50, 50, 300, 300); | |
| theFrame.pack(); | |
| theFrame.setVisible(true); | |
| } | |
| 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(); } | |
| } | |
| public void buildTrackAndStart() { | |
| int[] trackList = null; | |
| sequence.deleteTrack(track); | |
| track = sequence.createTrack(); | |
| for (int i = 0; i < Instrument.values().length; i++) { | |
| trackList = new int[16]; | |
| int key = Instrument.values()[i].getDrumKey(); | |
| for (int j = 0; j < 16; j++) { | |
| JCheckBox jc = checkboxList.get(j + 16 * i); | |
| if (jc.isSelected()) { | |
| trackList[j] = key; | |
| } else { | |
| trackList[j] = 0; | |
| } | |
| } | |
| makeTracks(trackList); | |
| track.add(makeEvent(176, 1, 127, 0, 16)); | |
| } | |
| 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(); | |
| } | |
| } | |
| public class MyStartListener implements ActionListener { | |
| public void actionPerformed(ActionEvent a){ | |
| buildTrackAndStart(); | |
| } | |
| } | |
| public class MyClearListener implements ActionListener { | |
| public void actionPerformed(ActionEvent a){ | |
| sequencer.stop(); | |
| initialize(); | |
| } | |
| } | |
| // MORE LISTENERS | |
| try { | |
| FileOutputStream fileStream = new FileOutputStream(new File("Checkbox.ser")); | |
| ObjectOutputStream os = new ObjectOutputStream(fileStream); | |
| os.writeObject(checkboxState); | |
| } catch (Exception ex) { | |
| ex.printStackTrace(); | |
| } | |
| } | |
| } | |
| public class MyLoadListener implements ActionListener { | |
| public void actionPerformed(ActionEvent a){ | |
| boolean[] checkboxState = null; | |
| try { | |
| FileInputStream fileIn = new FileInputStream(new File("Checkbox.ser")); | |
| ObjectInputStream is = new ObjectInputStream(fileIn); | |
| checkboxState = (boolean[]) is.readObject(); | |
| } catch (Exception ex) { | |
| ex.printStackTrace(); | |
| } | |
| for (int i = 0; i < 256; i++){ | |
| JCheckBox check = (JCheckBox) checkboxList.get(i); | |
| if (checkboxState[i]) { | |
| check.setSelected(true); | |
| } else { | |
| check.setSelected(false); | |
| } | |
| } | |
| sequencer.stop(); | |
| buildTrackAndStart(); | |
| } | |
| } | |
| public void initialize() { | |
| for (int i = 0; i < 256; i++) { | |
| JCheckBox jc = checkboxList.get(i); | |
| jc.setSelected(false); | |
| } | |
| } | |
| public void makeTracks(int[] list){ | |
| for (int i = 0; i < 16; i++){ | |
| int key = list [i]; | |
| 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; | |
| } | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment