metaforce/DataSpec/SpecMP1.cpp

337 lines
11 KiB
C++
Raw Normal View History

2015-07-06 20:22:44 -07:00
#include <utility>
2015-07-15 18:57:34 -07:00
#include <stdio.h>
2015-07-22 12:05:18 -07:00
#include <string.h>
2015-07-06 20:22:44 -07:00
2015-07-01 16:50:39 -07:00
#include "SpecBase.hpp"
2015-07-16 17:01:05 -07:00
#include "DNAMP1/DNAMP1.hpp"
2015-07-01 16:50:39 -07:00
2015-09-30 17:40:21 -07:00
#include "DNAMP1/MLVL.hpp"
#include "DNAMP1/STRG.hpp"
2015-10-06 18:17:17 -07:00
#include "DNAMP1/CMDL.hpp"
2015-10-22 17:45:26 -07:00
#include "DNAMP1/ANCS.hpp"
2015-09-30 17:40:21 -07:00
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::SpecMP1");
extern hecl::Database::DataSpecEntry SpecEntMP1;
2015-07-15 18:57:34 -07:00
2015-07-06 20:22:44 -07:00
struct SpecMP1 : SpecBase
2015-07-01 16:50:39 -07:00
{
2015-07-13 18:07:15 -07:00
bool checkStandaloneID(const char* id) const
{
if (!memcmp(id, "GM8", 3))
return true;
return false;
}
2016-03-04 15:04:53 -08:00
std::vector<const nod::Node*> m_nonPaks;
2015-07-16 17:01:05 -07:00
std::vector<DNAMP1::PAKBridge> m_paks;
2016-03-04 15:04:53 -08:00
std::map<std::string, DNAMP1::PAKBridge*, hecl::CaseInsensitiveCompare> m_orderedPaks;
2015-07-06 20:22:44 -07:00
2016-03-04 15:04:53 -08:00
hecl::ProjectPath m_workPath;
hecl::ProjectPath m_cookPath;
2015-07-28 16:53:57 -07:00
PAKRouter<DNAMP1::PAKBridge> m_pakRouter;
2016-03-04 15:04:53 -08:00
SpecMP1(hecl::Database::Project& project)
2015-08-05 14:46:07 -07:00
: SpecBase(project),
2015-09-30 17:40:21 -07:00
m_workPath(project.getProjectWorkingPath(), _S("MP1")),
2015-07-28 16:53:57 -07:00
m_cookPath(project.getProjectCookedPath(SpecEntMP1), _S("MP1")),
2015-08-05 14:46:07 -07:00
m_pakRouter(*this, m_workPath, m_cookPath) {}
2015-07-28 16:53:57 -07:00
2016-03-04 15:04:53 -08:00
void buildPaks(nod::Node& root,
const std::vector<hecl::SystemString>& args,
2015-07-12 11:07:58 -07:00
ExtractReport& rep)
2015-07-01 16:50:39 -07:00
{
m_nonPaks.clear();
2015-07-12 11:07:58 -07:00
m_paks.clear();
2016-03-04 15:04:53 -08:00
for (const nod::Node& child : root)
2015-07-06 20:22:44 -07:00
{
bool isPak = false;
2015-07-09 22:28:08 -07:00
const std::string& name = child.getName();
std::string lowerName = name;
std::transform(lowerName.begin(), lowerName.end(), lowerName.begin(), tolower);
if (name.size() > 4)
2015-07-06 20:22:44 -07:00
{
2015-07-09 22:28:08 -07:00
std::string::iterator extit = lowerName.end() - 4;
if (!std::string(extit, lowerName.end()).compare(".pak"))
2015-07-06 20:22:44 -07:00
{
2015-07-09 22:28:08 -07:00
/* This is a pak */
isPak = true;
2015-07-09 22:28:08 -07:00
std::string lowerBase(lowerName.begin(), extit);
/* Needs filter */
bool good = true;
if (args.size())
{
good = false;
if (!lowerName.compare(0, 7, "metroid"))
{
2016-03-04 15:04:53 -08:00
hecl::SystemChar idxChar = lowerName[7];
for (const hecl::SystemString& arg : args)
2015-07-09 22:28:08 -07:00
{
if (arg.size() == 1 && iswdigit(arg[0]))
if (arg[0] == idxChar)
2015-07-09 22:28:08 -07:00
good = true;
}
}
2015-07-12 11:07:58 -07:00
else
good = true;
2015-07-09 22:28:08 -07:00
if (!good)
{
2016-03-04 15:04:53 -08:00
for (const hecl::SystemString& arg : args)
2015-07-09 22:28:08 -07:00
{
std::string lowerArg = hecl::SystemUTF8View(arg).str();
2015-07-09 22:28:08 -07:00
std::transform(lowerArg.begin(), lowerArg.end(), lowerArg.begin(), tolower);
if (!lowerArg.compare(0, lowerBase.size(), lowerBase))
good = true;
}
}
}
m_paks.emplace_back(m_project, child, good);
2015-07-16 17:01:05 -07:00
2015-07-06 20:22:44 -07:00
}
}
if (!isPak)
m_nonPaks.push_back(&child);
2015-07-09 22:28:08 -07:00
}
2015-07-11 21:26:26 -07:00
/* Sort PAKs alphabetically */
2015-07-12 11:07:58 -07:00
m_orderedPaks.clear();
2015-07-16 17:01:05 -07:00
for (DNAMP1::PAKBridge& dpak : m_paks)
m_orderedPaks[dpak.getName()] = &dpak;
2015-07-11 21:26:26 -07:00
2015-07-12 11:07:58 -07:00
/* Assemble extract report */
2015-10-03 22:08:56 -07:00
rep.childOpts.reserve(m_orderedPaks.size());
2015-07-16 17:01:05 -07:00
for (const std::pair<std::string, DNAMP1::PAKBridge*>& item : m_orderedPaks)
2015-07-09 22:28:08 -07:00
{
if (!item.second->m_doExtract)
continue;
2015-07-09 22:28:08 -07:00
rep.childOpts.emplace_back();
ExtractReport& childRep = rep.childOpts.back();
2016-03-04 15:04:53 -08:00
hecl::SystemStringView nameView(item.first);
2015-07-22 12:05:18 -07:00
childRep.name = nameView;
2015-07-16 17:01:05 -07:00
childRep.desc = item.second->getLevelString();
2015-07-06 20:22:44 -07:00
}
2015-07-01 16:50:39 -07:00
}
2015-07-12 11:07:58 -07:00
2016-03-04 15:04:53 -08:00
bool checkFromStandaloneDisc(nod::DiscBase& disc,
const hecl::SystemString& regstr,
const std::vector<hecl::SystemString>& args,
2015-10-03 22:08:56 -07:00
std::vector<ExtractReport>& reps)
2015-07-01 16:50:39 -07:00
{
2016-03-04 15:04:53 -08:00
nod::Partition* partition = disc.getDataPartition();
2015-07-12 11:07:58 -07:00
std::unique_ptr<uint8_t[]> dolBuf = partition->getDOLBuf();
const char* buildInfo = (char*)memmem(dolBuf.get(), partition->getDOLSize(), "MetroidBuildInfo", 16) + 19;
2015-07-06 20:22:44 -07:00
if (!buildInfo)
return false;
/* Root Report */
2015-07-12 11:07:58 -07:00
reps.emplace_back();
ExtractReport& rep = reps.back();
rep.name = _S("MP1");
rep.desc = _S("Metroid Prime ") + regstr;
2015-07-12 11:07:58 -07:00
if (buildInfo)
{
2015-07-13 18:07:15 -07:00
std::string buildStr(buildInfo);
2016-03-04 15:04:53 -08:00
hecl::SystemStringView buildView(buildStr);
rep.desc += _S(" (") + buildView + _S(")");
}
2015-07-12 11:07:58 -07:00
/* Iterate PAKs and build level options */
2016-03-04 15:04:53 -08:00
nod::Node& root = partition->getFSTRoot();
2015-08-15 15:56:55 -07:00
buildPaks(root, args, rep);
2015-07-12 11:07:58 -07:00
return true;
2015-07-01 16:50:39 -07:00
}
2016-03-04 15:04:53 -08:00
bool checkFromTrilogyDisc(nod::DiscBase& disc,
const hecl::SystemString& regstr,
const std::vector<hecl::SystemString>& args,
2015-10-03 22:08:56 -07:00
std::vector<ExtractReport>& reps)
2015-07-01 16:50:39 -07:00
{
2016-03-04 15:04:53 -08:00
std::vector<hecl::SystemString> mp1args;
bool doExtract = false;
if (args.size())
{
/* Needs filter */
2016-03-04 15:04:53 -08:00
for (const hecl::SystemString& arg : args)
{
2016-03-04 15:04:53 -08:00
hecl::SystemString lowerArg = arg;
hecl::ToLower(lowerArg);
2015-07-22 12:05:18 -07:00
if (!lowerArg.compare(0, 3, _S("mp1")))
{
doExtract = true;
2015-10-03 22:08:56 -07:00
mp1args.reserve(args.size());
size_t slashPos = arg.find(_S('/'));
2016-03-04 15:04:53 -08:00
if (slashPos == hecl::SystemString::npos)
slashPos = arg.find(_S('\\'));
2016-03-04 15:04:53 -08:00
if (slashPos != hecl::SystemString::npos)
mp1args.emplace_back(hecl::SystemString(arg.begin() + slashPos + 1, arg.end()));
}
}
}
else
doExtract = true;
if (!doExtract)
return false;
2016-03-04 15:04:53 -08:00
nod::Partition* partition = disc.getDataPartition();
nod::Node& root = partition->getFSTRoot();
nod::Node::DirectoryIterator dolIt = root.find("rs5mp1_p.dol");
if (dolIt == root.end())
return false;
std::unique_ptr<uint8_t[]> dolBuf = dolIt->getBuf();
const char* buildInfo = (char*)memmem(dolBuf.get(), dolIt->size(), "MetroidBuildInfo", 16) + 19;
/* Root Report */
reps.emplace_back();
ExtractReport& rep = reps.back();
rep.name = _S("MP1");
rep.desc = _S("Metroid Prime ") + regstr;
if (buildInfo)
{
std::string buildStr(buildInfo);
2016-03-04 15:04:53 -08:00
hecl::SystemStringView buildView(buildStr);
rep.desc += _S(" (") + buildView + _S(")");
}
/* Iterate PAKs and build level options */
2016-03-04 15:04:53 -08:00
nod::Node::DirectoryIterator mp1It = root.find("MP1");
if (mp1It == root.end())
return false;
2015-08-15 15:56:55 -07:00
buildPaks(*mp1It, mp1args, rep);
2015-07-06 20:22:44 -07:00
return true;
2015-07-01 16:50:39 -07:00
}
2015-07-15 18:57:34 -07:00
2016-03-04 15:04:53 -08:00
bool extractFromDisc(nod::DiscBase&, bool force, FProgress progress)
2015-07-01 16:50:39 -07:00
{
2016-03-04 15:04:53 -08:00
nod::ExtractionContext ctx = {true, force, nullptr};
2015-09-28 20:49:31 -07:00
m_workPath.makeDir();
2016-03-04 16:03:41 -08:00
const hecl::ProjectPath& cookPath = m_project.getProjectCookedPath(SpecEntMP1);
cookPath.makeDir();
m_cookPath.makeDir();
2015-09-02 15:00:40 -07:00
progress(_S("Indexing PAKs"), _S(""), 2, 0.0);
2015-07-28 16:53:57 -07:00
m_pakRouter.build(m_paks, [&progress](float factor)
{
2015-09-02 15:00:40 -07:00
progress(_S("Indexing PAKs"), _S(""), 2, factor);
2015-07-28 16:53:57 -07:00
});
2015-09-02 15:00:40 -07:00
progress(_S("Indexing PAKs"), _S(""), 2, 1.0);
2015-07-28 16:53:57 -07:00
2016-03-04 16:03:41 -08:00
hecl::ProjectPath outPath(m_project.getProjectWorkingPath(), _S("out"));
outPath.makeDir();
2016-03-04 16:03:41 -08:00
hecl::ProjectPath mp1OutPath(outPath, _S("MP1"));
mp1OutPath.makeDir();
2015-09-02 15:00:40 -07:00
progress(_S("MP1 Root"), _S(""), 3, 0.0);
2015-07-20 16:25:16 -07:00
int prog = 0;
ctx.progressCB = [&](const std::string& name) {
2016-03-04 15:04:53 -08:00
hecl::SystemStringView nameView(name);
progress(_S("MP1 Root"), nameView.sys_str().c_str(), 3, prog / (float)m_nonPaks.size());
};
2016-03-04 15:04:53 -08:00
for (const nod::Node* node : m_nonPaks)
2015-07-20 16:25:16 -07:00
{
node->extractToDirectory(mp1OutPath.getAbsolutePath(), ctx);
prog++;
2015-07-20 16:25:16 -07:00
}
2015-09-02 15:00:40 -07:00
progress(_S("MP1 Root"), _S(""), 3, 1.0);
2015-07-28 16:53:57 -07:00
int compIdx = 4;
2015-07-20 16:25:16 -07:00
prog = 0;
2015-08-07 17:08:16 -07:00
for (std::pair<std::string, DNAMP1::PAKBridge*> pair : m_orderedPaks)
2015-07-15 18:57:34 -07:00
{
2015-08-07 17:08:16 -07:00
DNAMP1::PAKBridge& pak = *pair.second;
if (!pak.m_doExtract)
continue;
2015-07-16 17:01:05 -07:00
const std::string& name = pak.getName();
2016-03-04 15:04:53 -08:00
hecl::SystemStringView sysName(name);
2015-07-20 16:25:16 -07:00
2015-09-02 15:00:40 -07:00
progress(sysName.sys_str().c_str(), _S(""), compIdx, 0.0);
m_pakRouter.extractResources(pak, force,
2016-03-04 15:04:53 -08:00
[&progress, &sysName, &compIdx](const hecl::SystemChar* substr, float factor)
2015-07-20 16:25:16 -07:00
{
2015-09-02 15:00:40 -07:00
progress(sysName.sys_str().c_str(), substr, compIdx, factor);
2015-07-20 16:25:16 -07:00
});
2015-09-02 15:00:40 -07:00
progress(sysName.sys_str().c_str(), _S(""), compIdx++, 1.0);
2015-07-15 18:57:34 -07:00
}
return true;
2015-07-01 16:50:39 -07:00
}
2015-09-30 17:40:21 -07:00
2016-03-04 15:04:53 -08:00
virtual hecl::ProjectPath getWorking(class UniqueID32& id)
2015-11-09 18:07:15 -08:00
{
return m_pakRouter.getWorking(id);
}
2016-03-04 15:04:53 -08:00
bool checkPathPrefix(const hecl::ProjectPath& path)
2015-10-03 22:08:56 -07:00
{
2015-10-11 21:41:28 -07:00
return path.getRelativePath().compare(0, 4, _S("MP1/")) == 0;
2015-10-03 22:08:56 -07:00
}
2015-09-30 17:40:21 -07:00
bool validateYAMLDNAType(FILE* fp) const
{
if (BigYAML::ValidateFromYAMLFile<DNAMP1::MLVL>(fp))
return true;
if (BigYAML::ValidateFromYAMLFile<DNAMP1::STRG>(fp))
return true;
return false;
}
2015-10-03 22:08:56 -07:00
2016-03-04 15:04:53 -08:00
void cookMesh(const hecl::ProjectPath& out, const hecl::ProjectPath& in,
BlendStream& ds, bool fast, FCookProgress progress) const
2015-10-03 22:08:56 -07:00
{
2016-03-04 15:04:53 -08:00
Mesh mesh = ds.compileMesh(fast ? hecl::HMDLTopology::Triangles : hecl::HMDLTopology::TriStrips, -1,
[&progress](int surfCount)
{
2016-03-04 15:04:53 -08:00
progress(hecl::SysFormat(_S("%d"), surfCount).c_str());
});
2015-10-14 16:07:29 -07:00
DNAMP1::CMDL::Cook(out, in, mesh);
2015-10-03 22:08:56 -07:00
}
2016-03-04 15:04:53 -08:00
void cookActor(const hecl::ProjectPath& out, const hecl::ProjectPath& in,
BlendStream& ds, bool fast, FCookProgress progress) const
2015-10-03 22:08:56 -07:00
{
2015-10-22 17:45:26 -07:00
Actor actor = ds.compileActor();
DNAMP1::ANCS::Cook(out, in, actor);
2015-10-03 22:08:56 -07:00
}
2016-03-04 15:04:53 -08:00
void cookArea(const hecl::ProjectPath& out, const hecl::ProjectPath& in,
BlendStream& ds, bool fast, FCookProgress progress) const
2015-10-03 22:08:56 -07:00
{
}
2016-03-04 15:04:53 -08:00
void cookYAML(const hecl::ProjectPath& out, const hecl::ProjectPath& in,
FILE* fin, FCookProgress progress) const
2015-10-03 22:08:56 -07:00
{
}
2015-07-01 16:50:39 -07:00
};
2016-03-04 15:04:53 -08:00
hecl::Database::DataSpecEntry SpecEntMP1 =
2015-07-05 18:33:06 -07:00
{
2015-07-01 16:50:39 -07:00
_S("MP1"),
_S("Data specification for original Metroid Prime engine"),
2016-03-04 15:04:53 -08:00
[](hecl::Database::Project& project, hecl::Database::DataSpecTool)
-> hecl::Database::IDataSpec* {return new struct SpecMP1(project);}
2015-07-05 18:33:06 -07:00
};
2015-07-01 16:50:39 -07:00
hecl::Database::DataSpecEntry SpecEntMP1PC =
{
_S("MP1-PC"),
_S("Data specification for PC-optimized Metroid Prime engine"),
[](hecl::Database::Project& project, hecl::Database::DataSpecTool)
-> hecl::Database::IDataSpec* {return nullptr;}
};
2015-07-01 16:50:39 -07:00
}