[4744] | 1 | /* |
---|
[8495] | 2 | orxonox - the future of 3D-vertical-scrollers |
---|
[8969] | 3 | |
---|
[8495] | 4 | Copyright (C) 2004 orx |
---|
[8969] | 5 | |
---|
[8495] | 6 | This program is free software; you can redistribute it and/or modify |
---|
| 7 | it under the terms of the GNU General Public License as published by |
---|
| 8 | the Free Software Foundation; either version 2, or (at your option) |
---|
| 9 | any later version. |
---|
[8969] | 10 | |
---|
[8495] | 11 | ### File Specific: |
---|
| 12 | main-programmer: Benjamin Grauer |
---|
| 13 | co-programmer: ... |
---|
[1853] | 14 | */ |
---|
| 15 | |
---|
[5386] | 16 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_SOUND |
---|
[1853] | 17 | |
---|
[5386] | 18 | #include "sound_source.h" |
---|
| 19 | #include "sound_engine.h" |
---|
[5917] | 20 | |
---|
[5386] | 21 | #include "compiler.h" |
---|
[8362] | 22 | #include "debug.h" |
---|
[1853] | 23 | |
---|
[7460] | 24 | namespace OrxSound |
---|
[5386] | 25 | { |
---|
[9869] | 26 | ObjectListDefinition(SoundSource); |
---|
[8350] | 27 | /** |
---|
| 28 | * @brief creates a SoundSource at position sourceNode with the SoundBuffer buffer |
---|
| 29 | */ |
---|
[9869] | 30 | SoundSource::SoundSource(const PNode* sourceNode, const SoundBuffer& buffer) |
---|
[8350] | 31 | { |
---|
[9869] | 32 | this->registerObject(this, SoundSource::_objectList); |
---|
[8350] | 33 | // adding the Source to the SourcesList of the SoundEngine |
---|
| 34 | this->buffer = buffer; |
---|
| 35 | this->sourceNode = sourceNode; |
---|
| 36 | this->resident = false; |
---|
[5386] | 37 | |
---|
[8350] | 38 | this->sourceID = 0; |
---|
| 39 | this->bPlay = false; |
---|
| 40 | } |
---|
[5386] | 41 | |
---|
[7317] | 42 | |
---|
[8350] | 43 | /** |
---|
| 44 | * @brief construct a SoundSource out of the another soundSource |
---|
| 45 | * @param source the Source to create this source from. |
---|
| 46 | * |
---|
| 47 | * Copies the buffer from source to this Source. |
---|
| 48 | * Acquires a new SourceID if source is Playing. |
---|
| 49 | */ |
---|
| 50 | SoundSource::SoundSource(const SoundSource& source) |
---|
| 51 | { |
---|
[9869] | 52 | this->registerObject(this, SoundSource::_objectList); |
---|
[7299] | 53 | |
---|
[8350] | 54 | // adding the Source to the SourcesList of the SoundEngine |
---|
| 55 | this->buffer = source.buffer; |
---|
| 56 | this->sourceNode = source.sourceNode; |
---|
| 57 | this->resident = source.resident; |
---|
[7299] | 58 | |
---|
[8350] | 59 | this->sourceID = 0; |
---|
| 60 | if (source.bPlay == true) |
---|
| 61 | { |
---|
| 62 | this->bPlay = true; |
---|
| 63 | SoundEngine::getInstance()->popALSource(this->sourceID); |
---|
| 64 | } |
---|
| 65 | else |
---|
| 66 | this->bPlay = false; |
---|
| 67 | } |
---|
[7299] | 68 | |
---|
[7317] | 69 | |
---|
[8350] | 70 | /** |
---|
| 71 | * @brief paste a copy of the source into this Source. |
---|
| 72 | * @param source the SoundSource to paste into this one. |
---|
| 73 | * @returns a Reference to this Source. |
---|
| 74 | * |
---|
| 75 | */ |
---|
| 76 | SoundSource& SoundSource::operator=(const SoundSource& source) |
---|
| 77 | { |
---|
| 78 | this->buffer = source.buffer; |
---|
| 79 | this->sourceNode = sourceNode; |
---|
| 80 | this->resident = source.resident; |
---|
[7299] | 81 | |
---|
[8350] | 82 | if (source.bPlay) |
---|
| 83 | this->play(); |
---|
| 84 | else |
---|
| 85 | this->stop(); |
---|
[8969] | 86 | |
---|
| 87 | return *this; |
---|
[8350] | 88 | } |
---|
[7299] | 89 | |
---|
[7317] | 90 | |
---|
[8350] | 91 | /** |
---|
| 92 | * @brief compares two Sources with each other. |
---|
| 93 | * @param source the Source to compare against this One. |
---|
| 94 | * Two Sources are the same, if the PNodes match, and the Sound Played are the same. |
---|
| 95 | * The alSource must not match, because no two Sources can have the same alSource. |
---|
| 96 | */ |
---|
| 97 | bool SoundSource::operator==(const SoundSource& source) |
---|
| 98 | { |
---|
| 99 | return (this->buffer == source.buffer && |
---|
| 100 | this->bPlay == source.bPlay && |
---|
| 101 | this->sourceNode == source.sourceNode); |
---|
| 102 | } |
---|
[7299] | 103 | |
---|
[7317] | 104 | |
---|
[8350] | 105 | /** |
---|
| 106 | * @brief deletes a SoundSource |
---|
| 107 | */ |
---|
| 108 | SoundSource::~SoundSource() |
---|
| 109 | { |
---|
| 110 | this->stop(); |
---|
| 111 | if (this->sourceID != 0) |
---|
| 112 | SoundEngine::getInstance()->pushALSource(this->sourceID); |
---|
| 113 | } |
---|
[4320] | 114 | |
---|
[7317] | 115 | |
---|
[8350] | 116 | /** |
---|
| 117 | * @brief Plays back a SoundSource |
---|
| 118 | */ |
---|
| 119 | void SoundSource::play() |
---|
| 120 | { |
---|
[9869] | 121 | if (this->retrieveSource()) |
---|
[8350] | 122 | { |
---|
| 123 | if (this->bPlay) |
---|
| 124 | alSourceStop(this->sourceID); |
---|
[7318] | 125 | |
---|
[9869] | 126 | alSourcei (this->sourceID, AL_BUFFER, this->buffer.getID()); |
---|
[8350] | 127 | alSourcei (this->sourceID, AL_LOOPING, AL_FALSE); |
---|
[10695] | 128 | // alSourcef (this->sourceID, AL_ROLLOFF_FACTOR, 0.0); |
---|
| 129 | alSourcef (this->sourceID, AL_GAIN, SoundEngine::getInstance()->getEffectsVolume()); |
---|
[8350] | 130 | alSourcePlay(this->sourceID); |
---|
[4320] | 131 | |
---|
[8350] | 132 | if (DEBUG_LEVEL >= 3) |
---|
| 133 | SoundEngine::checkError("Play Source", __LINE__); |
---|
| 134 | this->bPlay = true; |
---|
| 135 | } |
---|
| 136 | } |
---|
[7317] | 137 | |
---|
[5930] | 138 | |
---|
[8350] | 139 | /** |
---|
| 140 | * @brief Plays back buffer on this Source |
---|
| 141 | * @param buffer the buffer to play back on this Source |
---|
| 142 | */ |
---|
[9869] | 143 | void SoundSource::play(const SoundBuffer& buffer) |
---|
[8350] | 144 | { |
---|
| 145 | if (!this->retrieveSource()) |
---|
| 146 | { |
---|
| 147 | PRINTF(3)("No more Free sources (You might consider raising the Source-Count).\n"); |
---|
| 148 | return; |
---|
| 149 | } |
---|
[5386] | 150 | |
---|
[8350] | 151 | alSourceStop(this->sourceID); |
---|
[9869] | 152 | alSourcei (this->sourceID, AL_BUFFER, buffer.getID()); |
---|
[8350] | 153 | alSourcei (this->sourceID, AL_LOOPING, AL_FALSE); |
---|
[10695] | 154 | // alSourcef (this->sourceID, AL_ROLLOFF_FACTOR, 0.0); |
---|
| 155 | alSourcef (this->sourceID, AL_GAIN, SoundEngine::getInstance()->getEffectsVolume()); |
---|
[7290] | 156 | |
---|
[8350] | 157 | alSourcePlay(this->sourceID); |
---|
[1853] | 158 | |
---|
[9869] | 159 | if (unlikely(this->buffer.getID() != 0)) |
---|
| 160 | alSourcei (this->sourceID, AL_BUFFER, this->buffer.getID()); |
---|
[8350] | 161 | this->bPlay = true; |
---|
[7317] | 162 | |
---|
[8350] | 163 | if (DEBUG_LEVEL >= 3) |
---|
| 164 | SoundEngine::checkError("Play Source", __LINE__); |
---|
| 165 | } |
---|
[7810] | 166 | |
---|
| 167 | |
---|
[8350] | 168 | /** |
---|
[8793] | 169 | * @brief Plays back buffer on this Source with gain |
---|
| 170 | * @param buffer the buffer to play back on this Source |
---|
[8969] | 171 | * @param gain the gain of the sound buffer |
---|
[10695] | 172 | * @param rolloff the rolloff of the sound buffer |
---|
[8350] | 173 | */ |
---|
[10695] | 174 | void SoundSource::play(const SoundBuffer& buffer, float gain, float rolloff) |
---|
[8350] | 175 | { |
---|
| 176 | if (!this->retrieveSource()) |
---|
| 177 | { |
---|
| 178 | PRINTF(3)("No more Free sources (You might consider raising the Source-Count).\n"); |
---|
| 179 | return; |
---|
| 180 | } |
---|
[7810] | 181 | |
---|
[8350] | 182 | alSourceStop(this->sourceID); |
---|
[9869] | 183 | alSourcei (this->sourceID, AL_BUFFER, buffer.getID()); |
---|
[8350] | 184 | alSourcei (this->sourceID, AL_LOOPING, AL_FALSE); |
---|
[10695] | 185 | alSourcef (this->sourceID, AL_ROLLOFF_FACTOR, rolloff); |
---|
[8350] | 186 | alSourcef (this->sourceID, AL_GAIN, gain); |
---|
[7810] | 187 | |
---|
[8350] | 188 | alSourcePlay(this->sourceID); |
---|
[1853] | 189 | |
---|
[9869] | 190 | if (unlikely(this->buffer.getID() != 0)) |
---|
| 191 | alSourcei (this->sourceID, AL_BUFFER, this->buffer.getID()); |
---|
[8350] | 192 | this->bPlay = true; |
---|
[5386] | 193 | |
---|
[8350] | 194 | if (DEBUG_LEVEL >= 3) |
---|
| 195 | SoundEngine::checkError("Play Source", __LINE__); |
---|
| 196 | } |
---|
[8793] | 197 | |
---|
| 198 | /** |
---|
[10695] | 199 | * @brief Plays back buffer on this Source with gain, rolloff and looping possibility |
---|
[8495] | 200 | * @param buffer the buffer to play back on this Source |
---|
[10695] | 201 | * @param gain the gain of the sound buffer |
---|
| 202 | * @param rolloff the rolloff of the sound buffer |
---|
[8793] | 203 | * @param loop if true, sound gets looped |
---|
| 204 | */ |
---|
[10695] | 205 | void SoundSource::play(const SoundBuffer& buffer, float gain, float rolloff, bool loop) |
---|
[8350] | 206 | { |
---|
[8495] | 207 | if (!this->retrieveSource()) |
---|
[8350] | 208 | { |
---|
[8495] | 209 | PRINTF(3)("No more Free sources (You might consider raising the Source-Count).\n"); |
---|
| 210 | return; |
---|
[8350] | 211 | } |
---|
[7290] | 212 | |
---|
[8495] | 213 | alSourceStop(this->sourceID); |
---|
[9869] | 214 | alSourcei (this->sourceID, AL_BUFFER, buffer.getID()); |
---|
[8793] | 215 | |
---|
[8495] | 216 | if (loop) |
---|
[8793] | 217 | alSourcei (this->sourceID, AL_LOOPING, AL_TRUE); |
---|
[8495] | 218 | else |
---|
[8793] | 219 | alSourcei (this->sourceID, AL_LOOPING, AL_FALSE); |
---|
| 220 | |
---|
[8495] | 221 | alSourcef (this->sourceID, AL_GAIN, gain); |
---|
[10695] | 222 | alSourcef (this->sourceID, AL_ROLLOFF_FACTOR, rolloff); |
---|
[5386] | 223 | |
---|
[8495] | 224 | alSourcePlay(this->sourceID); |
---|
[7317] | 225 | |
---|
[9869] | 226 | if (unlikely(this->buffer.getID() != 0)) |
---|
| 227 | alSourcei (this->sourceID, AL_BUFFER, this->buffer.getID()); |
---|
[8495] | 228 | this->bPlay = true; |
---|
[8255] | 229 | |
---|
[8495] | 230 | if (DEBUG_LEVEL >= 3) |
---|
| 231 | SoundEngine::checkError("Play Source", __LINE__); |
---|
[8793] | 232 | } |
---|
[8255] | 233 | |
---|
[8793] | 234 | /** |
---|
[10695] | 235 | * @brief Plays back buffer on this Source with looping possibility |
---|
| 236 | * @param buffer the buffer to play back on this Source |
---|
| 237 | * @param loop if true, sound gets looped |
---|
| 238 | */ |
---|
| 239 | void SoundSource::play(const SoundBuffer& buffer, bool loop) |
---|
| 240 | { |
---|
| 241 | if (!this->retrieveSource()) |
---|
| 242 | { |
---|
| 243 | PRINTF(3)("No more Free sources (You might consider raising the Source-Count).\n"); |
---|
| 244 | return; |
---|
| 245 | } |
---|
| 246 | |
---|
| 247 | alSourceStop(this->sourceID); |
---|
| 248 | alSourcei (this->sourceID, AL_BUFFER, buffer.getID()); |
---|
| 249 | |
---|
| 250 | if (loop) |
---|
| 251 | alSourcei (this->sourceID, AL_LOOPING, AL_TRUE); |
---|
| 252 | else |
---|
| 253 | alSourcei (this->sourceID, AL_LOOPING, AL_FALSE); |
---|
| 254 | |
---|
| 255 | alSourcef (this->sourceID, AL_GAIN, SoundEngine::getInstance()->getEffectsVolume()); |
---|
| 256 | |
---|
| 257 | alSourcePlay(this->sourceID); |
---|
| 258 | |
---|
| 259 | if (unlikely(this->buffer.getID() != 0)) |
---|
| 260 | alSourcei (this->sourceID, AL_BUFFER, this->buffer.getID()); |
---|
| 261 | this->bPlay = true; |
---|
| 262 | |
---|
| 263 | if (DEBUG_LEVEL >= 3) |
---|
| 264 | SoundEngine::checkError("Play Source", __LINE__); |
---|
| 265 | } |
---|
| 266 | |
---|
| 267 | /** |
---|
[8793] | 268 | * @brief Changes the volume of an (active) buffer |
---|
| 269 | * @param buffer the buffer to play back on this Source |
---|
| 270 | * @param gain the new gain value |
---|
| 271 | */ |
---|
[9869] | 272 | void SoundSource::gain(const SoundBuffer& buffer, float gain) |
---|
[8793] | 273 | { |
---|
| 274 | // alSourcei (this->sourceID, AL_BUFFER, buffer->getID()); |
---|
| 275 | alSourcef (this->sourceID, AL_GAIN, gain); |
---|
| 276 | } |
---|
[8255] | 277 | |
---|
[8350] | 278 | /** |
---|
[8793] | 279 | * @brief Stops playback of a SoundSource |
---|
| 280 | */ |
---|
[8350] | 281 | void SoundSource::stop() |
---|
| 282 | { |
---|
| 283 | this->bPlay = false; |
---|
| 284 | if (this->sourceID != 0) |
---|
| 285 | { |
---|
| 286 | this->bPlay = false; |
---|
| 287 | if (this->sourceID != 0) |
---|
| 288 | { |
---|
| 289 | alSourceStop(this->sourceID); |
---|
| 290 | if (DEBUG_LEVEL >= 3) |
---|
| 291 | SoundEngine::checkError("StopSource", __LINE__); |
---|
| 292 | alSourcei(this->sourceID, AL_BUFFER, 0); |
---|
| 293 | if (!this->resident) |
---|
| 294 | SoundEngine::getInstance()->pushALSource(this->sourceID); |
---|
| 295 | this->sourceID = 0; |
---|
| 296 | } |
---|
| 297 | } |
---|
| 298 | } |
---|
[8255] | 299 | |
---|
[8350] | 300 | /** |
---|
| 301 | * @brief Pauses Playback of a SoundSource |
---|
| 302 | */ |
---|
| 303 | void SoundSource::pause() |
---|
| 304 | { |
---|
| 305 | alSourcePause(this->sourceID); |
---|
| 306 | if (DEBUG_LEVEL >= 3) |
---|
| 307 | SoundEngine::checkError("Pause Source", __LINE__); |
---|
| 308 | } |
---|
[8255] | 309 | |
---|
| 310 | |
---|
[8350] | 311 | /** |
---|
| 312 | * @brief Rewinds Playback of a SoundSource |
---|
| 313 | */ |
---|
| 314 | void SoundSource::rewind() |
---|
| 315 | { |
---|
| 316 | alSourceRewind(this->sourceID); |
---|
[8255] | 317 | |
---|
[8350] | 318 | if (DEBUG_LEVEL >= 3) |
---|
| 319 | SoundEngine::checkError("Rewind Source", __LINE__); |
---|
| 320 | } |
---|
[8255] | 321 | |
---|
| 322 | |
---|
[8350] | 323 | /** |
---|
| 324 | * @brief sets the RolloffFactor of the Sound emitted from the SoundSource |
---|
| 325 | * @param rolloffFactor The Factor described |
---|
| 326 | * |
---|
| 327 | * this tells openAL how fast the Sounds decay outward from the Source |
---|
| 328 | */ |
---|
| 329 | void SoundSource::setRolloffFactor(ALfloat rolloffFactor) |
---|
| 330 | { |
---|
| 331 | alSourcef(this->sourceID, AL_ROLLOFF_FACTOR, rolloffFactor); |
---|
[8255] | 332 | |
---|
[8350] | 333 | if (DEBUG_LEVEL >= 3) |
---|
| 334 | SoundEngine::checkError("Set Source Rolloff-factor", __LINE__); |
---|
| 335 | } |
---|
| 336 | |
---|
| 337 | |
---|
| 338 | /** |
---|
| 339 | * @brief sets the Positional this Source should be attached to. |
---|
| 340 | * @param sourceNode the Source this is attached to. |
---|
| 341 | * If sourceNode == NULL then the Source will be centered, and Audio will be played on all channels. |
---|
| 342 | */ |
---|
| 343 | void SoundSource::setSourceNode(const PNode* sourceNode) |
---|
| 344 | { |
---|
| 345 | this->sourceNode = sourceNode; |
---|
| 346 | } |
---|
| 347 | |
---|
| 348 | /** |
---|
| 349 | * @brief retrieve a Source. |
---|
| 350 | */ |
---|
| 351 | bool SoundSource::retrieveSource() |
---|
| 352 | { |
---|
| 353 | if (this->sourceID != 0) |
---|
| 354 | return true; |
---|
| 355 | else |
---|
| 356 | { |
---|
| 357 | SoundEngine::getInstance()->popALSource(this->sourceID); |
---|
| 358 | if (this->sourceID != 0) |
---|
| 359 | { |
---|
| 360 | if (unlikely(this->sourceNode == NULL)) |
---|
| 361 | resetSource(this->sourceID); |
---|
| 362 | return true; |
---|
| 363 | } |
---|
| 364 | } |
---|
| 365 | return false; |
---|
| 366 | } |
---|
| 367 | |
---|
| 368 | |
---|
| 369 | /** |
---|
| 370 | * @brief reset an alSource to its default Values. |
---|
| 371 | */ |
---|
| 372 | void SoundSource::resetSource(ALuint sourceID) |
---|
| 373 | { |
---|
| 374 | alSource3f(sourceID, AL_POSITION, 0.0, 0.0, 0.0); |
---|
| 375 | alSource3f(sourceID, AL_VELOCITY, 0.0, 0.0, 0.0); |
---|
| 376 | alSource3f(sourceID, AL_DIRECTION, 0.0, 0.0, 0.0); |
---|
| 377 | alSourcef (sourceID, AL_ROLLOFF_FACTOR, 0.0 ); |
---|
| 378 | //alSourcei (sourceID, AL_SOURCE_RELATIVE, AL_TRUE ); |
---|
| 379 | alSourcef (sourceID, AL_GAIN, SoundEngine::getInstance()->getEffectsVolume()); |
---|
| 380 | } |
---|
| 381 | |
---|
| 382 | |
---|
| 383 | /** |
---|
| 384 | * @brief Fades in a Source over a time period |
---|
| 385 | * @param duration time perios to fade in |
---|
| 386 | */ |
---|
[9869] | 387 | void SoundSource::fadein(const SoundBuffer& buffer, ALfloat duration) |
---|
[8350] | 388 | { |
---|
| 389 | //if (this->buffer && this->retrieveSource()) |
---|
| 390 | //{ |
---|
| 391 | |
---|
| 392 | for (ALfloat n = 0.0; n < 1.0; n+=.01) |
---|
| 393 | { |
---|
| 394 | alSourcef(this->sourceID, AL_GAIN, n); |
---|
| 395 | // sleep(1); |
---|
| 396 | } |
---|
| 397 | |
---|
[8495] | 398 | // alSourcePlay(this->sourceID); |
---|
[8350] | 399 | |
---|
[8495] | 400 | // if (DEBUG_LEVEL >= 3) |
---|
| 401 | // SoundEngine::checkError("Loop Source", __LINE__); |
---|
| 402 | // this->bPlay = true; |
---|
[8350] | 403 | //} |
---|
| 404 | |
---|
| 405 | } |
---|
| 406 | |
---|
| 407 | |
---|
[7317] | 408 | } |
---|