Panda3D
bulletCylinderShape.h
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file bulletCylinderShape.h
10  * @author enn0x
11  * @date 2010-02-17
12  */
13 
14 #ifndef __BULLET_CYLINDER_SHAPE_H__
15 #define __BULLET_CYLINDER_SHAPE_H__
16 
17 #include "pandabase.h"
18 
19 #include "bullet_includes.h"
20 #include "bullet_utils.h"
21 #include "bulletShape.h"
22 
23 /**
24  *
25  */
26 class EXPCL_PANDABULLET BulletCylinderShape : public BulletShape {
27 private:
28  // Only used by make_from_bam
29  INLINE BulletCylinderShape();
30 
31 PUBLISHED:
32  explicit BulletCylinderShape(PN_stdfloat radius, PN_stdfloat height, BulletUpAxis up=Z_up);
33  explicit BulletCylinderShape(const LVector3 &half_extents, BulletUpAxis up=Z_up);
35  INLINE ~BulletCylinderShape();
36 
37  PN_stdfloat get_radius() const;
38  LVecBase3 get_half_extents_without_margin() const;
39  LVecBase3 get_half_extents_with_margin() const;
40 
41  MAKE_PROPERTY(radius, get_radius);
42  MAKE_PROPERTY(half_extents_without_margin, get_half_extents_without_margin);
43  MAKE_PROPERTY(half_extents_with_margin, get_half_extents_with_margin);
44 
45 public:
46  virtual btCollisionShape *ptr() const;
47 
48 private:
49  LVector3 _half_extents;
50  btCylinderShape *_shape;
51  BulletUpAxis _up;
52 
53 public:
54  static void register_with_read_factory();
55  virtual void write_datagram(BamWriter *manager, Datagram &dg);
56 
57 protected:
58  static TypedWritable *make_from_bam(const FactoryParams &params);
59  void fillin(DatagramIterator &scan, BamReader *manager);
60 
61 public:
62  static TypeHandle get_class_type() {
63  return _type_handle;
64  }
65  static void init_type() {
66  BulletShape::init_type();
67  register_type(_type_handle, "BulletCylinderShape",
68  BulletShape::get_class_type());
69  }
70  virtual TypeHandle get_type() const {
71  return get_class_type();
72  }
73  virtual TypeHandle force_init_type() {
74  init_type();
75  return get_class_type();
76  }
77 
78 private:
79  static TypeHandle _type_handle;
80 };
81 
82 #include "bulletCylinderShape.I"
83 
84 #endif // __BULLET_CYLINDER_SHAPE_H__
This is the fundamental interface for extracting binary objects from a Bam file, as generated by a Ba...
Definition: bamReader.h:110
Base class for objects that can be written to and read from Bam files.
Definition: typedWritable.h:35
void register_type(TypeHandle &type_handle, const std::string &name)
This inline function is just a convenient way to call TypeRegistry::register_type(),...
Definition: register_type.I:22
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
This is the fundamental interface for writing binary objects to a Bam file, to be extracted later by ...
Definition: bamWriter.h:63
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
virtual void fillin(DatagramIterator &scan, BamReader *manager)
This internal function is intended to be called by each class's make_from_bam() method to read in all...
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
virtual void write_datagram(BamWriter *manager, Datagram &dg)
Writes the contents of this object to the datagram for shipping out to a Bam file.
An instance of this class is passed to the Factory when requesting it to do its business and construc...
Definition: factoryParams.h:36
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
A class to retrieve the individual data elements previously stored in a Datagram.
TypeHandle is the identifier used to differentiate C++ class types.
Definition: typeHandle.h:81
An ordered list of data elements, formatted in memory for transmission over a socket or writing to a ...
Definition: datagram.h:38