mirror of
https://github.com/dhewm/dhewm3.git
synced 2024-11-29 15:42:28 +00:00
954ff88759
Otherwise especially looped sounds continue playing while the menu is open, especially noticeable when opening the menu while firing the chaingun (the whirring sound continues playing).
148 lines
4.7 KiB
C++
148 lines
4.7 KiB
C++
/*
|
|
===========================================================================
|
|
|
|
Doom 3 GPL Source Code
|
|
Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
|
|
|
|
This file is part of the Doom 3 GPL Source Code ("Doom 3 Source Code").
|
|
|
|
Doom 3 Source Code is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Doom 3 Source Code is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Doom 3 Source Code. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
In addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.
|
|
|
|
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
|
|
|
|
===========================================================================
|
|
*/
|
|
|
|
#include "sys/platform.h"
|
|
|
|
#include "sound/snd_local.h"
|
|
|
|
extern "C" {
|
|
|
|
AL_API ALenum AL_APIENTRY alGetError() {
|
|
return AL_NO_ERROR;
|
|
}
|
|
|
|
AL_API ALboolean AL_APIENTRY alIsSource( ALuint sid ) {
|
|
return AL_FALSE;
|
|
}
|
|
|
|
AL_API void AL_APIENTRY alGenBuffers( ALsizei n, ALuint* buffers ) { }
|
|
|
|
AL_API void AL_APIENTRY alSourceStop( ALuint sid ) { }
|
|
|
|
AL_API void AL_APIENTRY alGetSourcei( ALuint sid, ALenum pname, ALint* value ) { }
|
|
|
|
AL_API void AL_APIENTRY alSource3i( ALuint sid, ALenum param, ALint value1, ALint value2, ALint value3 ) { }
|
|
|
|
|
|
AL_API const ALchar* AL_APIENTRY alGetString( ALenum param ) {
|
|
return "";
|
|
}
|
|
|
|
AL_API ALint AL_APIENTRY alGetInteger( ALenum param ) { return 0; }
|
|
|
|
ALC_API void ALC_APIENTRY alcSuspendContext( ALCcontext *alcHandle ) { }
|
|
|
|
ALC_API ALCdevice * ALC_APIENTRY alcOpenDevice( const ALchar *tokstr ) {
|
|
return NULL;
|
|
}
|
|
|
|
ALC_API ALCboolean ALC_APIENTRY alcIsExtensionPresent( ALCdevice *device, const ALCchar *extname ) {
|
|
return AL_FALSE;
|
|
}
|
|
|
|
ALC_API void ALC_APIENTRY alcGetIntegerv(ALCdevice *device, ALCenum param, ALCsizei size, ALCint *values) {}
|
|
|
|
ALC_API ALCenum ALC_APIENTRY alcGetError(ALCdevice *device) {
|
|
return ALC_NO_ERROR;
|
|
}
|
|
|
|
ALC_API void* ALC_APIENTRY alcGetProcAddress(ALCdevice *device, const ALCchar *funcname) {
|
|
return NULL;
|
|
}
|
|
|
|
|
|
AL_API void AL_APIENTRY alDeleteBuffers( ALsizei n, const ALuint* buffers ) { }
|
|
|
|
AL_API ALboolean AL_APIENTRY alIsExtensionPresent( const ALchar* fname ) {
|
|
return AL_FALSE;
|
|
}
|
|
|
|
AL_API void AL_APIENTRY alBufferData( ALuint buffer,
|
|
ALenum format,
|
|
const ALvoid* data,
|
|
ALsizei size,
|
|
ALsizei freq ) { }
|
|
|
|
ALC_API ALCboolean ALC_APIENTRY alcMakeContextCurrent( ALCcontext *alcHandle ) {
|
|
return 0;
|
|
}
|
|
|
|
ALC_API ALCvoid ALC_APIENTRY alcProcessContext( ALCcontext *alcHandle ) {
|
|
return;
|
|
}
|
|
|
|
ALC_API ALCvoid ALC_APIENTRY alcDestroyContext( ALCcontext *alcHandle ) {
|
|
return;
|
|
}
|
|
|
|
ALC_API const ALCchar * ALC_APIENTRY alcGetString( ALCdevice *deviceHandle, ALCenum token ) {
|
|
return NULL;
|
|
}
|
|
|
|
AL_API void AL_APIENTRY alDeleteSources( ALsizei n, const ALuint* sources ) { }
|
|
|
|
AL_API ALenum AL_APIENTRY alGetEnumValue( const ALchar* ename ) {
|
|
return 0;
|
|
}
|
|
|
|
AL_API void* AL_APIENTRY alGetProcAddress( const ALchar* fname ) {
|
|
return NULL;
|
|
}
|
|
|
|
ALC_API ALCcontext * ALC_APIENTRY alcCreateContext( ALCdevice *dev,
|
|
const ALCint* attrlist ) {
|
|
return NULL;
|
|
}
|
|
|
|
AL_API void AL_APIENTRY alListenerfv( ALenum pname, const ALfloat* param ) { }
|
|
|
|
AL_API void AL_APIENTRY alSourceQueueBuffers( ALuint sid, ALsizei numEntries, const ALuint *bids ) { }
|
|
|
|
AL_API void AL_APIENTRY alSourcei( ALuint sid, ALenum param, ALint value ) { }
|
|
|
|
AL_API void AL_APIENTRY alListenerf( ALenum pname, ALfloat param ) { }
|
|
|
|
ALC_API ALCboolean ALC_APIENTRY alcCloseDevice( ALCdevice *dev ) { return false; }
|
|
|
|
AL_API ALboolean AL_APIENTRY alIsBuffer( ALuint buffer ) {
|
|
return AL_FALSE;
|
|
}
|
|
|
|
AL_API void AL_APIENTRY alSource3f( ALuint sid, ALenum param,
|
|
ALfloat f1, ALfloat f2, ALfloat f3 ) { }
|
|
|
|
AL_API void AL_APIENTRY alGenSources( ALsizei n, ALuint* sources ) { }
|
|
|
|
AL_API void AL_APIENTRY alSourcef( ALuint sid, ALenum param, ALfloat value ) { }
|
|
|
|
AL_API void AL_APIENTRY alSourceUnqueueBuffers( ALuint sid, ALsizei numEntries, ALuint *bids ) { }
|
|
|
|
AL_API void AL_APIENTRY alSourcePlay( ALuint sid ) { }
|
|
AL_API void AL_APIENTRY alSourcePause( ALuint source ) {}
|
|
|
|
} // extern "C"
|