mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
- Fixed Sarkhan Vol and Ajani Goldmane token controllership issues. Also fixed Ajani Goldmane?\127 lifegain after a different player takes control of it. - Memnarch's first ability will put the Artifact type at the beginning of the type text (so "Artifact Planeswalker - Ajani" instead of "Planeswalker - Ajani Artifact"). - Planeswalkers with the same "subtype" should get destroyed correctly now if there are two or more in play, even if one of them got "Memnarched" into an artifact.
116 lines
3.3 KiB
Java
116 lines
3.3 KiB
Java
/*
|
|
* 11/19/04 1.0 moved to LGPL.
|
|
*-----------------------------------------------------------------------
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Library General Public License as published
|
|
* by the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*----------------------------------------------------------------------
|
|
*/
|
|
|
|
package javazoom.jl.player.advanced;
|
|
|
|
import java.io.BufferedInputStream;
|
|
import java.io.File;
|
|
import java.io.FileInputStream;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
|
|
import javazoom.jl.decoder.JavaLayerException;
|
|
|
|
/**
|
|
* This class implements a sample player using Playback listener.
|
|
*/
|
|
public class jlap
|
|
{
|
|
|
|
public static void main(String[] args)
|
|
{
|
|
jlap test = new jlap();
|
|
if (args.length != 1)
|
|
{
|
|
test.showUsage();
|
|
System.exit(0);
|
|
}
|
|
else
|
|
{
|
|
try
|
|
{
|
|
test.play(args[0]);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
System.err.println(ex.getMessage());
|
|
System.exit(0);
|
|
}
|
|
}
|
|
}
|
|
|
|
public void play(String filename) throws JavaLayerException, IOException
|
|
{
|
|
InfoListener lst = new InfoListener();
|
|
playMp3(new File(filename), lst);
|
|
}
|
|
|
|
public void showUsage()
|
|
{
|
|
System.out.println("Usage: jla <filename>");
|
|
System.out.println("");
|
|
System.out.println(" e.g. : java javazoom.jl.player.advanced.jlap localfile.mp3");
|
|
}
|
|
|
|
public static AdvancedPlayer playMp3(File mp3, PlaybackListener listener) throws IOException, JavaLayerException
|
|
{
|
|
return playMp3(mp3, 0, Integer.MAX_VALUE, listener);
|
|
}
|
|
|
|
public static AdvancedPlayer playMp3(File mp3, int start, int end, PlaybackListener listener) throws IOException, JavaLayerException
|
|
{
|
|
return playMp3(new BufferedInputStream(new FileInputStream(mp3)), start, end, listener);
|
|
}
|
|
|
|
public static AdvancedPlayer playMp3(final InputStream is, final int start, final int end, PlaybackListener listener) throws JavaLayerException
|
|
{
|
|
final AdvancedPlayer player = new AdvancedPlayer(is);
|
|
player.setPlayBackListener(listener);
|
|
// run in new thread
|
|
new Thread()
|
|
{
|
|
public void run()
|
|
{
|
|
try
|
|
{
|
|
player.play(start, end);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
throw new RuntimeException(e.getMessage());
|
|
}
|
|
}
|
|
}.start();
|
|
return player;
|
|
}
|
|
|
|
public static class InfoListener extends PlaybackListener
|
|
{
|
|
public void playbackStarted(PlaybackEvent evt)
|
|
{
|
|
System.out.println("Play started from frame " + evt.getFrame());
|
|
}
|
|
|
|
public void playbackFinished(PlaybackEvent evt)
|
|
{
|
|
System.out.println("Play completed at frame " + evt.getFrame());
|
|
System.exit(0);
|
|
}
|
|
}
|
|
} |