open_toontown_panda3d/panda/src/pgraph/geomDrawCallbackData.h

71 lines
2.0 KiB
C++

// Filename: geomDrawCallbackData.h
// Created by: drose (13Mar09)
//
////////////////////////////////////////////////////////////////////
//
// 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 GEOMDRAWCALLBACKDATA_H
#define GEOMDRAWCALLBACKDATA_H
#include "pandabase.h"
#include "callbackData.h"
////////////////////////////////////////////////////////////////////
// Class : GeomDrawCallbackData
// Description : This specialization on CallbackData is passed when
// the callback is initiated from deep within the draw
// traversal, for a particular Geom.
////////////////////////////////////////////////////////////////////
class EXPCL_PANDA_PGRAPH GeomDrawCallbackData : public CallbackData {
public:
INLINE GeomDrawCallbackData(CullableObject *obj,
GraphicsStateGuardianBase *gsg, bool force);
PUBLISHED:
virtual void output(ostream &out) const;
INLINE CullableObject *get_object() const;
INLINE GraphicsStateGuardianBase *get_gsg() const;
INLINE bool get_force() const;
INLINE void set_lost_state(bool lost_state);
INLINE bool get_lost_state() const;
virtual void upcall();
private:
CullableObject *_obj;
GraphicsStateGuardianBase *_gsg;
bool _force;
bool _lost_state;
public:
static TypeHandle get_class_type() {
return _type_handle;
}
static void init_type() {
CallbackData::init_type();
register_type(_type_handle, "GeomDrawCallbackData",
CallbackData::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 "geomDrawCallbackData.I"
#endif