Pyrogenesis  trunk
ColladaManager.h
Go to the documentation of this file.
1 /* Copyright (C) 2013 Wildfire Games.
2  * This file is part of 0 A.D.
3  *
4  * 0 A.D. is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * 0 A.D. is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 #ifndef INCLUDED_COLLADAMANAGER
19 #define INCLUDED_COLLADAMANAGER
20 
21 #include "lib/file/vfs/vfs.h"
22 
23 class CStr8;
25 class MD5;
26 
28 {
30 
31 public:
32  enum FileType { PMD, PSA };
33 
34  CColladaManager(const PIVFS& vfs);
36 
37  /**
38  * Returns the VFS path to a PMD/PSA file for the given source file.
39  * Performs a (cached) conversion from COLLADA if necessary.
40  *
41  * @param pathnameNoExtension path and name, minus extension, of file to load.
42  * One of either "sourceName.pmd" or "sourceName.dae" should exist.
43  * @param type FileType, .pmd or .psa
44  *
45  * @return full VFS path (including extension) of file to load; or empty
46  * string if there was a problem and it could not be loaded. Doesn't knowingly
47  * return an invalid path.
48  */
49  VfsPath GetLoadablePath(const VfsPath& pathnameNoExtension, FileType type);
50 
51  /**
52  * Converts DAE to archive cached .pmd/psa and outputs the resulting path
53  * (used by archive builder)
54  *
55  * @param[in] sourcePath path of the .dae to load
56  * @param[in] type FileType, .pmd or .psa
57  * @param[out] archiveCachePath output path of the cached file
58  *
59  * @return true if COLLADA converter completed successfully; or false if it failed
60  */
61  bool GenerateCachedFile(const VfsPath& sourcePath, FileType type, VfsPath& archiveCachePath);
62 
63 private:
66 };
67 
68 #endif // INCLUDED_COLLADAMANAGER
Definition: ColladaManager.h:32
VfsPath GetLoadablePath(const VfsPath &pathnameNoExtension, FileType type)
Returns the VFS path to a PMD/PSA file for the given source file.
Definition: ColladaManager.cpp:327
NONCOPYABLE(CColladaManager)
shared_ptr< IVFS > PIVFS
Definition: vfs.h:226
PIVFS m_VFS
Definition: ColladaManager.h:65
MD5 hashing algorithm.
Definition: MD5.h:27
Definition: path.h:77
bool GenerateCachedFile(const VfsPath &sourcePath, FileType type, VfsPath &archiveCachePath)
Converts DAE to archive cached .pmd/psa and outputs the resulting path (used by archive builder) ...
Definition: ColladaManager.cpp:418
Definition: ColladaManager.cpp:59
FileType
Definition: ColladaManager.h:32
CColladaManager(const PIVFS &vfs)
Definition: ColladaManager.cpp:317
CColladaManagerImpl * m
Definition: ColladaManager.h:64
~CColladaManager()
Definition: ColladaManager.cpp:322
Definition: ColladaManager.h:32
Definition: ColladaManager.h:27
Definition: vfs_util.cpp:39