2 Copyright (C) 2003, 2010 - Wolfire Games
3 Copyright (C) 2010-2016 - Lugaru contributors (see AUTHORS file)
5 This file is part of Lugaru.
7 Lugaru is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 Lugaru is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Lugaru. If not, see <http://www.gnu.org/licenses/>.
25 #include "Quaternions.h"
26 #include "openal_wrapper.h"
30 extern float slomofreq;
33 // FMOD uses a Left Handed Coordinate system, OpenAL uses a Right Handed
34 // one...so we just need to flip the sign on the Z axis when appropriate.
38 OPENAL_SAMPLE *sample;
43 typedef struct OPENAL_SAMPLE {
45 ALuint bid; // buffer id.
50 static size_t num_channels = 0;
51 static OPENAL_Channels *impl_channels = NULL;
52 static bool initialized = false;
53 static float listener_position[3];
55 static void set_channel_position(const int channel, const float x,
56 const float y, const float z)
58 OPENAL_Channels *chan = &impl_channels[channel];
60 chan->position[0] = x;
61 chan->position[1] = y;
62 chan->position[2] = z;
64 OPENAL_SAMPLE *sptr = chan->sample;
68 const ALuint sid = chan->sid;
69 const bool no_attenuate = sptr->is2d;
72 alSourcei(sid, AL_SOURCE_RELATIVE, AL_TRUE);
73 alSource3f(sid, AL_POSITION, 0.0f, 0.0f, 0.0f);
75 alSourcei(sid, AL_SOURCE_RELATIVE, AL_FALSE);
76 alSource3f(sid, AL_POSITION, x, y, z);
81 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)
86 alListener3f(AL_POSITION, pos[0], pos[1], -pos[2]);
87 listener_position[0] = pos[0];
88 listener_position[1] = pos[1];
89 listener_position[2] = -pos[2];
92 ALfloat vec[6] = { fx, fy, -fz, tz, ty, -tz };
93 alListenerfv(AL_ORIENTATION, vec);
95 // we ignore velocity, since doppler's broken in the Linux AL at the moment...
97 // adjust existing positions...
98 for (int i = 0; i < num_channels; i++) {
99 const float *p = impl_channels[i].position;
100 set_channel_position(i, p[0], p[1], p[2]);
104 AL_API signed char OPENAL_3D_SetAttributes(int channel, const float *pos, const float *vel)
108 if ((channel < 0) || (channel >= num_channels))
112 set_channel_position(channel, pos[0], pos[1], -pos[2]);
114 // we ignore velocity, since doppler's broken in the Linux AL at the moment...
119 AL_API signed char OPENAL_3D_SetAttributes_(int channel, const XYZ &pos, const float *vel)
123 if ((channel < 0) || (channel >= num_channels))
126 set_channel_position(channel, pos.x, pos.y, -pos.z);
131 AL_API signed char OPENAL_Init(int mixrate, int maxsoftwarechannels, unsigned int flags)
135 if (maxsoftwarechannels == 0)
138 if (flags != 0) // unsupported.
141 ALCdevice *dev = alcOpenDevice(NULL);
145 ALint caps[] = { ALC_FREQUENCY, mixrate, 0 };
146 ALCcontext *ctx = alcCreateContext(dev, caps);
152 alcMakeContextCurrent(ctx);
153 alcProcessContext(ctx);
155 if (commandLineOptions[OPENALINFO]) {
156 printf("AL_VENDOR: %s\n", (char *) alGetString(AL_VENDOR));
157 printf("AL_RENDERER: %s\n", (char *) alGetString(AL_RENDERER));
158 printf("AL_VERSION: %s\n", (char *) alGetString(AL_VERSION));
159 printf("AL_EXTENSIONS: %s\n", (char *) alGetString(AL_EXTENSIONS));
162 num_channels = maxsoftwarechannels;
163 impl_channels = new OPENAL_Channels[maxsoftwarechannels];
164 memset(impl_channels, '\0', sizeof (OPENAL_Channels) * num_channels);
165 for (int i = 0; i < num_channels; i++)
166 alGenSources(1, &impl_channels[i].sid); // !!! FIXME: verify this didn't fail!
172 AL_API void OPENAL_Close()
177 ALCcontext *ctx = alcGetCurrentContext();
179 for (int i = 0; i < num_channels; i++) {
180 alSourceStop(impl_channels[i].sid);
181 alSourcei(impl_channels[i].sid, AL_BUFFER, 0);
182 alDeleteSources(1, &impl_channels[i].sid);
184 ALCdevice *dev = alcGetContextsDevice(ctx);
185 alcMakeContextCurrent(NULL);
186 alcSuspendContext(ctx);
187 alcDestroyContext(ctx);
192 delete[] impl_channels;
193 impl_channels = NULL;
198 static OPENAL_SAMPLE *OPENAL_GetCurrentSample(int channel)
202 if ((channel < 0) || (channel >= num_channels))
204 return impl_channels[channel].sample;
207 static signed char OPENAL_GetPaused(int channel)
211 if ((channel < 0) || (channel >= num_channels))
213 if (impl_channels[channel].startpaused)
217 alGetSourceiv(impl_channels[channel].sid, AL_SOURCE_STATE, &state);
218 return((state == AL_PAUSED) ? true : false);
221 static unsigned int OPENAL_GetLoopMode(int channel)
225 if ((channel < 0) || (channel >= num_channels))
228 alGetSourceiv(impl_channels[channel].sid, AL_LOOPING, &loop);
230 return(OPENAL_LOOP_NORMAL);
231 return OPENAL_LOOP_OFF;
234 static signed char OPENAL_IsPlaying(int channel)
238 if ((channel < 0) || (channel >= num_channels))
241 alGetSourceiv(impl_channels[channel].sid, AL_SOURCE_STATE, &state);
242 return((state == AL_PLAYING) ? true : false);
245 static int OPENAL_PlaySoundEx(int channel, OPENAL_SAMPLE *sptr, OPENAL_DSPUNIT *dsp, signed char startpaused)
253 if (channel == OPENAL_FREE) {
254 for (int i = 0; i < num_channels; i++) {
256 alGetSourceiv(impl_channels[i].sid, AL_SOURCE_STATE, &state);
257 if ((state != AL_PLAYING) && (state != AL_PAUSED)) {
264 if ((channel < 0) || (channel >= num_channels))
266 alSourceStop(impl_channels[channel].sid);
267 impl_channels[channel].sample = sptr;
268 alSourcei(impl_channels[channel].sid, AL_BUFFER, sptr->bid);
269 alSourcei(impl_channels[channel].sid, AL_LOOPING, (sptr->mode == OPENAL_LOOP_OFF) ? AL_FALSE : AL_TRUE);
270 set_channel_position(channel, 0.0f, 0.0f, 0.0f);
272 impl_channels[channel].startpaused = ((startpaused) ? true : false);
274 alSourcePlay(impl_channels[channel].sid);
279 static void *decode_to_pcm(const char *_fname, ALenum &format, ALsizei &size, ALuint &freq)
282 const int bigendian = 1;
284 const int bigendian = 0;
287 // !!! FIXME: if it's not Ogg, we don't have a decoder. I'm lazy. :/
288 char *fname = (char *) alloca(strlen(_fname) + 16);
289 strcpy(fname, _fname);
290 char *ptr = strchr(fname, '.');
293 strcat(fname, ".ogg");
296 FILE *io = fopen(fname, "rb");
300 ALubyte *retval = NULL;
302 #if 0 // untested, so disable this!
303 // Can we just feed it to the AL compressed?
304 if (alIsExtensionPresent((const ALubyte *) "AL_EXT_vorbis")) {
305 format = alGetEnumValue((const ALubyte *) "AL_FORMAT_VORBIS_EXT");
307 fseek(io, 0, SEEK_END);
309 fseek(io, 0, SEEK_SET);
310 retval = (ALubyte *) malloc(size);
311 size_t rc = fread(retval, size, 1, io);
321 // Uncompress and feed to the AL.
323 memset(&vf, '\0', sizeof (vf));
324 if (ov_open(io, &vf, NULL, 0) == 0) {
326 vorbis_info *info = ov_info(&vf, -1);
328 format = (info->channels == 1) ? AL_FORMAT_MONO16 : AL_FORMAT_STEREO16;
331 if ((info->channels != 1) && (info->channels != 2)) {
338 size_t allocated = 64 * 1024;
339 retval = (ALubyte *) malloc(allocated);
340 while ( (rc = ov_read(&vf, buf, sizeof (buf), bigendian, 2, 1, &bitstream)) != 0 ) {
343 if (size >= allocated) {
345 ALubyte *tmp = (ALubyte *) realloc(retval, allocated);
353 memcpy(retval + (size - rc), buf, rc);
365 AL_API OPENAL_SAMPLE *OPENAL_Sample_Load(int index, const char *name_or_data, unsigned int mode, int offset, int length)
369 if (index != OPENAL_FREE)
370 return NULL; // this is all the game does...
372 return NULL; // this is all the game does...
374 return NULL; // this is all the game does...
375 if ((mode != OPENAL_HW3D) && (mode != OPENAL_2D))
376 return NULL; // this is all the game does...
378 OPENAL_SAMPLE *retval = NULL;
379 ALenum format = AL_NONE;
381 ALuint frequency = 0;
382 void *data = decode_to_pcm(name_or_data, format, size, frequency);
388 alGenBuffers(1, &bid);
389 if (alGetError() == AL_NO_ERROR) {
390 alBufferData(bid, format, data, size, frequency);
391 retval = new OPENAL_SAMPLE;
393 retval->mode = OPENAL_LOOP_OFF;
394 retval->is2d = (mode == OPENAL_2D);
395 retval->name = new char[strlen(name_or_data) + 1];
397 strcpy(retval->name, name_or_data);
404 AL_API void OPENAL_Sample_Free(OPENAL_SAMPLE *sptr)
409 for (int i = 0; i < num_channels; i++) {
410 if (impl_channels[i].sample == sptr) {
411 alSourceStop(impl_channels[i].sid);
412 alSourcei(impl_channels[i].sid, AL_BUFFER, 0);
413 impl_channels[i].sample = NULL;
416 alDeleteBuffers(1, &sptr->bid);
422 static signed char OPENAL_Sample_SetMode(OPENAL_SAMPLE *sptr, unsigned int mode)
426 if ((mode != OPENAL_LOOP_NORMAL) && (mode != OPENAL_LOOP_OFF))
434 AL_API signed char OPENAL_SetFrequency(int channel, bool slomo)
438 if (channel == OPENAL_ALL) {
439 for (int i = 0; i < num_channels; i++)
440 OPENAL_SetFrequency(i, slomo);
444 if ((channel < 0) || (channel >= num_channels))
447 alSourcef(impl_channels[channel].sid, AL_PITCH, ((ALfloat) slomofreq) / 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);