79c6427c21
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4191 542714f4-19e9-0310-aa3c-eee0fc999fb1
136 lines
3.7 KiB
Java
136 lines
3.7 KiB
Java
//
|
|
// $Id$
|
|
//
|
|
// Narya library - tools for developing networked games
|
|
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
|
|
// http://www.threerings.net/code/narya/
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU Lesser General Public License as published
|
|
// by the Free Software Foundation; either version 2.1 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
package com.threerings.media.sound;
|
|
|
|
import java.io.DataInputStream;
|
|
import java.io.InputStream;
|
|
|
|
import micromod.MicroMod;
|
|
import micromod.Module;
|
|
import micromod.ModuleLoader;
|
|
import micromod.output.JavaSoundOutputDevice;
|
|
import micromod.output.OutputDeviceException;
|
|
import micromod.output.converters.SS16LEAudioFormatConverter;
|
|
import micromod.resamplers.LinearResampler;
|
|
|
|
/**
|
|
* A player that plays .mod format music.
|
|
*/
|
|
public class ModPlayer extends MusicPlayer
|
|
{
|
|
// documentation inherited
|
|
public void init ()
|
|
throws Exception
|
|
{
|
|
_device = new NaryaSoundDevice();
|
|
_device.start();
|
|
}
|
|
|
|
// documentation inherited
|
|
public void shutdown ()
|
|
{
|
|
_device.stop();
|
|
}
|
|
|
|
// documentation inherited
|
|
public void start (InputStream stream)
|
|
throws Exception
|
|
{
|
|
Module module = ModuleLoader.read(new DataInputStream(stream));
|
|
|
|
final MicroMod mod = new MicroMod(
|
|
module, _device, new LinearResampler());
|
|
|
|
_player = new Thread("narya mod player") {
|
|
public void run () {
|
|
|
|
while (mod.getSequenceLoopCount() == 0) {
|
|
|
|
mod.doRealTimePlayback();
|
|
try {
|
|
Thread.sleep(20);
|
|
} catch (InterruptedException ie) {
|
|
// WFCares
|
|
}
|
|
|
|
if (_player != Thread.currentThread()) {
|
|
// we were stopped!
|
|
return;
|
|
}
|
|
}
|
|
_device.drain();
|
|
_musicListener.musicStopped();
|
|
}
|
|
};
|
|
|
|
_player.setDaemon(true);
|
|
_player.start();
|
|
}
|
|
|
|
// documentation inherited
|
|
public void stop ()
|
|
{
|
|
_player = null;
|
|
}
|
|
|
|
// documentation inherited
|
|
public void setVolume (float vol)
|
|
{
|
|
_device.setVolume(vol);
|
|
}
|
|
|
|
/**
|
|
* A class that allows us to access the dataline so we can adjust
|
|
* the volume.
|
|
*/
|
|
protected static class NaryaSoundDevice extends JavaSoundOutputDevice
|
|
{
|
|
public NaryaSoundDevice ()
|
|
throws OutputDeviceException
|
|
{
|
|
super(new SS16LEAudioFormatConverter(), 44100, 1000);
|
|
}
|
|
|
|
/**
|
|
* Adjust the volume of the line that we're sending our mod data to.
|
|
*/
|
|
public void setVolume (float vol)
|
|
{
|
|
SoundManager.adjustVolume(sourceDataLine, vol);
|
|
}
|
|
|
|
/**
|
|
* Access the drain method of the line.
|
|
*/
|
|
public void drain ()
|
|
{
|
|
sourceDataLine.drain();
|
|
}
|
|
}
|
|
|
|
/** The thread that does the work. */
|
|
protected Thread _player;
|
|
|
|
/** The sound output device. */
|
|
protected NaryaSoundDevice _device;
|
|
}
|