metaforce/DataSpec/SpecMP2.cpp

293 lines
9.7 KiB
C++
Raw Normal View History

#include <utility>
2015-07-01 23:50:39 +00:00
#include "SpecBase.hpp"
2015-07-17 00:01:05 +00:00
#include "DNAMP2/DNAMP2.hpp"
namespace Retro
{
2015-07-16 01:57:34 +00:00
static LogVisor::LogModule Log("Retro::SpecMP2");
extern HECL::Database::DataSpecEntry SpecEntMP2;
2015-07-16 01:57:34 +00:00
struct SpecMP2 : SpecBase
{
2015-07-14 01:07:15 +00:00
bool checkStandaloneID(const char* id) const
{
if (!memcmp(id, "G2M", 3))
return true;
return false;
}
std::vector<const NOD::DiscBase::IPartition::Node*> m_nonPaks;
2015-07-17 00:01:05 +00:00
std::vector<DNAMP2::PAKBridge> m_paks;
std::map<std::string, DNAMP2::PAKBridge*, CaseInsensitiveCompare> m_orderedPaks;
2015-07-28 23:53:57 +00:00
HECL::ProjectPath m_workPath;
HECL::ProjectPath m_cookPath;
PAKRouter<DNAMP2::PAKBridge> m_pakRouter;
SpecMP2(HECL::Database::Project& project)
2015-08-05 21:46:07 +00:00
: SpecBase(project),
m_workPath(project.getProjectRootPath(), _S("MP2")),
2015-07-28 23:53:57 +00:00
m_cookPath(project.getProjectCookedPath(SpecEntMP2), _S("MP2")),
2015-08-05 21:46:07 +00:00
m_pakRouter(*this, m_workPath, m_cookPath) {}
2015-07-28 23:53:57 +00:00
2015-08-05 21:46:07 +00:00
void buildPaks(NOD::DiscBase::IPartition::Node& root,
const std::vector<HECL::SystemString>& args,
ExtractReport& rep)
{
m_nonPaks.clear();
m_paks.clear();
for (const NOD::DiscBase::IPartition::Node& child : root)
{
bool isPak = false;
const std::string& name = child.getName();
std::string lowerName = name;
std::transform(lowerName.begin(), lowerName.end(), lowerName.begin(), tolower);
if (name.size() > 4)
{
std::string::iterator extit = lowerName.end() - 4;
if (!std::string(extit, lowerName.end()).compare(".pak"))
{
/* This is a pak */
isPak = true;
std::string lowerBase(lowerName.begin(), extit);
/* Needs filter */
bool good = true;
if (args.size())
{
good = false;
if (!lowerName.compare(0, 7, "metroid"))
{
HECL::SystemChar idxChar = lowerName[7];
for (const HECL::SystemString& arg : args)
{
if (arg.size() == 1 && iswdigit(arg[0]))
if (arg[0] == idxChar)
good = true;
}
}
else
good = true;
if (!good)
{
for (const HECL::SystemString& arg : args)
{
#if HECL_UCS2
std::string lowerArg = HECL::WideToUTF8(arg);
#else
std::string lowerArg = arg;
#endif
std::transform(lowerArg.begin(), lowerArg.end(), lowerArg.begin(), tolower);
if (!lowerArg.compare(0, lowerBase.size(), lowerBase))
good = true;
}
}
}
if (good)
2015-08-05 21:46:07 +00:00
m_paks.emplace_back(m_project, child);
}
}
if (!isPak)
m_nonPaks.push_back(&child);
}
/* Sort PAKs alphabetically */
m_orderedPaks.clear();
2015-07-17 00:01:05 +00:00
for (DNAMP2::PAKBridge& dpak : m_paks)
m_orderedPaks[dpak.getName()] = &dpak;
/* Assemble extract report */
2015-07-17 00:01:05 +00:00
for (const std::pair<std::string, DNAMP2::PAKBridge*>& item : m_orderedPaks)
{
rep.childOpts.emplace_back();
ExtractReport& childRep = rep.childOpts.back();
2015-07-22 19:05:18 +00:00
HECL::SystemStringView nameView(item.first);
childRep.name = nameView;
2015-07-17 00:01:05 +00:00
childRep.desc = item.second->getLevelString();
}
}
2015-08-05 21:46:07 +00:00
bool checkFromStandaloneDisc(NOD::DiscBase& disc,
const HECL::SystemString& regstr,
const std::vector<HECL::SystemString>& args,
std::vector<ExtractReport>& reps)
{
NOD::DiscGCN::IPartition* partition = disc.getDataPartition();
std::unique_ptr<uint8_t[]> dolBuf = partition->getDOLBuf();
const char* buildInfo = (char*)memmem(dolBuf.get(), partition->getDOLSize(), "MetroidBuildInfo", 16) + 19;
/* Root Report */
reps.emplace_back();
ExtractReport& rep = reps.back();
rep.name = _S("MP2");
rep.desc = _S("Metroid Prime 2 ") + regstr;
if (buildInfo)
{
2015-07-14 01:07:15 +00:00
std::string buildStr(buildInfo);
HECL::SystemStringView buildView(buildStr);
rep.desc += _S(" (") + buildView + _S(")");
}
/* Iterate PAKs and build level options */
NOD::DiscBase::IPartition::Node& root = partition->getFSTRoot();
2015-08-05 21:46:07 +00:00
buildPaks(root, args, rep);
return true;
}
2015-08-05 21:46:07 +00:00
bool checkFromTrilogyDisc(NOD::DiscBase& disc,
const HECL::SystemString& regstr,
const std::vector<HECL::SystemString>& args,
std::vector<ExtractReport>& reps)
{
std::vector<HECL::SystemString> mp2args;
bool doExtract = false;
if (args.size())
{
/* Needs filter */
for (const HECL::SystemString& arg : args)
{
HECL::SystemString lowerArg = arg;
HECL::ToLower(lowerArg);
2015-07-22 19:05:18 +00:00
if (!lowerArg.compare(0, 3, _S("mp2")))
{
doExtract = true;
size_t slashPos = arg.find(_S('/'));
if (slashPos == HECL::SystemString::npos)
slashPos = arg.find(_S('\\'));
if (slashPos != HECL::SystemString::npos)
mp2args.emplace_back(HECL::SystemString(arg.begin() + slashPos + 1, arg.end()));
}
}
}
else
doExtract = true;
if (!doExtract)
return false;
NOD::DiscGCN::IPartition* partition = disc.getDataPartition();
NOD::DiscBase::IPartition::Node& root = partition->getFSTRoot();
NOD::DiscBase::IPartition::Node::DirectoryIterator dolIt = root.find("rs5mp2_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("MP2");
rep.desc = _S("Metroid Prime 2 ") + regstr;
if (buildInfo)
{
std::string buildStr(buildInfo);
HECL::SystemStringView buildView(buildStr);
rep.desc += _S(" (") + buildView + _S(")");
}
/* Iterate PAKs and build level options */
NOD::DiscBase::IPartition::Node::DirectoryIterator mp2It = root.find("MP2");
if (mp2It == root.end())
return false;
2015-08-05 21:46:07 +00:00
buildPaks(*mp2It, mp2args, rep);
return true;
}
2015-07-16 01:57:34 +00:00
2015-08-05 21:46:07 +00:00
bool extractFromDisc(NOD::DiscBase&, bool force, FExtractProgress progress)
{
2015-07-28 23:53:57 +00:00
progress(_S("Indexing PAKs"), 2, 0.0);
m_pakRouter.build(m_paks, [&progress](float factor)
{
progress(_S("Indexing PAKs"), 2, factor);
});
progress(_S("Indexing PAKs"), 2, 1.0);
m_workPath.makeDir();
progress(_S("MP2 Root"), 3, 0.0);
2015-07-20 23:25:16 +00:00
int prog = 0;
for (const NOD::DiscBase::IPartition::Node* node : m_nonPaks)
2015-07-20 23:25:16 +00:00
{
2015-07-28 23:53:57 +00:00
node->extractToDirectory(m_workPath.getAbsolutePath(), force);
progress(_S("MP2 Root"), 3, prog++ / (float)m_nonPaks.size());
2015-07-20 23:25:16 +00:00
}
2015-07-28 23:53:57 +00:00
progress(_S("MP2 Root"), 3, 1.0);
2015-08-05 21:46:07 +00:00
const HECL::ProjectPath& cookPath = m_project.getProjectCookedPath(SpecEntMP2);
cookPath.makeDir();
2015-07-28 23:53:57 +00:00
m_cookPath.makeDir();
2015-07-28 23:53:57 +00:00
int compIdx = 4;
2015-07-20 23:25:16 +00:00
prog = 0;
2015-08-08 00:08:16 +00:00
for (std::pair<std::string, DNAMP2::PAKBridge*> pair : m_orderedPaks)
{
2015-08-08 00:08:16 +00:00
DNAMP2::PAKBridge& pak = *pair.second;
const std::string& name = pak.getName();
2015-07-20 23:25:16 +00:00
HECL::SystemStringView sysName(name);
progress(sysName.sys_str().c_str(), compIdx, 0.0);
m_pakRouter.extractResources(pak, force,
[&progress, &sysName, &compIdx](float factor)
2015-07-20 23:25:16 +00:00
{
progress(sysName.sys_str().c_str(), compIdx, factor);
});
progress(sysName.sys_str().c_str(), compIdx++, 1.0);
}
return true;
}
2015-08-05 21:46:07 +00:00
bool checkFromProject()
{
2015-07-22 19:05:18 +00:00
return false;
}
2015-08-05 21:46:07 +00:00
bool readFromProject()
{
2015-07-22 19:05:18 +00:00
return false;
}
bool visitGameObjects(std::function<bool(const HECL::Database::ObjectBase&)>)
{
2015-07-22 19:05:18 +00:00
return false;
}
struct LevelSpec : public ILevelSpec
{
bool visitLevelObjects(std::function<bool(const HECL::Database::ObjectBase&)>)
{
2015-07-22 19:05:18 +00:00
return false;
}
struct AreaSpec : public IAreaSpec
{
bool visitAreaObjects(std::function<bool(const HECL::Database::ObjectBase&)>)
{
2015-07-22 19:05:18 +00:00
return false;
}
};
bool visitAreas(std::function<bool(const IAreaSpec&)>)
{
2015-07-22 19:05:18 +00:00
return false;
}
};
bool visitLevels(std::function<bool(const ILevelSpec&)>)
{
2015-07-22 19:05:18 +00:00
return false;
}
};
2015-07-01 23:50:39 +00:00
HECL::Database::DataSpecEntry SpecEntMP2
2015-07-01 23:50:39 +00:00
(
_S("MP2"),
_S("Data specification for original Metroid Prime 2 engine"),
2015-07-28 23:53:57 +00:00
[](HECL::Database::Project& project, HECL::Database::DataSpecTool)
-> HECL::Database::IDataSpec* {return new struct SpecMP2(project);}
2015-07-01 23:50:39 +00:00
);
}