]> ruin.nu Git - moosique.git/blobdiff - Moosique.java
Implemented most of MooNote and Moosique
[moosique.git] / Moosique.java
index 609372bb4a77e1604e44b60f616ebbbae0075dfa..792a7f2ba5d564e47700542e2d082c808178f9a0 100644 (file)
@@ -1,9 +1,20 @@
 import javax.sound.midi.*;
+import javax.swing.*;
 import java.io.*;
 
-/**
- * Moosique - The trackers approach to MIDI
- * blaha
+/* UPDATES
+       Killed superfluous exportMIDI method.
+       Added public static void quit()
+       Removed Sequence seq property.
+       Changed forward(int measures) and rewind(int measures) to forward(long ticks) and rewind(long ticks).
+       Added public static long getPosition()
+       Added public static void setPosition(long ticks)
+       Added public static void resume()
+*/
+
+/*
+ * Moosique - The MIDI Tracker
+ * 
  * Main class that handles initiation, IO and sound FX.
  * 
  * @author  Andersson, Andreen, Lanneskog, Pehrson
@@ -13,89 +24,200 @@ import java.io.*;
 public class Moosique {
 
        private static MooGUI gui;
-       private static MooSequence seq;
+       private static Sequence seq;
+
+       private static Sequencer sequencer = null;
+       private static Synthesizer synthesizer = null;
+       private static MidiChannel[] channels;
+
        private static String filename;
+       private static long position;
 
-       /** 
-        * Runs the application.
+       /* 
+        * Starts the application.
         */
        public static void main (String[] args) {
+               System.out.println("Moosique version 1.0");
+               // Acquires MIDI devices and connects them.
+               try {
+                       sequencer = MidiSystem.getSequencer();
+                       sequencer.open();
+                       synthesizer = MidiSystem.getSynthesizer();
+                       synthesizer.open();
+                       sequencer.getTransmitter().setReceiver(synthesizer.getReceiver());
+               } catch (MidiUnavailableException e) {
+                       System.out.println("Unable to initialize MIDI devices.");
+                       quit();
+               }
+
+               //If a filename is given as the command-line argument, attempts to load a sequence from the file.
+               try {
+                       if (args.length == 1) {
+                               if (!load(args[0])) seq = new Sequence(Sequence.PPQ, 96);
+                       } else {
+                               // Otherwise creates a new empty one.
+                               seq = new Sequence(Sequence.PPQ, 96);
+                       }
+               } catch (InvalidMidiDataException e) {}
 
+               // Sets up channels and GUI.
+               channels = synthesizer.getChannels();
+               gui = new MooGUI();
        }
 
-       /** 
+       /* 
         * Returns a pointer to the current sequence.
         * @return the current sequence
         */
