// Filename: planeNode.h // Created by: drose (11Jul02) // //////////////////////////////////////////////////////////////////// // // PANDA 3D SOFTWARE // Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved // // All use of this software is subject to the terms of the Panda 3d // Software license. You should have received a copy of this license // along with this source code; you will also find a current copy of // the license at http://etc.cmu.edu/panda3d/docs/license/ . // // To contact the maintainers of this program write to // panda3d-general@lists.sourceforge.net . // //////////////////////////////////////////////////////////////////// #ifndef PLANENODE_H #define PLANENODE_H #include "pandabase.h" #include "plane.h" #include "pandaNode.h" //////////////////////////////////////////////////////////////////// // Class : PlaneNode // Description : A node that contains a plane. This is most often // used as a clipping plane, but it can serve other // purposes as well; whenever a plane is needed to be // defined in some coordinate space in the world. //////////////////////////////////////////////////////////////////// class EXPCL_PANDA PlaneNode : public PandaNode { PUBLISHED: PlaneNode(const string &name); protected: PlaneNode(const PlaneNode ©); public: virtual void output(ostream &out) const; virtual void write(ostream &out, int indent_level = 0) const; virtual PandaNode *make_copy() const; virtual void xform(const LMatrix4f &mat); PUBLISHED: INLINE void set_plane(const Planef &plane); INLINE const Planef &get_plane() const; private: // This is the data that must be cycled between pipeline stages. class EXPCL_PANDA CData : public CycleData { public: INLINE CData(); INLINE CData(const CData ©); virtual CycleData *make_copy() const; virtual void write_datagram(BamWriter *manager, Datagram &dg) const; virtual void fillin(DatagramIterator &scan, BamReader *manager); Planef _plane; }; PipelineCycler _cycler; typedef CycleDataReader CDReader; typedef CycleDataWriter CDWriter; public: static void register_with_read_factory(); virtual void write_datagram(BamWriter *manager, Datagram &dg); protected: static TypedWritable *make_from_bam(const FactoryParams ¶ms); void fillin(DatagramIterator &scan, BamReader *manager); public: static TypeHandle get_class_type() { return _type_handle; } static void init_type() { PandaNode::init_type(); register_type(_type_handle, "PlaneNode", PandaNode::get_class_type()); } virtual TypeHandle get_type() const { return get_class_type(); } virtual TypeHandle force_init_type() {init_type(); return get_class_type();} private: static TypeHandle _type_handle; }; #include "planeNode.I" #endif