/* * Copyright (c) 2002-2004 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.openal; import java.io.File; import java.lang.reflect.Method; import java.util.StringTokenizer; import org.lwjgl.LWJGLException; import org.lwjgl.Sys; /** * $Id$ *
* This is the OpenAL class. It extends the latest core. * * @author Brian Matzon * @version $Revision$ */ public final class AL { /** ALC instance. */ protected static ALC alc; /** ALCdevice instance. */ protected static ALCdevice device; /** Current ALCcontext. */ protected static ALCcontext context; /** * String that requests a certain device or device configuration. * If null is specified, the implementation will provide an * implementation specific default. */ protected static String deviceArguments; /** Frequency for mixing output buffer, in units of Hz. */ protected static int contextFrequency = -1; /** Refresh intervalls, in units of Hz. */ protected static int contextRefresh = -1; /** Flag, indicating a synchronous context. */ protected static int contextSynchronized = ALC.ALC_FALSE; /** Have we been created? */ protected static boolean created; static { Sys.initialize(); } private AL() { } /** * Native method to create AL instance * * @param oalPaths Array of strings containing paths to search for OpenAL library */ protected static native void nCreate(String[] oalPaths) throws LWJGLException; /** * Native method the destroy the AL */ protected static native void nDestroy(); /** * @return true if AL has been created */ public static boolean isCreated() { return created; } /** * Creates an OpenAL instance. Using this constructor will cause OpenAL to * open the device using supplied device argument, and create a context using the context values * supplied. * * @param deviceArguments Arguments supplied to native device * @param contextFrequency Frequency for mixing output buffer, in units of Hz (Common values include 11025, 22050, and 44100). * @param contextRefresh Refresh intervalls, in units of Hz. * @param contextSynchronized Flag, indicating a synchronous context.* */ public static void create(String deviceArguments, int contextFrequency, int contextRefresh, boolean contextSynchronized) throws LWJGLException { if (created) { return; } AL.deviceArguments = deviceArguments; AL.contextFrequency = contextFrequency; AL.contextRefresh = contextRefresh; AL.contextSynchronized = contextSynchronized ? ALC.ALC_TRUE : ALC.ALC_FALSE; create(); } private static String[] getOALPaths() throws LWJGLException { // need to pass path of possible locations of OAL to native side String libpath = System.getProperty("java.library.path"); String seperator = System.getProperty("path.separator"); String jwsLibname; String osName = System.getProperty("os.name"); if (osName.startsWith("Win")) { jwsLibname = "lwjglaudio"; } else if (osName.startsWith("Lin")) { jwsLibname = "openal"; } else if (osName.startsWith("Mac")) { jwsLibname = "openal"; } else { throw new LWJGLException("Unknown platform: "+osName); } String jwsPath = getPathFromClassLoader(jwsLibname); if (jwsPath != null) { Sys.log("getPathFromClassLoader: Path found: " + jwsPath); libpath += seperator + jwsPath.substring(0, jwsPath.lastIndexOf(File.separator)); } String lwjgl_jws_path = getPathFromClassLoader("lwjgl"); if (lwjgl_jws_path != null) { Sys.log("getPathFromClassLoader: Path found: " + lwjgl_jws_path); libpath += seperator + lwjgl_jws_path.substring(0, lwjgl_jws_path.lastIndexOf(File.separator)); } StringTokenizer st = new StringTokenizer(libpath, seperator); //create needed string array String[] oalPaths = new String[st.countTokens() + 1]; //build paths for (int i = 0; i < oalPaths.length - 1; i++) { oalPaths[i] = st.nextToken() + File.separator; } for(int i=0 ; i