8 #ifndef OPENVDB_TREE_ITERATOR_HAS_BEEN_INCLUDED 9 #define OPENVDB_TREE_ITERATOR_HAS_BEEN_INCLUDED 12 #include <type_traits> 28 template<
typename MaskIterT,
typename NodeT>
33 IteratorBase(
const MaskIterT& iter, NodeT* parent): mParentNode(parent), mMaskIter(iter) {}
39 return (mParentNode == other.mParentNode) && (mMaskIter == other.mMaskIter);
43 return !(*
this == other);
60 Index pos()
const {
return mMaskIter.offset(); }
63 bool test()
const {
return mMaskIter.test(); }
65 operator bool()
const {
return this->test(); }
68 bool next() {
return mMaskIter.next(); }
78 bool isValueOn()
const {
return parent().isValueMaskOn(this->pos()); }
81 void setValueOn(
bool on =
true)
const { parent().setValueMask(this->pos(), on); }
86 void setValueOff()
const { parent().mValueMask.setOff(this->pos()); }
89 Coord
getCoord()
const {
return parent().offsetToGlobalCoord(this->pos()); }
100 mutable NodeT* mParentNode;
120 static const bool IsSparseIterator =
true, IsDenseIterator =
false;
128 ItemT& getItem(
Index)
const;
131 void setItem(
Index,
const ItemT&)
const;
141 return static_cast<const IterT*
>(
this)->getItem(this->pos());
148 static_cast<const IterT*
>(
this)->setItem(this->pos(),
value);
155 template<
typename ModifyOp>
159 "modifyValue() not allowed for const iterators");
160 static_cast<const IterT*
>(
this)->modifyItem(this->pos(), op);
186 static const bool IsSparseIterator =
false, IsDenseIterator =
true;
199 void setItem(
Index, SetItemT*)
const;
202 void unsetItem(
Index,
const UnsetItemT&)
const;
205 bool isChildNode()
const {
return this->parent().isChildMaskOn(this->pos()); }
211 SetItemT* child =
nullptr;
212 static_cast<const IterT*
>(
this)->getItem(this->pos(),
child,
value);
220 child = probeChild(value);
221 return (child !=
nullptr);
228 SetItemT* child =
nullptr;
229 const bool isChild =
static_cast<const IterT*
>(
this)->
238 static_cast<const IterT*
>(
this)->setItem(this->pos(),
child);
245 static_cast<const IterT*
>(
this)->unsetItem(this->pos(),
value);
253 #endif // OPENVDB_TREE_ITERATOR_HAS_BEEN_INCLUDED SparseIteratorBase(const MaskIterT &iter, NodeT *parent)
Definition: Iterator.h:123
void modifyValue(const ModifyOp &op) const
Apply a functor to the item to which this iterator is pointing. (Not valid for const iterators...
Definition: Iterator.h:156
ChildT * child
Definition: GridBuilder.h:1286
Coord getCoord() const
Return the coordinates of the item to which this iterator is pointing.
Definition: Iterator.h:89
Base class for iterators over internal and leaf nodes.
Definition: Iterator.h:29
ValueT ValueType
Definition: Iterator.h:117
Mat3< typename promote< T0, T1 >::type > operator*(const Mat3< T0 > &m0, const Mat3< T1 > &m1)
Multiply m0 by m1 and return the resulting matrix.
Definition: Mat3.h:611
#define OPENVDB_THROW(exception, message)
Definition: Exceptions.h:74
SparseIteratorBase()
Definition: Iterator.h:122
void setChild(SetItemT *child) const
Replace with the given child node the item in the parent node's table to which this iterator is point...
Definition: Iterator.h:236
DenseIteratorBase()
Definition: Iterator.h:188
Base class for dense iterators over internal and leaf nodes.
Definition: Iterator.h:178
typename std::remove_const< ValueT >::type NonConstValueType
Definition: Iterator.h:119
ItemT * operator->() const
Return a pointer to the item to which this iterator is pointing.
Definition: Iterator.h:136
NodeT NodeType
Definition: Iterator.h:116
ItemT & getValue() const
Return the item to which this iterator is pointing.
Definition: Iterator.h:139
Definition: Exceptions.h:65
bool test() const
Return true if this iterator is not yet exhausted.
Definition: Iterator.h:63
typename std::remove_const< ChildT >::type NonConstChildNodeType
Definition: Iterator.h:185
void increment()
Advance to the next item in the parent node's table.
Definition: Iterator.h:70
NodeT NodeType
Definition: Iterator.h:180
DenseIteratorBase(const MaskIterT &iter, NodeT *parent)
Definition: Iterator.h:189
Index pos() const
Identical to offset.
Definition: Iterator.h:60
NodeT * getParentNode() const
Return a pointer to the node (if any) over which this iterator is iterating.
Definition: Iterator.h:47
SetItemT * probeChild(NonConstValueType &value) const
If this iterator is pointing to a child node, return a pointer to the node. Otherwise, return nullptr and, in value, the value to which this iterator is pointing.
Definition: Iterator.h:209
bool operator!=(const IteratorBase &other) const
Definition: Iterator.h:41
IteratorBase(const MaskIterT &iter, NodeT *parent)
Definition: Iterator.h:33
typename std::remove_const< NodeT >::type NonConstNodeType
Definition: Iterator.h:183
void increment(Index n)
Advance n items in the parent node's table.
Definition: Iterator.h:74
Definition: Exceptions.h:13
ValueT ValueType
Definition: Iterator.h:181
ValueT value
Definition: GridBuilder.h:1287
IteratorBase()
Definition: Iterator.h:32
Index32 Index
Definition: Types.h:54
bool probeChild(SetItemT *&child, NonConstValueType &value) const
If this iterator is pointing to a child node, return true and return a pointer to the child node in c...
Definition: Iterator.h:218
bool operator==(const IteratorBase &other) const
Definition: Iterator.h:37
bool next()
Advance to the next item in the parent node's table.
Definition: Iterator.h:68
ChildT ChildNodeType
Definition: Iterator.h:182
void setValue(const UnsetItemT &value) const
Replace with the given value the item in the parent node's table to which this iterator is pointing...
Definition: Iterator.h:243
IteratorBase & operator++()
Advance to the next item in the parent node's table.
Definition: Iterator.h:72
bool probeValue(NonConstValueType &value) const
Return true if this iterator is pointing to a value and return the value in value. Otherwise, return false.
Definition: Iterator.h:226
ItemT & operator*() const
Return a reference to the item to which this iterator is pointing.
Definition: Iterator.h:134
void setValue(const ItemT &value) const
Set the value of the item to which this iterator is pointing. (Not valid for const iterators...
Definition: Iterator.h:145
bool isChildNode() const
Return true if this iterator is pointing to a child node.
Definition: Iterator.h:205
Index offset() const
Return this iterator's position as an index into the parent node's table.
Definition: Iterator.h:57
#define OPENVDB_VERSION_NAME
The version namespace name for this library version.
Definition: version.h.in:116
void setValueOn(bool on=true) const
If this iterator is pointing to a value, set the value's active state. Otherwise, do nothing...
Definition: Iterator.h:81
NodeT & parent() const
Return a reference to the node over which this iterator is iterating.
Definition: Iterator.h:50
void getCoord(Coord &xyz) const
Return in xyz the coordinates of the item to which this iterator is pointing.
Definition: Iterator.h:91
Base class for sparse iterators over internal and leaf nodes.
Definition: Iterator.h:114
void setValueOff() const
If this iterator is pointing to a value, mark the value as inactive.
Definition: Iterator.h:86
bool isValueOn() const
Return true if this iterator is pointing to an active value. Return false if it is pointing to either...
Definition: Iterator.h:78
typename std::remove_const< NodeT >::type NonConstNodeType
Definition: Iterator.h:118
typename std::remove_const< ValueT >::type NonConstValueType
Definition: Iterator.h:184
#define OPENVDB_USE_VERSION_NAMESPACE
Definition: version.h.in:202