metaforce/DataSpec/SpecBase.cpp

196 lines
5.7 KiB
C++
Raw Normal View History

2015-11-27 14:21:19 -08:00
#if _WIN32
#define _CRT_RAND_S
#include <stdlib.h>
#endif
2015-07-01 16:50:39 -07:00
#include "SpecBase.hpp"
#include "Blender/BlenderSupport.hpp"
2015-09-30 17:40:21 -07:00
#include "BlenderConnection.hpp"
2015-11-09 18:07:15 -08:00
#include "DNACommon/DNACommon.hpp"
2015-07-01 16:50:39 -07:00
2015-11-21 21:16:40 -08:00
#include <time.h>
2016-02-13 01:02:47 -08:00
namespace DataSpec
2015-07-01 16:50:39 -07:00
{
2016-03-04 15:04:53 -08:00
static logvisor::Module Log("urde::SpecBase");
2016-03-04 15:04:53 -08:00
static const hecl::SystemChar* MomErr[] =
2015-11-21 21:16:40 -08:00
{
_S("Your metroid is in another castle"),
_S("HECL is experiencing a PTSD attack"),
_S("Unable to freeze metroids"),
_S("Ridley ate your homework"),
_S("Expected 0 maternal symbolisms, found ∞"),
_S("Contradictive narratives unsupported"),
_S("Wiimote profile \"NES + Zapper\" not recognized"),
_S("Unable to find Waldo"),
2016-02-20 00:53:06 -08:00
_S("Expected Ridley, found furby"),
_S("Adam has not authorized this, please do not bug the developers"),
_S("Lady returned objection"),
_S("Unterminated plot thread 'Deleter' detected")
2015-11-21 21:16:40 -08:00
};
constexpr uint32_t MomErrCount = std::extent<decltype(MomErr)>::value;
2016-03-04 15:04:53 -08:00
SpecBase::SpecBase(hecl::Database::Project& project)
2015-11-09 18:07:15 -08:00
: m_project(project),
m_masterShader(project.getProjectWorkingPath(), ".hecl/RetroMasterShader.blend") {}
2015-10-03 22:08:56 -07:00
bool SpecBase::canExtract(const ExtractPassInfo& info, std::vector<ExtractReport>& reps)
2015-07-01 16:50:39 -07:00
{
2016-03-04 15:04:53 -08:00
m_disc = nod::OpenDiscFromImage(info.srcpath.c_str(), m_isWii);
2015-07-15 18:57:34 -07:00
if (!m_disc)
2015-07-02 13:41:40 -07:00
return false;
2016-01-19 19:18:30 -08:00
const char* gameID = m_disc->getHeader().m_gameID;
2015-07-02 13:41:40 -07:00
2015-11-21 21:16:40 -08:00
if (!memcmp(gameID, "R3O", 3))
{
unsigned int t = time(nullptr);
2015-11-27 14:21:19 -08:00
#if _WIN32
rand_s(&t);
2016-02-20 00:53:06 -08:00
int r = t % MomErrCount;
2015-11-27 14:21:19 -08:00
#else
2016-02-20 00:53:06 -08:00
int r = rand_r(&t) % MomErrCount;
2015-11-27 14:21:19 -08:00
#endif
2016-03-04 15:04:53 -08:00
Log.report(logvisor::Fatal, MomErr[r]);
2015-11-21 21:16:40 -08:00
}
m_standalone = true;
if (m_isWii && !memcmp(gameID, "R3M", 3))
m_standalone = false;
2015-07-01 16:50:39 -07:00
if (m_standalone && !checkStandaloneID(gameID))
2015-07-09 22:28:08 -07:00
return false;
2016-01-19 19:18:30 -08:00
char region = m_disc->getHeader().m_gameID[3];
2016-03-04 15:04:53 -08:00
static const hecl::SystemString regNONE = _S("");
static const hecl::SystemString regE = _S("NTSC");
static const hecl::SystemString regJ = _S("NTSC-J");
static const hecl::SystemString regP = _S("PAL");
const hecl::SystemString* regstr = &regNONE;
2015-07-12 11:07:58 -07:00
switch (region)
{
case 'E':
regstr = &regE;
break;
case 'J':
regstr = &regJ;
break;
case 'P':
regstr = &regP;
break;
}
if (m_standalone)
2015-08-05 14:46:07 -07:00
return checkFromStandaloneDisc(*m_disc, *regstr, info.extractArgs, reps);
2015-07-09 22:28:08 -07:00
else
2015-08-05 14:46:07 -07:00
return checkFromTrilogyDisc(*m_disc, *regstr, info.extractArgs, reps);
2015-07-01 16:50:39 -07:00
}
2015-09-29 23:23:40 -07:00
void SpecBase::doExtract(const ExtractPassInfo& info, FProgress progress)
2015-07-01 16:50:39 -07:00
{
2016-02-13 01:02:47 -08:00
DataSpec::g_curSpec = this;
2015-08-05 14:46:07 -07:00
if (!Blender::BuildMasterShader(m_masterShader))
2016-03-04 15:04:53 -08:00
Log.report(logvisor::Fatal, "Unable to build master shader blend");
if (m_isWii)
{
/* Extract root files for repacking later */
2016-03-04 16:03:41 -08:00
hecl::ProjectPath outDir(m_project.getProjectWorkingPath(), _S("out"));
outDir.makeDir();
2016-03-04 15:04:53 -08:00
nod::ExtractionContext ctx = {true, info.force, nullptr};
2015-09-28 20:49:31 -07:00
if (!m_standalone)
{
2015-09-02 15:00:40 -07:00
progress(_S("Trilogy Files"), _S(""), 1, 0.0);
2016-03-04 15:04:53 -08:00
nod::Partition* data = m_disc->getDataPartition();
const nod::Node& root = data->getFSTRoot();
for (const nod::Node& child : root)
if (child.getKind() == nod::Node::Kind::File)
child.extractToDirectory(outDir.getAbsolutePath(), ctx);
2015-09-02 15:00:40 -07:00
progress(_S("Trilogy Files"), _S(""), 1, 1.0);
}
}
2015-08-05 14:46:07 -07:00
extractFromDisc(*m_disc, info.force, progress);
2015-07-01 16:50:39 -07:00
}
2016-03-04 15:04:53 -08:00
bool SpecBase::canCook(const hecl::ProjectPath& path)
2015-07-01 16:50:39 -07:00
{
2015-10-03 22:08:56 -07:00
if (!checkPathPrefix(path))
return false;
2016-03-04 15:04:53 -08:00
if (hecl::IsPathBlend(path))
2015-09-30 17:40:21 -07:00
{
2016-03-04 15:04:53 -08:00
hecl::BlenderConnection& conn = hecl::BlenderConnection::SharedConnection();
2015-10-06 18:17:17 -07:00
if (!conn.openBlend(path))
2015-09-30 17:40:21 -07:00
return false;
2016-03-04 15:04:53 -08:00
if (conn.getBlendType() != hecl::BlenderConnection::BlendType::None)
2015-09-30 17:40:21 -07:00
return true;
}
2016-03-04 15:04:53 -08:00
else if (hecl::IsPathPNG(path))
2015-09-30 17:40:21 -07:00
{
return true;
}
2016-03-04 15:04:53 -08:00
else if (hecl::IsPathYAML(path))
2015-09-30 17:40:21 -07:00
{
2016-03-04 15:04:53 -08:00
FILE* fp = hecl::Fopen(path.getAbsolutePath().c_str(), _S("r"));
2015-09-30 17:40:21 -07:00
bool retval = validateYAMLDNAType(fp);
fclose(fp);
return retval;
}
2015-07-22 12:05:18 -07:00
return false;
2015-07-01 16:50:39 -07:00
}
2016-03-04 15:04:53 -08:00
void SpecBase::doCook(const hecl::ProjectPath& path, const hecl::ProjectPath& cookedPath,
bool fast, FCookProgress progress)
2015-07-01 16:50:39 -07:00
{
2016-02-13 01:02:47 -08:00
DataSpec::g_curSpec = this;
2016-03-04 15:04:53 -08:00
if (hecl::IsPathBlend(path))
2015-10-03 22:08:56 -07:00
{
2016-03-04 15:04:53 -08:00
hecl::BlenderConnection& conn = hecl::BlenderConnection::SharedConnection();
2015-10-06 18:17:17 -07:00
if (!conn.openBlend(path))
2015-10-03 22:08:56 -07:00
return;
2015-10-06 18:17:17 -07:00
switch (conn.getBlendType())
{
2016-03-04 15:04:53 -08:00
case hecl::BlenderConnection::BlendType::Mesh:
2015-10-03 22:08:56 -07:00
{
2016-03-04 15:04:53 -08:00
hecl::BlenderConnection::DataStream ds = conn.beginData();
cookMesh(cookedPath, path, ds, fast, progress);
2015-10-06 18:17:17 -07:00
break;
2015-10-03 22:08:56 -07:00
}
2016-03-04 15:04:53 -08:00
case hecl::BlenderConnection::BlendType::Actor:
2015-10-06 18:17:17 -07:00
{
2016-03-04 15:04:53 -08:00
hecl::BlenderConnection::DataStream ds = conn.beginData();
cookActor(cookedPath, path, ds, fast, progress);
2015-10-06 18:17:17 -07:00
break;
}
2016-03-04 15:04:53 -08:00
case hecl::BlenderConnection::BlendType::Area:
2015-10-06 18:17:17 -07:00
{
2016-03-04 15:04:53 -08:00
hecl::BlenderConnection::DataStream ds = conn.beginData();
cookArea(cookedPath, path, ds, fast, progress);
2015-10-06 18:17:17 -07:00
break;
}
default: break;
}
}
2016-03-04 15:04:53 -08:00
else if (hecl::IsPathYAML(path))
2015-10-06 18:17:17 -07:00
{
2016-03-04 15:04:53 -08:00
FILE* fp = hecl::Fopen(path.getAbsolutePath().c_str(), _S("r"));
cookYAML(cookedPath, path, fp, progress);
2015-10-03 22:08:56 -07:00
}
2015-07-01 16:50:39 -07:00
}
2015-08-05 14:46:07 -07:00
bool SpecBase::canPackage(const PackagePassInfo& info)
2015-07-01 16:50:39 -07:00
{
2015-07-22 12:05:18 -07:00
return false;
2015-07-01 16:50:39 -07:00
}
2015-08-05 14:46:07 -07:00
void SpecBase::gatherDependencies(const PackagePassInfo& info,
2016-03-04 15:04:53 -08:00
std::unordered_set<hecl::ProjectPath>& implicitsOut)
2015-07-01 16:50:39 -07:00
{
}
2015-08-05 14:46:07 -07:00
void SpecBase::doPackage(const PackagePassInfo& info)
2015-07-01 16:50:39 -07:00
{
}
}