lwjgl/src/native/common/extal.cpp

246 lines
6.5 KiB
C++
Raw Normal View History

2002-08-30 17:30:40 -04:00
/*
2004-06-12 16:28:34 -04:00
* Copyright (c) 2002-2004 LWJGL Project
2002-08-30 17:30:40 -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
2004-06-12 16:28:34 -04:00
* notice, this list of conditions and the following disclaimer.
2002-08-30 17:30:40 -04:00
*
* * Redistributions in binary form must reproduce the above copyright
2004-06-12 16:28:34 -04:00
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
2002-08-30 17:30:40 -04:00
*
2004-06-12 16:28:34 -04:00
* * 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.
2002-08-30 17:30:40 -04:00
*
* 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.
*/
2002-12-14 07:49:16 -05:00
2002-12-14 08:37:46 -05:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2002-08-30 17:30:40 -04:00
#include "extal.h"
2003-10-22 06:57:19 -04:00
#include "common_tools.h"
2002-08-30 17:30:40 -04:00
2002-12-31 22:58:44 -05:00
#ifdef _X11
2002-12-14 08:44:55 -05:00
#include <dlfcn.h>
#endif
2002-08-30 17:30:40 -04:00
/**
* $Id$
*
* This file contains the AL extension assigning mechanism
*
* @author Brian Matzon <brian@matzon.dk>
* @version $Revision$
2002-11-26 21:34:58 -05:00
*/
2002-12-14 08:37:46 -05:00
#ifdef _WIN32
2003-10-22 06:57:19 -04:00
EAXSet eaxSet; // EAXSet function, ret$
EAXGet eaxGet; // EAXGet function, ret$
2002-12-14 07:49:16 -05:00
/* Handle to OpenAL Library */
HMODULE handleOAL;
2003-05-16 22:50:51 -04:00
#endif
#ifdef _X11
void* handleOGG;
void* handleVorbis;
void* handleVorbisFile;
2002-12-14 07:49:16 -05:00
void* handleOAL;
#endif
2003-09-07 12:11:15 -04:00
#ifdef _AGL
2003-10-22 06:57:19 -04:00
#include <mach-o/dyld.h>
#include <stdlib.h>
#include <string.h>
const struct mach_header* handleOAL;
2003-05-16 22:50:51 -04:00
#endif
2002-12-14 07:49:16 -05:00
2004-03-10 03:42:40 -05:00
alGetProcAddressPROC alGetProcAddress;
2002-12-14 07:49:16 -05:00
/* Loads OpenAL */
2003-10-22 06:57:19 -04:00
static bool LoadOpenAL(JNIEnv *env, jobjectArray oalPaths);
2002-12-14 07:49:16 -05:00
/* Unloads OpenAL */
2003-10-22 06:57:19 -04:00
static void UnLoadOpenAL(void);
2002-12-14 07:49:16 -05:00
2003-10-22 06:57:19 -04:00
static void *NativeGetFunctionPointer(const char *function) {
#ifdef _WIN32
return GetProcAddress(handleOAL, function);
#endif
#ifdef _X11
return dlsym(handleOAL, function);
#endif
#ifdef _AGL
char *mac_symbol_name = (char *)malloc((strlen(function) + 2)*sizeof(char));
if (mac_symbol_name == NULL)
return NULL;
mac_symbol_name[0] = '_';
strcpy(&(mac_symbol_name[1]), function);
NSSymbol symbol = NSLookupSymbolInImage(handleOAL, mac_symbol_name, NSLOOKUPSYMBOLINIMAGE_OPTION_RETURN_ON_ERROR);
free(mac_symbol_name);
if (symbol == NULL)
return NULL;
return NSAddressOfSymbol(symbol);
#endif
}
2002-12-14 07:49:16 -05:00
/**
* Retrieves a pointer to the named function
*
* @param function Name of function
* @return pointer to named function, or NULL if not found
*/
static void* extal_GetProcAddress(const char* function) {
2003-10-22 06:57:19 -04:00
void *p = NativeGetFunctionPointer(function);
if (p == NULL) {
2003-12-20 17:03:25 -05:00
printfDebug("Could not locate symbol %s\n", function);
2003-10-22 06:57:19 -04:00
}
return p;
2002-12-14 07:49:16 -05:00
}
/**
* Concatenate two strings
*/
static char *concatenate(const char *str1, const char *str2) {
int length1 = strlen(str1);
int length2 = strlen(str2);
char *str = (char *)calloc(length1 + length2 + 1, sizeof(char));
strncpy(str, str1, length1);
strncpy(str + length1, str2, length2 + 1);
return str;
}
#ifdef _X11
static void closeVorbisLibs(void) {
if (handleOGG != NULL) {
dlclose(handleOGG);
handleOGG = NULL;
}
if (handleVorbis != NULL) {
dlclose(handleVorbis);
handleVorbis = NULL;
}
if (handleVorbisFile != NULL) {
dlclose(handleVorbisFile);
handleVorbisFile = NULL;
}
}
#endif
2002-12-14 07:49:16 -05:00
/**
* Loads the OpenAL Library
*/
2003-10-22 06:57:19 -04:00
static bool LoadOpenAL(JNIEnv *env, jobjectArray oalPaths) {
2003-06-12 10:08:10 -04:00
jsize pathcount = env->GetArrayLength(oalPaths);
2003-12-20 17:03:25 -05:00
printfDebug("Found %d OpenAL paths\n", (int)pathcount);
2003-10-22 06:57:19 -04:00
for(int i=0;i<pathcount;i++) {
jstring path = (jstring) env->GetObjectArrayElement(oalPaths, i);
const char *path_str = env->GetStringUTFChars(path, NULL);
2003-12-20 17:03:25 -05:00
printfDebug("Testing '%s'\n", path_str);
2003-03-24 06:56:05 -05:00
#ifdef _WIN32
char *lib_str = concatenate(path_str, "lwjglaudio.dll");
handleOAL = LoadLibrary(lib_str);
free(lib_str);
2003-03-24 06:56:05 -05:00
#endif
#ifdef _X11
char *lib_str = concatenate(path_str, "libogg.so.0");
handleOGG = dlopen(lib_str, RTLD_LAZY);
free(lib_str);
lib_str = concatenate(path_str, "libvorbis.so.0");
handleVorbis = dlopen(lib_str, RTLD_LAZY);
free(lib_str);
lib_str = concatenate(path_str, "libvorbisfile.so.3");
handleVorbisFile = dlopen(lib_str, RTLD_LAZY);
free(lib_str);
lib_str = concatenate(path_str, "libopenal.so");
handleOAL = dlopen(lib_str, RTLD_LAZY);
free(lib_str);
if (handleOAL == NULL) {
closeVorbisLibs();
}
2003-05-16 22:50:51 -04:00
#endif
2003-09-07 12:11:15 -04:00
#ifdef _AGL
char *lib_str = concatenate(path_str, "openal.dylib");
handleOAL = NSAddImage(lib_str, NSADDIMAGE_OPTION_RETURN_ON_ERROR);
free(lib_str);
2003-03-24 06:56:05 -05:00
#endif
2003-10-22 06:57:19 -04:00
if (handleOAL != NULL) {
2003-12-20 17:03:25 -05:00
printfDebug("Found OpenAL at '%s'\n", path_str);
2003-10-22 06:57:19 -04:00
return true;
}
env->ReleaseStringUTFChars(path, path_str);
}
throwException(env, "Could not load openal library.");
2003-10-22 06:57:19 -04:00
return false;
2002-12-14 07:49:16 -05:00
}
/**
* Unloads the OpenAL Library
*/
2003-10-22 06:57:19 -04:00
static void UnLoadOpenAL() {
2002-12-14 07:49:16 -05:00
#ifdef _WIN32
2003-10-22 06:57:19 -04:00
FreeLibrary(handleOAL);
2002-12-31 22:58:44 -05:00
#endif
#ifdef _X11
if (handleOAL != NULL) {
dlclose(handleOAL);
handleOAL = NULL;
}
closeVorbisLibs();
2002-12-14 07:49:16 -05:00
#endif
2003-09-07 12:11:15 -04:00
#ifdef _AGL
2003-10-22 06:57:19 -04:00
// Cannot remove the image
2003-05-16 22:50:51 -04:00
#endif
2002-12-14 07:49:16 -05:00
}
/**
* Initializes OpenAL by loading the library
*/
2003-10-22 06:57:19 -04:00
void InitializeOpenAL(JNIEnv *env, jobjectArray oalPaths) {
if(handleOAL != NULL) {
return;
}
//load our library
if (!LoadOpenAL(env, oalPaths)) {
return;
}
2004-03-10 03:42:40 -05:00
alGetProcAddress = (alGetProcAddressPROC)extal_GetProcAddress("alGetProcAddress");
if (alGetProcAddress == NULL) {
DeInitializeOpenAL();
throwException(env, "Could not load alGetProcAddress function pointer.");
2004-03-10 03:42:40 -05:00
return;
}
2002-12-14 07:49:16 -05:00
}
/**
* Called to deinitialize OpenAL
*/
void DeInitializeOpenAL() {
2003-10-22 06:57:19 -04:00
UnLoadOpenAL();
handleOAL = 0;
2002-12-14 07:49:16 -05:00
}
void extal_InitializeClass(JNIEnv *env, jclass clazz, int num_functions, JavaMethodAndExtFunction *functions) {
ext_InitializeClass(env, clazz, &extal_GetProcAddress, num_functions, functions);
}