lwjgl/src/java/org/lwjgl/openal/AL.java

288 lines
8.8 KiB
Java
Raw Normal View History

2003-08-17 12:38:57 -04:00
/*
2004-06-12 16:28:34 -04:00
* Copyright (c) 2002-2004 LWJGL Project
2003-08-17 12:38:57 -04:00
* 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.
*
2004-06-12 16:28:34 -04:00
* * Neither the name of 'LWJGL' nor the names of
2003-08-17 12:38:57 -04:00
* 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;
2004-02-26 16:51:58 -05:00
import java.io.File;
import java.lang.reflect.Method;
import java.util.StringTokenizer;
import java.util.List;
import java.util.ArrayList;
import org.lwjgl.LWJGLException;
import org.lwjgl.Sys;
2004-02-26 16:51:58 -05:00
2003-08-17 12:38:57 -04:00
/**
* $Id$
* <br>
* This is the OpenAL class. It extends the latest core.
*
* @author Brian Matzon <brian@matzon.dk>
* @version $Revision$
*/
2004-08-01 17:26:25 -04:00
public final class AL {
2003-08-17 12:38:57 -04:00
/** 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
2004-02-26 16:51:58 -05:00
* implementation specific default.
*/
2003-08-17 12:38:57 -04:00
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 {
2004-03-27 08:48:58 -05:00
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;
}
2003-08-17 12:38:57 -04:00
/**
* 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.*
2003-08-17 12:38:57 -04:00
*/
public static void create(String deviceArguments, int contextFrequency, int contextRefresh, boolean contextSynchronized)
throws LWJGLException {
if (created) {
return;
}
2003-08-17 12:38:57 -04:00
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
List possible_paths = new ArrayList();
String osName = System.getProperty("os.name");
String libname;
String platform_lib_name;
if (osName.startsWith("Win")) {
libname = "lwjglaudio";
platform_lib_name = "lwjglaudio.dll";
} else if (osName.startsWith("Lin")) {
libname = "openal";
platform_lib_name = "libopenal.so";
} else if (osName.startsWith("Mac")) {
libname = "openal";
platform_lib_name = "openal.dylib";
} else {
throw new LWJGLException("Unknown platform: "+osName);
}
// Add all possible paths from java.library.path
String java_library_path = System.getProperty("java.library.path");
StringTokenizer st = new StringTokenizer(System.getProperty("java.library.path"), File.pathSeparator);
while (st.hasMoreTokens()) {
String path = st.nextToken();
possible_paths.add(path + File.separator + platform_lib_name);
}
String classloader_path = getPathFromClassLoader(libname);
if (classloader_path != null) {
Sys.log("getPathFromClassLoader: Path found: " + classloader_path);
possible_paths.add(classloader_path);
}
String lwjgl_classloader_path = getPathFromClassLoader("lwjgl");
if (lwjgl_classloader_path != null) {
Sys.log("getPathFromClassLoader: Path found: " + lwjgl_classloader_path);
possible_paths.add(lwjgl_classloader_path.substring(0, lwjgl_classloader_path.lastIndexOf(File.separator))
+ File.separator + platform_lib_name);
}
//add cwd path
possible_paths.add(platform_lib_name);
//create needed string array
String[] oalPaths = new String[possible_paths.size()];
possible_paths.toArray(oalPaths);
return oalPaths;
}
2003-08-17 12:38:57 -04:00
/**
* Creates an OpenAL instance. The empty create will cause OpenAL to
* open the default device, and create a context using default values.
*/
public static void create() throws LWJGLException {
if (created) {
return;
2003-08-17 12:38:57 -04:00
}
String[] oalPaths = getOALPaths();
nCreate(oalPaths);
created = true;
try {
AL10.initNativeStubs();
ALC.initNativeStubs();
device = ALC.alcOpenDevice(deviceArguments);
if (device == null)
throw new LWJGLException("Could not open ALC device");
//check if doing default values or not
if (contextFrequency == -1) {
context = ALC.alcCreateContext(device.device, null);
} else {
context = ALC.alcCreateContext(device.device,
ALCcontext.createAttributeList(contextFrequency, contextRefresh, contextSynchronized));
}
ALC.alcMakeContextCurrent(context.context);
created = true;
} catch (LWJGLException e) {
destroy();
throw e;
}
2003-08-17 12:38:57 -04:00
}
/**
* Exit cleanly by calling destroy.
*/
public static void destroy() {
if (context != null) {
ALC.alcDestroyContext(context.context);
context = null;
}
if (device != null) {
ALC.alcCloseDevice(device.device);
device = null;
}
resetNativeStubs(AL10.class);
resetNativeStubs(ALC.class);
2003-08-17 12:38:57 -04:00
deviceArguments = null;
contextFrequency = -1;
contextRefresh = -1;
contextSynchronized = ALC.ALC_FALSE;
if (created)
nDestroy();
created = false;
2003-08-17 12:38:57 -04:00
}
/**
* Tries to locate OpenAL from the current ClassLoader
* This method exists because OpenAL is loaded from native code, and as such
* is exempt from ClassLoader library loading rutines. OpenAL therefore always fails.
* We therefore invoke the protected method of the ClassLoader to see if it can
* locate it.
*
* @param libname Name of library to search for
* @return Absolute path to library if found, otherwise null
*/
private static String getPathFromClassLoader(String libname) {
try {
Sys.log("getPathFromClassLoader: searching for: " + libname);
Object o = AL.class.getClassLoader();
Class c = o.getClass();
while (c != null) {
try {
Method findLibrary = c.getDeclaredMethod("findLibrary", new Class[] { String.class });
findLibrary.setAccessible(true);
Object[] arguments = new Object[] { libname };
return (String)findLibrary.invoke(o, arguments);
} catch (NoSuchMethodException e) {
c = c.getSuperclass();
}
}
} catch (Exception e) {
Sys.log("Failure locating OpenAL using classloader:" + e);
}
return null;
}
private static native void resetNativeStubs(Class clazz);
2004-08-10 06:31:52 -04:00
/**
* Gets a handle to the current openAL context. The handle is "opaque" right now
* because, realistically, there is nothing you can actually do with it. If it turns
* out that there are useful things you can do with it then it'll return an instance
* of ALCcontext (which will have to become a public class)
* @return an opaque handle to the AL context.
*/
public static Object getContext() {
return context;
}
}