//Sound soundPlayer;
PlayerListener soundListener = new EMSoundListener();
Player soundPlayer;
EMSound currentSound = null;
boolean soundPlaying = false;
boolean soundEnable = true;
class EMSoundListener
implements PlayerListener {
public void playerUpdate(Player player, String event, Object eventData)
{ //soundStateChanged(int event)
if (event == PlayerListener.STOPPED) {
soundPlaying = false;
}
if (event == PlayerListener.STARTED) {
soundPlaying = true;
}
}
}
public EMSound loadSound(String resfile, int resID) {
EMSound sound;
try {
InputStream is = getClass().getResourceAsStream(resfile + "/" + resID +
".mid");
int len = (int) is.skip(10000);
is.close();
is = getClass().getResourceAsStream(resfile + "/" + resID + ".mid");
byte[] barr = new byte[len];
is.read(barr);
is.close();
sound = new EMSound(barr, "audio/midi");
}
catch (Exception ex) {
sound = null;
}
return sound;
}
public void playSound(EMSound sound, int count) {
if (!soundEnable) {
return;
}
try {
if (soundPlaying) {
stopSound();
}
if (soundPlayer == null) {
soundPlayer = Manager.createPlayer(new ByteArrayInputStream(sound.data),
sound.type);
soundPlayer.addPlayerListener(soundListener);
currentSound = null;
}
if (sound != currentSound) {
soundPlayer.close();
soundPlayer = Manager.createPlayer(new ByteArrayInputStream(sound.data),
sound.type);
currentSound = sound;
}
soundPlayer.start();
}
catch (Exception ex) {
soundPlaying = false;
System.out.println(ex.toString());
}
}
public void stopSound() {
if (!soundEnable) {
return;
}
if (soundPlayer != null) {
try {
soundPlayer.stop();
}
catch (Exception e) {
System.out.print(e.toString());
}
}
}
public boolean isSoundPlaying() {
return soundPlaying;
}
public boolean isSoundEnable() {
return soundEnable;
}