2 Copyright (C) 2003, 2010 - Wolfire Games
4 This file is part of Lugaru.
6 Lugaru is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 Lugaru is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with Lugaru. If not, see <http://www.gnu.org/licenses/>.
24 #include "Quaternions.h"
25 #include "openal_wrapper.h"
29 // FMOD uses a Left Handed Coordinate system, OpenAL uses a Right Handed
30 // one...so we just need to flip the sign on the Z axis when appropriate.
34 OPENAL_SAMPLE *sample;
39 typedef struct OPENAL_SAMPLE {
41 ALuint bid; // buffer id.
46 static size_t num_channels = 0;
47 static OPENAL_Channels *impl_channels = NULL;
48 static bool initialized = false;
49 static float listener_position[3];
51 static void set_channel_position(const int channel, const float x,
52 const float y, const float z)
54 OPENAL_Channels *chan = &impl_channels[channel];
56 chan->position[0] = x;
57 chan->position[1] = y;
58 chan->position[2] = z;
60 OPENAL_SAMPLE *sptr = chan->sample;
64 const ALuint sid = chan->sid;
65 const bool no_attenuate = sptr->is2d;
68 alSourcei(sid, AL_SOURCE_RELATIVE, AL_TRUE);
69 alSource3f(sid, AL_POSITION, 0.0f, 0.0f, 0.0f);
71 alSourcei(sid, AL_SOURCE_RELATIVE, AL_FALSE);
72 alSource3f(sid, AL_POSITION, x, y, z);
77 AL_API void OPENAL_3D_Listener_SetAttributes(const float *pos, const float *vel, float fx, float fy, float fz, float tx, float ty, float tz)
82 alListener3f(AL_POSITION, pos[0], pos[1], -pos[2]);
83 listener_position[0] = pos[0];
84 listener_position[1] = pos[1];
85 listener_position[2] = -pos[2];
88 ALfloat vec[6] = { fx, fy, -fz, tz, ty, -tz };
89 alListenerfv(AL_ORIENTATION, vec);
91 // we ignore velocity, since doppler's broken in the Linux AL at the moment...
93 // adjust existing positions...
94 for (int i = 0; i < num_channels; i++) {
95 const float *p = impl_channels[i].position;
96 set_channel_position(i, p[0], p[1], p[2]);
100 AL_API signed char OPENAL_3D_SetAttributes(int channel, const float *pos, const float *vel)
104 if ((channel < 0) || (channel >= num_channels))
108 set_channel_position(channel, pos[0], pos[1], -pos[2]);
110 // we ignore velocity, since doppler's broken in the Linux AL at the moment...
115 AL_API signed char OPENAL_3D_SetAttributes_(int channel, const XYZ &pos, const float *vel)
119 if ((channel < 0) || (channel >= num_channels))
122 set_channel_position(channel, pos.x, pos.y, -pos.z);
127 AL_API signed char OPENAL_Init(int mixrate, int maxsoftwarechannels, unsigned int flags)
131 if (maxsoftwarechannels == 0)
134 if (flags != 0) // unsupported.
137 ALCdevice *dev = alcOpenDevice(NULL);
141 ALint caps[] = { ALC_FREQUENCY, mixrate, 0 };
142 ALCcontext *ctx = alcCreateContext(dev, caps);
148 alcMakeContextCurrent(ctx);
149 alcProcessContext(ctx);
151 bool cmdline(const char * cmd);
152 if (cmdline("openalinfo")) {
153 printf("AL_VENDOR: %s\n", (char *) alGetString(AL_VENDOR));
154 printf("AL_RENDERER: %s\n", (char *) alGetString(AL_RENDERER));
155 printf("AL_VERSION: %s\n", (char *) alGetString(AL_VERSION));
156 printf("AL_EXTENSIONS: %s\n", (char *) alGetString(AL_EXTENSIONS));
159 num_channels = maxsoftwarechannels;
160 impl_channels = new OPENAL_Channels[maxsoftwarechannels];
161 memset(impl_channels, '\0', sizeof (OPENAL_Channels) * num_channels);
162 for (int i = 0; i < num_channels; i++)
163 alGenSources(1, &impl_channels[i].sid); // !!! FIXME: verify this didn't fail!
169 AL_API void OPENAL_Close()
174 ALCcontext *ctx = alcGetCurrentContext();
176 for (int i = 0; i < num_channels; i++) {
177 alSourceStop(impl_channels[i].sid);
178 alSourcei(impl_channels[i].sid, AL_BUFFER, 0);
179 alDeleteSources(1, &impl_channels[i].sid);
181 ALCdevice *dev = alcGetContextsDevice(ctx);
182 alcMakeContextCurrent(NULL);
183 alcSuspendContext(ctx);
184 alcDestroyContext(ctx);
189 delete[] impl_channels;
190 impl_channels = NULL;
195 static OPENAL_SAMPLE *OPENAL_GetCurrentSample(int channel)
199 if ((channel < 0) || (channel >= num_channels))
201 return impl_channels[channel].sample;
204 static signed char OPENAL_GetPaused(int channel)
208 if ((channel < 0) || (channel >= num_channels))
210 if (impl_channels[channel].startpaused)
214 alGetSourceiv(impl_channels[channel].sid, AL_SOURCE_STATE, &state);
215 return((state == AL_PAUSED) ? true : false);
218 static unsigned int OPENAL_GetLoopMode(int channel)
222 if ((channel < 0) || (channel >= num_channels))
225 alGetSourceiv(impl_channels[channel].sid, AL_LOOPING, &loop);
227 return(OPENAL_LOOP_NORMAL);
228 return OPENAL_LOOP_OFF;
231 static signed char OPENAL_IsPlaying(int channel)
235 if ((channel < 0) || (channel >= num_channels))
238 alGetSourceiv(impl_channels[channel].sid, AL_SOURCE_STATE, &state);
239 return((state == AL_PLAYING) ? true : false);
242 static int OPENAL_PlaySoundEx(int channel, OPENAL_SAMPLE *sptr, OPENAL_DSPUNIT *dsp, signed char startpaused)
250 if (channel == OPENAL_FREE) {
251 for (int i = 0; i < num_channels; i++) {
253 alGetSourceiv(impl_channels[i].sid, AL_SOURCE_STATE, &state);
254 if ((state != AL_PLAYING) && (state != AL_PAUSED)) {
261 if ((channel < 0) || (channel >= num_channels))
263 alSourceStop(impl_channels[channel].sid);
264 impl_channels[channel].sample = sptr;
265 alSourcei(impl_channels[channel].sid, AL_BUFFER, sptr->bid);
266 alSourcei(impl_channels[channel].sid, AL_LOOPING, (sptr->mode == OPENAL_LOOP_OFF) ? AL_FALSE : AL_TRUE);
267 set_channel_position(channel, 0.0f, 0.0f, 0.0f);
269 impl_channels[channel].startpaused = ((startpaused) ? true : false);
271 alSourcePlay(impl_channels[channel].sid);
276 static void *decode_to_pcm(const char *_fname, ALenum &format, ALsizei &size, ALuint &freq)
279 const int bigendian = 1;
281 const int bigendian = 0;
284 // !!! FIXME: if it's not Ogg, we don't have a decoder. I'm lazy. :/
285 char *fname = (char *) alloca(strlen(_fname) + 16);
286 strcpy(fname, _fname);
287 char *ptr = strchr(fname, '.');
290 strcat(fname, ".ogg");
294 FILE *io = fopen(fname, "rb");
298 ALubyte *retval = NULL;
300 #if 0 // untested, so disable this!
301 // Can we just feed it to the AL compressed?
302 if (alIsExtensionPresent((const ALubyte *) "AL_EXT_vorbis")) {
303 format = alGetEnumValue((const ALubyte *) "AL_FORMAT_VORBIS_EXT");
305 fseek(io, 0, SEEK_END);
307 fseek(io, 0, SEEK_SET);
308 retval = (ALubyte *) malloc(size);
309 size_t rc = fread(retval, size, 1, io);
319 // Uncompress and feed to the AL.
321 memset(&vf, '\0', sizeof (vf));
322 if (ov_open(io, &vf, NULL, 0) == 0) {
324 vorbis_info *info = ov_info(&vf, -1);
326 format = (info->channels == 1) ? AL_FORMAT_MONO16 : AL_FORMAT_STEREO16;
329 if ((info->channels != 1) && (info->channels != 2)) {
336 size_t allocated = 64 * 1024;
337 retval = (ALubyte *) malloc(allocated);
338 while ( (rc = ov_read(&vf, buf, sizeof (buf), bigendian, 2, 1, &bitstream)) != 0 ) {
341 if (size >= allocated) {
343 ALubyte *tmp = (ALubyte *) realloc(retval, allocated);
351 memcpy(retval + (size - rc), buf, rc);
363 AL_API OPENAL_SAMPLE *OPENAL_Sample_Load(int index, const char *name_or_data, unsigned int mode, int offset, int length)
367 if (index != OPENAL_FREE)
368 return NULL; // this is all the game does...
370 return NULL; // this is all the game does...
372 return NULL; // this is all the game does...
373 if ((mode != OPENAL_HW3D) && (mode != OPENAL_2D))
374 return NULL; // this is all the game does...
376 OPENAL_SAMPLE *retval = NULL;
377 ALuint bufferName = 0;
378 ALenum format = AL_NONE;
380 ALuint frequency = 0;
381 void *data = decode_to_pcm(name_or_data, format, size, frequency);
387 alGenBuffers(1, &bid);
388 if (alGetError() == AL_NO_ERROR) {
389 alBufferData(bid, format, data, size, frequency);
390 retval = new OPENAL_SAMPLE;
392 retval->mode = OPENAL_LOOP_OFF;
393 retval->is2d = (mode == OPENAL_2D);
394 retval->name = new char[strlen(name_or_data) + 1];
396 strcpy(retval->name, name_or_data);
403 AL_API void OPENAL_Sample_Free(OPENAL_SAMPLE *sptr)
408 for (int i = 0; i < num_channels; i++) {
409 if (impl_channels[i].sample == sptr) {
410 alSourceStop(impl_channels[i].sid);
411 alSourcei(impl_channels[i].sid, AL_BUFFER, 0);
412 impl_channels[i].sample = NULL;
415 alDeleteBuffers(1, &sptr->bid);
421 static signed char OPENAL_Sample_SetMode(OPENAL_SAMPLE *sptr, unsigned int mode)
425 if ((mode != OPENAL_LOOP_NORMAL) && (mode != OPENAL_LOOP_OFF))
433 AL_API signed char OPENAL_SetFrequency(int channel, int freq)
437 if (channel == OPENAL_ALL) {
438 for (int i = 0; i < num_channels; i++)
439 OPENAL_SetFrequency(i, freq);
443 if ((channel < 0) || (channel >= num_channels))
447 alSourcef(impl_channels[channel].sid, AL_PITCH, 8012.0f / 44100.0f);
449 alSourcef(impl_channels[channel].sid, AL_PITCH, 1.0f);
453 AL_API signed char OPENAL_SetVolume(int channel, int vol)
458 if (channel == OPENAL_ALL) {
459 for (int i = 0; i < num_channels; i++)
460 OPENAL_SetVolume(i, vol);
464 if ((channel < 0) || (channel >= num_channels))
471 ALfloat gain = ((ALfloat) vol) / 255.0f;
472 alSourcef(impl_channels[channel].sid, AL_GAIN, gain);
476 AL_API signed char OPENAL_SetPaused(int channel, signed char paused)
481 if (channel == OPENAL_ALL) {
482 for (int i = 0; i < num_channels; i++)
483 OPENAL_SetPaused(i, paused);
487 if ((channel < 0) || (channel >= num_channels))
491 if (impl_channels[channel].startpaused)
494 alGetSourceiv(impl_channels[channel].sid, AL_SOURCE_STATE, &state);
496 if ((paused) && (state == AL_PLAYING))
497 alSourcePause(impl_channels[channel].sid);
498 else if ((!paused) && (state == AL_PAUSED)) {
499 alSourcePlay(impl_channels[channel].sid);
500 impl_channels[channel].startpaused = false;
505 AL_API void OPENAL_SetSFXMasterVolume(int volume)
509 ALfloat gain = ((ALfloat) volume) / 255.0f;
510 alListenerf(AL_GAIN, gain);
513 AL_API signed char OPENAL_StopSound(int channel)
518 if (channel == OPENAL_ALL) {
519 for (int i = 0; i < num_channels; i++)
524 if ((channel < 0) || (channel >= num_channels))
526 alSourceStop(impl_channels[channel].sid);
527 impl_channels[channel].startpaused = false;
531 static OPENAL_SAMPLE *OPENAL_Stream_GetSample(OPENAL_STREAM *stream)
535 return (OPENAL_SAMPLE *) stream;
538 static int OPENAL_Stream_PlayEx(int channel, OPENAL_STREAM *stream, OPENAL_DSPUNIT *dsp, signed char startpaused)
540 return OPENAL_PlaySoundEx(channel, (OPENAL_SAMPLE *) stream, dsp, startpaused);
543 static signed char OPENAL_Stream_Stop(OPENAL_STREAM *stream)
547 for (int i = 0; i < num_channels; i++) {
548 if (impl_channels[i].sample == (OPENAL_SAMPLE *) stream) {
549 alSourceStop(impl_channels[i].sid);
550 impl_channels[i].startpaused = false;
556 AL_API signed char OPENAL_Stream_SetMode(OPENAL_STREAM *stream, unsigned int mode)
558 return OPENAL_Sample_SetMode((OPENAL_SAMPLE *) stream, mode);
561 AL_API void OPENAL_Update()
565 alcProcessContext(alcGetCurrentContext());
568 AL_API signed char OPENAL_SetOutput(int outputtype)
573 extern int channels[];
575 extern "C" void PlaySoundEx(int chan, OPENAL_SAMPLE *sptr, OPENAL_DSPUNIT *dsp, signed char startpaused)
577 const OPENAL_SAMPLE * currSample = OPENAL_GetCurrentSample(channels[chan]);
578 if (currSample && currSample == samp[chan]) {
579 if (OPENAL_GetPaused(channels[chan])) {
580 OPENAL_StopSound(channels[chan]);
581 channels[chan] = OPENAL_FREE;
582 } else if (OPENAL_IsPlaying(channels[chan])) {
583 int loop_mode = OPENAL_GetLoopMode(channels[chan]);
584 if (loop_mode & OPENAL_LOOP_OFF) {
585 channels[chan] = OPENAL_FREE;
589 channels[chan] = OPENAL_FREE;
592 channels[chan] = OPENAL_PlaySoundEx(channels[chan], sptr, dsp, startpaused);
593 if (channels[chan] < 0) {
594 channels[chan] = OPENAL_PlaySoundEx(OPENAL_FREE, sptr, dsp, startpaused);
598 extern "C" void PlayStreamEx(int chan, OPENAL_STREAM *sptr, OPENAL_DSPUNIT *dsp, signed char startpaused)
600 const OPENAL_SAMPLE * currSample = OPENAL_GetCurrentSample(channels[chan]);
601 if (currSample && currSample == OPENAL_Stream_GetSample(sptr)) {
602 OPENAL_StopSound(channels[chan]);
603 OPENAL_Stream_Stop(sptr);
605 OPENAL_Stream_Stop(sptr);
606 channels[chan] = OPENAL_FREE;
609 channels[chan] = OPENAL_Stream_PlayEx(channels[chan], sptr, dsp, startpaused);
610 if (channels[chan] < 0) {
611 channels[chan] = OPENAL_Stream_PlayEx(OPENAL_FREE, sptr, dsp, startpaused);