/*============================================================================= Copyright (c) 2011-2013 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_COMPOST_EFFECTS_DISTORTED_HPP #define SPROUT_COMPOST_EFFECTS_DISTORTED_HPP #include #include #include #include namespace sprout { namespace compost { namespace effects { // // distort_holder // template class distort_holder { public: typedef T value_type; private: value_type gain_; value_type level_; public: distort_holder() = default; distort_holder(distort_holder const&) = default; SPROUT_CONSTEXPR distort_holder(value_type const& gain, value_type const& level) : gain_(gain), level_(level) {} SPROUT_CONSTEXPR value_type const& gain() const { return gain_; } SPROUT_CONSTEXPR value_type const& level() const { return level_; } }; // // distorted_forwarder // class distorted_forwarder { public: template SPROUT_CONSTEXPR sprout::compost::effects::distort_holder operator()(T const& gain, T const& level) const { return sprout::compost::effects::distort_holder(gain, level); } }; // // distorted // namespace { SPROUT_STATIC_CONSTEXPR sprout::compost::effects::distorted_forwarder distorted = {}; } // anonymous-namespace // // operator| // template inline SPROUT_CONSTEXPR auto operator|(Range&& lhs, sprout::compost::effects::distort_holder const& rhs) -> decltype( sprout::forward(lhs) | sprout::compost::effects::changed_volume(rhs.gain()) | sprout::compost::effects::clipped() | sprout::compost::effects::changed_volume(rhs.level()) ) { return sprout::forward(lhs) | sprout::compost::effects::changed_volume(rhs.gain()) | sprout::compost::effects::clipped() | sprout::compost::effects::changed_volume(rhs.level()) ; } } // namespace effects using sprout::compost::effects::distorted; } // namespace compost } // namespace sprout #endif // #ifndef SPROUT_COMPOST_EFFECTS_DISTORTED_HPP