Fix Molten VK printing too many log messages
[0ad.git] / source / graphics / ColladaManager.h
blob45d87f97820e2f1faebf0936e700ede4e1184ed7
1 /* Copyright (C) 2021 Wildfire Games.
2 * This file is part of 0 A.D.
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.
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.
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/>.
18 #ifndef INCLUDED_COLLADAMANAGER
19 #define INCLUDED_COLLADAMANAGER
21 #include "lib/file/vfs/vfs.h"
23 class CColladaManagerImpl;
25 class CColladaManager
27 NONCOPYABLE(CColladaManager);
29 public:
30 enum FileType { PMD, PSA };
32 CColladaManager(const PIVFS& vfs);
33 ~CColladaManager();
35 /**
36 * Returns the VFS path to a PMD/PSA file for the given source file.
37 * Performs a (cached) conversion from COLLADA if necessary.
39 * @param pathnameNoExtension path and name, minus extension, of file to load.
40 * One of either "sourceName.pmd" or "sourceName.dae" should exist.
41 * @param type FileType, .pmd or .psa
43 * @return full VFS path (including extension) of file to load; or empty
44 * string if there was a problem and it could not be loaded. Doesn't knowingly
45 * return an invalid path.
47 VfsPath GetLoadablePath(const VfsPath& pathnameNoExtension, FileType type);
49 /**
50 * Converts DAE to archive cached .pmd/psa and outputs the resulting path
51 * (used by archive builder)
53 * @param[in] sourcePath path of the .dae to load
54 * @param[in] type FileType, .pmd or .psa
55 * @param[out] archiveCachePath output path of the cached file
57 * @return true if COLLADA converter completed successfully; or false if it failed
59 bool GenerateCachedFile(const VfsPath& sourcePath, FileType type, VfsPath& archiveCachePath);
61 private:
62 CColladaManagerImpl* m;
63 PIVFS m_VFS;
66 #endif // INCLUDED_COLLADAMANAGER