X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=Moosique.java;h=32c4d375d7e43b0f7b502d0b6b25730f8b0e6771;hb=4ac3b6210979ea78dceb609a0501cb0265d00065;hp=6efb2d1f747fa89e158abb2eefd15c40a3468391;hpb=287a944858d5f8f4db2c58d8fb734589ee8e784f;p=moosique.git diff --git a/Moosique.java b/Moosique.java index 6efb2d1..32c4d37 100644 --- a/Moosique.java +++ b/Moosique.java @@ -5,52 +5,61 @@ import java.io.*; /* * Moosique - The MIDI Tracker * - * Main class that handles initiation, IO and sound FX. + * Main class that handles initiation, IO and sound. * - * @author Andersson, Andreen, Lanneskog, Pehrson - * @version 1 + * @author Einar Pehrson */ public class Moosique { - private static MooGUI gui; - private static Sequence seq; + protected static MooGUI gui; + protected static Sequence seq; - private static Sequencer sequencer = null; - private static Synthesizer synthesizer = null; - private static MidiChannel[] channels; + protected static Sequencer sequencer = null; + protected static Synthesizer synthesizer = null; + protected static MidiChannel[] channels; + protected static MidiChannel activeChannel; - private static String filename; - private static long position; + protected static String filename; + protected static long position; /* * Starts the application. */ public static void main (String[] args) { - System.out.println("Moosique version 1.0"); + System.out.println("\nMoosique version 1.0\n"); // Acquires MIDI devices and connects them. + System.out.print("Initializing MIDI devices."); try { sequencer = MidiSystem.getSequencer(); + System.out.print("."); sequencer.open(); synthesizer = MidiSystem.getSynthesizer(); + System.out.print("."); synthesizer.open(); sequencer.getTransmitter().setReceiver(synthesizer.getReceiver()); + channels = synthesizer.getChannels(); + setActiveChannel(0); } catch (MidiUnavailableException e) { - System.out.println("Unable to initialize MIDI devices."); + System.out.println("Failed, quitting."); quit(); } + System.out.println("Done"); //If a filename is given as the command-line argument, attempts to load a sequence from the file. + System.out.print("Loading MIDI sequence..."); if (args.length == 1) { - if (!load(args[0])) createSequence(); + if (!load(args[0])) clearSequence(); } else { // Otherwise creates a new empty one. - createSequence(); + clearSequence(); } + System.out.println("Done"); // Sets up channels and GUI. - channels = synthesizer.getChannels(); + System.out.print("Creating GUI..."); gui = new MooGUI(seq); + System.out.println("Done"); } /* @@ -62,13 +71,40 @@ public class Moosique { } /* - * Returns a pointer to the current sequence. - * @return the current sequence + * Returns a pointer to the MidiChannels of the selected synthesizer. + * @return the available MidiChannels + */ + public static MidiChannel[] getChannels() { + return channels; + } + + /* + * Returns a pointer to the currently active MidiChannel. + * @return the active MidiChannel + */ + public static MidiChannel getActiveChannel() { + return activeChannel; + } + + /* + * Sets the currently active MidiChannel. + * @param channel the number of the MidiChannel to activate + */ + public static void setActiveChannel(int channel) { + activeChannel = channels[channel]; + } + + /* + * Replaces the current sequence with a new one, holding three empty tracks. */ - public static void createSequence() { + public static void clearSequence() { + // Creates sequence. try { - seq = new Sequence(Sequence.PPQ, 96); + seq = new Sequence(Sequence.PPQ, 96, 3); } catch (InvalidMidiDataException e) {} + // Sends sequence to GUI. + if (gui != null) gui.setSequence(seq); + } /* @@ -153,7 +189,7 @@ public class Moosique { } // Sends sequence to GUI - gui.setSequence(seq); + if (gui != null) gui.setSequence(seq); // Searches the sequence for NoteOn events Track[] tracks = seq.getTracks();