Visualization Library 2.1.0

A lightweight C++ OpenGL middleware for 2D/3D graphics

VL     Star     Watch     Fork     Issue

[Download] [Tutorials] [All Classes] [Grouped Classes]
ActorTree.hpp
Go to the documentation of this file.
1 /**************************************************************************************/
2 /* */
3 /* Visualization Library */
4 /* http://visualizationlibrary.org */
5 /* */
6 /* Copyright (c) 2005-2020, Michele Bosi */
7 /* All rights reserved. */
8 /* */
9 /* Redistribution and use in source and binary forms, with or without modification, */
10 /* are permitted provided that the following conditions are met: */
11 /* */
12 /* - Redistributions of source code must retain the above copyright notice, this */
13 /* list of conditions and the following disclaimer. */
14 /* */
15 /* - Redistributions in binary form must reproduce the above copyright notice, this */
16 /* list of conditions and the following disclaimer in the documentation and/or */
17 /* other materials provided with the distribution. */
18 /* */
19 /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND */
20 /* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED */
21 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
22 /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR */
23 /* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES */
24 /* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; */
25 /* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */
26 /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
27 /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS */
28 /* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
29 /* */
30 /**************************************************************************************/
31 
33 
34 #ifndef ActorTreeMulti_INCLUDE_ONCE
35 #define ActorTreeMulti_INCLUDE_ONCE
36 
37 namespace vl
38 {
63  {
65 
66  public:
68  {
69  VL_DEBUG_SET_OBJECT_NAME()
70  }
71 
72  virtual int childrenCount() const { return (int)mChildren.size(); }
73  virtual ActorTreeAbstract* child(int i) { return mChildren[i].get(); }
74  virtual const ActorTreeAbstract* child(int i) const { return mChildren[i].get(); }
75 
77  void addChild(ActorTreeAbstract* node);
79  void addChildOnce(ActorTreeAbstract* node);
81  void setChild(int i, ActorTreeAbstract* node);
83  int findChild(ActorTreeAbstract* node);
85  bool eraseChild(ActorTreeAbstract* node);
87  void eraseChild(int i, int count = 1);
89  void eraseAllChildren();
90 
92  const std::vector< ref<ActorTreeAbstract> >& children() const { return mChildren; }
93 
94  protected:
95  std::vector< ref<ActorTreeAbstract> > mChildren;
96  };
97 }
98 
99 #endif
std::vector< ref< ActorTreeAbstract > > mChildren
Definition: ActorTree.hpp:95
#define VL_INSTRUMENT_CLASS(ClassName, BaseClass)
Definition: TypeInfo.hpp:122
Visualization Library main namespace.
virtual const ActorTreeAbstract * child(int i) const
Returns the i-th child node of an ActorTreeAbstract node.
Definition: ActorTree.hpp:74
The ActorTreeAbstract class implements the interface of a generic tree containing Actors in its nodes...
virtual int childrenCount() const
Returns the number of child nodes of an ActorTreeAbstract node.
Definition: ActorTree.hpp:72
const std::vector< ref< ActorTreeAbstract > > & children() const
The list of child nodes.
Definition: ActorTree.hpp:92
The ActorTree class implements a generic tree whose nodes contain Actors.
Definition: ActorTree.hpp:62
virtual ActorTreeAbstract * child(int i)
Returns the i-th child node of an ActorTreeAbstract node.
Definition: ActorTree.hpp:73