-       public static MooSequence getSequence() {
-       
+       public static Sequence getSequence() {
+               return seq;
        }
 
-       /** 
+       /* 
         * Starts playback of the current sequence.
         */
        public static void play() {
-       
+               try {
+                       sequencer.setSequence(seq);
+               } catch (InvalidMidiDataException e) {}
+               sequencer.setTickPosition(position);
+               sequencer.start();
        }
 
-       /** 
+       /* 
         * Pauses playback of the current sequence.
         */
        public static void pause() {
-       
+               sequencer.stop();
        }
 
-       /** 
+       /* 
+        * Resumes playback of the current sequence.
+        */
+       public static void resume() {
+               sequencer.start();
+       }
+
+       /* 
         * Stops playback of the current sequence.
         */
        public static void stop() {
-       
+               sequencer.stop();
+               sequencer.setTickPosition(position);
+       }
+
+       /* 
+        * Rewinds the current sequence the given number of measures.
+        * @param measures      the number of measures to rewind
+        */
+       public static long getPosition() {
+               return position;
        }
 
-       /** 
+       /* 
         * Rewinds the current sequence the given number of measures.
         * @param measures      the number of measures to rewind
         */
-       public static void rewind(int measures) {
-       
+       public static void setPosition(long ticks) {
+               position = ticks;
        }
 
-       /** 
+       /* 
+        * Rewinds the current sequence the given number of measures.
+        * @param measures      the number of measures to rewind
+        */
+       public static void rewind(long ticks) {
+               position -= ticks;
+       }
+
+       /* 
         * Fast forwards the current sequence the given number of measures.
         * @param measures      the number of measures to fast forward
         */
-       public static void forward(int measures) {
-       
+       public static void forward(long ticks) {
+               position += ticks;
        }
 
-       /** 
+       /* 
         * Loads the MooSequence in the given file.
         * @param filename      the filename to use
         */
-       public static void load(String filename) throws IOException {
-       
+       public static boolean load(String file) {
+               // Loads sequence from file
+               filename = file;
+               try {
+                       seq = MidiSystem.getSequence(new File(filename));
+               } catch (InvalidMidiDataException e) {
+                       return false;
+               } catch (IOException e) {
+                       JOptionPane.showMessageDialog(null, "File", "alert", JOptionPane.ERROR_MESSAGE); 
+                       return false;
+               }
+
+               // Sends sequence to GUI
+               gui.setSequence(seq);
+
+               // Searches the sequence for NoteOn events
+               Track[] tracks = seq.getTracks();
+               MidiEvent noteOn, noteOff = null, nextEvent;
+               MidiMessage nextMsg;
+               ShortMessage shortMsg;
+               for (int i = 0; i < tracks.length; i++) {
+                       for (int j = 0; j < tracks[i].size(); j++) {
+                               noteOn = tracks[i].get(j);
+                               if (noteOn.getMessage() instanceof ShortMessage) {
+                                       if (((ShortMessage)noteOn.getMessage()).getCommand() == ShortMessage.NOTE_ON) {
+                                               // Finds the corresponding NoteOff event
+                                               for (int k = j + 1; k < tracks[i].size(); k++) {
+                                                       nextEvent = tracks[i].get(k);
+                                                       nextMsg = nextEvent.getMessage();
+                                                       if (nextMsg instanceof ShortMessage) {
+                                                               shortMsg = (ShortMessage) nextMsg;
+                                                               if (shortMsg.getCommand() == ShortMessage.NOTE_OFF && shortMsg.getChannel() == ((ShortMessage)noteOn.getMessage()).getChannel() && shortMsg.getData1() == ((ShortMessage)noteOn.getMessage()).getData1()) {
+                                                                       noteOff = nextEvent;
+                                                                       break;
+                                                               }
+                                                       }
+                                               }
+                                               // Replaces the NoteOn event with a MooNote, if possible with the corresponding NoteOff event
+                                               tracks[i].remove(noteOn);
+                                               if (noteOff != null) {
+                                                       tracks[i].add(new MooNote(noteOn, noteOff));
+                                               } else {
+                                                       tracks[i].add(new MooNote(noteOn));
+                                               }
+                                       }
+                               }
+                       }
+               }
+               return true;
        }
 
-       /** 
+       /* 
         * Saves the current sequence to the given filename
         * @param filename      the filename to use
         */
        public static void saveAs(String filename) throws IOException {
-               
+               MidiSystem.write(seq, 1, new File(filename));
+
        }
 
-       /** 
+       /* 
         * Saves the current sequence to the previously given filename.
         */
        public static void save() throws IOException {
-       
+               saveAs(filename);
        }
 
-       /** 
-        * Exports the current sequence to a standard MIDI file.
-        * @param filename      the filename to use
+       /* 
+        * Releases all reserved devices and exits the program.
         */
-       public static void exportMIDI(String filename) throws IOException {
-       
+       public static void quit() {
+               if (sequencer.isOpen()) {
+                       try {
+                               sequencer.open();
+                       } catch (MidiUnavailableException e) {}
+               }
+               System.exit(0);
        }
-}
+}
\ No newline at end of file