Panda3D
Loading...
Searching...
No Matches
loaderFileTypePandatool.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 loaderFileTypePandatool.h
10 * @author drose
11 * @date 2000-06-20
12 */
13
14#ifndef LOADERFILETYPEPANDATOOL_H
15#define LOADERFILETYPEPANDATOOL_H
16
17#include "pandatoolbase.h"
18
19#include "loaderFileType.h"
20
23
24/**
25 * This defines the Loader interface to files whose converters are defined
26 * within the Pandatool package and inherit from SomethingToEggConverter, like
27 * FltToEggConverter and LwoToEggConverter.
28 */
29class EXPCL_PTLOADER LoaderFileTypePandatool : public LoaderFileType {
30public:
32 EggToSomethingConverter *saver = nullptr);
34
35 virtual std::string get_name() const;
36 virtual std::string get_extension() const;
37 virtual std::string get_additional_extensions() const;
38 virtual bool supports_compressed() const;
39
40 virtual bool supports_load() const;
41 virtual bool supports_save() const;
42
43 virtual void resolve_filename(Filename &path) const;
44 virtual PT(PandaNode) load_file(const Filename &path, const LoaderOptions &options,
45 BamCacheRecord *record) const;
46 virtual bool save_file(const Filename &path, const LoaderOptions &options,
47 PandaNode *node) const;
48
49private:
52
53public:
54 static TypeHandle get_class_type() {
55 return _type_handle;
56 }
57 static void init_type() {
58 LoaderFileType::init_type();
59 register_type(_type_handle, "LoaderFileTypePandatool",
60 LoaderFileType::get_class_type());
61 }
62 virtual TypeHandle get_type() const {
63 return get_class_type();
64 }
65 virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
66
67private:
68 static TypeHandle _type_handle;
69};
70
71#endif
An instance of this class is written to the front of a Bam or Txo file to make the file a cached inst...
This is a base class for a family of converter classes that manage a conversion from egg format to so...
The name of a file, such as a texture file or an Egg file.
Definition filename.h:44
This defines the Loader interface to files whose converters are defined within the Pandatool package ...
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 ....
virtual bool supports_save() const
Returns true if the file type can be used to save files, and save_file() is supported.
virtual bool supports_load() const
Returns true if the file type can be used to load files, and load_file() is supported.
virtual std::string get_additional_extensions() const
Returns a space-separated list of extension, in addition to the one returned by get_extension(),...
Specifies parameters that may be passed to the loader.
A basic node of the scene graph or data graph.
Definition pandaNode.h:65
This is a base class for a family of converter classes that manage a conversion from some file type t...
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(),...