Panda3D
|
For reading and writing PFM files using the basic PNMImage interface, as if they were basic RGB files. More...
#include "pnmFileTypePfm.h"
Classes | |
class | Reader |
class | Writer |
Public Member Functions | |
virtual TypeHandle | force_init_type () |
virtual string | get_extension (int n) const |
Returns the nth possible filename extension associated with this particular file type, without a leading dot. More... | |
virtual string | get_name () const |
Returns a few words describing the file type. More... | |
virtual int | get_num_extensions () const |
Returns the number of different possible filename extensions associated with this particular file type. More... | |
virtual string | get_suggested_extension () const |
Returns a suitable filename extension (without a leading dot) to suggest for files of this type, or empty string if no suggestions are available. More... | |
virtual TypeHandle | get_type () const |
virtual bool | has_magic_number () const |
Returns true if this particular file type uses a magic number to identify it, false otherwise. More... | |
virtual PNMReader * | make_reader (istream *file, bool owns_file=true, const string &magic_number=string()) |
Allocates and returns a new PNMReader suitable for reading from this file type, if possible. More... | |
virtual PNMWriter * | make_writer (ostream *file, bool owns_file=true) |
Allocates and returns a new PNMWriter suitable for reading from this file type, if possible. More... | |
virtual bool | matches_magic_number (const string &magic_number) const |
Returns true if the indicated "magic number" byte stream (the initial few bytes read from the file) matches this particular file type, false otherwise. More... | |
![]() | |
MAKE_SEQ (get_extensions, get_num_extensions, get_extension) | |
virtual void | write_datagram (BamWriter *writer, Datagram &datagram) |
Fills the indicated datagram up with a binary representation of the current object, in preparation for writing to a Bam file. More... | |
![]() | |
TypedWritable (const TypedWritable ©) | |
virtual ReferenceCount * | as_reference_count () |
Returns the pointer cast to a ReferenceCount pointer, if it is in fact of that type. More... | |
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(). More... | |
string | encode_to_bam_stream () const |
Converts the TypedWritable object into a single stream of data using a BamWriter, and returns that data as a string string. More... | |
bool | encode_to_bam_stream (string &data, BamWriter *writer=NULL) const |
Converts the TypedWritable object into a single stream of data using a BamWriter, and stores that data in the indicated string. More... | |
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 of the relevant data from the BamFile for the new object. More... | |
virtual void | finalize (BamReader *manager) |
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. More... | |
UpdateSeq | get_bam_modified () const |
Returns the current bam_modified counter. More... | |
void | mark_bam_modified () |
Increments the bam_modified counter, so that this object will be invalidated and retransmitted on any open bam streams. More... | |
void | operator= (const TypedWritable ©) |
virtual bool | require_fully_complete () const |
Some objects require all of their nested pointers to have been completed before the objects themselves can be completed. More... | |
virtual void | update_bam_nested (BamWriter *manager) |
Called by the BamWriter when this object has not itself been modified recently, but it should check its nested objects for updates. More... | |
![]() | |
TypedObject (const TypedObject ©) | |
TypedObject * | as_typed_object () |
Returns the object, upcast (if necessary) to a TypedObject pointer. More... | |
const TypedObject * | as_typed_object () const |
Returns the object, upcast (if necessary) to a TypedObject pointer. More... | |
int | get_best_parent_from_Set (const std::set< int > &) const |
int | get_type_index () const |
Returns the internal index number associated with this object's TypeHandle, a unique number for each different type. More... | |
bool | is_exact_type (TypeHandle handle) const |
Returns true if the current object is the indicated type exactly. More... | |
bool | is_of_type (TypeHandle handle) const |
Returns true if the current object is or derives from the indicated type. More... | |
void | operator= (const TypedObject ©) |
Static Public Member Functions | |
static TypeHandle | get_class_type () |
static void | init_type () |
static void | register_with_read_factory () |
Registers the current object as something that can be read from a Bam file. More... | |
![]() | |
static TypeHandle | get_class_type () |
static void | init_type () |
static void | register_with_read_factory () |
![]() | |
static bool | decode_raw_from_bam_stream (TypedWritable *&ptr, ReferenceCount *&ref_ptr, const string &data, BamReader *reader=NULL) |
Reads the string created by a previous call to encode_to_bam_stream(), and extracts the single object on that string. More... | |
static TypeHandle | get_class_type () |
static void | init_type () |
![]() | |
static TypeHandle | get_class_type () |
static void | init_type () |
This function is declared non-inline to work around a compiler bug in g++ 2.96. More... | |
Additional Inherited Members | |
![]() | |
static TypedWritable *const | Null = (TypedWritable*)0L |
For reading and writing PFM files using the basic PNMImage interface, as if they were basic RGB files.
Definition at line 30 of file pnmFileTypePfm.h.
|
virtual |
Returns the nth possible filename extension associated with this particular file type, without a leading dot.
Reimplemented from PNMFileType.
Definition at line 62 of file pnmFileTypePfm.cxx.
References get_suggested_extension().
Referenced by get_num_extensions().
|
virtual |
Returns a few words describing the file type.
Implements PNMFileType.
Definition at line 39 of file pnmFileTypePfm.cxx.
References get_num_extensions().
|
virtual |
Returns the number of different possible filename extensions associated with this particular file type.
Reimplemented from PNMFileType.
Definition at line 50 of file pnmFileTypePfm.cxx.
References get_extension().
Referenced by get_name().
|
virtual |
Returns a suitable filename extension (without a leading dot) to suggest for files of this type, or empty string if no suggestions are available.
Reimplemented from PNMFileType.
Definition at line 74 of file pnmFileTypePfm.cxx.
References has_magic_number().
Referenced by get_extension().
|
virtual |
Returns true if this particular file type uses a magic number to identify it, false otherwise.
Reimplemented from PNMFileType.
Definition at line 85 of file pnmFileTypePfm.cxx.
References matches_magic_number().
Referenced by get_suggested_extension().
|
virtual |
Allocates and returns a new PNMReader suitable for reading from this file type, if possible.
If reading from this file type is not supported, returns NULL.
Reimplemented from PNMFileType.
Definition at line 112 of file pnmFileTypePfm.cxx.
References make_writer().
Referenced by matches_magic_number().
|
virtual |
Allocates and returns a new PNMWriter suitable for reading from this file type, if possible.
If writing files of this type is not supported, returns NULL.
Reimplemented from PNMFileType.
Definition at line 124 of file pnmFileTypePfm.cxx.
References PNMFileTypePfm::Reader::is_floating_point().
Referenced by make_reader().
|
virtual |
Returns true if the indicated "magic number" byte stream (the initial few bytes read from the file) matches this particular file type, false otherwise.
Reimplemented from PNMFileType.
Definition at line 97 of file pnmFileTypePfm.cxx.
References make_reader().
Referenced by has_magic_number().
|
static |
Registers the current object as something that can be read from a Bam file.
Definition at line 354 of file pnmFileTypePfm.cxx.
References BamReader::get_factory(), PNMFileTypeRegistry::get_global_ptr(), and PNMFileTypeRegistry::get_type_by_handle().
Referenced by PNMFileTypePfm::Writer::write_pfm().