2007-01-15 12:09:25 -08:00
|
|
|
/*
|
|
|
|
This file is part of Warzone 2100.
|
|
|
|
Copyright (C) 1999-2004 Eidos Interactive
|
|
|
|
Copyright (C) 2005-2007 Warzone Resurrection Project
|
|
|
|
|
|
|
|
Warzone 2100 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 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Warzone 2100 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 Warzone 2100; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2007-06-28 10:47:08 -07:00
|
|
|
//*
|
|
|
|
//
|
|
|
|
// Sound library-specific functions
|
|
|
|
//*
|
|
|
|
//
|
|
|
|
|
|
|
|
// this has to be first
|
2006-06-02 12:34:58 -07:00
|
|
|
#include "lib/framework/frame.h"
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2006-08-12 03:45:49 -07:00
|
|
|
#ifdef WZ_OPENAL_MAC_H
|
|
|
|
#include <openal/al.h>
|
|
|
|
#include <openal/alc.h>
|
|
|
|
#else
|
2007-06-28 10:47:08 -07:00
|
|
|
#include <AL/al.h>
|
|
|
|
#include <AL/alc.h>
|
2006-08-12 03:45:49 -07:00
|
|
|
#endif
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
#ifndef WZ_NOOGG
|
|
|
|
#include <ogg/ogg.h>
|
|
|
|
#include <vorbis/codec.h>
|
|
|
|
#include <vorbis/vorbisenc.h>
|
|
|
|
#include <vorbis/vorbisfile.h>
|
|
|
|
#endif
|
|
|
|
|
2006-06-16 12:10:23 -07:00
|
|
|
#include <physfs.h>
|
2006-11-06 06:40:07 -08:00
|
|
|
#include <string.h>
|
2006-06-16 12:10:23 -07:00
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
#include "tracklib.h"
|
|
|
|
#include "audio.h"
|
2006-09-20 12:46:33 -07:00
|
|
|
#define ATTENUATION_FACTOR 0.0003f
|
2007-06-28 10:47:08 -07:00
|
|
|
#ifndef M_PI
|
|
|
|
#define M_PI 3.1415926535897932385
|
|
|
|
#endif // win32 doesn't define that...
|
|
|
|
|
2006-08-12 03:45:49 -07:00
|
|
|
#ifdef __BIG_ENDIAN__
|
|
|
|
#define OGG_ENDIAN 1
|
|
|
|
#else
|
|
|
|
#define OGG_ENDIAN 0
|
|
|
|
#endif
|
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
ALuint current_queue_sample = -1;
|
|
|
|
|
|
|
|
typedef struct SAMPLE_LIST
|
|
|
|
{
|
|
|
|
struct AUDIO_SAMPLE *curr;
|
|
|
|
struct SAMPLE_LIST *next;
|
|
|
|
} SAMPLE_LIST;
|
|
|
|
|
|
|
|
static SAMPLE_LIST *active_samples = NULL;
|
|
|
|
|
|
|
|
static ALfloat sfx_volume = 1.0;
|
|
|
|
static ALfloat sfx3d_volume = 1.0;
|
|
|
|
|
|
|
|
static ALCdevice* device = 0;
|
|
|
|
static ALCcontext* context = 0;
|
|
|
|
|
2006-02-18 10:54:37 -08:00
|
|
|
static ALvoid *data = NULL; // Needed for ReadTrackFromBuffer, must be global, so it can be free'd on shutdown
|
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
BOOL openal_initialized = FALSE;
|
|
|
|
|
|
|
|
BOOL cdAudio_Update( void );
|
|
|
|
|
2006-09-19 11:45:48 -07:00
|
|
|
static void PrintOpenALVersion(void)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
debug(LOG_ERROR, "OpenAL Vendor: %s\n"
|
|
|
|
"OpenAL Version: %s\n"
|
|
|
|
"OpenAL Renderer: %s\n"
|
|
|
|
"OpenAL Extensions: %s\n",
|
|
|
|
alGetString(AL_VENDOR), alGetString(AL_VERSION),
|
|
|
|
alGetString(AL_RENDERER), alGetString(AL_EXTENSIONS));
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
BOOL sound_InitLibrary( void )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
int err=0;
|
|
|
|
ALfloat listenerVel[3] = { 0.0, 0.0, 0.0 };
|
|
|
|
ALfloat listenerOri[6] = { 0.0, 0.0, 1.0, 0.0, 1.0, 0.0 };
|
|
|
|
// int contextAttributes[] = { 0 };
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
device = alcOpenDevice(0);
|
|
|
|
if(device == 0) {
|
|
|
|
PrintOpenALVersion();
|
|
|
|
debug(LOG_ERROR, "Couldn't open audio device.");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
context = alcCreateContext(device, NULL); //NULL was contextAttributes
|
|
|
|
alcMakeContextCurrent(context);
|
2006-06-02 12:34:58 -07:00
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
err = alcGetError(device);
|
|
|
|
if (err != ALC_NO_ERROR) {
|
|
|
|
PrintOpenALVersion();
|
|
|
|
debug(LOG_ERROR, "Couldn't initialize audio context: %s",
|
|
|
|
alcGetString(device, err));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
openal_initialized = TRUE;
|
|
|
|
|
|
|
|
// Clear Error Codes
|
|
|
|
alGetError();
|
|
|
|
alcGetError(device);
|
|
|
|
|
|
|
|
// Check what version of Open AL we are using
|
|
|
|
debug(LOG_SOUND, "OpenAL Version : %s",alGetString(AL_VERSION));
|
|
|
|
debug(LOG_SOUND, "OpenAL Renderer : %s",alGetString(AL_RENDERER));
|
|
|
|
debug(LOG_SOUND, "OpenAL Extensions : %s",alGetString(AL_EXTENSIONS));
|
|
|
|
|
|
|
|
|
2007-01-17 13:39:38 -08:00
|
|
|
alListener3f( AL_POSITION, 0, 0, 0 );
|
2007-06-28 10:47:08 -07:00
|
|
|
alListenerfv( AL_VELOCITY, listenerVel );
|
|
|
|
alListenerfv( AL_ORIENTATION, listenerOri );
|
|
|
|
alDistanceModel( AL_NONE );
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void sound_ShutdownLibrary( void )
|
|
|
|
{
|
2006-08-23 05:58:48 -07:00
|
|
|
SAMPLE_LIST * aSample = active_samples, * tmpSample = NULL;
|
|
|
|
|
|
|
|
debug(LOG_SOUND, "sound_ShutdownLibrary: starting shutdown");
|
2007-06-28 10:47:08 -07:00
|
|
|
if(context != 0) {
|
|
|
|
#ifdef WIN32
|
|
|
|
/* Ifdef'ed out the two lines below on Linux since this caused some versions
|
|
|
|
* of OpenAL to hang on exit. - Per */
|
2006-08-23 05:58:48 -07:00
|
|
|
debug(LOG_SOUND, "sound_ShutdownLibrary: make default context NULL");
|
2007-06-28 10:47:08 -07:00
|
|
|
alcMakeContextCurrent(NULL); //this should work now -Q
|
|
|
|
#endif
|
2006-08-23 05:58:48 -07:00
|
|
|
debug(LOG_SOUND, "sound_ShutdownLibrary: destroy previous context");
|
2007-06-28 10:47:08 -07:00
|
|
|
alcDestroyContext(context); // this gives a long delay on some impl.
|
|
|
|
context = 0;
|
|
|
|
}
|
2006-08-23 05:58:48 -07:00
|
|
|
debug(LOG_SOUND, "sound_ShutdownLibrary: close device");
|
2007-06-28 10:47:08 -07:00
|
|
|
if(device != 0) {
|
|
|
|
alcCloseDevice(device);
|
|
|
|
device = 0;
|
|
|
|
}
|
2006-02-18 10:54:37 -08:00
|
|
|
|
|
|
|
free( data );
|
2006-08-23 05:58:48 -07:00
|
|
|
|
|
|
|
while( aSample )
|
|
|
|
{
|
|
|
|
tmpSample = aSample->next;
|
|
|
|
free( aSample );
|
|
|
|
aSample = tmpSample;
|
|
|
|
}
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void sound_Update( void )
|
|
|
|
{
|
|
|
|
int err=0;
|
|
|
|
// { // <=== whats up with this ??
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
SAMPLE_LIST **tmp = &active_samples;
|
|
|
|
SAMPLE_LIST *i;
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
for ( tmp = &active_samples, i = *tmp; i != NULL; i = *tmp )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~
|
2006-02-11 01:00:20 -08:00
|
|
|
ALenum state = AL_STOPPED;
|
2007-06-28 10:47:08 -07:00
|
|
|
//~~~~~~~~~~
|
|
|
|
|
|
|
|
alGetSourcei( i->curr->iSample, AL_SOURCE_STATE, &state );
|
|
|
|
switch ( state )
|
|
|
|
{
|
|
|
|
case AL_PLAYING:
|
2006-02-11 01:00:20 -08:00
|
|
|
case AL_PAUSED:
|
2007-06-28 10:47:08 -07:00
|
|
|
//
|
|
|
|
// * sound_SetObjectPosition(i->curr->iSample, i->curr->x, i->curr->y, i->curr->z);
|
|
|
|
//
|
|
|
|
tmp = &( i->next );
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
sound_FinishedCallback( i->curr );
|
2006-02-11 01:00:20 -08:00
|
|
|
if (i->curr->iSample != AL_INVALID) {
|
|
|
|
alDeleteSources( 1, &(i->curr->iSample) );
|
|
|
|
i->curr->iSample = AL_INVALID;
|
|
|
|
}
|
2007-06-28 10:47:08 -07:00
|
|
|
*tmp = i->next;
|
|
|
|
free( i );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// }// <=== whats up with this You trying to make those local only ??
|
|
|
|
|
|
|
|
cdAudio_Update();
|
|
|
|
alcProcessContext(context);
|
|
|
|
err = alcGetError(device);
|
|
|
|
if(err != ALC_NO_ERROR) {
|
|
|
|
debug(LOG_ERROR, "Error while processing audio context: %s",
|
|
|
|
alGetString(err));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
BOOL sound_QueueSamplePlaying( void )
|
|
|
|
{
|
|
|
|
if ( current_queue_sample == -1 )
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~
|
|
|
|
ALenum state;
|
|
|
|
//~~~~~~~~~~
|
|
|
|
|
|
|
|
alGetSourcei( current_queue_sample, AL_SOURCE_STATE, &state );
|
|
|
|
if ( state == AL_PLAYING )
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-02-11 01:00:20 -08:00
|
|
|
if (current_queue_sample != AL_INVALID) {
|
|
|
|
alDeleteSources( 1, ¤t_queue_sample );
|
|
|
|
current_queue_sample = AL_INVALID;
|
|
|
|
}
|
2007-06-28 10:47:08 -07:00
|
|
|
current_queue_sample = -1;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
static void sound_SaveTrackData( TRACK *psTrack, ALuint buffer )
|
|
|
|
{
|
2006-09-24 11:53:08 -07:00
|
|
|
// save buffer name in track
|
|
|
|
psTrack->iBufferName = buffer;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
void* buffer;
|
|
|
|
unsigned int size;
|
|
|
|
unsigned int pos;
|
|
|
|
} ov_buffer_t;
|
|
|
|
|
|
|
|
size_t ovbuf_read(void *ptr, size_t size, size_t nmemb, void *datasource) {
|
|
|
|
ov_buffer_t* ovbuf = (ov_buffer_t*)datasource;
|
|
|
|
unsigned int read_size = size*nmemb;
|
|
|
|
|
|
|
|
if (ovbuf->pos + read_size > ovbuf->size) {
|
|
|
|
read_size = ovbuf->size - ovbuf->pos;
|
|
|
|
}
|
|
|
|
memcpy((char *)ptr,(char *) ovbuf->buffer+ovbuf->pos, read_size);
|
|
|
|
ovbuf->pos += read_size;
|
|
|
|
|
|
|
|
return read_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ovbuf_seek(void *datasource, ogg_int64_t offset, int whence) {
|
|
|
|
ov_buffer_t* ovbuf = (ov_buffer_t*)datasource;
|
2006-02-11 01:00:20 -08:00
|
|
|
int new_pos = 0;
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
switch (whence) {
|
|
|
|
case SEEK_SET:
|
|
|
|
new_pos = offset;
|
|
|
|
break;
|
|
|
|
case SEEK_CUR:
|
|
|
|
new_pos = ovbuf->pos+offset;
|
|
|
|
break;
|
|
|
|
case SEEK_END:
|
|
|
|
new_pos = ovbuf->size-offset-1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (new_pos >= 0 && new_pos < ovbuf->size) {
|
|
|
|
ovbuf->pos = new_pos;
|
|
|
|
return new_pos;
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int ovbuf_close(void *datasource) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
long ovbuf_tell(void *datasource) {
|
|
|
|
ov_buffer_t* ovbuf = (ov_buffer_t*)datasource;
|
|
|
|
|
|
|
|
return ovbuf->pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ov_callbacks ovbuf_callbacks = {
|
|
|
|
ovbuf_read,
|
|
|
|
ovbuf_seek,
|
|
|
|
ovbuf_close,
|
|
|
|
ovbuf_tell
|
|
|
|
};
|
|
|
|
|
|
|
|
BOOL sound_ReadTrackFromBuffer( TRACK *psTrack, void *pBuffer, UDWORD udwSize )
|
|
|
|
{
|
|
|
|
ov_buffer_t ovbuf;
|
|
|
|
OggVorbis_File ogg_stream;
|
|
|
|
vorbis_info* ogg_info;
|
|
|
|
ALuint buffer;
|
2006-02-18 10:54:37 -08:00
|
|
|
ALsizei size=0, freq;
|
2007-06-28 10:47:08 -07:00
|
|
|
ALenum format;
|
|
|
|
static ALuint data_size;
|
|
|
|
int result, section;
|
|
|
|
|
|
|
|
ovbuf.buffer = pBuffer;
|
|
|
|
ovbuf.size = udwSize;
|
|
|
|
ovbuf.pos = 0;
|
|
|
|
|
|
|
|
if (ov_open_callbacks(&ovbuf, &ogg_stream, NULL, 0, ovbuf_callbacks) < 0) {
|
|
|
|
return FALSE;
|
2006-06-02 12:34:58 -07:00
|
|
|
}
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
ogg_info = ov_info(&ogg_stream, -1);
|
2006-06-02 12:34:58 -07:00
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
if (ogg_info->channels == 1) {
|
|
|
|
format = AL_FORMAT_MONO16;
|
|
|
|
} else {
|
|
|
|
format = AL_FORMAT_STEREO16;
|
|
|
|
}
|
|
|
|
freq = ogg_info->rate;
|
|
|
|
|
|
|
|
if (data == NULL) {
|
|
|
|
data_size = 8192;
|
|
|
|
data = malloc(data_size);
|
|
|
|
}
|
|
|
|
|
2006-08-12 03:45:49 -07:00
|
|
|
result = ov_read(&ogg_stream, (char *)data+size, data_size-size, OGG_ENDIAN, 2, 1, §ion);
|
2006-02-18 10:54:37 -08:00
|
|
|
while( result != 0 ) {
|
2007-06-28 10:47:08 -07:00
|
|
|
size += result;
|
|
|
|
if (size == data_size) {
|
|
|
|
data_size *= 2;
|
|
|
|
data = realloc(data, data_size);
|
|
|
|
}
|
2006-08-12 03:45:49 -07:00
|
|
|
result = ov_read(&ogg_stream, (char *)data+size, data_size-size, OGG_ENDIAN, 2, 1, §ion);
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 02:09:20 -08:00
|
|
|
ov_clear(&ogg_stream);
|
2007-06-28 10:47:08 -07:00
|
|
|
alGenBuffers(1, &buffer);
|
|
|
|
alBufferData(buffer, format, data, size, freq);
|
|
|
|
sound_SaveTrackData(psTrack, buffer);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
2006-08-12 09:52:37 -07:00
|
|
|
BOOL sound_ReadTrackFromFile(TRACK *psTrack, char szFileName[])
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2006-06-16 12:10:23 -07:00
|
|
|
PHYSFS_file * f = PHYSFS_openRead(szFileName);
|
2007-06-28 10:47:08 -07:00
|
|
|
static char* buffer = NULL;
|
|
|
|
static unsigned int buffer_size = 0;
|
|
|
|
unsigned int size;
|
|
|
|
|
|
|
|
if (f == NULL) return FALSE;
|
|
|
|
|
2006-11-06 13:58:13 -08:00
|
|
|
size = PHYSFS_fileLength(f);
|
|
|
|
assert( size > -1 );
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
if (size > buffer_size) {
|
|
|
|
if (buffer != NULL) free(buffer);
|
|
|
|
buffer_size = size*2;
|
|
|
|
buffer = (char*)malloc(buffer_size);
|
|
|
|
}
|
|
|
|
|
2006-06-16 12:10:23 -07:00
|
|
|
PHYSFS_read(f, buffer, 1, size);
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
return sound_ReadTrackFromBuffer(psTrack, buffer, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void sound_FreeTrack( TRACK *psTrack )
|
|
|
|
{
|
2006-09-24 11:53:08 -07:00
|
|
|
ALuint buffer = psTrack->iBufferName;
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
alDeleteBuffers( 1, &buffer );
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
int sound_GetMaxVolume( void )
|
|
|
|
{
|
|
|
|
return 32767; // Why this value? -Q
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
2006-09-19 11:45:48 -07:00
|
|
|
static void sound_AddActiveSample( AUDIO_SAMPLE *psSample )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
SAMPLE_LIST *tmp = (SAMPLE_LIST *) malloc( sizeof(SAMPLE_LIST) );
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
tmp->curr = psSample;
|
|
|
|
tmp->next = active_samples;
|
|
|
|
active_samples = tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
static void sound_SetupChannel( AUDIO_SAMPLE *psSample, SDWORD *piLoops )
|
|
|
|
{
|
|
|
|
if ( sound_TrackLooped(psSample->iTrack) == TRUE )
|
|
|
|
{
|
|
|
|
*piLoops = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*piLoops = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
sound_AddActiveSample( psSample );
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
BOOL sound_Play2DSample( TRACK *psTrack, AUDIO_SAMPLE *psSample, BOOL bQueued )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
SDWORD iLoops;
|
|
|
|
ALfloat zero[3] = { 0.0, 0.0, 0.0 };
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
if (sfx_volume == 0.0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
alGenSources( 1, &(psSample->iSample) );
|
|
|
|
alSourcef( psSample->iSample, AL_PITCH, 1.0f );
|
|
|
|
alSourcef( psSample->iSample, AL_GAIN, sfx_volume );
|
|
|
|
alSourcefv( psSample->iSample, AL_POSITION, zero );
|
|
|
|
alSourcefv( psSample->iSample, AL_VELOCITY, zero );
|
2006-09-24 11:53:08 -07:00
|
|
|
alSourcei( psSample->iSample, AL_BUFFER, psTrack->iBufferName );
|
2007-06-28 10:47:08 -07:00
|
|
|
alSourcei( psSample->iSample, AL_SOURCE_RELATIVE, AL_TRUE );
|
|
|
|
sound_SetupChannel( psSample, &iLoops );
|
|
|
|
alSourcei( psSample->iSample, AL_LOOPING, (iLoops) ? AL_TRUE : AL_FALSE );
|
|
|
|
alSourcePlay( psSample->iSample );
|
|
|
|
if ( bQueued )
|
|
|
|
{
|
|
|
|
current_queue_sample = psSample->iSample;
|
|
|
|
}
|
|
|
|
else if ( current_queue_sample == psSample->iSample )
|
|
|
|
{
|
|
|
|
current_queue_sample = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
BOOL sound_Play3DSample( TRACK *psTrack, AUDIO_SAMPLE *psSample )
|
|
|
|
{
|
|
|
|
SDWORD iLoops;
|
|
|
|
ALfloat zero[3] = { 0.0, 0.0, 0.0 };
|
|
|
|
|
|
|
|
if (sfx3d_volume == 0.0) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
alGenSources( 1, &(psSample->iSample) );
|
|
|
|
alSourcef( psSample->iSample, AL_PITCH, 1.0 );
|
|
|
|
alSourcef( psSample->iSample, AL_GAIN, sfx3d_volume );
|
|
|
|
sound_SetObjectPosition( psSample->iSample, psSample->x, psSample->y, psSample->z );
|
|
|
|
alSourcefv( psSample->iSample, AL_VELOCITY, zero );
|
2006-09-24 11:53:08 -07:00
|
|
|
alSourcei( psSample->iSample, AL_BUFFER, psTrack->iBufferName );
|
2007-06-28 10:47:08 -07:00
|
|
|
sound_SetupChannel( psSample, &iLoops );
|
|
|
|
alSourcei( psSample->iSample, AL_LOOPING, (iLoops) ? AL_TRUE : AL_FALSE );
|
|
|
|
alSourcePlay( psSample->iSample );
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
2006-09-24 11:53:08 -07:00
|
|
|
BOOL sound_PlayStream( AUDIO_SAMPLE *psSample, const char szFileName[], SDWORD iVol )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void sound_StopSample( UDWORD iSample )
|
|
|
|
{
|
|
|
|
alSourceStop( iSample );
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void sound_SetSamplePan( AUDIO_SAMPLE *psSample, SDWORD iPan )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void sound_SetSampleVolAll( int iVol )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void sound_SetPlayerPos( SDWORD iX, SDWORD iY, SDWORD iZ )
|
|
|
|
{
|
2007-01-17 13:39:38 -08:00
|
|
|
alListener3f( AL_POSITION, iX, iY, iZ );
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
2007-01-07 08:28:54 -08:00
|
|
|
/** sets player's sound orientation
|
|
|
|
* \param iX pitch in degree (current function implementation ignores this)
|
|
|
|
* \param iY roll in degree (current function implementation ignores this)
|
|
|
|
* \param iZ yaw in degree
|
|
|
|
*/
|
2007-06-28 10:47:08 -07:00
|
|
|
void sound_SetPlayerOrientation( SDWORD iX, SDWORD iY, SDWORD iZ )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~
|
|
|
|
float ori[6];
|
|
|
|
//~~~~~~~~~~~
|
|
|
|
|
2007-01-07 08:28:54 -08:00
|
|
|
// convert params to rad
|
|
|
|
float pitch = (float)iX * M_PI / 180;
|
|
|
|
float roll = (float)iY * M_PI / 180;
|
|
|
|
float yaw = (float)iZ * M_PI / 180;
|
|
|
|
|
|
|
|
ori[0] = -sin( yaw );
|
|
|
|
ori[1] = cos( yaw );
|
2007-06-28 10:47:08 -07:00
|
|
|
ori[2] = 0;
|
|
|
|
ori[3] = 0;
|
|
|
|
ori[4] = 0;
|
|
|
|
ori[5] = 1;
|
|
|
|
alListenerfv( AL_ORIENTATION, ori );
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void sound_SetObjectPosition( SDWORD iSample, SDWORD iX, SDWORD iY, SDWORD iZ )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2007-01-07 08:28:54 -08:00
|
|
|
// coordinates
|
|
|
|
float listenerX, listenerY, listenerZ, dX, dY, dZ;
|
|
|
|
|
|
|
|
// calculation results
|
|
|
|
float distance, gain;
|
2007-06-28 10:47:08 -07:00
|
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2007-01-07 08:28:54 -08:00
|
|
|
// compute distance
|
|
|
|
alGetListener3f( AL_POSITION, &listenerX, &listenerY, &listenerZ );
|
|
|
|
dX = iX - listenerX; // distances on all axis
|
|
|
|
dY = iY - listenerY;
|
|
|
|
dZ = iZ - listenerZ;
|
|
|
|
distance = sqrt(dX * dX + dY * dY + dZ * dZ); // Pythagorean theorem
|
|
|
|
|
|
|
|
// compute gain
|
|
|
|
gain = 1 - distance * ATTENUATION_FACTOR;
|
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
if ( gain < 0.0 )
|
|
|
|
{
|
|
|
|
gain = 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
alSourcef( iSample, AL_GAIN, gain * sfx3d_volume );
|
|
|
|
|
2007-01-08 14:35:43 -08:00
|
|
|
// the alSource3i variant would be better, if it wouldn't provide linker errors however
|
|
|
|
alSource3f( iSample, AL_POSITION, iX, iY, iZ );
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void sound_PauseSample( AUDIO_SAMPLE *psSample )
|
|
|
|
{
|
|
|
|
alSourcePause( psSample->iSample );
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void sound_ResumeSample( AUDIO_SAMPLE *psSample )
|
|
|
|
{
|
|
|
|
alSourcePlay( psSample->iSample );
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void sound_PauseAll( void )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void sound_ResumeAll( void )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
void sound_StopAll( void )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
BOOL sound_SampleIsFinished( AUDIO_SAMPLE *psSample )
|
|
|
|
{
|
|
|
|
//~~~~~~~~~~
|
|
|
|
ALenum state;
|
|
|
|
//~~~~~~~~~~
|
|
|
|
|
|
|
|
alGetSourcei( psSample->iSample, AL_SOURCE_STATE, &state );
|
|
|
|
if ( state == AL_PLAYING )
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-02-11 01:00:20 -08:00
|
|
|
if (psSample->iSample != AL_INVALID) {
|
|
|
|
alDeleteSources( 1, &(psSample->iSample) );
|
|
|
|
psSample->iSample = AL_INVALID;
|
|
|
|
}
|
2007-06-28 10:47:08 -07:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//*
|
|
|
|
// =======================================================================================================================
|
|
|
|
// =======================================================================================================================
|
|
|
|
//
|
|
|
|
|
|
|
|
SDWORD mixer_GetWavVolume( void )
|
|
|
|
{
|
2006-11-02 12:15:08 -08:00
|
|
|
return (SDWORD)(100*sfx_volume);
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void mixer_SetWavVolume( SDWORD iVol )
|
|
|
|
{
|
|
|
|
sfx_volume = iVol * 0.01;
|
|
|
|
|
|
|
|
if (sfx_volume < 0.0) {
|
|
|
|
sfx_volume = 0.0;
|
|
|
|
} else if (sfx_volume > 1.0) {
|
|
|
|
sfx_volume = 1.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SDWORD mixer_Get3dWavVolume( void )
|
|
|
|
{
|
2006-11-02 12:15:08 -08:00
|
|
|
return (SDWORD)(100*sfx3d_volume);
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void mixer_Set3dWavVolume( SDWORD iVol )
|
|
|
|
{
|
|
|
|
sfx3d_volume = iVol * 0.01;
|
|
|
|
|
|
|
|
if (sfx3d_volume < 0.0) {
|
|
|
|
sfx3d_volume = 0.0;
|
|
|
|
} else if (sfx3d_volume > 1.0) {
|
|
|
|
sfx3d_volume = 1.0;
|
|
|
|
}
|
|
|
|
}
|