2015-08-19 19:06:58 +00:00
|
|
|
/* Copyright 2015, Michele Santullo
|
|
|
|
* This file is part of DoorKeeper.
|
|
|
|
*
|
|
|
|
* DoorKeeper is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* DoorKeeper is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with DoorKeeper. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-12-09 21:30:06 +00:00
|
|
|
namespace dk {
|
2015-01-08 11:20:17 +00:00
|
|
|
template <typename T, uint32_t D, typename T1>
|
2015-08-17 22:03:27 +00:00
|
|
|
TileIterator<T, D, T1>::TileIterator (qualif_vector_type* parData, const PixelConv<D>& parPixConv, const coords& parArea) :
|
2015-08-16 18:33:44 +00:00
|
|
|
m_tile_range(parArea),
|
2015-08-17 22:03:27 +00:00
|
|
|
m_data(parData),
|
|
|
|
m_pixel_conv(parPixConv)
|
2015-01-06 15:00:24 +00:00
|
|
|
{
|
|
|
|
DK_ASSERT(parData);
|
2015-08-17 22:03:27 +00:00
|
|
|
DK_ASSERT(&m_pixel_conv != nullptr);
|
2015-01-06 15:00:24 +00:00
|
|
|
}
|
|
|
|
|
2015-01-08 11:20:17 +00:00
|
|
|
template <typename T, uint32_t D, typename T1>
|
2015-08-17 22:03:27 +00:00
|
|
|
TileIterator<T, D, T1>::TileIterator (qualif_vector_type* parData, const PixelConv<D>& parPixConv, const coords& parStart, const coords& parArea) :
|
2015-08-16 18:33:44 +00:00
|
|
|
m_tile_range(parStart, parArea),
|
2015-08-17 22:03:27 +00:00
|
|
|
m_data(parData),
|
|
|
|
m_pixel_conv(parPixConv)
|
2014-12-09 21:30:06 +00:00
|
|
|
{
|
2014-12-12 19:04:48 +00:00
|
|
|
DK_ASSERT(parData);
|
2015-08-17 22:03:27 +00:00
|
|
|
DK_ASSERT(&m_pixel_conv != nullptr);
|
2014-12-09 21:30:06 +00:00
|
|
|
}
|
|
|
|
|
2015-01-08 11:20:17 +00:00
|
|
|
template <typename T, uint32_t D, typename T1>
|
2014-12-30 16:53:15 +00:00
|
|
|
void TileIterator<T, D, T1>::increment() {
|
2015-08-16 18:33:44 +00:00
|
|
|
++m_tile_range;
|
2014-12-09 21:30:06 +00:00
|
|
|
}
|
2014-12-11 22:58:52 +00:00
|
|
|
|
2015-01-08 11:20:17 +00:00
|
|
|
template <typename T, uint32_t D, typename T1>
|
2014-12-30 16:53:15 +00:00
|
|
|
void TileIterator<T, D, T1>::decrement() {
|
2015-08-16 18:33:44 +00:00
|
|
|
--m_tile_range;
|
2014-12-11 22:58:52 +00:00
|
|
|
}
|
|
|
|
|
2015-01-08 11:20:17 +00:00
|
|
|
template <typename T, uint32_t D, typename T1>
|
2015-08-24 22:30:33 +00:00
|
|
|
void TileIterator<T, D, T1>::advance (size_t parAdvance) {
|
|
|
|
constexpr auto M = std::numeric_limits<CoordinateScalarType>::max();
|
|
|
|
typedef typename std::conditional<
|
|
|
|
(static_cast<std::make_unsigned<size_t>::type>(std::numeric_limits<size_t>::max()) > static_cast<std::make_unsigned<CoordinateScalarType>::type>(M)),
|
|
|
|
size_t,
|
|
|
|
CoordinateScalarType
|
|
|
|
>::type LargestType;
|
|
|
|
|
|
|
|
while (parAdvance) {
|
|
|
|
const auto inc = std::min(static_cast<LargestType>(parAdvance), static_cast<LargestType>(M));
|
|
|
|
m_tile_range += inc;
|
|
|
|
parAdvance -= static_cast<size_t>(inc);
|
|
|
|
}
|
2014-12-11 22:58:52 +00:00
|
|
|
}
|
|
|
|
|
2015-01-08 11:20:17 +00:00
|
|
|
template <typename T, uint32_t D, typename T1>
|
2015-08-18 22:15:31 +00:00
|
|
|
auto TileIterator<T, D, T1>::distance_to (const TileIterator& parOther) -> difference_type {
|
2015-08-16 18:33:44 +00:00
|
|
|
return std::distance(to_index(m_tile_range), to_index(parOther.m_tile_range));
|
2014-12-11 22:58:52 +00:00
|
|
|
}
|
|
|
|
|
2015-01-08 11:20:17 +00:00
|
|
|
template <typename T, uint32_t D, typename T1>
|
2014-12-30 16:53:15 +00:00
|
|
|
bool TileIterator<T, D, T1>::equal (const TileIterator& parOther) const {
|
2015-08-16 22:41:21 +00:00
|
|
|
return m_data == parOther.m_data and m_tile_range.position() == parOther.m_tile_range.position();
|
2014-12-11 22:58:52 +00:00
|
|
|
}
|
2015-05-24 15:18:46 +00:00
|
|
|
|
|
|
|
template <typename T, uint32_t D, typename T1>
|
2015-08-18 22:15:31 +00:00
|
|
|
auto TileIterator<T, D, T1>::dereference() const -> reference {
|
2015-08-16 18:33:44 +00:00
|
|
|
const auto index = to_index(m_tile_range);
|
2015-08-14 10:30:27 +00:00
|
|
|
DK_ASSERT(m_data);
|
2015-08-17 08:45:20 +00:00
|
|
|
DK_ASSERT(index >= 0);
|
|
|
|
DK_ASSERT(static_cast<typename std::make_unsigned<decltype(index)>::type>(index) < m_data->size());
|
2015-08-18 22:15:31 +00:00
|
|
|
return Tile<T, D>(&(*m_data)[index], m_tile_range, coords(0), &m_pixel_conv);
|
2015-08-17 22:03:27 +00:00
|
|
|
}
|
|
|
|
|
2015-08-16 22:41:21 +00:00
|
|
|
template <uint32_t D>
|
|
|
|
inline Vector<D> make_past_end_coords (const Vector<D>& parTo) {
|
|
|
|
Vector<D> retval(0);
|
|
|
|
//for (CoordinateDistType d = 0; d < D - 1; ++d) {
|
|
|
|
//retval[d] = parFrom[d];
|
|
|
|
//}
|
|
|
|
retval[D - 1] = parTo[D - 1] + 1;
|
|
|
|
return retval;
|
|
|
|
}
|
2014-12-09 21:30:06 +00:00
|
|
|
} //namespace dk
|