| 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 | *      Reto Grieder | 
|---|
| 25 | *   Co-authors: | 
|---|
| 26 | *      ... | 
|---|
| 27 | * | 
|---|
| 28 | */ | 
|---|
| 29 |  | 
|---|
| 30 | #include "WorldSound.h" | 
|---|
| 31 |  | 
|---|
| 32 | #include <AL/alut.h> | 
|---|
| 33 | #include "util/Math.h" | 
|---|
| 34 | #include "core/CoreIncludes.h" | 
|---|
| 35 | #include "core/EventIncludes.h" | 
|---|
| 36 | #include "core/XMLPort.h" | 
|---|
| 37 |  | 
|---|
| 38 | namespace orxonox | 
|---|
| 39 | { | 
|---|
| 40 | CreateFactory(WorldSound); | 
|---|
| 41 |  | 
|---|
| 42 | WorldSound::WorldSound(BaseObject* creator) | 
|---|
| 43 | : StaticEntity(creator) | 
|---|
| 44 | { | 
|---|
| 45 | RegisterObject(WorldSound); | 
|---|
| 46 | } | 
|---|
| 47 |  | 
|---|
| 48 | WorldSound::~WorldSound() | 
|---|
| 49 | { | 
|---|
| 50 | } | 
|---|
| 51 |  | 
|---|
| 52 | void WorldSound::XMLPort(Element& xmlelement, XMLPort::Mode mode) | 
|---|
| 53 | { | 
|---|
| 54 | SUPER(WorldSound, XMLPort, xmlelement, mode); | 
|---|
| 55 | BaseSound::XMLPortExtern(xmlelement, mode); | 
|---|
| 56 | } | 
|---|
| 57 |  | 
|---|
| 58 | void WorldSound::XMLEventPort(Element& xmlelement, XMLPort::Mode mode) | 
|---|
| 59 | { | 
|---|
| 60 | SUPER(WorldSound, XMLEventPort, xmlelement, mode); | 
|---|
| 61 | XMLPortEventState(WorldSound, BaseObject, "play", play, xmlelement, mode); | 
|---|
| 62 | } | 
|---|
| 63 |  | 
|---|
| 64 | void WorldSound::tick(float dt) | 
|---|
| 65 | { | 
|---|
| 66 | if (alIsSource(this->audioSource_)) | 
|---|
| 67 | { | 
|---|
| 68 | const Vector3& pos = this->getWorldPosition(); | 
|---|
| 69 | alSource3f(this->audioSource_, AL_POSITION, pos.x, pos.y, pos.z); | 
|---|
| 70 | ALenum error = alGetError(); | 
|---|
| 71 | if (error == AL_INVALID_VALUE) | 
|---|
| 72 | COUT(2) << "Sound: OpenAL: Invalid sound position" << std::endl; | 
|---|
| 73 |  | 
|---|
| 74 | const Vector3& vel = this->getVelocity(); | 
|---|
| 75 | alSource3f(this->audioSource_, AL_VELOCITY, vel.x, vel.y, vel.z); | 
|---|
| 76 | error = alGetError(); | 
|---|
| 77 | if (error == AL_INVALID_VALUE) | 
|---|
| 78 | COUT(2) << "Sound: OpenAL: Invalid sound velocity" << std::endl; | 
|---|
| 79 |  | 
|---|
| 80 | const Quaternion& orient = this->getWorldOrientation(); | 
|---|
| 81 | Vector3 at = orient.zAxis(); | 
|---|
| 82 | alSource3f(this->audioSource_, AL_DIRECTION, at.x, at.y, at.z); | 
|---|
| 83 | error = alGetError(); | 
|---|
| 84 | if (error == AL_INVALID_VALUE) | 
|---|
| 85 | COUT(2) << "Sound: OpenAL: Invalid sound direction" << std::endl; | 
|---|
| 86 | } | 
|---|
| 87 | } | 
|---|
| 88 |  | 
|---|
| 89 | void WorldSound::changedActivity() | 
|---|
| 90 | { | 
|---|
| 91 | SUPER(WorldSound, changedActivity); | 
|---|
| 92 | if (this->isActive()) | 
|---|
| 93 | this->play(); | 
|---|
| 94 | else | 
|---|
| 95 | this->stop(); | 
|---|
| 96 | } | 
|---|
| 97 | } | 
|---|