[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 | * Reto Grieder |
---|
[3060] | 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
[3196] | 28 | |
---|
[5896] | 29 | #include "AmbientSound.h" |
---|
[3196] | 30 | |
---|
[6417] | 31 | #include "core/GameMode.h" |
---|
| 32 | #include "core/Resource.h" |
---|
| 33 | #include "SoundManager.h" |
---|
[3060] | 34 | |
---|
[5738] | 35 | namespace orxonox |
---|
[3060] | 36 | { |
---|
[7854] | 37 | AmbientSound::AmbientSound() |
---|
| 38 | : bPlayOnLoad_(false) |
---|
[3060] | 39 | { |
---|
[6417] | 40 | // Ambient sounds always fade in |
---|
| 41 | this->setVolume(0); |
---|
[3060] | 42 | } |
---|
| 43 | |
---|
[6417] | 44 | void AmbientSound::preDestroy() |
---|
[3060] | 45 | { |
---|
[6417] | 46 | if (GameMode::playsSound()) |
---|
| 47 | { |
---|
| 48 | // Smoothly fade out by keeping a SmartPtr |
---|
| 49 | SoundManager::getInstance().unregisterAmbientSound(this); |
---|
| 50 | } |
---|
[3060] | 51 | } |
---|
| 52 | |
---|
[6417] | 53 | void AmbientSound::play() |
---|
| 54 | { |
---|
| 55 | if (GameMode::playsSound()) |
---|
| 56 | SoundManager::getInstance().registerAmbientSound(this); |
---|
| 57 | } |
---|
| 58 | |
---|
[7856] | 59 | bool AmbientSound::stop() |
---|
[6417] | 60 | { |
---|
| 61 | if (GameMode::playsSound()) |
---|
| 62 | SoundManager::getInstance().unregisterAmbientSound(this); |
---|
[7856] | 63 | return false; // sound source not (yet) destroyed - return false |
---|
[6417] | 64 | } |
---|
| 65 | |
---|
| 66 | void AmbientSound::pause() |
---|
| 67 | { |
---|
| 68 | if (GameMode::playsSound()) |
---|
| 69 | SoundManager::getInstance().pauseAmbientSound(this); |
---|
| 70 | } |
---|
| 71 | |
---|
| 72 | float AmbientSound::getRealVolume() |
---|
| 73 | { |
---|
| 74 | assert(GameMode::playsSound()); |
---|
| 75 | return SoundManager::getInstance().getRealVolume(SoundType::Music); |
---|
| 76 | } |
---|
| 77 | |
---|
| 78 | void AmbientSound::setAmbientSource(const std::string& source) |
---|
| 79 | { |
---|
| 80 | this->ambientSource_ = source; |
---|
| 81 | this->moodChanged(this->getMood()); |
---|
| 82 | } |
---|
| 83 | |
---|
| 84 | void AmbientSound::moodChanged(const std::string& mood) |
---|
| 85 | { |
---|
| 86 | if (GameMode::playsSound()) |
---|
| 87 | { |
---|
| 88 | const std::string& path = "ambient/" + MoodManager::getInstance().getMood() + '/' + this->ambientSource_; |
---|
| 89 | shared_ptr<ResourceInfo> fileInfo = Resource::getInfo(path); |
---|
| 90 | if (fileInfo != NULL) |
---|
| 91 | this->setSource(path); |
---|
| 92 | else |
---|
| 93 | COUT(3) << "Sound: " << this->ambientSource_ << ": Not a valid name! Ambient sound will not change." << std::endl; |
---|
| 94 | } |
---|
| 95 | } |
---|
| 96 | |
---|
| 97 | void AmbientSound::setPlayOnLoad(bool val) |
---|
| 98 | { |
---|
| 99 | this->bPlayOnLoad_ = val; |
---|
| 100 | if (val) |
---|
| 101 | this->play(); |
---|
| 102 | } |
---|
[5896] | 103 | } |
---|