84 lines
2.3 KiB
C++
84 lines
2.3 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 cullBinFixed.h
|
|
* @author drose
|
|
* @date 2002-05-29
|
|
*/
|
|
|
|
#ifndef CULLBINFIXED_H
|
|
#define CULLBINFIXED_H
|
|
|
|
#include "pandabase.h"
|
|
|
|
#include "cullBin.h"
|
|
#include "geom.h"
|
|
#include "transformState.h"
|
|
#include "renderState.h"
|
|
#include "pointerTo.h"
|
|
|
|
/**
|
|
* A specific kind of CullBin that sorts geometry in the order specified by
|
|
* the user-specified draw_order parameter. This allows precise relative
|
|
* ordering of two objects.
|
|
*
|
|
* When two or more objects are assigned the same draw_order, they are drawn
|
|
* in scene-graph order (as with CullBinUnsorted).
|
|
*/
|
|
class EXPCL_PANDA_CULL CullBinFixed : public CullBin {
|
|
public:
|
|
INLINE CullBinFixed(const std::string &name,
|
|
GraphicsStateGuardianBase *gsg,
|
|
const PStatCollector &draw_region_pcollector);
|
|
virtual ~CullBinFixed();
|
|
|
|
static CullBin *make_bin(const std::string &name,
|
|
GraphicsStateGuardianBase *gsg,
|
|
const PStatCollector &draw_region_pcollector);
|
|
|
|
virtual void add_object(CullableObject *object, Thread *current_thread);
|
|
virtual void finish_cull(SceneSetup *scene_setup, Thread *current_thread);
|
|
virtual void draw(bool force, Thread *current_thread);
|
|
|
|
protected:
|
|
virtual void fill_result_graph(ResultGraphBuilder &builder);
|
|
|
|
private:
|
|
class ObjectData {
|
|
public:
|
|
INLINE ObjectData(CullableObject *object, int draw_order);
|
|
INLINE bool operator < (const ObjectData &other) const;
|
|
|
|
CullableObject *_object;
|
|
int _draw_order;
|
|
};
|
|
|
|
typedef pvector<ObjectData> Objects;
|
|
Objects _objects;
|
|
|
|
public:
|
|
static TypeHandle get_class_type() {
|
|
return _type_handle;
|
|
}
|
|
static void init_type() {
|
|
CullBin::init_type();
|
|
register_type(_type_handle, "CullBinFixed",
|
|
CullBin::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 "cullBinFixed.I"
|
|
|
|
#endif
|