138 lines
3.9 KiB
C
138 lines
3.9 KiB
C
|
/**
|
||
|
* 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."
|
||
|
*
|
||
|
* @file planeNode.h
|
||
|
* @author drose
|
||
|
* @date 2002-07-11
|
||
|
*/
|
||
|
|
||
|
#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"
|
||
|
|
||
|
/**
|
||
|
* 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:
|
||
|
explicit PlaneNode(const std::string &name, const LPlane &plane = LPlane());
|
||
|
|
||
|
protected:
|
||
|
PlaneNode(const PlaneNode ©);
|
||
|
public:
|
||
|
virtual void output(std::ostream &out) const;
|
||
|
|
||
|
virtual PandaNode *make_copy() const;
|
||
|
virtual void xform(const LMatrix4 &mat);
|
||
|
|
||
|
virtual bool cull_callback(CullTraverser *trav, CullTraverserData &data);
|
||
|
virtual bool is_renderable() const;
|
||
|
|
||
|
PUBLISHED:
|
||
|
INLINE void set_plane(const LPlane &plane);
|
||
|
INLINE const LPlane &get_plane() const;
|
||
|
|
||
|
INLINE void set_viz_scale(PN_stdfloat viz_scale);
|
||
|
INLINE PN_stdfloat 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();
|
||
|
}
|
||
|
|
||
|
LPlane _plane;
|
||
|
PT(Geom) _front_viz, _back_viz;
|
||
|
PN_stdfloat _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
|