Intro
Part 1 - Loading Images for LWJGL
Part 2 - Loading Sounds for LWJGL
Part 3 - TrueType Fonts for LWJGL
As Java has built in support for the WAV and AIF format Slick-Util can load these sound formats out of the box. Additionally Slick-Util supports the OGG and XM formats using external libraries. Sound formats can either be completely loaded into memory or streamed from the file.
OGG Support
OGG is a patent free format and comparable to MP3 in features. Slick-Util supports this through the use of the Vorbis library. So if you intend to use OGG files you must also add the jorbis-*.jar and jogg-*.jar library jar files to the classpath, these can be found in the Slick-Util zip download.
XM Format
The XM format is a tracker format and is supported in Slick-Util with the support of the IBXM library. So if your using this format you will also need to add the ibxm.jar library jar to the classpath, it can also be found in the Slick-Util zip download.
Basics
Loading sounds with Slick-Util is pretty easy and similar to how textures are loaded. All the sound files are stored in the Audio class and loaded into that class using the AudioLoader class.
Since you are using OpenAL, do not forget to call the '''AL.destroy()''' method before your application closes. This will clean up the sound resources you are using.
import java.io.IOException; import org.lwjgl.LWJGLException; import org.lwjgl.input.Keyboard; import org.lwjgl.opengl.Display; import org.lwjgl.opengl.DisplayMode; import org.lwjgl.opengl.GL11; import org.lwjgl.openal.AL; import org.newdawn.slick.openal.Audio; import org.newdawn.slick.openal.AudioLoader; import org.newdawn.slick.openal.SoundStore; import org.newdawn.slick.util.ResourceLoader; public class SoundExample { /** The ogg sound effect */ private Audio oggEffect; /** The wav sound effect */ private Audio wavEffect; /** The aif source effect */ private Audio aifEffect; /** The ogg stream thats been loaded */ private Audio oggStream; /** The mod stream thats been loaded */ private Audio modStream; /** * Start the test */ public void start() { initGL(800,600); init(); while (true) { update(); GL11.glClear(GL11.GL_COLOR_BUFFER_BIT); render(); Display.update(); Display.sync(100); if (Display.isCloseRequested()) { Display.destroy(); AL.destroy(); System.exit(0); } } } /** * Initialise the GL display * * @param width The width of the display * @param height The height of the display */ private void initGL(int width, int height) { try { Display.setDisplayMode(new DisplayMode(width,height)); Display.create(); Display.setVSyncEnabled(true); } catch (LWJGLException e) { e.printStackTrace(); System.exit(0); } GL11.glEnable(GL11.GL_TEXTURE_2D); GL11.glShadeModel(GL11.GL_SMOOTH); GL11.glDisable(GL11.GL_DEPTH_TEST); GL11.glDisable(GL11.GL_LIGHTING); GL11.glClearColor(0.0f, 0.0f, 0.0f, 0.0f); GL11.glClearDepth(1); GL11.glEnable(GL11.GL_BLEND); GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA); GL11.glViewport(0,0,width,height); GL11.glMatrixMode(GL11.GL_MODELVIEW); GL11.glMatrixMode(GL11.GL_PROJECTION); GL11.glLoadIdentity(); GL11.glOrtho(0, width, height, 0, 1, -1); GL11.glMatrixMode(GL11.GL_MODELVIEW); } /** * Initialise resources */ public void init() { try { // you can play oggs by loading the complete thing into // a sound oggEffect = AudioLoader.getAudio("OGG", ResourceLoader.getResourceAsStream("testdata/restart.ogg")); // or setting up a stream to read from. Note that the argument becomes // a URL here so it can be reopened when the stream is complete. Probably // should have reset the stream by thats not how the original stuff worked oggStream = AudioLoader.getStreamingAudio("OGG", ResourceLoader.getResource("testdata/bongos.ogg")); // can load mods (XM, MOD) using ibxm which is then played through OpenAL. MODs // are always streamed based on the way IBXM works modStream = AudioLoader.getStreamingAudio("MOD", ResourceLoader.getResource("testdata/SMB-X.XM")); // playing as music uses that reserved source to play the sound. The first // two arguments are pitch and gain, the boolean is whether to loop the content modStream.playAsMusic(1.0f, 1.0f, true); // you can play aifs by loading the complete thing into // a sound aifEffect = AudioLoader.getAudio("AIF", ResourceLoader.getResourceAsStream("testdata/burp.aif")); // you can play wavs by loading the complete thing into // a sound wavEffect = AudioLoader.getAudio("WAV", ResourceLoader.getResourceAsStream("testdata/cbrown01.wav")); } catch (IOException e) { e.printStackTrace(); } } /** * Game loop update */ public void update() { while (Keyboard.next()) { if (Keyboard.getEventKeyState()) { if (Keyboard.getEventKey() == Keyboard.KEY_Q) { // play as a one off sound effect oggEffect.playAsSoundEffect(1.0f, 1.0f, false); } if (Keyboard.getEventKey() == Keyboard.KEY_W) { // replace the music thats curretly playing with // the ogg oggStream.playAsMusic(1.0f, 1.0f, true); } if (Keyboard.getEventKey() == Keyboard.KEY_E) { // replace the music thats curretly playing with // the mod modStream.playAsMusic(1.0f, 1.0f, true); } if (Keyboard.getEventKey() == Keyboard.KEY_R) { // play as a one off sound effect aifEffect.playAsSoundEffect(1.0f, 1.0f, false); } if (Keyboard.getEventKey() == Keyboard.KEY_T) { // play as a one off sound effect wavEffect.playAsSoundEffect(1.0f, 1.0f, false); } } } // polling is required to allow streaming to get a chance to // queue buffers. SoundStore.get().poll(0); } /** * Game loop render */ public void render() { } /** * Main method */ public static void main(String[] argv) { SoundExample soundExample = new SoundExample(); soundExample.start(); } }
Additional Credit
Kevin Glass for writing the Slick Library and initial example code.
Intro
Part 1 - Loading Images for LWJGL
Part 2 - Loading Sounds for LWJGL
Part 3 - TrueType Fonts for LWJGL