Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/ois_update/src/orxonox/sound/BaseSound.cc @ 7664

Last change on this file since 7664 was 7664, checked in by youngk, 13 years ago

Corrected some serious bug in OpenAL Mac and reduced warnings.

  • Property svn:eol-style set to native
File size: 9.0 KB
RevLine 
[3060]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
[5896]23 *      Erwin 'vaiursch' Herrsche
[3060]24 *   Co-authors:
[5896]25 *      Reto Grieder
[3060]26 *
27 */
[3196]28
[5896]29#include "BaseSound.h"
[3196]30
[6417]31#include <cassert>
[3060]32#include <vector>
[7664]33
34#ifdef ORXONOX_PLATFORM_APPLE
35#include "openal/al.h"
36#else
[6417]37#include <al.h>
[7664]38#endif
[3060]39
[7163]40#include "util/Math.h"
[5896]41#include "core/CoreIncludes.h"
42#include "core/GameMode.h"
[5695]43#include "core/Resource.h"
[6417]44#include "core/XMLPort.h"
45#include "SoundBuffer.h"
46#include "SoundManager.h"
[3060]47
[5738]48namespace orxonox
[3060]49{
[5896]50    BaseSound::BaseSound()
[6417]51        : bPooling_(false)
52        , volume_(1.0)
53        , bLooping_(false)
54        , state_(Stopped)
55        , pitch_ (1.0)
[3060]56    {
[5896]57        RegisterRootObject(BaseSound);
[6417]58
59        // Initialise audioSource_ to a value that is not a source
60        // 0 is unfortunately not guaranteed to be no source ID.
61        this->audioSource_ = 123456789;
62        while (alIsSource(++this->audioSource_));
[3060]63    }
64
[5896]65    BaseSound::~BaseSound()
[3060]66    {
[6417]67        this->stop();
68        // Release buffer
69        if (this->soundBuffer_ != NULL)
70        {
71            assert(GameMode::playsSound());
72            SoundManager::getInstance().releaseSoundBuffer(this->soundBuffer_, this->bPooling_);
73        }
[3060]74    }
75
[6417]76    void BaseSound::XMLPortExtern(Element& xmlelement, XMLPort::Mode mode)
[3060]77    {
[6417]78        XMLPortParam(BaseSound, "volume",  setVolume,  getVolume,  xmlelement, mode);
79        XMLPortParam(BaseSound, "looping", setLooping, getLooping, xmlelement, mode);
80        XMLPortParam(BaseSound, "pitch",   setPitch,   getPitch,   xmlelement, mode);
81        XMLPortParam(BaseSound, "source",  setSource,  getSource,  xmlelement, mode);
82    }
83
84    void BaseSound::doPlay()
85    {
86        this->state_ = Playing;
87        if (GameMode::playsSound() && this->getSourceState() != AL_PLAYING && this->soundBuffer_ != NULL)
[5896]88        {
[6417]89            if (!alIsSource(this->audioSource_))
[3108]90            {
[6417]91                this->audioSource_ = SoundManager::getInstance().getSoundSource(this);
92                if (!alIsSource(this->audioSource_))
93                    return;
94                this->initialiseSource();
[3108]95            }
[6417]96
97            alSourcePlay(this->audioSource_);
98            if (int error = alGetError())
99                COUT(2) << "Sound: Error playing sound: " << SoundManager::getALErrorString(error) << std::endl;
[3060]100        }
101    }
102
[6417]103    void BaseSound::doStop()
[5896]104    {
[6417]105        this->state_ = Stopped;
[5899]106        if (alIsSource(this->audioSource_))
[6417]107        {
[5899]108            alSourceStop(this->audioSource_);
[6417]109            // Release buffer
110            alSourcei(this->audioSource_, AL_BUFFER, AL_NONE);
111            // Release source again
112            SoundManager::getInstance().releaseSoundSource(this->audioSource_);
113            // Get a no source ID
114            this->audioSource_ += 123455;
115            while (alIsSource(++this->audioSource_));
116        }
[3060]117    }
118
[6417]119    void BaseSound::doPause()
[5896]120    {
[6417]121        if (this->isStopped())
122            return;
123        this->state_ = Paused;
[5899]124        if (alIsSource(this->audioSource_))
125            alSourcePause(this->audioSource_);
[3060]126    }
127
[6417]128    ALint BaseSound::getSourceState() const
[5896]129    {
[5899]130        if (alIsSource(this->audioSource_))
[6417]131        {
132            ALint state;
133            alGetSourcei(this->audioSource_, AL_SOURCE_STATE, &state);
134            return state;
135        }
136        else
137            return AL_INITIAL;
[3060]138    }
139
[6417]140    void BaseSound::initialiseSource()
[5896]141    {
[6417]142        this->updateVolume();
143        this->setPitch(this->getPitch());
144        this->setLooping(this->getLooping());
145        alSource3f(this->audioSource_, AL_POSITION,  0, 0, 0);
146        alSource3f(this->audioSource_, AL_VELOCITY,  0, 0, 0);
147        alSource3f(this->audioSource_, AL_DIRECTION, 0, 0, 0);
148        if (ALint error = alGetError())
149            COUT(2) << "Sound Warning: Setting source parameters to 0 failed: "
150                    << SoundManager::getALErrorString(error) << std::endl;
151        assert(this->soundBuffer_ != NULL);
152        alSourcei(this->audioSource_, AL_BUFFER, this->soundBuffer_->getBuffer());
153        if (ALuint error = alGetError())
154            COUT(1) << "Sound Error: Could not set buffer \"" << this->source_ << "\": " << SoundManager::getALErrorString(error) << std::endl;
155    }
156
157    void BaseSound::setVolume(float vol)
158    {
159        this->volume_ = clamp(vol, 0.0f, 1.0f);
160        if (this->volume_ != vol)
161            COUT(2) << "Sound warning: volume out of range, clamping value." << std::endl;
162        this->updateVolume();
163    }
164
165    void BaseSound::updateVolume()
166    {
[5899]167        if (alIsSource(this->audioSource_))
[6417]168        {
169            float volume = this->volume_ * this->getRealVolume();
170            alSourcef(this->audioSource_, AL_GAIN, volume);
171            if (int error = alGetError())
172                COUT(2) << "Sound: Error setting volume to " << volume
173                        << ": " << SoundManager::getALErrorString(error) << std::endl;
174        }
[3060]175    }
176
[6417]177    void BaseSound::setLooping(bool val)
[5896]178    {
[6417]179        this->bLooping_ = val;
[5899]180        if (alIsSource(this->audioSource_))
[6417]181            alSourcei(this->audioSource_, AL_LOOPING, (val ? AL_TRUE : AL_FALSE));
[3060]182    }
183
[6417]184    void BaseSound::setPitch(float pitch)
[5896]185    {
[6502]186        if (pitch > 2 || pitch < 0.5f)
[6417]187        {
188            COUT(2) << "Sound warning: pitch out of range, cropping value." << std::endl;
[6502]189            pitch = pitch > 2.0f ? 2.0f : pitch;
190            pitch = pitch < 0.5f ? 0.5f : pitch;
[6417]191        }
192        this->pitch_ = pitch;
193        if (alIsSource(this->audioSource_))
194        {
195            alSourcef(this->audioSource_, AL_PITCH, pitch);
196            if (int error = alGetError())
197                COUT(2) << "Sound: Error setting pitch: " << SoundManager::getALErrorString(error) << std::endl;
198        }
[5896]199    }
200
[5899]201    void BaseSound::setSource(const std::string& source)
[5896]202    {
203        if (!GameMode::playsSound())
[3060]204        {
[6417]205            this->source_ = source;
[5896]206            return;
[3060]207        }
208
[6417]209        if (this->soundBuffer_ != NULL)
[5896]210        {
[6417]211            if (this->soundBuffer_->getFilename() == source)
[5904]212            {
[6417]213                assert(this->source_ == source_);
214                return;
[5904]215            }
[6417]216            // Stopping is imperative here!
217            if (alIsSource(this->audioSource_))
[5904]218            {
[6417]219                alSourceStop(this->audioSource_);
220                alSourcei(this->audioSource_, AL_BUFFER, AL_NONE);
[5904]221            }
[6417]222            SoundManager::getInstance().releaseSoundBuffer(this->soundBuffer_, this->bPooling_);
223            this->soundBuffer_.reset();
[3060]224        }
225
[6417]226        this->source_ = source;
227        // Don't load ""
228        if (source_.empty())
[5896]229            return;
230
[6417]231        // Get new sound buffer
232        this->soundBuffer_ = SoundManager::getInstance().getSoundBuffer(this->source_);
233        if (this->soundBuffer_ == NULL)
234            return;
[5896]235
[6417]236        if (alIsSource(this->audioSource_)) // already playing or paused
237        {
238            // Set new buffer
239            alSourcei(this->audioSource_, AL_BUFFER, this->soundBuffer_->getBuffer());
240            if (ALuint error = alGetError())
241            {
242                COUT(1) << "Sound Error: Could not set buffer \"" << source << "\": " << SoundManager::getALErrorString(error) << std::endl;
243                return;
244            }
[3060]245
[6417]246            // Sound was already playing or paused because there was a source acquired
247            assert(this->isPlaying() || this->isPaused());
248            alSourcePlay(this->audioSource_);
249            if (int error = alGetError())
250                COUT(2) << "Sound: Error playing sound: " << SoundManager::getALErrorString(error) << std::endl;
251            if (this->isPaused())
252                alSourcePause(this->audioSource_);
[3060]253        }
[6417]254        else // No source acquired so far, but might be set to playing or paused
[3060]255        {
[7163]256            State state = static_cast<State>(this->state_); // save
[6417]257            if (this->isPlaying() || this->isPaused())
258                doPlay();
259            if (state == Paused)
[3060]260            {
[6417]261                this->state_ = Paused;
262                doPause();
[3060]263            }
264        }
[6417]265    }
[3060]266
[6417]267    void BaseSound::stateChanged()
268    {
269        switch (this->state_)
270        {
271            case Playing:
272                this->play();
273                break;
274            case Paused:
275                this->pause();
276                break;
277            case Stopped:
278            default:
279                this->stop();
280                break;
281        }
[3060]282    }
[6417]283}
Note: See TracBrowser for help on using the repository browser.