mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
152 lines
4.5 KiB
C++
152 lines
4.5 KiB
C++
#ifndef SPROUT_RANGE_ADAPTOR_SAWTOOTH_WAVE_HPP
|
|
#define SPROUT_RANGE_ADAPTOR_SAWTOOTH_WAVE_HPP
|
|
|
|
#include <type_traits>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/pit.hpp>
|
|
#include <sprout/container/traits.hpp>
|
|
#include <sprout/container/functions.hpp>
|
|
#include <sprout/iterator/sawtooth_iterator.hpp>
|
|
#include <sprout/range/range_container.hpp>
|
|
#include <sprout/range/adaptor/detail/adapted_range_default.hpp>
|
|
#include <sprout/range/algorithm/copy.hpp>
|
|
#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
|
|
: public sprout::adaptors::detail::adapted_range_default<
|
|
Range,
|
|
sprout::sawtooth_iterator<Value>
|
|
>
|
|
{
|
|
public:
|
|
typedef sprout::adaptors::detail::adapted_range_default<
|
|
Range,
|
|
sprout::sawtooth_iterator<Value>
|
|
> 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:
|
|
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)
|
|
)
|
|
{}
|
|
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<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;
|
|
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),
|
|
iterator(-1, 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<typename Value>
|
|
SPROUT_CONSTEXPR sprout::adaptors::sawtooth_wave_range<Value>
|
|
operator()(
|
|
Value const& frequency = 1,
|
|
Value const& amplitude = 1,
|
|
Value const& phase = 0
|
|
)
|
|
{
|
|
return sprout::adaptors::sawtooth_wave_range<Value>(frequency, amplitude, phase);
|
|
}
|
|
};
|
|
|
|
//
|
|
// sawtooth_wave
|
|
//
|
|
namespace {
|
|
SPROUT_STATIC_CONSTEXPR sprout::adaptors::sawtooth_wave_forwarder sawtooth_wave{};
|
|
} // 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
|
|
//
|
|
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>
|
|
{};
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_RANGE_ADAPTOR_SAWTOOTH_WAVE_HPP
|