Package com.pointcliki.dizgruntled.rez

Source Code of com.pointcliki.dizgruntled.rez.MonolithWAV

package com.pointcliki.dizgruntled.rez;

import java.io.ByteArrayInputStream;

import org.newdawn.slick.SlickException;
import org.newdawn.slick.Sound;

public class MonolithWAV {

  protected MonolithFile fFile;
  protected Sound fSound;
 
  public MonolithWAV(MonolithFile file) {
    fFile = file;
  }
 
  public Sound sound() {
    if (fSound != null) return fSound;
    if (fFile == null) return null;
    try {
      fSound = new Sound(new ByteArrayInputStream(fFile.data()));
    } catch (SlickException e) {
      e.printStackTrace();
    }
    return fSound;
  }
}
TOP

Related Classes of com.pointcliki.dizgruntled.rez.MonolithWAV

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.