462 lines
22 KiB
C++
462 lines
22 KiB
C++
|
|
/*
|
||
|
|
* Copyright (c) 2005, Creative Labs Inc.
|
||
|
|
* 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 Creative Labs Inc. 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.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "windows.h"
|
||
|
|
#include "LoadOAL.h"
|
||
|
|
#include "../../../src/fmod_debug.h"
|
||
|
|
#include "../../../src/fmod_types.h"
|
||
|
|
|
||
|
|
HINSTANCE g_hOpenALDLL = NULL;
|
||
|
|
|
||
|
|
ALboolean LoadOALLibrary(char *szOALFullPathName, LPOPENALFNTABLE lpOALFnTable)
|
||
|
|
{
|
||
|
|
if (!lpOALFnTable)
|
||
|
|
return AL_FALSE;
|
||
|
|
|
||
|
|
if (szOALFullPathName)
|
||
|
|
g_hOpenALDLL = LoadLibrary(szOALFullPathName);
|
||
|
|
else
|
||
|
|
g_hOpenALDLL = LoadLibrary("openal32.dll");
|
||
|
|
|
||
|
|
if (!g_hOpenALDLL)
|
||
|
|
return AL_FALSE;
|
||
|
|
|
||
|
|
FMOD_memset(lpOALFnTable, 0, sizeof(OPENALFNTABLE));
|
||
|
|
|
||
|
|
// Get function pointers
|
||
|
|
lpOALFnTable->alEnable = (LPALENABLE)GetProcAddress(g_hOpenALDLL, "alEnable");
|
||
|
|
if (lpOALFnTable->alEnable == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alEnable' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alDisable = (LPALDISABLE)GetProcAddress(g_hOpenALDLL, "alDisable");
|
||
|
|
if (lpOALFnTable->alDisable == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alDisable' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alIsEnabled = (LPALISENABLED)GetProcAddress(g_hOpenALDLL, "alIsEnabled");
|
||
|
|
if (lpOALFnTable->alIsEnabled == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alIsEnabled' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetBoolean = (LPALGETBOOLEAN)GetProcAddress(g_hOpenALDLL, "alGetBoolean");
|
||
|
|
if (lpOALFnTable->alGetBoolean == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetBoolean' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetInteger = (LPALGETINTEGER)GetProcAddress(g_hOpenALDLL, "alGetInteger");
|
||
|
|
if (lpOALFnTable->alGetInteger == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetInteger' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetFloat = (LPALGETFLOAT)GetProcAddress(g_hOpenALDLL, "alGetFloat");
|
||
|
|
if (lpOALFnTable->alGetFloat == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetFloat' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetDouble = (LPALGETDOUBLE)GetProcAddress(g_hOpenALDLL, "alGetDouble");
|
||
|
|
if (lpOALFnTable->alGetDouble == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetDouble' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetBooleanv = (LPALGETBOOLEANV)GetProcAddress(g_hOpenALDLL, "alGetBooleanv");
|
||
|
|
if (lpOALFnTable->alGetBooleanv == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetBooleanv' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetIntegerv = (LPALGETINTEGERV)GetProcAddress(g_hOpenALDLL, "alGetIntegerv");
|
||
|
|
if (lpOALFnTable->alGetIntegerv == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetIntegerv' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetFloatv = (LPALGETFLOATV)GetProcAddress(g_hOpenALDLL, "alGetFloatv");
|
||
|
|
if (lpOALFnTable->alGetFloatv == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetFloatv' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetDoublev = (LPALGETDOUBLEV)GetProcAddress(g_hOpenALDLL, "alGetDoublev");
|
||
|
|
if (lpOALFnTable->alGetDoublev == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetDoublev' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetString = (LPALGETSTRING)GetProcAddress(g_hOpenALDLL, "alGetString");
|
||
|
|
if (lpOALFnTable->alGetString == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetString' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetError = (LPALGETERROR)GetProcAddress(g_hOpenALDLL, "alGetError");
|
||
|
|
if (lpOALFnTable->alGetError == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetError' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alIsExtensionPresent = (LPALISEXTENSIONPRESENT)GetProcAddress(g_hOpenALDLL, "alIsExtensionPresent");
|
||
|
|
if (lpOALFnTable->alIsExtensionPresent == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alIsExtensionPresent' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetProcAddress = (LPALGETPROCADDRESS)GetProcAddress(g_hOpenALDLL, "alGetProcAddress");
|
||
|
|
if (lpOALFnTable->alGetProcAddress == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetProcAddress' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetEnumValue = (LPALGETENUMVALUE)GetProcAddress(g_hOpenALDLL, "alGetEnumValue");
|
||
|
|
if (lpOALFnTable->alGetEnumValue == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetEnumValue' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alListeneri = (LPALLISTENERI)GetProcAddress(g_hOpenALDLL, "alListeneri");
|
||
|
|
if (lpOALFnTable->alListeneri == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alListeneri' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alListenerf = (LPALLISTENERF)GetProcAddress(g_hOpenALDLL, "alListenerf");
|
||
|
|
if (lpOALFnTable->alListenerf == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alListenerf' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alListener3f = (LPALLISTENER3F)GetProcAddress(g_hOpenALDLL, "alListener3f");
|
||
|
|
if (lpOALFnTable->alListener3f == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alListener3f' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alListenerfv = (LPALLISTENERFV)GetProcAddress(g_hOpenALDLL, "alListenerfv");
|
||
|
|
if (lpOALFnTable->alListenerfv == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alListenerfv' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetListeneri = (LPALGETLISTENERI)GetProcAddress(g_hOpenALDLL, "alGetListeneri");
|
||
|
|
if (lpOALFnTable->alGetListeneri == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetListeneri' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetListenerf =(LPALGETLISTENERF)GetProcAddress(g_hOpenALDLL, "alGetListenerf");
|
||
|
|
if (lpOALFnTable->alGetListenerf == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetListenerf' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetListener3f = (LPALGETLISTENER3F)GetProcAddress(g_hOpenALDLL, "alGetListener3f");
|
||
|
|
if (lpOALFnTable->alGetListener3f == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetListener3f' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetListenerfv = (LPALGETLISTENERFV)GetProcAddress(g_hOpenALDLL, "alGetListenerfv");
|
||
|
|
if (lpOALFnTable->alGetListenerfv == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetListenerfv' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGenSources = (LPALGENSOURCES)GetProcAddress(g_hOpenALDLL, "alGenSources");
|
||
|
|
if (lpOALFnTable->alGenSources == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGenSources' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alDeleteSources = (LPALDELETESOURCES)GetProcAddress(g_hOpenALDLL, "alDeleteSources");
|
||
|
|
if (lpOALFnTable->alDeleteSources == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alDeleteSources' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alIsSource = (LPALISSOURCE)GetProcAddress(g_hOpenALDLL, "alIsSource");
|
||
|
|
if (lpOALFnTable->alIsSource == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alIsSource' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alSourcei = (LPALSOURCEI)GetProcAddress(g_hOpenALDLL, "alSourcei");
|
||
|
|
if (lpOALFnTable->alSourcei == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alSourcei' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alSourcef = (LPALSOURCEF)GetProcAddress(g_hOpenALDLL, "alSourcef");
|
||
|
|
if (lpOALFnTable->alSourcef == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alSourcef' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alSource3f = (LPALSOURCE3F)GetProcAddress(g_hOpenALDLL, "alSource3f");
|
||
|
|
if (lpOALFnTable->alSource3f == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alSource3f' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alSourcefv = (LPALSOURCEFV)GetProcAddress(g_hOpenALDLL, "alSourcefv");
|
||
|
|
if (lpOALFnTable->alSourcefv == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alSourcefv' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetSourcei = (LPALGETSOURCEI)GetProcAddress(g_hOpenALDLL, "alGetSourcei");
|
||
|
|
if (lpOALFnTable->alGetSourcei == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetSourcei' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetSourcef = (LPALGETSOURCEF)GetProcAddress(g_hOpenALDLL, "alGetSourcef");
|
||
|
|
if (lpOALFnTable->alGetSourcef == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetSourcef' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetSourcefv = (LPALGETSOURCEFV)GetProcAddress(g_hOpenALDLL, "alGetSourcefv");
|
||
|
|
if (lpOALFnTable->alGetSourcefv == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetSourcefv' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alSourcePlayv = (LPALSOURCEPLAYV)GetProcAddress(g_hOpenALDLL, "alSourcePlayv");
|
||
|
|
if (lpOALFnTable->alSourcePlayv == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alSourcePlayv' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alSourcePausev = (LPALSOURCEPAUSEV)GetProcAddress(g_hOpenALDLL, "alSourcePausev");
|
||
|
|
if (lpOALFnTable->alSourcePausev == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alSourcePausev' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alSourceStopv = (LPALSOURCESTOPV)GetProcAddress(g_hOpenALDLL, "alSourceStopv");
|
||
|
|
if (lpOALFnTable->alSourceStopv == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alSourceStopv' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alSourcePlay = (LPALSOURCEPLAY)GetProcAddress(g_hOpenALDLL, "alSourcePlay");
|
||
|
|
if (lpOALFnTable->alSourcePlay == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alSourcePlay' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alSourcePause = (LPALSOURCEPAUSE)GetProcAddress(g_hOpenALDLL, "alSourcePause");
|
||
|
|
if (lpOALFnTable->alSourcePause == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alSourcePause' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alSourceStop = (LPALSOURCESTOP)GetProcAddress(g_hOpenALDLL, "alSourceStop");
|
||
|
|
if (lpOALFnTable->alSourceStop == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alSourceStop' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGenBuffers = (LPALGENBUFFERS)GetProcAddress(g_hOpenALDLL, "alGenBuffers");
|
||
|
|
if (lpOALFnTable->alGenBuffers == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGenBuffers' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alDeleteBuffers = (LPALDELETEBUFFERS)GetProcAddress(g_hOpenALDLL, "alDeleteBuffers");
|
||
|
|
if (lpOALFnTable->alDeleteBuffers == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alDeleteBuffers' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alIsBuffer = (LPALISBUFFER)GetProcAddress(g_hOpenALDLL, "alIsBuffer");
|
||
|
|
if (lpOALFnTable->alIsBuffer == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alIsBuffer' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alBufferData = (LPALBUFFERDATA)GetProcAddress(g_hOpenALDLL, "alBufferData");
|
||
|
|
if (lpOALFnTable->alBufferData == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alBufferData' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetBufferi = (LPALGETBUFFERI)GetProcAddress(g_hOpenALDLL, "alGetBufferi");
|
||
|
|
if (lpOALFnTable->alGetBufferi == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetBufferi' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alGetBufferf = (LPALGETBUFFERF)GetProcAddress(g_hOpenALDLL, "alGetBufferf");
|
||
|
|
if (lpOALFnTable->alGetBufferf == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alGetBufferf' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alSourceQueueBuffers = (LPALSOURCEQUEUEBUFFERS)GetProcAddress(g_hOpenALDLL, "alSourceQueueBuffers");
|
||
|
|
if (lpOALFnTable->alSourceQueueBuffers == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alSourceQueueBuffers' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alSourceUnqueueBuffers = (LPALSOURCEUNQUEUEBUFFERS)GetProcAddress(g_hOpenALDLL, "alSourceUnqueueBuffers");
|
||
|
|
if (lpOALFnTable->alSourceUnqueueBuffers == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alSourceUnqueueBuffers' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alDistanceModel = (LPALDISTANCEMODEL)GetProcAddress(g_hOpenALDLL, "alDistanceModel");
|
||
|
|
if (lpOALFnTable->alDistanceModel == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alDistanceModel' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alDopplerFactor = (LPALDOPPLERFACTOR)GetProcAddress(g_hOpenALDLL, "alDopplerFactor");
|
||
|
|
if (lpOALFnTable->alDopplerFactor == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alDopplerFactor' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alDopplerVelocity = (LPALDOPPLERVELOCITY)GetProcAddress(g_hOpenALDLL, "alDopplerVelocity");
|
||
|
|
if (lpOALFnTable->alDopplerVelocity == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alDopplerVelocity' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alcGetString = (LPALCGETSTRING)GetProcAddress(g_hOpenALDLL, "alcGetString");
|
||
|
|
if (lpOALFnTable->alcGetString == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alcGetString' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alcGetIntegerv = (LPALCGETINTEGERV)GetProcAddress(g_hOpenALDLL, "alcGetIntegerv");
|
||
|
|
if (lpOALFnTable->alcGetIntegerv == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alcGetIntegerv' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alcOpenDevice = (LPALCOPENDEVICE)GetProcAddress(g_hOpenALDLL, "alcOpenDevice");
|
||
|
|
if (lpOALFnTable->alcOpenDevice == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alcOpenDevice' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alcCloseDevice = (LPALCCLOSEDEVICE)GetProcAddress(g_hOpenALDLL, "alcCloseDevice");
|
||
|
|
if (lpOALFnTable->alcCloseDevice == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alcCloseDevice' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alcCreateContext = (LPALCCREATECONTEXT)GetProcAddress(g_hOpenALDLL, "alcCreateContext");
|
||
|
|
if (lpOALFnTable->alcCreateContext == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alcCreateContext' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alcMakeContextCurrent = (LPALCMAKECONTEXTCURRENT)GetProcAddress(g_hOpenALDLL, "alcMakeContextCurrent");
|
||
|
|
if (lpOALFnTable->alcMakeContextCurrent == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alcMakeContextCurrent' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alcProcessContext = (LPALCPROCESSCONTEXT)GetProcAddress(g_hOpenALDLL, "alcProcessContext");
|
||
|
|
if (lpOALFnTable->alcProcessContext == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alcProcessContext' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alcGetCurrentContext = (LPALCGETCURRENTCONTEXT)GetProcAddress(g_hOpenALDLL, "alcGetCurrentContext");
|
||
|
|
if (lpOALFnTable->alcGetCurrentContext == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alcGetCurrentContext' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alcGetContextsDevice = (LPALCGETCONTEXTSDEVICE)GetProcAddress(g_hOpenALDLL, "alcGetContextsDevice");
|
||
|
|
if (lpOALFnTable->alcGetContextsDevice == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alcGetContextsDevice' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alcSuspendContext = (LPALCSUSPENDCONTEXT)GetProcAddress(g_hOpenALDLL, "alcSuspendContext");
|
||
|
|
if (lpOALFnTable->alcSuspendContext == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alcSuspendContext' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alcDestroyContext = (LPALCDESTROYCONTEXT)GetProcAddress(g_hOpenALDLL, "alcDestroyContext");
|
||
|
|
if (lpOALFnTable->alcDestroyContext == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alcDestroyContext' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alcGetError = (LPALCGETERROR)GetProcAddress(g_hOpenALDLL, "alcGetError");
|
||
|
|
if (lpOALFnTable->alcGetError == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alcGetError' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alcIsExtensionPresent = (LPALCISEXTENSIONPRESENT)GetProcAddress(g_hOpenALDLL, "alcIsExtensionPresent");
|
||
|
|
if (lpOALFnTable->alcIsExtensionPresent == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alcIsExtensionPresent' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alcGetProcAddress = (LPALCGETPROCADDRESS)GetProcAddress(g_hOpenALDLL, "alcGetProcAddress");
|
||
|
|
if (lpOALFnTable->alcGetProcAddress == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alcGetProcAddress' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alcGetEnumValue = (LPALCGETENUMVALUE)GetProcAddress(g_hOpenALDLL, "alcGetEnumValue");
|
||
|
|
if (lpOALFnTable->alcGetEnumValue == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alcGetEnumValue' function address\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
lpOALFnTable->alSpeedOfSound = (LPALSPEEDOFSOUND)GetProcAddress(g_hOpenALDLL, "alSpeedOfSound");
|
||
|
|
if (lpOALFnTable->alSpeedOfSound == NULL)
|
||
|
|
{
|
||
|
|
FLOGC((FMOD_DEBUG_LEVEL_ERROR, __FILE__, __LINE__, "LoadOAL10Library", "Failed to retrieve 'alSpeedOfSound' function address, this is not OpenAL version 1.1\n"));
|
||
|
|
return AL_FALSE;
|
||
|
|
}
|
||
|
|
|
||
|
|
return AL_TRUE;
|
||
|
|
}
|
||
|
|
|
||
|
|
ALvoid UnloadOALLibrary()
|
||
|
|
{
|
||
|
|
// Unload the dll
|
||
|
|
if (g_hOpenALDLL)
|
||
|
|
{
|
||
|
|
FreeLibrary(g_hOpenALDLL);
|
||
|
|
g_hOpenALDLL = NULL;
|
||
|
|
}
|
||
|
|
}
|