X-Git-Url: https://ruin.nu/git/?p=moosique.git;a=blobdiff_plain;f=MooGUI.java;h=2ae23a64849221afc93de30cefd997f47f958ef4;hp=7bcd6dd854d103d8360c78f1396ad0c9dde62eae;hb=HEAD;hpb=2e2fa52cef9db49f82d1dec2a8c4c03c5c6f387b diff --git a/MooGUI.java b/MooGUI.java index 7bcd6dd..2ae23a6 100644 --- a/MooGUI.java +++ b/MooGUI.java @@ -2,69 +2,130 @@ import javax.sound.midi.*; import javax.swing.*; import java.awt.*; import java.awt.event.*; +import java.util.*; +import java.io.*; /** * Moosique's graphical user interface. * - * @author Mikael Andreen + * @author Einar Pehrson */ public class MooGUI extends JFrame { private Sequence seq; - + private MooMenu menu; private MooToolbar toolbar; - private JPanel trackPanel; - private MooTrackView[] trackViews; + private MooView view; private JLabel statusBar; - - public static Font standardFont = new Font("Helvetica", Font.PLAIN, 10); + private java.util.Timer timer; + private boolean updateView = false; + public static final int statusResetDelay = 3000; + public static final Font FONT = new Font("Helvetica", Font.PLAIN, 10); + public static final Color bgColor = new Color(192, 224, 255); + public static final Image logo = Toolkit.getDefaultToolkit().getImage("images/moose.gif"); /** * Creates the GUI. + * @param seq The sequence that the program is operating on. */ - public MooGUI(Sequence seq) { + public MooGUI(Sequence seq, File file) { super("Moosique"); + if (file != null) setTitle("Moosique - " + file.getName()); this.seq = seq; + advanceStatus(); Container pane = getContentPane(); pane.setLayout(new BoxLayout(pane, BoxLayout.Y_AXIS)); - + // Adds menu bar. - setJMenuBar(new MooMenu()); + menu = new MooMenu(); + setJMenuBar(menu); + advanceStatus(); // Adds toolbar. toolbar = new MooToolbar(); pane.add(toolbar, BorderLayout.NORTH); + advanceStatus(); - // Adds tracks. - trackPanel = new JPanel(true); - createTrackViews(); - pane.add(trackPanel, BorderLayout.CENTER); + // Adds main view. + view = new MooView(seq.getTracks()); + pane.add(view, BorderLayout.CENTER); // Adds status bar. statusBar = new JLabel("Welcome to Moosique!", JLabel.CENTER); + statusBar.setFont(FONT); pane.add(statusBar, BorderLayout.SOUTH); + // Brings on the colors! + setBackground(pane); + setBackground(menu); + setBackground(toolbar); + setBackground(view); + + // Creates timer. + timer = new java.util.Timer(); + + // Sets up global key listener. + ActionMap am = getRootPane().getActionMap(); + + Action playAction = new AbstractAction() { + public void actionPerformed(ActionEvent ae) { + if (!Moosique.getSequencer().isRunning()) { + Moosique.play(); + } else { + Moosique.stop(); + } + }}; + am.put("Play", playAction); + am.put("Change octave up", createOctaveAction(true)); + am.put("Change octave down", createOctaveAction(false)); + + InputMap im = getRootPane().getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT); + KeyStroke playKey = KeyStroke.getKeyStroke(KeyEvent.VK_SPACE, 0); + KeyStroke octaveUpKey = KeyStroke.getKeyStroke(KeyEvent.VK_F9, 0); + KeyStroke octaveDownKey = KeyStroke.getKeyStroke(KeyEvent.VK_F10, 0); + im.put(playKey, "Play"); + im.put(octaveUpKey, "Change octave up"); + im.put(octaveDownKey, "Change octave down"); + advanceStatus(); + + // Configures window. addWindowListener(new MooGUICloser()); pack(); + setIconImage(logo); Dimension bounds = Toolkit.getDefaultToolkit().getScreenSize(); - setSize(bounds.width,bounds.height - 40); + setSize(bounds.width,bounds.height - 28); setLocation(0, 0); - // setResizable(false); setBackground(Color.white); + advanceStatus(); setVisible(true); show(); } - + + /** + * Sets the background on Containers + * @param c the Container that will have it's background change + */ + private void setBackground(Container c) { + c.setBackground(bgColor); + Component[] comps = c.getComponents(); + for (int i = 0; i < comps.length; i++) { + comps[i].setBackground(bgColor); + } + } + /** * Changes the sequence of the GUI. * @param sequence the MIDI sequence to visualize */ - public void setSequence(Sequence sequence) { + public void setSequence(Sequence sequence, File file) { seq = sequence; - createTrackViews(); + if (file != null) setTitle("Moosique - " + file.getName()); + else setTitle("Moosique"); + view.setTracks(seq.getTracks(), true); + toolbar.resetProgInd(); } /** @@ -73,24 +134,56 @@ public class MooGUI extends JFrame { */ public void setStatus(String text) { statusBar.setText(text); + timer.schedule(new StatusResetTask(), statusResetDelay); } - + + /** + * Calls on the main view to update the track views, + * and on the toolbar to update the progress indicator. + */ + public synchronized void update(long tickPosition){ + if (updateView) view.update(tickPosition); + toolbar.updateProgInd(tickPosition); + } + + public MooView getView() { + return view; + } + + /** + * Creates an action for a specific octave. + * @param increase true for increase, false for decrease + */ + private Action createOctaveAction(final boolean increase) { + Action octaveAction = new AbstractAction() { + public void actionPerformed(ActionEvent ae) { + MooKeyboard.setRelativeOctave(increase); + }}; + return octaveAction; + } + /** - * Fills the track panel with track views for all tracks in the current sequence. + * Advances the current progress counter by printing a "." to the System output. + */ + private void advanceStatus() { + System.out.print("."); + } + + /** + * Listener for closing the program */ - private void createTrackViews() { - trackPanel.removeAll(); - Track[] tracks = seq.getTracks(); - trackPanel.setLayout(new GridLayout(1, tracks.length)); - trackViews = new MooTrackView[tracks.length]; - for (int i = 0; i < tracks.length; i++) { - trackViews[i] = new MooTrackView(tracks[i]); - trackPanel.add(new MooTrackView(tracks[i])); + class MooGUICloser extends WindowAdapter { + public void windowClosing(WindowEvent e) { + Moosique.quit(); } - trackPanel.validate(); } - class MooGUICloser extends WindowAdapter { - public void windowClosing(WindowEvent e) {Moosique.quit();} + /** + * TimerTask that resets the statusbar + */ + class StatusResetTask extends TimerTask { + public void run() { + setStatus(" "); + } } -} \ No newline at end of file +}