/* * Copyright (c) 2002-2008 LWJGL Project * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of 'LWJGL' nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package org.lwjgl.test.openal; import java.nio.IntBuffer; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.Set; import java.util.Map.Entry; import org.lwjgl.BufferUtils; import org.lwjgl.LWJGLException; import org.lwjgl.openal.AL; import org.lwjgl.openal.AL10; import org.lwjgl.openal.ALC10; import org.lwjgl.openal.ALC11; import org.lwjgl.openal.ALCdevice; import org.lwjgl.openal.EFX10; import org.lwjgl.openal.EFXUtil; /** * * idea from openal-info * * @author Brian Matzon * @version $Revision: 2983 $ * $Id$ */ public class OpenALInfo { /** * Creates an instance of OpenALInfo */ public OpenALInfo() { } /** * Runs the actual test, using supplied arguments */ protected void execute(String[] args) { try { AL.create(null, -1, 60, false); checkForErrors(); } catch (LWJGLException le) { die("Init", le.getMessage()); } printALCInfo(); printALInfo(); printEFXInfo(); checkForErrors(); AL.destroy(); } private void printALCInfo() { IntBuffer version = BufferUtils.createIntBuffer(2); ALCdevice device; if(ALC10.alcIsExtensionPresent(null, "ALC_ENUMERATION_EXT")) { if(ALC10.alcIsExtensionPresent(null, "ALC_ENUMERATE_ALL_EXT")) { printDevices(ALC11.ALC_ALL_DEVICES_SPECIFIER, "playback"); } else { printDevices(ALC10.ALC_DEVICE_SPECIFIER, "playback"); } printDevices(ALC11.ALC_CAPTURE_DEVICE_SPECIFIER, "capture"); } else { System.out.println("No device enumeration available"); } device = ALC10.alcGetContextsDevice(ALC10.alcGetCurrentContext()); checkForErrors(); System.out.println("Default playback device: " + ALC10.alcGetString(device, ALC10.ALC_DEFAULT_DEVICE_SPECIFIER)); System.out.println("Default capture device: " + ALC10.alcGetString(device, ALC11.ALC_CAPTURE_DEFAULT_DEVICE_SPECIFIER)); ALC10.alcGetInteger(AL.getDevice(), ALC10.ALC_MAJOR_VERSION, version); ALC10.alcGetInteger(AL.getDevice(), ALC10.ALC_MINOR_VERSION, (IntBuffer) version.position(1)); checkForErrors(); System.out.println("ALC version: " + (int)version.get(0) + "." + (int)version.get(1)); System.out.println("ALC extensions:"); String[] extensions = ALC10.alcGetString(device, ALC10.ALC_EXTENSIONS).split(" "); for(int i=0; i