#ifndef SPROUT_ITERATOR_SAWTOOTH_ITERATOR_HPP #define SPROUT_ITERATOR_SAWTOOTH_ITERATOR_HPP #include #include #include #include #include #include #include #include #include #include namespace sprout { // // sawtooth_iterator // template class sawtooth_iterator : public std::iterator< std::random_access_iterator_tag, Value, std::ptrdiff_t, Value*, Value > { public: typedef std::random_access_iterator_tag iterator_category; typedef Value value_type; typedef std::ptrdiff_t difference_type; typedef value_type* pointer; typedef value_type reference; private: difference_type index_; value_type frequency_; value_type amplitude_; value_type phase_; private: explicit SPROUT_CONSTEXPR sawtooth_iterator(sawtooth_iterator const& other, difference_type index) : index_(index) , frequency_(other.frequency_) , amplitude_(other.amplitude_) , phase_(other.phase_) {} public: SPROUT_CONSTEXPR sawtooth_iterator() : index_() , frequency_(1) , amplitude_(1) , phase_(0) {} sawtooth_iterator(sawtooth_iterator const&) = default; explicit SPROUT_CONSTEXPR sawtooth_iterator( difference_type index, value_type const& frequency = 1, value_type const& amplitude = 1, value_type const& phase = 0 ) : index_(index) , frequency_(frequency) , amplitude_(amplitude) , phase_(phase) {} template SPROUT_CONSTEXPR sawtooth_iterator(sawtooth_iterator const& it) : index_(it.index_) , frequency_(it.frequency_) , amplitude_(it.amplitude_) , phase_(it.phase_) {} template sawtooth_iterator& operator=(sawtooth_iterator const& it) { sawtooth_iterator temp(it); temp.swap(*this); return *this; } SPROUT_CONSTEXPR difference_type index() const { return index_; } SPROUT_CONSTEXPR value_type const& frequency() const { return frequency_; } SPROUT_CONSTEXPR value_type const& amplitude() const { return amplitude_; } SPROUT_CONSTEXPR value_type const& phase() const { return phase_; } SPROUT_CONSTEXPR reference operator*() const { return amplitude_ * sprout::fixed::detail::sawtooth_value(frequency_ * value_type(index_) + phase_); } SPROUT_CONSTEXPR pointer operator->() const { return &operator*()(); } sawtooth_iterator& operator++() { ++index_; return *this; } sawtooth_iterator operator++(int) { sawtooth_iterator result(*this); ++index_; return result; } sawtooth_iterator& operator--() { --index_; return *this; } sawtooth_iterator operator--(int) { sawtooth_iterator temp(*this); --index_; return temp; } SPROUT_CONSTEXPR sawtooth_iterator operator+(difference_type n) const { return sawtooth_iterator(*this, index_ + n); } SPROUT_CONSTEXPR sawtooth_iterator operator-(difference_type n) const { return sawtooth_iterator(*this, index_ - n); } sawtooth_iterator& operator+=(difference_type n) { sawtooth_iterator temp(*this, index_ + n); temp.swap(*this); return *this; } sawtooth_iterator& operator-=(difference_type n) { sawtooth_iterator temp(*this, index_ - n); temp.swap(*this); return *this; } SPROUT_CONSTEXPR reference operator[](difference_type n) const { return amplitude_ * sprout::fixed::detail::sawtooth_value(frequency_ * value_type(index_ + n) + phase_); } SPROUT_CONSTEXPR sawtooth_iterator next() const { return sawtooth_iterator(*this, index_ + 1); } SPROUT_CONSTEXPR sawtooth_iterator prev() const { return sawtooth_iterator(*this, index_ - 1); } void swap(sawtooth_iterator& other) SPROUT_NOEXCEPT { sprout::swap(index_, other.index_); sprout::swap(frequency_, other.frequency_); sprout::swap(amplitude_, other.amplitude_); sprout::swap(phase_, other.phase_); } }; template inline SPROUT_CONSTEXPR bool operator==(sprout::sawtooth_iterator const& lhs, sprout::sawtooth_iterator const& rhs) { return lhs.index() == rhs.index(); } template inline SPROUT_CONSTEXPR bool operator!=(sprout::sawtooth_iterator const& lhs, sprout::sawtooth_iterator const& rhs) { return !(lhs == rhs); } template inline SPROUT_CONSTEXPR bool operator<(sprout::sawtooth_iterator const& lhs, sprout::sawtooth_iterator const& rhs) { return lhs.index() < rhs.index(); } template inline SPROUT_CONSTEXPR bool operator>(sprout::sawtooth_iterator const& lhs, sprout::sawtooth_iterator const& rhs) { return rhs < lhs; } template inline SPROUT_CONSTEXPR bool operator<=(sprout::sawtooth_iterator const& lhs, sprout::sawtooth_iterator const& rhs) { return !(rhs < lhs); } template inline SPROUT_CONSTEXPR bool operator>=(sprout::sawtooth_iterator const& lhs, sprout::sawtooth_iterator const& rhs) { return !(lhs < rhs); } template inline SPROUT_CONSTEXPR typename sprout::sawtooth_iterator::difference_type operator-(sprout::sawtooth_iterator const& lhs, sprout::sawtooth_iterator const& rhs) { return lhs.index() - rhs.index(); } template inline SPROUT_CONSTEXPR sprout::sawtooth_iterator operator+(typename sprout::sawtooth_iterator::difference_type n, sprout::sawtooth_iterator const& it) { return it + n; } // // swap // template inline void swap(sprout::sawtooth_iterator& lhs, sprout::sawtooth_iterator& rhs) SPROUT_NOEXCEPT_EXPR(SPROUT_NOEXCEPT_EXPR(lhs.swap(rhs))) { lhs.swap(rhs); } // // iterator_distance // template inline SPROUT_CONSTEXPR typename std::iterator_traits >::difference_type iterator_distance(sprout::sawtooth_iterator first, sprout::sawtooth_iterator last) { return last - first; } // // iterator_next // template inline SPROUT_CONSTEXPR sprout::sawtooth_iterator iterator_next(sprout::sawtooth_iterator const& it) { return it.next(); } template inline SPROUT_CONSTEXPR sprout::sawtooth_iterator iterator_next(sprout::sawtooth_iterator const& it, typename sprout::sawtooth_iterator::difference_type n) { return it + n; } // // iterator_prev // template inline SPROUT_CONSTEXPR sprout::sawtooth_iterator iterator_prev(sprout::sawtooth_iterator const& it) { return it.prev(); } template inline SPROUT_CONSTEXPR sprout::sawtooth_iterator iterator_prev(sprout::sawtooth_iterator const& it, typename sprout::sawtooth_iterator::difference_type n) { return it - n; } } // namespace sprout #endif // #ifndef SPROUT_ITERATOR_SAWTOOTH_ITERATOR_HPP