/* * ORXONOX - the hottest 3D action shooter ever to exist * > www.orxonox.net < * * * License notice: * * This program 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. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Author: * Erwin 'vaiursch' Herrsche * Co-authors: * */ #include "SoundStreamer.h" #include #include #include "SoundManager.h" namespace orxonox { // vorbis callbacks size_t readVorbis(void* ptr, size_t size, size_t nmemb, void* datasource); int seekVorbis(void* datasource, ogg_int64_t offset, int whence); long tellVorbis(void* datasource); void orxonox::SoundStreamer::operator()(ALuint audioSource, DataStreamPtr dataStream) { // Open file with custom streaming ov_callbacks vorbisCallbacks; vorbisCallbacks.read_func = &readVorbis; vorbisCallbacks.seek_func = &seekVorbis; vorbisCallbacks.tell_func = &tellVorbis; vorbisCallbacks.close_func = NULL; OggVorbis_File vf; int ret = ov_open_callbacks(dataStream.get(), &vf, NULL, 0, vorbisCallbacks); if (ret < 0) { orxout(internal_error, context::sound) << "libvorbisfile: File does not seem to be an Ogg Vorbis bitstream" << endl; ov_clear(&vf); return; } vorbis_info* vorbisInfo; vorbisInfo = ov_info(&vf, -1); ALenum format; if (vorbisInfo->channels == 1) format = AL_FORMAT_MONO16; else format = AL_FORMAT_STEREO16; char inbuffer[256*1024]; ALuint initbuffers[4]; alGenBuffers(4, initbuffers); int current_section; for(int i = 0; i < 4; i++) { long ret = ov_read(&vf, inbuffer, sizeof(inbuffer), 0, 2, 1, ¤t_section); if (ret == 0) { return; } else if (ret < 0) { orxout(internal_error, context::sound) << "libvorbisfile: error reading the file" << endl; ov_clear(&vf); return; } alBufferData(initbuffers[i], format, &inbuffer, ret, vorbisInfo->rate); } alSourceQueueBuffers(audioSource, 4, initbuffers); while(true) // Stream forever, control through thread control { int processed; alGetSourcei(audioSource, AL_BUFFERS_PROCESSED, &processed); if (ALint error = alGetError()) orxout(internal_warning, context::sound) << "Couldn't get number of processed buffers: " << SoundManager::getALErrorString(error) << endl; if(processed > 0) { ALuint* buffers = new ALuint[processed]; alSourceUnqueueBuffers(audioSource, processed, buffers); if (ALint error = alGetError()) orxout(internal_warning, context::sound) << "Couldn't unqueue buffers: " << SoundManager::getALErrorString(error) << endl; for(int i = 0; i < processed; i++) { long ret = ov_read(&vf, inbuffer, sizeof(inbuffer), 0, 2, 1, ¤t_section); if (ret == 0) { return; } else if (ret < 0) { orxout(internal_error, context::sound) << "libvorbisfile: error reading the file" << endl; ov_clear(&vf); return; } alBufferData(buffers[i], format, &inbuffer, ret, vorbisInfo->rate); } alSourceQueueBuffers(audioSource, processed, buffers); if (ALint error = alGetError()) orxout(internal_warning, context::sound) << "Couldn't queue buffers: " << SoundManager::getALErrorString(error) << endl; } } } }