| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- // Filename: planeNode.h
- // Created by: drose (11Jul02)
- //
- ////////////////////////////////////////////////////////////////////
- //
- // PANDA 3D SOFTWARE
- // Copyright (c) Carnegie Mellon University. All rights reserved.
- //
- // All use of this software is subject to the terms of the revised BSD
- // license. You should have received a copy of this license along
- // with this source code in a file named "LICENSE."
- //
- ////////////////////////////////////////////////////////////////////
- #ifndef PLANENODE_H
- #define PLANENODE_H
- #include "pandabase.h"
- #include "plane.h"
- #include "pandaNode.h"
- #include "updateSeq.h"
- #include "geom.h"
- #include "cycleData.h"
- #include "cycleDataLockedReader.h"
- #include "cycleDataReader.h"
- #include "cycleDataWriter.h"
- #include "cycleDataStageReader.h"
- #include "cycleDataStageWriter.h"
- #include "pipelineCycler.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_PGRAPH PlaneNode : public PandaNode {
- PUBLISHED:
- PlaneNode(const string &name, const Planef &plane = Planef());
- protected:
- PlaneNode(const PlaneNode ©);
- public:
- virtual void output(ostream &out) const;
- virtual PandaNode *make_copy() const;
- virtual void xform(const LMatrix4f &mat);
- virtual bool cull_callback(CullTraverser *trav, CullTraverserData &data);
- virtual bool is_renderable() const;
- PUBLISHED:
- INLINE void set_plane(const Planef &plane);
- INLINE const Planef &get_plane() const;
- INLINE void set_viz_scale(float viz_scale);
- INLINE float get_viz_scale() const;
- INLINE void set_priority(int priority);
- INLINE int get_priority() const;
- enum ClipEffect {
- CE_visible = 0x0001,
- CE_collision = 0x0002,
- };
- INLINE void set_clip_effect(int clip_effect);
- INLINE int get_clip_effect() const;
- public:
- INLINE static UpdateSeq get_sort_seq();
- protected:
- virtual void compute_internal_bounds(CPT(BoundingVolume) &internal_bounds,
- int &internal_vertices,
- int pipeline_stage,
- Thread *current_thread) const;
- PT(Geom) get_viz(CullTraverser *trav, CullTraverserData &data);
-
- private:
- // The priority is not cycled, because there's no real reason to do
- // so, and cycling it makes it difficult to synchronize with the
- // ClipPlaneAttribs.
- int _priority;
- int _clip_effect;
- static UpdateSeq _sort_seq;
- // This is the data that must be cycled between pipeline stages.
- class EXPCL_PANDA_PGRAPH 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);
- virtual TypeHandle get_parent_type() const {
- return PlaneNode::get_class_type();
- }
- Planef _plane;
- PT(Geom) _front_viz, _back_viz;
- float _viz_scale;
- };
- PipelineCycler<CData> _cycler;
- typedef CycleDataLockedReader<CData> CDLockedReader;
- typedef CycleDataReader<CData> CDReader;
- typedef CycleDataWriter<CData> CDWriter;
- typedef CycleDataStageReader<CData> CDStageReader;
- typedef CycleDataStageWriter<CData> CDStageWriter;
- 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
|