diff options
author | bjarni <bjarni@openttd.org> | 2005-10-10 15:22:47 +0000 |
---|---|---|
committer | bjarni <bjarni@openttd.org> | 2005-10-10 15:22:47 +0000 |
commit | 4eb7a0ac6b5c1cc42e04803633b5f9d3e47f6e10 (patch) | |
tree | 87786e8499bd48abfb4d61f0e024c6bb3ef02959 /os | |
parent | 7ab7d79190ceecb9560f1dc4091d7d53b9a5b023 (diff) | |
download | openttd-4eb7a0ac6b5c1cc42e04803633b5f9d3e47f6e10.tar.xz |
(svn r3029) -Change: [OSX] removed the buggy java midi player, which was rendered obsolite by r3022
Diffstat (limited to 'os')
-rw-r--r-- | os/macosx/OpenTTDMidi.java | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/os/macosx/OpenTTDMidi.java b/os/macosx/OpenTTDMidi.java deleted file mode 100644 index fc4e0b5b8..000000000 --- a/os/macosx/OpenTTDMidi.java +++ /dev/null @@ -1,55 +0,0 @@ -// -// OpenTTDMidi.java -// OpenTTDMidi -// -// Created by Joshua King on Sun Apr 25 2004. -// Copyright (c) 2004 __MyCompanyName__. All rights reserved. -// -import java.io.*; -import java.util.*; -import javax.sound.midi.*; - -public class OpenTTDMidi { - - public static void main (String args[]) { - // Currently command line is the MIDI file - if (args.length == 1) { - Sequencer s2 = null; - - try { - s2 = MidiSystem.getSequencer(); - s2.open(); - } catch (MidiUnavailableException mue) { - System.exit(1); - } - - Sequence s = null; - - try { - s = MidiSystem.getSequence(new File(args[0])); - } catch (InvalidMidiDataException imde) { - System.exit(2); - } catch (IOException ioe) { - System.exit(3); - } - - try { - s2.setSequence(s); - s2.setMicrosecondPosition(0); - s2.start(); - for (long l = 0; l < (s.getMicrosecondLength() / 1000000); l++) { - try { - //System.out.print("."); - Thread.currentThread().sleep(1000); - } catch (InterruptedException ie) {} - } - System.out.println(); - } catch (InvalidMidiDataException imde) { - } - - s2.stop(); - s2.close(); - System.exit(0); - } - } -} |