lwjgl/src/native/common/org_lwjgl_openal_ALC.cpp

341 lines
10 KiB
C++
Raw Normal View History

2002-08-20 10:46:04 -04:00
/*
* Copyright (c) 2002 Lightweight Java Game Library Project
2002-08-20 10:46:04 -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.
*
* * Neither the name of 'Lightweight Java Game Library' nor the names of
2002-08-20 10:46:04 -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.
*/
/**
* $Id$
*
* This is the actual JNI implementation of the OpenAL context/device library.
*
* @author Brian Matzon <brian@matzon.dk>
* @version $Revision$
*/
#include "org_lwjgl_openal_ALC.h"
/* OpenAL includes */
2002-08-26 14:23:11 -04:00
#include "checkALerror.h"
2002-12-14 07:49:16 -05:00
#include "extal.h"
2002-08-20 10:46:04 -04:00
/*
* Class: org_lwjgl_openal_ALC
* Method: nCreate
* Signature: ()Z
*/
JNIEXPORT jboolean JNICALL Java_org_lwjgl_openal_ALC_nCreate (JNIEnv *env, jclass clazz) {
2002-12-14 07:49:16 -05:00
//check that our methods have been loaded
if(alEnable == NULL) {
jclass cls = env->FindClass("org/lwjgl/openal/OpenALException");
env->ThrowNew(cls, (const char*) "Unable to loacate OpenAL Methods. Please assert that AL was created successfully.");
env->DeleteLocalRef(cls);
return false;
}
return true;
}
/*
* Class: org_lwjgl_openal_ALC
* Method: nDestroy
* Signature: ()V
*/
JNIEXPORT void JNICALL Java_org_lwjgl_openal_ALC_nDestroy (JNIEnv *env, jclass clazz) {
}
2002-08-20 10:46:04 -04:00
/**
* This function returns strings related to the context.
*
* C Specification:
* ALubyte * alcGetString(ALCdevice *device, ALenum token);
*/
JNIEXPORT jstring JNICALL Java_org_lwjgl_openal_ALC_nGetString (JNIEnv *env, jclass clazz, jint deviceaddress, jint token) {
const char* alcString = (const char*) alcGetString((ALCdevice*) deviceaddress, (ALenum) token);
if(alcString == NULL) {
return NULL;
}
jstring string = env->NewStringUTF(alcString);
2002-08-26 14:23:11 -04:00
CHECK_ALC_ERROR
return string;
2002-08-20 10:46:04 -04:00
}
/**
* This function returns integers related to the context.
*
* C Specification:
* ALvoid alcGetIntegerv(ALCdevice *device, ALenum token, ALsizei size, ALint *dest);
*/
JNIEXPORT void JNICALL Java_org_lwjgl_openal_ALC_nGetIntegerv (JNIEnv *env, jclass clazz, jint deviceaddress, jint token, jint size, jobject dest) {
ALint* address = NULL;
if (dest != NULL) {
address = (ALint*) env->GetDirectBufferAddress(dest);
}
alcGetIntegerv((ALCdevice*) deviceaddress, (ALenum) token, (ALsizei) size, address);
2002-08-26 14:23:11 -04:00
CHECK_ALC_ERROR
2002-08-20 10:46:04 -04:00
}
/**
* This function opens a device by name.
*
* C Specification:
* ALCdevice *alcOpenDevice( const ALubyte *tokstr );
*/
JNIEXPORT jobject JNICALL Java_org_lwjgl_openal_ALC_alcOpenDevice (JNIEnv *env, jclass clazz, jstring tokstr) {
2003-03-17 13:34:43 -05:00
const char * tokenstring;
2003-03-17 13:34:43 -05:00
jboolean isCopy = JNI_FALSE;
if(tokstr != NULL) {
2003-03-17 13:34:43 -05:00
tokenstring = (env->GetStringUTFChars(tokstr, &isCopy));
} else {
tokenstring = NULL;
}
2002-08-20 10:46:04 -04:00
/* get device */
2003-03-17 13:34:43 -05:00
ALCdevice* device = alcOpenDevice((ALubyte *) tokenstring);
2002-08-20 10:46:04 -04:00
/* if error - cleanup and get out */
if(device == NULL) {
if(tokenstring != NULL) {
2003-03-17 13:34:43 -05:00
env->ReleaseStringUTFChars(tokstr, tokenstring);
}
return NULL;
}
2002-08-20 10:46:04 -04:00
/* get ready to create ALCdevice instance */
jobject alcDevice_object = NULL;
jclass alcDevice_class = NULL;
jmethodID alcDevice_method = NULL;
/* find class and constructor */
alcDevice_class = env->FindClass("org/lwjgl/openal/ALCdevice");
alcDevice_method = env->GetMethodID(alcDevice_class, "<init>", "(I)V");
/* create instance */
alcDevice_object = env->NewObject(alcDevice_class, alcDevice_method, (int) device);
/* clean up */
2003-03-17 13:34:43 -05:00
if (tokenstring != NULL)
env->ReleaseStringUTFChars(tokstr, tokenstring);
2002-08-20 10:46:04 -04:00
return alcDevice_object;
}
/**
* This function closes a device by name.
*
* C Specification:
* void alcCloseDevice( ALCdevice *dev );
*/
JNIEXPORT void JNICALL Java_org_lwjgl_openal_ALC_alcCloseDevice (JNIEnv *env, jclass clazz, jint deviceaddress) {
2002-08-20 10:46:04 -04:00
alcCloseDevice((ALCdevice*) deviceaddress);
2002-08-26 14:23:11 -04:00
CHECK_ALC_ERROR
2002-08-20 10:46:04 -04:00
}
/**
* This function creates a context using a specified device.
*
* C Specification:
* ALCcontext* alcCreateContext( ALCdevice *dev, ALint* attrlist );
*/
JNIEXPORT jobject JNICALL Java_org_lwjgl_openal_ALC_alcCreateContext (JNIEnv *env, jclass clazz, jint deviceaddress, jobject attrlist) {
ALint* address = NULL;
if (attrlist != NULL) {
address = (ALint*) env->GetDirectBufferAddress(attrlist);
}
ALCcontext* context = alcCreateContext((ALCdevice*) deviceaddress, address);
/* if error - get out */
if(context == NULL) {
return NULL;
}
2002-08-20 10:46:04 -04:00
/* get ready to create ALCcontext instance */
jobject alcContext_object = NULL;
jclass alcContext_class = NULL;
jmethodID alcContext_method = NULL;
/* find class and constructor */
alcContext_class = env->FindClass("org/lwjgl/openal/ALCcontext");
alcContext_method = env->GetMethodID(alcContext_class, "<init>", "(I)V");
/* create instance */
alcContext_object = env->NewObject(alcContext_class, alcContext_method, (int) context);
2002-08-26 14:23:11 -04:00
CHECK_ALC_ERROR
2002-08-20 10:46:04 -04:00
return alcContext_object;
}
/**
* This function makes a specified context the current context.
*
* C Specification:
* ALCboolean alcMakeContextCurrent(ALCcontext *context);
*/
JNIEXPORT jboolean JNICALL Java_org_lwjgl_openal_ALC_alcMakeContextCurrent (JNIEnv *env, jclass clazz, jint contextaddress) {
if(contextaddress == NULL) {
return alcMakeContextCurrent(NULL);
}
2002-08-20 10:46:04 -04:00
return alcMakeContextCurrent((ALCcontext*) contextaddress);
}
/**
* This function tells a context to begin processing.
*
* C Specification:
* void alcProcessContext(ALCcontext *context);
*/
JNIEXPORT void JNICALL Java_org_lwjgl_openal_ALC_nProcessContext (JNIEnv *env, jclass clazz, jint contextaddress) {
2002-08-20 10:46:04 -04:00
alcProcessContext((ALCcontext*) contextaddress);
}
/**
* This function retrieves the current context.
*
* C Specification:
* ALCcontext* alcGetCurrentContext( ALvoid );
*/
JNIEXPORT jobject JNICALL Java_org_lwjgl_openal_ALC_alcGetCurrentContext (JNIEnv *env, jclass clazz) {
2002-08-20 10:46:04 -04:00
ALCcontext* context = alcGetCurrentContext();
if(context == NULL) {
return NULL;
}
2002-08-20 10:46:04 -04:00
/* get ready to create ALCcontext instance */
jobject alcContext_object = NULL;
jclass alcContext_class = NULL;
jmethodID alcContext_method = NULL;
/* find class and constructor */
alcContext_class = env->FindClass("org/lwjgl/openal/ALCcontext");
alcContext_method = env->GetMethodID(alcContext_class, "<init>", "(I)V");
/* create instance */
alcContext_object = env->NewObject(alcContext_class, alcContext_method, (int) context);
return alcContext_object;
}
/**
* This function retrieves the specified contexts device
*
* C Specification:
* ALCdevice* alcGetContextsDevice(ALCcontext *context);
*/
JNIEXPORT jobject JNICALL Java_org_lwjgl_openal_ALC_alcGetContextsDevice (JNIEnv *env, jclass clazz, jint contextaddress) {
2002-08-20 10:46:04 -04:00
ALCdevice* device = alcGetContextsDevice((ALCcontext*) contextaddress);
if(device == NULL) {
return NULL;
}
2002-08-20 10:46:04 -04:00
/* get ready to create ALCdevice instance */
2002-08-20 10:46:04 -04:00
jobject alcDevice_object = NULL;
jclass alcDevice_class = NULL;
jmethodID alcDevice_method = NULL;
/* find class and constructor */
alcDevice_class = env->FindClass("org/lwjgl/openal/ALCdevice");
alcDevice_method = env->GetMethodID(alcDevice_class, "<init>", "(I)V");
/* create instance */
alcDevice_object = env->NewObject(alcDevice_class, alcDevice_method, (int) device);
return alcDevice_object;
}
/**
* This function suspends processing on a specified context.
*
* C Specification:
* void alcSuspendContext(ALCcontext *context);
*/
JNIEXPORT void JNICALL Java_org_lwjgl_openal_ALC_alcSuspendContext (JNIEnv *env, jclass clazz, jint contextaddress) {
2002-08-20 10:46:04 -04:00
alcSuspendContext((ALCcontext*) contextaddress);
}
/**
* This function destroys a context.
*
* C Specification:
* void alcDestroyContext(ALCcontext *context);
*/
JNIEXPORT void JNICALL Java_org_lwjgl_openal_ALC_alcDestroyContext (JNIEnv *env, jclass clazz, jint contextaddress) {
2002-08-20 10:46:04 -04:00
alcDestroyContext((ALCcontext*) contextaddress);
}
/**
* This function retrieves the specified devices context error state.
*
* C Specification:
* ALCenum alcGetError(ALCdevice *device);
*/
JNIEXPORT jint JNICALL Java_org_lwjgl_openal_ALC_nGetError (JNIEnv *env, jclass clazz, jint deviceaddress) {
2002-08-26 14:23:11 -04:00
jint result = alcGetError((ALCdevice*) deviceaddress);
CHECK_ALC_ERROR
return result;
2002-08-20 10:46:04 -04:00
}
/**
* This function queries if a specified context extension is available.
*
* C Specification:
* ALboolean alcIsExtensionPresent(ALCdevice *device, ALubyte *extName);
*/
JNIEXPORT jboolean JNICALL Java_org_lwjgl_openal_ALC_nIsExtensionPresent (JNIEnv *env, jclass clazz, jint deviceaddress, jstring extName) {
2002-08-20 10:46:04 -04:00
/* get extension */
ALubyte* functionname = (ALubyte*) (env->GetStringUTFChars(extName, 0));
jboolean result = (jboolean) alcIsExtensionPresent((ALCdevice*) deviceaddress, functionname);
2003-03-17 13:34:43 -05:00
env->ReleaseStringUTFChars(extName, (const char *)functionname);
2002-08-20 10:46:04 -04:00
2002-08-26 14:23:11 -04:00
CHECK_ALC_ERROR
2002-08-20 10:46:04 -04:00
return result;
}
/**
* This function retrieves the enum value for a specified enumeration name.
*
* C Specification:
* ALenum alcGetEnumValue(ALCdevice *device, ALubyte *enumName);
*/
JNIEXPORT jint JNICALL Java_org_lwjgl_openal_ALC_nGetEnumValue (JNIEnv *env, jclass clazz, jint deviceaddress, jstring enumName) {
2002-08-20 10:46:04 -04:00
/* get extension */
ALubyte* enumerationname = (ALubyte*) (env->GetStringUTFChars(enumName, 0));
jint result = (jint) alcGetEnumValue((ALCdevice*) deviceaddress, enumerationname);
2003-03-17 13:34:43 -05:00
env->ReleaseStringUTFChars(enumName, (const char *)enumerationname);
2002-08-20 10:46:04 -04:00
2002-08-26 14:23:11 -04:00
CHECK_ALC_ERROR
2002-08-20 10:46:04 -04:00
return result;
2003-03-24 06:56:05 -05:00
}