2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2012-07-08 12:05:24 +00:00
|
|
|
#ifndef SPROUT_RANGE_ADAPTOR_SAWTOOTH_WAVE_HPP
|
|
|
|
#define SPROUT_RANGE_ADAPTOR_SAWTOOTH_WAVE_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2013-08-06 15:15:09 +00:00
|
|
|
#include <sprout/limits.hpp>
|
2012-07-08 12:05:24 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
|
|
|
#include <sprout/iterator/sawtooth_iterator.hpp>
|
|
|
|
#include <sprout/range/range_container.hpp>
|
2012-12-01 05:34:54 +00:00
|
|
|
#include <sprout/range/adaptor/detail/adapted_range_default.hpp>
|
2012-07-08 12:05:24 +00:00
|
|
|
#include <sprout/type_traits/lvalue_reference.hpp>
|
|
|
|
#include <sprout/utility/forward.hpp>
|
|
|
|
#include <sprout/utility/lvalue_forward.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace adaptors {
|
|
|
|
//
|
|
|
|
// sawtooth_wave_range
|
|
|
|
//
|
|
|
|
template<typename Value, typename Range = void>
|
|
|
|
class sawtooth_wave_range
|
2012-12-01 05:34:54 +00:00
|
|
|
: public sprout::adaptors::detail::adapted_range_default<
|
|
|
|
Range,
|
2012-07-08 12:05:24 +00:00
|
|
|
sprout::sawtooth_iterator<Value>
|
|
|
|
>
|
|
|
|
{
|
|
|
|
public:
|
2012-12-01 05:34:54 +00:00
|
|
|
typedef sprout::adaptors::detail::adapted_range_default<
|
|
|
|
Range,
|
2012-07-08 12:05:24 +00:00
|
|
|
sprout::sawtooth_iterator<Value>
|
|
|
|
> base_type;
|
2012-12-01 05:34:54 +00:00
|
|
|
typedef typename base_type::range_type range_type;
|
2012-07-08 12:05:24 +00:00
|
|
|
typedef typename base_type::iterator iterator;
|
|
|
|
typedef typename base_type::value_type value_type;
|
|
|
|
public:
|
|
|
|
sawtooth_wave_range() = default;
|
|
|
|
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)
|
|
|
|
)
|
|
|
|
{}
|
2012-11-17 09:44:24 +00:00
|
|
|
SPROUT_CONSTEXPR value_type frequency() const {
|
2012-07-08 12:05:24 +00:00
|
|
|
return base_type::begin().frequency();
|
|
|
|
}
|
2012-11-17 09:44:24 +00:00
|
|
|
SPROUT_CONSTEXPR value_type amplitude() const {
|
2012-07-08 12:05:24 +00:00
|
|
|
return base_type::begin().amplitude();
|
|
|
|
}
|
2012-11-17 09:44:24 +00:00
|
|
|
SPROUT_CONSTEXPR value_type phase() const {
|
2012-07-08 12:05:24 +00:00
|
|
|
return base_type::begin().phase();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename Value>
|
|
|
|
class sawtooth_wave_range<Value, void>
|
|
|
|
: public sprout::range::range_container<
|
|
|
|
sprout::sawtooth_iterator<Value>
|
|
|
|
>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef sprout::range::range_container<
|
|
|
|
sprout::sawtooth_iterator<Value>
|
|
|
|
> base_type;
|
|
|
|
typedef typename base_type::iterator iterator;
|
|
|
|
typedef typename base_type::value_type value_type;
|
2012-12-06 17:31:16 +00:00
|
|
|
typedef typename base_type::difference_type difference_type;
|
2012-07-08 12:05:24 +00:00
|
|
|
public:
|
|
|
|
sawtooth_wave_range() = default;
|
|
|
|
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),
|
2013-08-06 15:15:09 +00:00
|
|
|
iterator(sprout::numeric_limits<difference_type>::max(), frequency, amplitude, phase)
|
2012-07-08 12:05:24 +00:00
|
|
|
)
|
|
|
|
{}
|
|
|
|
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<typename Value>
|
|
|
|
SPROUT_CONSTEXPR sprout::adaptors::sawtooth_wave_range<Value>
|
|
|
|
operator()(
|
|
|
|
Value const& frequency = 1,
|
|
|
|
Value const& amplitude = 1,
|
|
|
|
Value const& phase = 0
|
2013-02-19 17:23:20 +00:00
|
|
|
) const
|
2012-07-08 12:05:24 +00:00
|
|
|
{
|
|
|
|
return sprout::adaptors::sawtooth_wave_range<Value>(frequency, amplitude, phase);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// sawtooth_wave
|
|
|
|
//
|
|
|
|
namespace {
|
2012-12-17 14:10:23 +00:00
|
|
|
SPROUT_STATIC_CONSTEXPR sprout::adaptors::sawtooth_wave_forwarder sawtooth_wave = {};
|
2012-07-08 12:05:24 +00:00
|
|
|
} // anonymous-namespace
|
|
|
|
|
|
|
|
//
|
|
|
|
// operator|
|
|
|
|
//
|
|
|
|
template<typename Range, typename Value>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::adaptors::sawtooth_wave_range<
|
|
|
|
Value,
|
|
|
|
typename std::remove_reference<typename sprout::lvalue_reference<Range>::type>::type
|
|
|
|
>
|
|
|
|
operator|(Range&& lhs, sprout::adaptors::sawtooth_wave_range<Value> const& rhs) {
|
|
|
|
return sprout::adaptors::sawtooth_wave_range<
|
|
|
|
Value,
|
|
|
|
typename std::remove_reference<typename sprout::lvalue_reference<Range>::type>::type
|
|
|
|
>(
|
|
|
|
sprout::lvalue_forward<Range>(lhs),
|
|
|
|
rhs.frequency(),
|
|
|
|
rhs.amplitude(),
|
|
|
|
rhs.phase()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace adaptors
|
|
|
|
|
|
|
|
//
|
|
|
|
// container_construct_traits
|
|
|
|
//
|
2012-12-01 05:34:54 +00:00
|
|
|
template<typename Range, typename Value>
|
|
|
|
struct container_construct_traits<sprout::adaptors::sawtooth_wave_range<Value, Range> >
|
|
|
|
: public sprout::container_construct_traits<typename sprout::adaptors::sawtooth_wave_range<Value, Range>::base_type>
|
|
|
|
{};
|
2012-07-08 12:05:24 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_RANGE_ADAPTOR_SAWTOOTH_WAVE_HPP
|