#include <test_bam.h>
Inheritance diagram for Person:
Public Types | |
enum | sex { MALE, FEMALE } |
Public Member Functions | |
void | write_datagram (BamWriter *, Datagram &) |
Writes the contents of this object to the datagram for shipping out to a Bam file. | |
virtual int | complete_pointers (TypedWritable **p_list, BamReader *manager) |
Receives an array of pointers, one for each time manager->read_pointer() was called in fillin(). | |
void | setBrother (Person *bro) |
void | setSister (Person *sis) |
bool | isMale (void) |
void | print_relationships (void) |
string | name (void) |
Person (void) | |
Person (const string &name, const sex Gender) | |
virtual | ~Person () |
virtual TypeHandle | get_type () const |
virtual TypeHandle | force_init_type (void) |
virtual void | finalize () |
Called by the BamReader to perform any final actions needed for setting up the object after all objects have been read and all pointers have been completed. | |
int | get_type_index () const |
Returns the internal index number associated with this object's TypeHandle, a unique number for each different type. | |
bool | is_of_type (TypeHandle handle) const |
Returns true if the current object is or derives from the indicated type. | |
bool | is_exact_type (TypeHandle handle) const |
Returns true if the current object is the indicated type exactly. | |
int | get_ref_count () const |
Returns the current reference count. | |
int | ref () const |
Explicitly increments the reference count. | |
int | unref () const |
Explicitly decrements the reference count. | |
void | test_ref_count_integrity () const |
Does some easy checks to make sure that the reference count isn't completely bogus. | |
Static Public Member Functions | |
TypedWritable * | make_person (const FactoryParams ¶ms) |
TypeHandle | get_class_type () |
void | init_type () |
Static Public Attributes | |
TypedWritable *const | Null = (TypedWritable*)0L |
Protected Member Functions | |
void | fillin (Person *, DatagramIterator &, BamReader *) |
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 of the relevant data from the BamFile for the new object. | |
Private Attributes | |
Person * | _bro |
Person * | _sis |
sex | myGender |
string | _name |
Static Private Attributes | |
TypeHandle | _type_handle |
|
Definition at line 49 of file test_bam.h. Referenced by name(). |
|
Definition at line 66 of file test_bam.h. |
|
Definition at line 67 of file test_bam.h. |
|
Definition at line 71 of file test_bam.h. References _type_handle. |
|
Receives an array of pointers, one for each time manager->read_pointer() was called in fillin(). Returns the number of pointers processed. This is the callback function that is made by the BamReader at some later point, after all of the required pointers have been filled in. It is necessary because there might be forward references in a bam file; when we call read_pointer() in fillin(), the object may not have been read from the file yet, so we do not have a pointer available at that time. Thus, instead of returning a pointer, read_pointer() simply reserves a later callback. This function provides that callback. The calling object is responsible for keeping track of the number of times it called read_pointer() and extracting the same number of pointers out of the supplied vector, and storing them appropriately within the object. Reimplemented from TypedWritable. Reimplemented in Child. Definition at line 88 of file test_bam.cxx. References _sis, NULL, and TypedWritable::Null. |
|
|
Definition at line 79 of file test_bam.cxx. References myGender. |
|
Called by the BamReader to perform any final actions needed for setting up the object after all objects have been read and all pointers have been completed.
Reimplemented in PartBundle, RenderAttrib, RenderEffect, RenderEffects, RenderState, and TransformState. Definition at line 112 of file typedWritable.cxx. Referenced by BamReader::skip_pointer(). |
|
Reimplemented from TypedWritableReferenceCount. Reimplemented in Parent, and Child. Definition at line 85 of file test_bam.h. |
|
Reimplemented from TypedWritableReferenceCount. Reimplemented in Parent, and Child. Definition at line 74 of file test_bam.h. References _type_handle, TypedWritableReferenceCount::init_type(), and register_type(). Referenced by Child::get_class_type(), and get_type(). |
|
Returns the current reference count.
Definition at line 183 of file referenceCount.I. Referenced by RenderState::determine_bin_index(), RenderEffects::determine_show_bounds(), FontPool::ns_garbage_collect(), TexturePool::ns_garbage_collect(), MaterialPool::ns_get_material(), and TexturePool::ns_release_texture(). |
|
Reimplemented from TypedWritableReferenceCount. Reimplemented in Parent, and Child. Definition at line 82 of file test_bam.h. References get_class_type(), and init_type(). |
|
Returns the internal index number associated with this object's TypeHandle, a unique number for each different type. This is equivalent to get_type().get_index(). Definition at line 71 of file typedObject.I. References TypeHandle::get_name(), TypedObject::get_type(), and INLINE. |
|
Reimplemented from TypedWritableReferenceCount. Reimplemented in Parent, and Child. Definition at line 77 of file test_bam.h. Referenced by Child::get_class_type(), Parent::get_class_type(), and get_type(). |
|
Returns true if the current object is the indicated type exactly.
Definition at line 101 of file typedObject.I. Referenced by PT(), and CollisionNode::xform(). |
|
|
Definition at line 56 of file test_bam.h. References _name. |
|
Definition at line 67 of file test_bam.cxx. |
|
Definition at line 59 of file test_bam.h. |
|
Reimplemented in Parent, and Child. Definition at line 96 of file test_bam.cxx. |
|
Explicitly increments the reference count. User code should avoid using ref() and unref() directly, which can result in missed reference counts. Instead, let a PointerTo object manage the reference counting automatically. This function is const, even though it changes the object, because generally fiddling with an object's reference count isn't considered part of fiddling with the object. An object might be const in other ways, but we still need to accurately count the number of references to it. The return value is the new reference count. Definition at line 225 of file referenceCount.I. Referenced by ClientDevice::ClientDevice(), EggGroupNode::find_textures(), EggGroupNode::r_apply_texmats(), EggGroupNode::r_flatten_transforms(), and EggGroupNode::reverse_vertex_ordering(). |
|
Definition at line 54 of file test_bam.h. |
|
Definition at line 55 of file test_bam.h. |
|
Does some easy checks to make sure that the reference count isn't completely bogus.
Definition at line 328 of file referenceCount.I. References INLINE. Referenced by EggNode::determine_bin(), and ReferenceCount::~ReferenceCount(). |
|
Explicitly decrements the reference count. Note that the object will not be implicitly deleted by unref() simply because the reference count drops to zero. (Having a member function delete itself is problematic; plus, we don't have a virtual destructor anyway.) However, see the helper function unref_delete(). User code should avoid using ref() and unref() directly, which can result in missed reference counts. Instead, let a PointerTo object manage the reference counting automatically. This function is const, even though it changes the object, because generally fiddling with an object's reference count isn't considered part of fiddling with the object. An object might be const in other ways, but we still need to accurately count the number of references to it. The return value is the new reference count. Definition at line 293 of file referenceCount.I. References INLINE. Referenced by RenderState::determine_bin_index(), and RenderEffects::determine_show_bounds(). |
|
Writes the contents of this object to the datagram for shipping out to a Bam file.
Implements TypedWritableReferenceCount. Reimplemented in Parent, and Child. Definition at line 56 of file test_bam.cxx. |
|
Definition at line 61 of file test_bam.h. Referenced by print_relationships(). |
|
Definition at line 63 of file test_bam.h. |
|
Definition at line 61 of file test_bam.h. Referenced by complete_pointers(), and print_relationships(). |
|
Reimplemented from TypedWritableReferenceCount. Reimplemented in Parent, and Child. Definition at line 29 of file test_bam.cxx. Referenced by get_class_type(), and ~Person(). |
|
Definition at line 62 of file test_bam.h. |
|
Definition at line 25 of file typedWritable.cxx. Referenced by Child::complete_pointers(), Parent::complete_pointers(), complete_pointers(), LoaderFileTypeBam::get_extension(), PartGroup::pick_channel_index(), BamReader::read_pointer(), and AnimGroup::write_datagram(). |