Changeset 560 for code/branches/FICN/src/audio
- Timestamp:
- Dec 17, 2007, 3:20:46 AM (17 years ago)
- Location:
- code/branches/FICN/src/audio
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/audio/AudioManager.cc
r513 r560 27 27 28 28 #include "AudioManager.h" 29 30 29 #include "../orxonox/core/Debug.h" 31 30 32 31 namespace audio … … 61 60 else 62 61 { 63 std::cout << "Started playing background sound"<<std::endl;62 COUT(3) << "Info: Started playing background sound" << std::endl; 64 63 } 65 64 } … … 69 68 void AudioManager::ambientStop() 70 69 { 71 std::cout << "Stopped playing background sound"<<std::endl;70 COUT(3) << "Info: Stopped playing background sound" << std::endl; 72 71 } 73 72 … … 80 79 { 81 80 bgSounds.push_back(tmp); 82 std::cout << "Added background sound "<<file<<std::endl;81 COUT(3) << "Info: Added background sound " << file << std::endl; 83 82 } 84 83 } … … 118 117 } 119 118 bgSounds[currentBgSound].playback(); 120 std::cout << "Playing next background sound "<<std::endl;119 COUT(3) << "Info: Playing next background sound" << std::endl; 121 120 } 122 121 } -
code/branches/FICN/src/audio/AudioStream.cc
r513 r560 28 28 29 29 #include "AudioStream.h" 30 #include "../orxonox/core/Debug.h" 30 31 31 32 namespace audio … … 103 104 if (loaded) 104 105 { 105 std::cout106 COUT(3) 106 107 << "version " << vorbisInfo->version << "\n" 107 108 << "channels " << vorbisInfo->channels << "\n" … … 115 116 116 117 for(int i = 0; i < vorbisComment->comments; i++) 117 std::cout<< " " << vorbisComment->user_comments[i] << "\n";118 119 std::cout<< std::endl;118 COUT(3) << " " << vorbisComment->user_comments[i] << "\n"; 119 120 COUT(3) << std::endl; 120 121 } 121 122 } -
code/branches/FICN/src/audio/_AudioObject.cc
r513 r560 30 30 #include <string> 31 31 #include "AudioObject.h" 32 #include "../orxonox/core/Debug.h" 32 33 33 34 namespace audio … … 74 75 75 76 SetListenerValues(); 76 std::cout << "Play sone ambient background sound";77 COUT(3) << "Info: Play sone ambient background sound"; 77 78 } 78 79
Note: See TracChangeset
for help on using the changeset viewer.