/* * 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 "SoundManager.h" #include #include "util/Math.h" #include "CameraManager.h" #include "worldentities/Camera.h" #include "SoundBase.h" namespace orxonox { SoundManager* SoundManager::singletonPtr_s = NULL; /** * Default constructor */ SoundManager::SoundManager() { this->device_ = NULL; this->soundavailable_ = true; if(!alutInitWithoutContext(NULL,NULL)) { COUT(2) << "Sound: OpenAL ALUT: " << alutGetErrorString(alutGetError()) << std::endl; this->soundavailable_ = false; } else { assert(this->device_ == NULL); COUT(3) << "Sound: OpenAL: Open sound device..." << std::endl; this->device_ = alcOpenDevice(NULL); if(this->device_ == NULL) { COUT(2) << "Sound: OpenAL: Could not open sound device" << std::endl; this->soundavailable_ = false; } else { COUT(3) << "Sound: OpenAL: Sound device opened" << std::endl; this->context_ = alcCreateContext(this->device_, NULL); if(this->context_ == NULL) { COUT(2) << "Sound: OpenAL: Could not create sound context" << std::endl; this->soundavailable_ = false; } else { if(alcMakeContextCurrent(this->context_) == AL_TRUE) COUT(3) << "Sound: OpenAL: Context " << this->context_ << " loaded" << std::endl; COUT(4) << "Sound: OpenAL ALUT version: " << alutGetMajorVersion() << "." << alutGetMinorVersion() << std::endl; const char* str = alutGetMIMETypes(ALUT_LOADER_BUFFER); if (str == NULL) COUT(2) << "Sound: OpenAL ALUT: " << alutGetErrorString(alutGetError()) << std::endl; else COUT(4) << "Sound: OpenAL ALUT supported MIME types: " << str << std::endl; } } } } SoundManager::~SoundManager() { alcDestroyContext(this->context_); alcCloseDevice(this->device_); alutExit(); } /** * Add a SoundBase object to the list. Every SoundBase object should be in * this list. * * @param sound Pointer to the SoundBase object to add */ void SoundManager::addSound(SoundBase* sound) { this->soundlist_.push_back(sound); } /** * Remove a SoundBase object from the list and destroy it. */ void SoundManager::removeSound(SoundBase* sound) { std::list::iterator pos = this->soundlist_.end(); for(std::list::iterator i = this->soundlist_.begin(); i != this->soundlist_.end(); i++) { if((*i) == sound) pos = i; } delete (*pos); this->soundlist_.erase(pos); } /** * Tick function, updates listener and registred SoundBase objects * * @param dt @see Orxonox::Tickable */ void SoundManager::tick(float dt) { if (!CameraManager::getInstancePtr()) return; // update listener position Camera* camera = CameraManager::getInstance().getActiveCamera(); if(camera == NULL) return; Vector3 pos = camera->getPosition(); alListener3f(AL_POSITION, pos.x, pos.y, pos.z); ALenum error = alGetError(); if(error == AL_INVALID_VALUE) COUT(2) << "Sound: OpenAL: Invalid listener position" << std::endl; // update listener orientation const Quaternion& orient = camera->getOrientation(); Vector3 up = orient.xAxis(); // just a wild guess Vector3 at = orient.zAxis(); ALfloat orientation[6] = { at.x, at.y, at.z, up.x, up.y, up.z }; alListenerfv(AL_POSITION, orientation); error = alGetError(); if(error == AL_INVALID_VALUE) COUT(2) << "Sound: OpenAL: Invalid listener orientation" << std::endl; // update sounds for(std::list::iterator i = this->soundlist_.begin(); i != this->soundlist_.end(); i++) (*i)->update(); } /** * Check if sound is available */ bool SoundManager::isSoundAvailable() { return this->soundavailable_; } }