/*============================================================================= Copyright (c) 2011-2016 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_RANGE_ADAPTOR_SAWTOOTH_WAVE_HPP #define SPROUT_RANGE_ADAPTOR_SAWTOOTH_WAVE_HPP #include #include #include #include #include #include #include #include #include #include #include namespace sprout { namespace adaptors { // // sawtooth_wave_range // template class sawtooth_wave_range : public sprout::adaptors::detail::adapted_range_default< Range, sprout::sawtooth_iterator > { public: typedef sprout::adaptors::detail::adapted_range_default< Range, sprout::sawtooth_iterator > base_type; typedef typename base_type::range_type range_type; typedef typename base_type::iterator iterator; typedef typename base_type::value_type value_type; public: SPROUT_CONSTEXPR sawtooth_wave_range() SPROUT_DEFAULTED_DEFAULT_CONSTRUCTOR_DECL sawtooth_wave_range(sawtooth_wave_range const&) = default; explicit SPROUT_CONSTEXPR sawtooth_wave_range( range_type& range, value_type const& frequency = 1, value_type const& amplitude = 1, value_type const& phase = 0 ) : base_type( iterator(0, frequency, amplitude, phase), iterator(sprout::size(range), frequency, amplitude, phase) ) {} SPROUT_CONSTEXPR value_type frequency() const { return base_type::begin().frequency(); } SPROUT_CONSTEXPR value_type amplitude() const { return base_type::begin().amplitude(); } SPROUT_CONSTEXPR value_type phase() const { return base_type::begin().phase(); } }; template class sawtooth_wave_range : public sprout::range::range_container< sprout::sawtooth_iterator > { public: typedef sprout::range::range_container< sprout::sawtooth_iterator > base_type; typedef typename base_type::iterator iterator; typedef typename base_type::value_type value_type; typedef typename base_type::difference_type difference_type; public: SPROUT_CONSTEXPR sawtooth_wave_range() SPROUT_DEFAULTED_DEFAULT_CONSTRUCTOR_DECL sawtooth_wave_range(sawtooth_wave_range const&) = default; explicit SPROUT_CONSTEXPR sawtooth_wave_range( value_type const& frequency = 1, value_type const& amplitude = 1, value_type const& phase = 0 ) : base_type( iterator(0, frequency, amplitude, phase), iterator(sprout::numeric_limits::max(), frequency, amplitude, phase) ) {} SPROUT_CONSTEXPR value_type const& frequency() const { return base_type::begin().frequency(); } SPROUT_CONSTEXPR value_type const& amplitude() const { return base_type::begin().amplitude(); } SPROUT_CONSTEXPR value_type const& phase() const { return base_type::begin().phase(); } }; // // sawtooth_wave_forwarder // class sawtooth_wave_forwarder { public: template SPROUT_CONSTEXPR sprout::adaptors::sawtooth_wave_range operator()( Value const& frequency = 1, Value const& amplitude = 1, Value const& phase = 0 ) const { return sprout::adaptors::sawtooth_wave_range(frequency, amplitude, phase); } }; // // sawtooth_wave // namespace { SPROUT_STATIC_CONSTEXPR sprout::adaptors::sawtooth_wave_forwarder sawtooth_wave = {}; } // anonymous-namespace // // operator| // template inline SPROUT_CONSTEXPR sprout::adaptors::sawtooth_wave_range< Value, typename std::remove_reference::type>::type > operator|(Range&& lhs, sprout::adaptors::sawtooth_wave_range const& rhs) { return sprout::adaptors::sawtooth_wave_range< Value, typename std::remove_reference::type>::type >( sprout::lvalue_forward(lhs), rhs.frequency(), rhs.amplitude(), rhs.phase() ); } } // namespace adaptors // // container_construct_traits // template struct container_construct_traits > : public sprout::container_construct_traits::base_type> {}; } // namespace sprout #endif // #ifndef SPROUT_RANGE_ADAPTOR_SAWTOOTH_WAVE_HPP