historical/toontown-classic.git/panda/include/bulletConeShape.h
2024-01-16 11:20:27 -06:00

82 lines
1.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 bulletConeShape.h
* @author enn0x
* @date 2010-01-24
*/
#ifndef __BULLET_CONE_SHAPE_H__
#define __BULLET_CONE_SHAPE_H__
#include "pandabase.h"
#include "bullet_includes.h"
#include "bullet_utils.h"
#include "bulletShape.h"
/**
*
*/
class EXPCL_PANDABULLET BulletConeShape : public BulletShape {
private:
// Only used by make_from_bam
INLINE BulletConeShape();
PUBLISHED:
explicit BulletConeShape(PN_stdfloat radius, PN_stdfloat height, BulletUpAxis up=Z_up);
BulletConeShape(const BulletConeShape &copy);
INLINE ~BulletConeShape();
INLINE PN_stdfloat get_radius() const;
INLINE PN_stdfloat get_height() const;
MAKE_PROPERTY(radius, get_radius);
MAKE_PROPERTY(height, get_height);
public:
virtual btCollisionShape *ptr() const;
private:
btConeShape *_shape;
PN_stdfloat _radius;
PN_stdfloat _height;
BulletUpAxis _up;
public:
static void register_with_read_factory();
virtual void write_datagram(BamWriter *manager, Datagram &dg);
protected:
static TypedWritable *make_from_bam(const FactoryParams &params);
void fillin(DatagramIterator &scan, BamReader *manager);
public:
static TypeHandle get_class_type() {
return _type_handle;
}
static void init_type() {
BulletShape::init_type();
register_type(_type_handle, "BulletConeShape",
BulletShape::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 "bulletConeShape.I"
#endif // __BULLET_CONE_SHAPE_H__