2016-02-16 05:50:41 +00:00
|
|
|
#include "ProjectResourceFactory.hpp"
|
|
|
|
#include "Runtime/IOStreams.hpp"
|
|
|
|
|
|
|
|
#include "Runtime/Particle/CParticleDataFactory.hpp"
|
2016-02-17 05:20:34 +00:00
|
|
|
#include "Runtime/Particle/CGenDescription.hpp"
|
|
|
|
#include "Runtime/Particle/CElectricDescription.hpp"
|
|
|
|
#include "Runtime/Particle/CSwooshDescription.hpp"
|
|
|
|
#include "Runtime/CModel.hpp"
|
2016-02-16 05:50:41 +00:00
|
|
|
#include "Runtime/CTexture.hpp"
|
|
|
|
|
|
|
|
namespace URDE
|
|
|
|
{
|
|
|
|
|
|
|
|
ProjectResourceFactory::ProjectResourceFactory()
|
|
|
|
{
|
|
|
|
m_factoryMgr.AddFactory(HECL::FOURCC('TXTR'), pshag::FTextureFactory);
|
|
|
|
m_factoryMgr.AddFactory(HECL::FOURCC('PART'), pshag::FParticleFactory);
|
|
|
|
}
|
|
|
|
|
2016-02-20 12:40:58 +00:00
|
|
|
void ProjectResourceFactory::BuildObjectMap(const HECL::Database::Project::ProjectDataSpec &spec)
|
2016-02-16 05:50:41 +00:00
|
|
|
{
|
2016-02-20 12:40:58 +00:00
|
|
|
m_resPaths.clear();
|
|
|
|
m_namedResources.clear();
|
2016-02-24 20:53:26 +00:00
|
|
|
HECL::SystemString catalogPath = HECL::ProjectPath(spec.cookedPath, HECL::SystemString(spec.spec.m_name) + _S("/catalog.yaml")).getAbsolutePath();
|
2016-02-20 12:40:58 +00:00
|
|
|
FILE* catalogFile = HECL::Fopen(catalogPath.c_str(), _S("r"));
|
2016-02-24 20:53:26 +00:00
|
|
|
if (!HECL::StrCmp(spec.spec.m_name, _S("MP3")))
|
2016-02-16 05:50:41 +00:00
|
|
|
{
|
2016-02-20 12:40:58 +00:00
|
|
|
DataSpec::NamedResourceCatalog<DataSpec::UniqueID64> catalog;
|
|
|
|
if (catalogFile)
|
|
|
|
catalog.fromYAMLFile(catalogFile);
|
|
|
|
RecursiveAddDirObjects(spec.cookedPath, catalog);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DataSpec::NamedResourceCatalog<DataSpec::UniqueID32> catalog;
|
|
|
|
if (catalogFile)
|
|
|
|
catalog.fromYAMLFile(catalogFile);
|
|
|
|
RecursiveAddDirObjects(spec.cookedPath, catalog);
|
2016-02-16 05:50:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<pshag::IObj> ProjectResourceFactory::Build(const pshag::SObjectTag& tag,
|
|
|
|
const pshag::CVParamTransfer& paramXfer)
|
|
|
|
{
|
|
|
|
auto search = m_resPaths.find(tag);
|
|
|
|
if (search == m_resPaths.end())
|
|
|
|
return {};
|
|
|
|
|
2016-02-28 01:03:46 +00:00
|
|
|
fprintf(stderr, "Loading resource %s\n", search->second.getRelativePath().c_str());
|
2016-02-16 05:50:41 +00:00
|
|
|
Athena::io::FileReader fr(search->second.getAbsolutePath(), 32 * 1024, false);
|
|
|
|
if (fr.hasError())
|
|
|
|
return {};
|
|
|
|
|
|
|
|
return m_factoryMgr.MakeObject(tag, fr, paramXfer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectResourceFactory::BuildAsync(const pshag::SObjectTag& tag,
|
|
|
|
const pshag::CVParamTransfer& paramXfer,
|
|
|
|
pshag::IObj** objOut)
|
|
|
|
{
|
|
|
|
std::unique_ptr<pshag::IObj> obj = Build(tag, paramXfer);
|
|
|
|
*objOut = obj.release();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectResourceFactory::CancelBuild(const pshag::SObjectTag&)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProjectResourceFactory::CanBuild(const pshag::SObjectTag& tag)
|
|
|
|
{
|
|
|
|
auto search = m_resPaths.find(tag);
|
|
|
|
if (search == m_resPaths.end())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
Athena::io::FileReader fr(search->second.getAbsolutePath(), 32 * 1024, false);
|
|
|
|
if (fr.hasError())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-02-20 12:40:58 +00:00
|
|
|
const pshag::SObjectTag* ProjectResourceFactory::GetResourceIdByName(const char* name) const
|
2016-02-16 05:50:41 +00:00
|
|
|
{
|
2016-02-20 12:40:58 +00:00
|
|
|
if (m_namedResources.find(name) == m_namedResources.end())
|
|
|
|
return nullptr;
|
|
|
|
const pshag::SObjectTag& tag = m_namedResources.at(name);
|
|
|
|
return &tag;
|
2016-02-16 05:50:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|