BamReader

from panda3d.core import BamReader
class BamReader

Bases:

Bases: BamEnums

This is the fundamental interface for extracting binary objects from a Bam file, as generated by a BamWriter.

A Bam file can be thought of as a linear collection of objects. Each object is an instance of a class that inherits, directly or indirectly, from TypedWritable. The objects may include pointers to other objects within the Bam file; the BamReader automatically manages these (with help from code within each class) and restores the pointers correctly.

This is the abstract interface and does not specifically deal with disk files, but rather with a DatagramGenerator of some kind, which is simply a linear source of Datagrams. It is probably from a disk file, but it might conceivably be streamed directly from a network or some such nonsense.

Bam files are most often used to store scene graphs or subgraphs, and by convention they are given filenames ending in the extension “.bam” when they are used for this purpose. However, a Bam file may store any arbitrary list of TypedWritable objects; in this more general usage, they are given filenames ending in “.boo” to differentiate them from the more common scene graph files.

See also BamFile, which defines a higher-level interface to read and write Bam files on disk.

Inheritance diagram

Inheritance diagram of BamReader

__init__(source: DatagramGenerator)

The primary interface for a caller.

changePointer(orig_pointer: TypedWritable, new_pointer: TypedWritable) bool

Indicates that an object recently read from the bam stream should be replaced with a new object. Any future occurrences of the original object in the stream will henceforth return the new object instead.

The return value is true if the replacement was successfully made, or false if the object was not read from the stream (or if changePointer() had already been called on it).

property file_endian BamEndian

Returns the endian preference indicated by the Bam file currently being read. This does not imply that every number is stored using the indicated convention, but individual objects may choose to respect this flag when recording data.

property file_stdfloat_double bool

Returns true if the file stores all “standard” floats as 64-bit doubles, or false if they are 32-bit floats. This is determined by the compilation flags of the version of Panda that generated this file.

property file_version
property filename Filename

If a BAM is a file, then the BamReader should contain the name of the file. This enables the reader to interpret pathnames in the BAM as relative to the directory containing the BAM.

getAuxData(obj: TypedWritable, name: str) AuxData

Returns the pointer previously associated with the bam reader by a previous call to setAuxData(), or NULL if data with the indicated key has not been set.

getCurrentMajorVer() int

Returns the major version number of Bam files supported by the current code base. This must match getFileMajorVer() in order to successfully read a file.

getCurrentMinorVer() int

Returns the minor version number of Bam files supported by the current code base. This must match or exceed getFileMinorVer() in order to successfully read a file.

getFileEndian() BamEndian

Returns the endian preference indicated by the Bam file currently being read. This does not imply that every number is stored using the indicated convention, but individual objects may choose to respect this flag when recording data.

getFileMajorVer() int

Returns the major version number of the Bam file currently being read.

getFileMinorVer() int

Returns the minor version number of the Bam file currently being read.

getFileStdfloatDouble() bool

Returns true if the file stores all “standard” floats as 64-bit doubles, or false if they are 32-bit floats. This is determined by the compilation flags of the version of Panda that generated this file.

getFileVersion() object
getFilename() Filename

If a BAM is a file, then the BamReader should contain the name of the file. This enables the reader to interpret pathnames in the BAM as relative to the directory containing the BAM.

getLoaderOptions() LoaderOptions

Returns the LoaderOptions passed to the loader when the model was requested, if any.

getSource() DatagramGenerator

Returns the current source of the BamReader as set by setSource() or the constructor.

init() bool

Initializes the BamReader prior to reading any objects from its source. This includes reading the Bam header.

This returns true if the BamReader successfully initialized, false otherwise.

isEof() bool

Returns true if the reader has reached end-of-file, false otherwise. This call is only valid after a call to readObject().

property loader_options LoaderOptions
Getter

Returns the LoaderOptions passed to the loader when the model was requested, if any.

Setter

Specifies the LoaderOptions for this BamReader.

readObject() TypedWritable

Reads a single object from the Bam file. If the object type is known, a new object of the appropriate type is created and returned; otherwise, NULL is returned. NULL is also returned when the end of the file is reached. isEof() may be called to differentiate between these two cases.

This may be called repeatedly to extract out all the objects in the Bam file, but typically (especially for scene graph files, indicated with the .bam extension), only one object is retrieved directly from the Bam file: the root of the scene graph. The remaining objects will all be retrieved recursively by the first object.

Note that the object returned may not yet be complete. In particular, some of its pointers may not be filled in; you must call resolve() to fill in all the available pointers before you can safely use any objects returned by readObject().

This flavor of readObject() requires the caller to know what type of object it has received in order to properly manage the reference counts.

static registerFactory(handle: TypeHandle, func: object)
resolve() bool

This may be called at any time during processing of the Bam file to resolve all the known pointers so far. It is usually called at the end of the processing, after all objects have been read, which is generally the best time to call it.

This must be called at least once after reading a particular object via readObject() in order to validate that object.

The return value is true if all objects have been resolved, or false if some objects are still outstanding (in which case you will need to call resolve() again later).

setAuxData(obj: TypedWritable, name: str, data: AuxData)

Associates an arbitrary block of data with the indicated object (or NULL), and the indicated name.

This is intended to provide a place for temporary storage for objects reading themselves from the bam file. To use it, inherit from BamReader::AuxData and store whatever data you like there. Then associate your AuxData with the object as it is being read with setAuxData(). You may later set the aux data to NULL to remove it; or it will automatically be removed (and deleted) after finalize() is called for the object in question.

If the TypedWritable pointer is NULL, the the aux data is stored globally for the BamReader in general. This pointer is available to any bam objects, and will not be automatically removed until the BamReader itself destructs.

In either case, the name is just an arbitrary user-defined key. If there is already a data pointer stored for the obj/name pair, that data pointer will be replaced (and deleted).

setLoaderOptions(options: LoaderOptions)

Specifies the LoaderOptions for this BamReader.

setSource(source: DatagramGenerator)

Changes the source of future datagrams for this BamReader. This also implicitly calls init() if it has not already been called.

property source DatagramGenerator
Getter

Returns the current source of the BamReader as set by setSource() or the constructor.

Setter

Changes the source of future datagrams for this BamReader. This also implicitly calls init() if it has not already been called.