Panda3D
Loading...
Searching...
No Matches
loaderFileTypeStf.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 loaderFileTypeStf.h
10 * @author drose
11 * @date 2010-10-07
12 */
13
14#ifndef LOADERFILETYPESTF_H
15#define LOADERFILETYPESTF_H
16
17#include "pandabase.h"
18
19#include "loaderFileType.h"
20
21/**
22 * This defines the Loader interface to read SpeedTree STF files--a simple
23 * text file that describes a forest of trees (references to SRT files).
24 */
25class EXPCL_PANDASPEEDTREE LoaderFileTypeStf : public LoaderFileType {
26public:
28
29 virtual std::string get_name() const;
30 virtual std::string get_extension() const;
31 virtual bool supports_compressed() const;
32
33 virtual PT(PandaNode) load_file(const Filename &path, const LoaderOptions &options,
34 BamCacheRecord *record) const;
35
36public:
37 static TypeHandle get_class_type() {
38 return _type_handle;
39 }
40 static void init_type() {
41 LoaderFileType::init_type();
42 register_type(_type_handle, "LoaderFileTypeStf",
43 LoaderFileType::get_class_type());
44 }
45 virtual TypeHandle get_type() const {
46 return get_class_type();
47 }
48 virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
49
50private:
51 static TypeHandle _type_handle;
52};
53
54#endif
An instance of this class is written to the front of a Bam or Txo file to make the file a cached inst...
The name of a file, such as a texture file or an Egg file.
Definition filename.h:44
This defines the Loader interface to read SpeedTree STF files–a simple text file that describes a for...
This is the base class for a family of scene-graph file types that the Loader supports.
virtual bool supports_compressed() const
Returns true if this file type can transparently load compressed files (with a .pz or ....
Specifies parameters that may be passed to the loader.
A basic node of the scene graph or data graph.
Definition pandaNode.h:65
TypeHandle is the identifier used to differentiate C++ class types.
Definition typeHandle.h:81
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
void register_type(TypeHandle &type_handle, const std::string &name)
This inline function is just a convenient way to call TypeRegistry::register_type(),...