|
virtual TypeHandle | force_init_type () |
|
virtual std::string | get_extension () const |
|
virtual std::string | get_name () const |
|
virtual TypeHandle | get_type () const |
|
virtual | PT (PandaNode) load_file(const Filename &path |
|
virtual bool | supports_compressed () const |
| Returns true if this file type can transparently load compressed files (with a .pz or .gz extension), false otherwise.
|
|
virtual std::string | get_additional_extensions () const |
| Returns a space-separated list of extension, in addition to the one returned by get_extension(), that are recognized by this loader.
|
|
virtual bool | get_allow_disk_cache (const LoaderOptions &options) const |
| Returns true if the loader flags allow retrieving the model from the on- disk bam cache (if it is enabled), false otherwise.
|
|
virtual bool | get_allow_ram_cache (const LoaderOptions &options) const |
| Returns true if the loader flags allow retrieving the model from the in- memory ModelPool cache, false otherwise.
|
|
virtual bool | save_file (const Filename &path, const LoaderOptions &options, PandaNode *node) const |
|
virtual bool | supports_load () const |
| Returns true if the file type can be used to load files, and load_file() is supported.
|
|
virtual bool | supports_save () const |
| Returns true if the file type can be used to save files, and save_file() is supported.
|
|
| TypedObject (const TypedObject ©)=default |
|
TypedObject * | as_typed_object () |
| Returns the object, upcast (if necessary) to a TypedObject pointer.
|
|
const TypedObject * | as_typed_object () const |
| Returns the object, upcast (if necessary) to a TypedObject pointer.
|
|
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.
|
|
bool | is_exact_type (TypeHandle handle) const |
| Returns true if the current object is the indicated type exactly.
|
|
bool | is_of_type (TypeHandle handle) const |
| Returns true if the current object is or derives from the indicated type.
|
|
TypedObject & | operator= (const TypedObject ©)=default |
|
void | operator delete (void *, void *) |
|
void | operator delete (void *ptr) |
|
void | operator delete[] (void *, void *) |
|
void | operator delete[] (void *ptr) |
|
void * | operator new (size_t size) |
|
void * | operator new (size_t size, void *ptr) |
|
void * | operator new[] (size_t size) |
|
void * | operator new[] (size_t size, void *ptr) |
|
This defines the Loader interface to read SpeedTree STF files–a simple text file that describes a forest of trees (references to SRT files).
Definition at line 25 of file loaderFileTypeStf.h.