123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- //-----------------------------------------------------------------------------
- // Copyright (c) 2013 GarageGames, LLC
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to
- // deal in the Software without restriction, including without limitation the
- // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- // sell copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- // IN THE SOFTWARE.
- //-----------------------------------------------------------------------------
- #include "platformWin32/platformWin32.h"
- #include "console/console.h"
- #include "al/altypes.h"
- #include "al/alctypes.h"
- #define INITGUID
- #include "al/eaxtypes.h"
- // Define the OpenAL and Extension Stub functions
- #define AL_FUNCTION(fn_return, fn_name, fn_args, fn_value) fn_return stub_##fn_name fn_args{ fn_value }
- #include "al/al_func.h"
- #include "al/alc_func.h"
- #include "al/eax_func.h"
- #undef AL_FUNCTION
- // Declare the OpenAL and Extension Function pointers
- // And initialize them to the stub functions
- #define AL_FUNCTION(fn_return,fn_name,fn_args, fn_value) fn_return (*fn_name)fn_args = stub_##fn_name;
- #include "al/al_func.h"
- #include "al/alc_func.h"
- #include "al/eax_func.h"
- #undef AL_FUNCTION
- /*! Get a function address from the OpenAL DLL and bind it to the
- * function pointer
- */
- static bool bindFunction( void *&fnAddress, const char *name )
- {
- // JMQ: MinGW gcc 3.2 needs the cast to void*
- fnAddress = (void*)(GetProcAddress( winState.hinstOpenAL, name ));
- if( !fnAddress )
- Con::errorf(ConsoleLogEntry::General, " Missing OpenAL function '%s'", name);
- return (fnAddress != NULL);
- }
- /*! Get a function address for an OpenAL extension function and bind it
- * to it's function pointer
- */
- static bool bindExtensionFunction( void *&fnAddress, const char *name )
- {
- fnAddress = alGetProcAddress( (ALubyte*)name );
- if( !fnAddress )
- Con::errorf(ConsoleLogEntry::General, " Missing OpenAL Extension function '%s'", name);
- return (fnAddress != NULL);
- }
- /*! Bind the functions in the OpenAL DLL to the al interface functions
- */
- static bool bindOpenALFunctions()
- {
- bool result = true;
- #define AL_FUNCTION(fn_return, fn_name, fn_args, fn_value) result &= bindFunction( *(void**)&fn_name, #fn_name);
- #include "al/al_func.h"
- #include "al/alc_func.h"
- #undef AL_FUNCTION
- return result;
- }
- /*! Bind the stub functions to the al interface functions
- */
- static void unbindOpenALFunctions()
- {
- #define AL_FUNCTION(fn_return, fn_name, fn_args, fn_value) fn_name = stub_##fn_name;
- #include "al/al_func.h"
- #include "al/alc_func.h"
- #include "al/eax_func.h"
- #undef AL_FUNCTION
- }
- /*! Bind the EAX Extension functions to the EAX interface functions
- */
- static bool bindEAXFunctions()
- {
- bool result = true;
- #define AL_FUNCTION(fn_return, fn_name, fn_args, fn_value) result &= bindExtensionFunction( *(void**)&fn_name, #fn_name);
- #include "al/eax_func.h"
- #undef AL_FUNCTION
- return result;
- }
- namespace Audio
- {
- /*! Shutdown and Unload the OpenAL DLL
- */
- void OpenALDLLShutdown()
- {
- if (winState.hinstOpenAL)
- FreeLibrary(winState.hinstOpenAL);
- winState.hinstOpenAL = NULL;
- unbindOpenALFunctions();
- }
- /*! Dynamically Loads the OpenAL DLL if present and binds all the functions.
- * If there is no DLL or an unexpected error occurs binding functions the
- * stub functions are automatically bound.
- */
- bool OpenALDLLInit()
- {
- OpenALDLLShutdown();
- winState.hinstOpenAL = LoadLibrary( dT("OpenAl32.dll") );
- if(winState.hinstOpenAL != NULL)
- {
- // if the DLL loaded bind the OpenAL function pointers
- if(bindOpenALFunctions())
- {
- // if EAX is available bind it's function pointers
- //if (alIsExtensionPresent((ALubyte*)"EAX" ))
- bindEAXFunctions();
- return(true);
- }
- // an error occured, shutdown
- OpenALDLLShutdown();
- }
- return(false);
- }
- } // end namespace Audio
|