mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
3.7 KiB
100 lines
3.7 KiB
/* |
|
This file is part of Magnum. |
|
|
|
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, |
|
2020, 2021, 2022 Vladimír Vondruš <mosra@centrum.cz> |
|
Copyright © 2015 Jonathan Hale <squareys@googlemail.com> |
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
copy of this software and associated documentation files (the "Software"), |
|
to deal in the Software without restriction, including without limitation |
|
the rights to use, copy, modify, merge, publish, distribute, sublicense, |
|
and/or sell copies of the Software, and to permit persons to whom the |
|
Software is furnished to do so, subject to the following conditions: |
|
|
|
The above copyright notice and this permission notice shall be included |
|
in all copies or substantial portions of the Software. |
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
|
DEALINGS IN THE SOFTWARE. |
|
*/ |
|
|
|
#include "PlayableGroup.h" |
|
|
|
#include "Magnum/Audio/Playable.h" |
|
#include "Magnum/Audio/Source.h" |
|
#include "Magnum/SceneGraph/AbstractObject.h" |
|
|
|
namespace Magnum { namespace Audio { |
|
|
|
namespace { |
|
|
|
template<UnsignedInt dimensions> std::vector<std::reference_wrapper<Source>> sources(PlayableGroup<dimensions>& group) { |
|
std::vector<std::reference_wrapper<Source>> srcs; |
|
srcs.reserve(group.size()); |
|
for(std::size_t i = 0; i != group.size(); ++i) |
|
srcs.push_back(group[i].source()); |
|
return srcs; |
|
} |
|
|
|
} |
|
|
|
template<UnsignedInt dimensions> PlayableGroup<dimensions>::PlayableGroup(): SceneGraph::FeatureGroup<dimensions, Playable<dimensions>, Float>(), _gain{1.0f} {} |
|
|
|
template<UnsignedInt dimensions> PlayableGroup<dimensions>::~PlayableGroup() = default; |
|
|
|
template<UnsignedInt dimensions> PlayableGroup<dimensions>& PlayableGroup<dimensions>::play() { |
|
Source::play(sources(*this)); |
|
return *this; |
|
} |
|
|
|
template<UnsignedInt dimensions> PlayableGroup<dimensions>& PlayableGroup<dimensions>::pause() { |
|
Source::pause(sources(*this)); |
|
return *this; |
|
} |
|
|
|
template<UnsignedInt dimensions> PlayableGroup<dimensions>& PlayableGroup<dimensions>::stop() { |
|
Source::stop(sources(*this)); |
|
return *this; |
|
} |
|
|
|
template<UnsignedInt dimensions> PlayableGroup<dimensions>& PlayableGroup<dimensions>::setGain(const Float gain) { |
|
_gain = gain; |
|
for(UnsignedInt i = 0; i < this->size(); ++i) |
|
(*this)[i].cleanGain(); |
|
|
|
return *this; |
|
} |
|
|
|
template<UnsignedInt dimensions> PlayableGroup<dimensions>& PlayableGroup<dimensions>::setSoundTransformation(const Matrix4& matrix) { |
|
_soundTransform = matrix; |
|
|
|
/* I cannot come up with a use case for which the sound transformation |
|
would be set frequently, so we are setting objects dirty whether the |
|
matrix changed or not. */ |
|
for(UnsignedInt i = 0; i < this->size(); ++i) |
|
(*this)[i].object().setDirty(); |
|
|
|
return *this; |
|
} |
|
|
|
/* On non-MinGW Windows the instantiations are already marked with extern |
|
template. However Clang-CL doesn't propagate the export from the extern |
|
template, it seems. */ |
|
#if !defined(CORRADE_TARGET_WINDOWS) || defined(CORRADE_TARGET_MINGW) || defined(CORRADE_TARGET_CLANG_CL) |
|
#define MAGNUM_AUDIO_EXPORT_HPP MAGNUM_AUDIO_EXPORT |
|
#else |
|
#define MAGNUM_AUDIO_EXPORT_HPP |
|
#endif |
|
|
|
#ifndef DOXYGEN_GENERATING_OUTPUT |
|
template class MAGNUM_AUDIO_EXPORT_HPP PlayableGroup<2>; |
|
template class MAGNUM_AUDIO_EXPORT_HPP PlayableGroup<3>; |
|
#endif |
|
|
|
}}
|
|
|