2012-03-22 01:36:20 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-01-22 00:45:36 +08:00
|
|
|
*
|
2012-03-22 01:36:20 +08:00
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
2003-01-22 00:45:36 +08:00
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
2012-03-22 01:36:20 +08:00
|
|
|
*
|
2003-01-22 00:45:36 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2012-03-22 01:36:20 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2003-01-22 00:45:36 +08:00
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
2001-10-04 23:12:57 +08:00
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
#ifndef OSG_SWITCH
|
|
|
|
#define OSG_SWITCH 1
|
|
|
|
|
|
|
|
#include <osg/Group>
|
|
|
|
|
|
|
|
namespace osg {
|
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Switch is a Group node that allows switching between children.
|
|
|
|
* Typical uses would be for objects which might need to be rendered
|
2012-03-22 01:36:20 +08:00
|
|
|
* differently at different times, for instance a switch could be used
|
2004-09-14 00:10:59 +08:00
|
|
|
* to represent the different states of a traffic light.
|
2001-01-11 00:32:10 +08:00
|
|
|
*/
|
2005-04-12 01:14:17 +08:00
|
|
|
class OSG_EXPORT Switch : public Group
|
2001-01-11 00:32:10 +08:00
|
|
|
{
|
|
|
|
public :
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
Switch();
|
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Copy constructor using CopyOp to manage deep vs shallow copy. */
|
2002-01-29 22:04:06 +08:00
|
|
|
Switch(const Switch&,const CopyOp& copyop=CopyOp::SHALLOW_COPY);
|
Added support for shallow and deep copy of nodes, drawables and state, via a
copy constructor which takes an optional Cloner object, and the old
osg::Object::clone() has changed so that it now requires a Cloner as paramter.
This is passed on to the copy constructor to help control the shallow vs
deep copying. The old functionality of clone() which was clone of type has
been renamed to cloneType().
Updated all of the OSG to work with these new conventions, implemention all
the required copy constructors etc. A couple of areas will do shallow
copies by design, a couple of other still need to be updated to do either
shallow or deep.
Neither of the shallow or deep copy operations have been tested yet, only
the old functionality of the OSG has been checked so far, such running the
viewer on various demo datasets.
Also fixed a problem in osg::Optimize::RemoveRendundentNodesVisitor which
was not checking that Group didn't have have any attached StateSet's, Callbacks
or UserData. These checks have now been added, which fixes a bug which was
revealled by the new osgscribe demo, this related to removal of group acting
as state decorator.
method
2002-01-29 05:17:01 +08:00
|
|
|
|
2008-12-09 17:24:47 +08:00
|
|
|
virtual Switch* asSwitch() { return this; }
|
|
|
|
virtual const Switch* asSwitch() const { return this; }
|
|
|
|
|
|
|
|
|
2002-06-06 21:25:36 +08:00
|
|
|
META_Node(osg, Switch);
|
2001-09-22 10:42:08 +08:00
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
virtual void traverse(NodeVisitor& nv);
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2002-10-08 04:17:57 +08:00
|
|
|
void setNewChildDefaultValue(bool value) { _newChildDefaultValue = value; }
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2002-10-08 04:17:57 +08:00
|
|
|
bool getNewChildDefaultValue() const { return _newChildDefaultValue; }
|
|
|
|
|
2015-10-22 21:42:19 +08:00
|
|
|
using osg::Group::addChild;
|
|
|
|
using osg::Group::insertChild;
|
|
|
|
|
2002-10-04 22:50:33 +08:00
|
|
|
virtual bool addChild( Node *child );
|
|
|
|
|
2002-10-08 04:17:57 +08:00
|
|
|
virtual bool addChild( Node *child, bool value );
|
|
|
|
|
2003-11-20 20:03:51 +08:00
|
|
|
virtual bool insertChild( unsigned int index, Node *child );
|
|
|
|
|
|
|
|
virtual bool insertChild( unsigned int index, Node *child, bool value );
|
|
|
|
|
2006-05-02 17:45:31 +08:00
|
|
|
virtual bool removeChildren(unsigned int pos,unsigned int numChildrenToRemove);
|
2005-12-09 19:22:09 +08:00
|
|
|
|
|
|
|
|
2002-10-04 22:50:33 +08:00
|
|
|
void setValue(unsigned int pos,bool value);
|
|
|
|
|
|
|
|
bool getValue(unsigned int pos) const;
|
|
|
|
|
2002-12-08 05:18:12 +08:00
|
|
|
void setChildValue(const Node* child,bool value);
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2002-12-08 05:18:12 +08:00
|
|
|
bool getChildValue(const Node* child) const;
|
2002-10-04 22:50:33 +08:00
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Set all the children off (false), and set the new default child
|
|
|
|
* value to off (false). */
|
2002-12-08 05:18:12 +08:00
|
|
|
bool setAllChildrenOff();
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Set all the children on (true), and set the new default child
|
|
|
|
* value to on (true). */
|
2002-12-08 05:18:12 +08:00
|
|
|
bool setAllChildrenOn();
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
/** Set a single child on, switch off all other children. */
|
2002-12-08 05:18:12 +08:00
|
|
|
bool setSingleChildOn(unsigned int pos);
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2002-10-04 22:50:33 +08:00
|
|
|
|
|
|
|
typedef std::vector<bool> ValueList;
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2004-12-17 09:06:33 +08:00
|
|
|
void setValueList(const ValueList& values) { _values=values; }
|
|
|
|
|
2002-10-04 22:50:33 +08:00
|
|
|
const ValueList& getValueList() const { return _values; }
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2005-05-12 22:03:22 +08:00
|
|
|
virtual BoundingSphere computeBound() const;
|
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
protected :
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
virtual ~Switch() {}
|
2002-10-04 22:50:33 +08:00
|
|
|
|
2004-09-14 00:10:59 +08:00
|
|
|
// This is effectively a bit mask.
|
2002-10-08 04:17:57 +08:00
|
|
|
bool _newChildDefaultValue;
|
|
|
|
ValueList _values;
|
2001-01-11 00:32:10 +08:00
|
|
|
};
|
|
|
|
|
2002-02-03 20:33:41 +08:00
|
|
|
}
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
#endif
|