| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- #include "CmImporter.h"
- #include "CmPath.h"
- #include "CmResource.h"
- #include "CmFileSystem.h"
- #include "CmSpecificImporter.h"
- #include "CmDebug.h"
- #include "CmDataStream.h"
- #include "CmException.h"
- namespace CamelotEngine
- {
- Importer::Importer()
- { }
- Importer::~Importer()
- {
- for(auto i = mAssetImporters.begin(); i != mAssetImporters.end(); ++i)
- {
- if((*i) != nullptr)
- delete *i;
- }
- mAssetImporters.clear();
- }
- bool Importer::supportsFileType(const std::string& extension) const
- {
- for(auto iter = mAssetImporters.begin(); iter != mAssetImporters.end(); ++iter)
- {
- if(*iter != nullptr && (*iter)->isExtensionSupported(extension))
- return true;
- }
- return false;
- }
- bool Importer::supportsFileType(const UINT8* magicNumber, UINT32 magicNumSize) const
- {
- for(auto iter = mAssetImporters.begin(); iter != mAssetImporters.end(); ++iter)
- {
- if(*iter != nullptr && (*iter)->isMagicNumberSupported(magicNumber, magicNumSize))
- return true;
- }
- return false;
- }
- BaseResourceHandle Importer::import(const String& inputFilePath)
- {
- if(!FileSystem::fileExists(inputFilePath))
- {
- LOGWRN("Trying to import asset that doesn't exists. Asset path: " + inputFilePath);
- return nullptr;
- }
- String ext = Path::getExtension(inputFilePath);
- ext = ext.substr(1, ext.size() - 1); // Remove the .
- if(!supportsFileType(ext))
- {
- LOGWRN("There is no importer for the provided file type. (" + inputFilePath + ")");
- return nullptr;
- }
- SpecificImporter* importer = nullptr;
- for(auto iter = mAssetImporters.begin(); iter != mAssetImporters.end(); ++iter)
- {
- if(*iter != nullptr && (*iter)->isExtensionSupported(ext))
- {
- importer = *iter;
- }
- }
- BaseResourceHandle importedResource = importer->import(inputFilePath);
- return importedResource;
- }
- void Importer::registerAssetImporter(SpecificImporter* importer)
- {
- if(!importer)
- {
- LOGWRN("Trying to register a null asset importer!");
- return;
- }
- mAssetImporters.push_back(importer);
- }
- }
|