Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/audio/AudioManager.cc @ 560

Last change on this file since 560 was 560, checked in by landauf, 16 years ago
  • changed output from std::cout to COUT(level)
  • added SoftDebugLevel config-variable (its a hack, but it works fine)
File size: 3.0 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *
4 *
5 *   License notice:
6 *
7 *   This program is free software; you can redistribute it and/or
8 *   modify it under the terms of the GNU General Public License
9 *   as published by the Free Software Foundation; either version 2
10 *   of the License, or (at your option) any later version.
11 *
12 *   This program 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.
16 *
17 *   You should have received a copy of the GNU General Public License
18 *   along with this program; if not, write to the Free Software
19 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 *
21 *   Author:
22 *      ...
23 *   Co-authors:
24 *      ...
25 *
26 */
27
28#include "AudioManager.h"
29#include "../orxonox/core/Debug.h"
30
31namespace audio
32{
33        AudioManager::AudioManager()
34        {
35    ambientPath = "audio/ambient";
36
37    alutInit(NULL, 0);
38
39
40        }
41
42        AudioManager::~AudioManager()
43        {
44                for (unsigned int i=0;i<=bgSounds.size();i++)
45                {
46                        bgSounds[i].release();
47                }
48                alutExit();
49        }
50
51        void AudioManager::ambientStart()
52        {
53                currentBgSound = 0;
54                if (bgSounds.size() > 0)
55                {
56                        if(!bgSounds[currentBgSound].playback())
57                        {
58                orxonox::Error("Ogg refused to play.");
59                        }
60                        else
61                        {
62                                COUT(3) << "Info: Started playing background sound" << std::endl;
63                        }
64                }
65
66        }
67
68        void AudioManager::ambientStop()
69        {
70                COUT(3) << "Info: Stopped playing background sound" << std::endl;
71        }
72
73        void AudioManager::ambientAdd(std::string file)
74        {
75    std::string path = ambientPath + "/" + file + ".ogg";
76                AudioStream tmp(path);
77                tmp.open();
78                if (tmp.isLoaded())
79                {
80                        bgSounds.push_back(tmp);
81                        COUT(3) << "Info: Added background sound " << file << std::endl;
82                }
83        }
84
85        void AudioManager::update()
86        {
87                if (bgSounds.size() > 0)
88                {
89                        if (bgSounds[currentBgSound].isLoaded())
90                        {
91                                bool playing = bgSounds[currentBgSound].update();
92                    if(!bgSounds[currentBgSound].playing() && playing)
93                    {
94                        if(!bgSounds[currentBgSound].playback())
95                            orxonox::Error("Ogg abruptly stopped.");
96                        else
97                            orxonox::Error("Ogg stream was interrupted.");
98
99                    }
100                                if (!playing)
101                                {
102//                                      if (currentBgSound < bgSounds.size()-1)
103//                                      {
104//                                              currentBgSound++;
105//                                      }
106//                                      else
107//                                      {
108//                                              currentBgSound=0;
109//                                      }
110          // switch to next sound in list/array
111          currentBgSound = ++currentBgSound % bgSounds.size();
112
113                                        if (!bgSounds[currentBgSound].isLoaded())
114                                        {
115                                                bgSounds[currentBgSound].release();
116                                                bgSounds[currentBgSound].open();
117                                        }
118                                        bgSounds[currentBgSound].playback();
119                                        COUT(3) << "Info: Playing next background sound" << std::endl;
120                                }
121                        }
122                }
123        }
124
125        void AudioManager::setPos(std::vector<float> newPosition)
126        {
127
128        }
129
130        void AudioManager::setSpeed(std::vector<float> newSpeed)
131        {
132
133        }
134
135        void AudioManager::setOri(std::vector<float> at, std::vector<float> up)
136        {
137
138        }
139}
Note: See TracBrowser for help on using the repository browser.