Files
@ r1004:0bc78a4d4709
Branch filter:
Location: cpp/openttd-patchpack/source/os/macos/openttdmidi.java - annotation
r1004:0bc78a4d4709
1.1 KiB
text/x-java-source
(svn r1503) Added feature:
o allows users to setup the production values of the rawmaterial producing
industries in the editor
Modified:
o ttd.h - added CT_INVALID for 0xFF cargo type
o english.txt - added 1 string
o industry_gui.c - the feature itself
o window.h - added compile asserts to the structs which checks whether their
sizes are smaller than WINDOW_CUSTOM_SIZE
Thanks:
o Darkvater to bother me to constantly improve the patch
o Various users at #openttd for testing
o allows users to setup the production values of the rawmaterial producing
industries in the editor
Modified:
o ttd.h - added CT_INVALID for 0xFF cargo type
o english.txt - added 1 string
o industry_gui.c - the feature itself
o window.h - added compile asserts to the structs which checks whether their
sizes are smaller than WINDOW_CUSTOM_SIZE
Thanks:
o Darkvater to bother me to constantly improve the patch
o Various users at #openttd for testing
r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 r0:d63b455452f6 | //
// 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);
}
}
}
|