Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation2/src/orxonox/sound/SoundManager.h @ 6349

Last change on this file since 6349 was 6349, checked in by rgrieder, 14 years ago

Overriding preDestroy() in AmbientSound to make them fade out when the level unloads.
@Kevin: this should also prevent the random bug you showed me when reloading a level with ambient sound.

  • Property svn:eol-style set to native
File size: 4.8 KB
Line 
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:
23 *       Erwin 'vaiursch' Herrsche
24 *       Kevin Young
25 *       Reto Grieder
26 *   Co-authors:
27 *      ...
28 */
29
30#ifndef _SoundManager_H__
31#define _SoundManager_H__
32
33#include "OrxonoxPrereqs.h"
34
35#include <list>
36#include <map>
37#include <string>
38#include <boost/shared_ptr.hpp>
39
40#include "util/Singleton.h"
41#include "core/OrxonoxClass.h"
42#include "core/SmartPtr.h"
43
44// forward declaration
45typedef int ALenum;
46
47// tolua_begin
48namespace orxonox
49{
50    // forward declaration
51    class SoundBuffer;
52   
53    //! Enum for the sound type.
54    namespace SoundType
55    {
56        enum Value
57        {
58            none,
59            ambient,
60            effects
61        };
62    }
63   
64    /**
65     * The SoundManager class manages the OpenAL device, context and listener
66     * position. It is a singleton.
67     *
68     */
69    class _OrxonoxExport SoundManager
70    // tolua_end
71        : public Singleton<SoundManager>, public OrxonoxClass
72    { // tolua_export
73        friend class Singleton<SoundManager>;
74
75    public:
76        SoundManager();
77        ~SoundManager();
78
79        void preUpdate(const Clock& time);
80        void setConfigValues();
81       
82        // tolua_begin
83        static SoundManager& getInstance() { return Singleton<SoundManager>::getInstance(); }
84
85        std::string getDeviceName(unsigned int index) const
86            { return index < this->deviceNames_.size() ? this->deviceNames_[index] : std::string(); }
87        // tolua_end
88
89        void setListenerPosition(const Vector3& position);
90        void setListenerOrientation(const Quaternion& orientation);
91
92        void registerAmbientSound(AmbientSound* newAmbient);
93        void unregisterAmbientSound(AmbientSound* oldAmbient);
94        void pauseAmbientSound(AmbientSound* ambient);
95
96        void setVolume(float vol, SoundType::Value type);
97        float getVolume(SoundType::Value type); // tolua_export
98
99        void toggleMute(SoundType::Value type); // tolua_export
100        bool getMute(SoundType::Value type); // tolua_export
101
102        shared_ptr<SoundBuffer> getSoundBuffer(const std::string& filename);
103        void releaseSoundBuffer(const shared_ptr<SoundBuffer>& buffer, bool bPoolBuffer);
104
105        ALuint getSoundSource();
106        void releaseSoundSource(ALuint source);
107
108        static std::string getALErrorString(ALenum error);
109
110    private:
111        void processCrossFading(float dt);
112        void fadeIn(const SmartPtr<AmbientSound>& sound);
113        void fadeOut(const SmartPtr<AmbientSound>& sound);
114
115        void checkFadeStepValidity();
116        bool checkVolumeValidity(SoundType::Value type);
117        void checkSoundVolumeValidity(void);
118        void checkAmbientVolumeValidity(void);
119        void checkEffectsVolumeValidity(void);
120
121        float checkVolumeRange(float vol);
122
123        void updateVolume(SoundType::Value type);
124
125        void setVolumeInternal(float vol, SoundType::Value type);
126        float getVolumeInternal(SoundType::Value type);
127
128        std::vector<std::string> deviceNames_;
129        ALCdevice* device_;
130        ALCcontext* context_;
131
132        typedef std::list<std::pair<AmbientSound*, bool> > AmbientList;
133        AmbientList ambientSounds_;
134
135        float crossFadeStep_;       //!< Absolute change per second (0.1 means 10% of the nominal volume) for cross fading
136        std::list<SmartPtr<AmbientSound> > fadeInList_;
137        std::list<SmartPtr<AmbientSound> > fadeOutList_;
138
139        float soundVolume_;
140        float ambientVolume_;
141        float effectsVolume_;
142        std::map<SoundType::Value, bool> mute_;
143
144        static const unsigned int maxEffectsPoolSize_s = 40 * 1024 * 1024;
145        unsigned int effectsPoolSize_;
146        typedef std::list<shared_ptr<SoundBuffer> > EffectsPoolList;
147        EffectsPoolList effectsPool_;
148        typedef std::map<std::string, shared_ptr<SoundBuffer> > SoundBufferMap;
149        SoundBufferMap soundBuffers_;
150
151        unsigned int maxSources_;
152        std::vector<ALuint> soundSources_;
153
154        static SoundManager* singletonPtr_s;
155    }; // tolua_export
156} // tolua_export
157
158#endif /* _SoundManager_H__ */
Note: See TracBrowser for help on using the repository browser.