2015-07-13 06:29:12 +00:00
|
|
|
#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"
|
2015-07-13 06:29:12 +00:00
|
|
|
|
2015-10-01 00:40:21 +00:00
|
|
|
#include "DNAMP2/MLVL.hpp"
|
|
|
|
#include "DNAMP2/STRG.hpp"
|
2016-09-18 23:47:48 +00:00
|
|
|
#include "DNAMP2/AGSC.hpp"
|
2017-03-20 05:09:53 +00:00
|
|
|
#include "DNAMP2/MAPA.hpp"
|
2016-09-18 23:47:48 +00:00
|
|
|
#include "DNAMP1/CSNG.hpp"
|
2017-03-20 05:09:53 +00:00
|
|
|
#include "DNACommon/MAPU.hpp"
|
2015-10-01 00:40:21 +00:00
|
|
|
|
2016-04-01 04:25:00 +00:00
|
|
|
#include "hecl/ClientProcess.hpp"
|
2017-12-29 08:08:12 +00:00
|
|
|
#include "hecl/Blender/Connection.hpp"
|
2018-03-23 21:56:17 +00:00
|
|
|
#include "hecl/MultiProgressPrinter.hpp"
|
2016-04-01 04:25:00 +00:00
|
|
|
|
2016-10-02 22:41:36 +00:00
|
|
|
#include "Runtime/RetroTypes.hpp"
|
2017-12-29 08:08:12 +00:00
|
|
|
#include "nod/nod.hpp"
|
2016-10-02 22:41:36 +00:00
|
|
|
|
2016-02-13 09:02:47 +00:00
|
|
|
namespace DataSpec
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
|
|
|
|
2017-11-13 06:19:18 +00:00
|
|
|
using namespace std::literals;
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
static logvisor::Module Log("urde::SpecMP2");
|
|
|
|
extern hecl::Database::DataSpecEntry SpecEntMP2;
|
2017-01-17 01:23:19 +00:00
|
|
|
extern hecl::Database::DataSpecEntry SpecEntMP2ORIG;
|
2015-07-16 01:57:34 +00:00
|
|
|
|
2015-07-13 06:29:12 +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;
|
|
|
|
}
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
std::vector<const nod::Node*> m_nonPaks;
|
2015-07-17 00:01:05 +00:00
|
|
|
std::vector<DNAMP2::PAKBridge> m_paks;
|
2016-03-04 23:04:53 +00:00
|
|
|
std::map<std::string, DNAMP2::PAKBridge*, hecl::CaseInsensitiveCompare> m_orderedPaks;
|
2015-07-13 06:29:12 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
hecl::ProjectPath m_workPath;
|
|
|
|
hecl::ProjectPath m_cookPath;
|
2015-07-28 23:53:57 +00:00
|
|
|
PAKRouter<DNAMP2::PAKBridge> m_pakRouter;
|
|
|
|
|
2016-03-28 22:39:56 +00:00
|
|
|
SpecMP2(const hecl::Database::DataSpecEntry* specEntry, hecl::Database::Project& project, bool pc)
|
|
|
|
: SpecBase(specEntry, project, pc),
|
2015-10-01 00:40:21 +00:00
|
|
|
m_workPath(project.getProjectWorkingPath(), _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
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
void buildPaks(nod::Node& root,
|
|
|
|
const std::vector<hecl::SystemString>& args,
|
2015-07-13 06:29:12 +00:00
|
|
|
ExtractReport& rep)
|
|
|
|
{
|
2015-07-18 04:33:38 +00:00
|
|
|
m_nonPaks.clear();
|
2015-07-13 06:29:12 +00:00
|
|
|
m_paks.clear();
|
2016-03-04 23:04:53 +00:00
|
|
|
for (const nod::Node& child : root)
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2015-07-18 04:33:38 +00:00
|
|
|
bool isPak = false;
|
2017-11-13 06:19:18 +00:00
|
|
|
auto name = child.getName();
|
|
|
|
std::string lowerName(name);
|
2015-07-13 06:29:12 +00:00
|
|
|
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 */
|
2015-07-18 04:33:38 +00:00
|
|
|
isPak = true;
|
2015-07-13 06:29:12 +00: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 23:04:53 +00:00
|
|
|
hecl::SystemChar idxChar = lowerName[7];
|
|
|
|
for (const hecl::SystemString& arg : args)
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
|
|
|
if (arg.size() == 1 && iswdigit(arg[0]))
|
|
|
|
if (arg[0] == idxChar)
|
|
|
|
good = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
good = true;
|
|
|
|
|
|
|
|
if (!good)
|
|
|
|
{
|
2016-03-04 23:04:53 +00:00
|
|
|
for (const hecl::SystemString& arg : args)
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2017-11-13 06:19:18 +00:00
|
|
|
std::string lowerArg(hecl::SystemUTF8Conv(arg).str());
|
2015-07-13 06:29:12 +00:00
|
|
|
std::transform(lowerArg.begin(), lowerArg.end(), lowerArg.begin(), tolower);
|
|
|
|
if (!lowerArg.compare(0, lowerBase.size(), lowerBase))
|
|
|
|
good = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-25 06:39:38 +00:00
|
|
|
m_paks.emplace_back(child, good);
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
2015-07-18 04:33:38 +00:00
|
|
|
|
|
|
|
if (!isPak)
|
|
|
|
m_nonPaks.push_back(&child);
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Sort PAKs alphabetically */
|
|
|
|
m_orderedPaks.clear();
|
2015-07-17 00:01:05 +00:00
|
|
|
for (DNAMP2::PAKBridge& dpak : m_paks)
|
2017-11-13 06:19:18 +00:00
|
|
|
m_orderedPaks[std::string(dpak.getName())] = &dpak;
|
2015-07-13 06:29:12 +00:00
|
|
|
|
|
|
|
/* Assemble extract report */
|
2015-07-17 00:01:05 +00:00
|
|
|
for (const std::pair<std::string, DNAMP2::PAKBridge*>& item : m_orderedPaks)
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2015-09-28 01:13:27 +00:00
|
|
|
if (!item.second->m_doExtract)
|
|
|
|
continue;
|
2015-07-13 06:29:12 +00:00
|
|
|
rep.childOpts.emplace_back();
|
|
|
|
ExtractReport& childRep = rep.childOpts.back();
|
2017-11-13 06:19:18 +00:00
|
|
|
hecl::SystemStringConv nameView(item.first);
|
|
|
|
childRep.name = hecl::SystemString(nameView.sys_str());
|
2015-07-17 00:01:05 +00:00
|
|
|
childRep.desc = item.second->getLevelString();
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
bool checkFromStandaloneDisc(nod::DiscBase& disc,
|
|
|
|
const hecl::SystemString& regstr,
|
|
|
|
const std::vector<hecl::SystemString>& args,
|
2015-10-04 05:08:56 +00:00
|
|
|
std::vector<ExtractReport>& reps)
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2017-12-29 08:08:12 +00:00
|
|
|
nod::IPartition* partition = disc.getDataPartition();
|
2015-07-13 06:29:12 +00:00
|
|
|
std::unique_ptr<uint8_t[]> dolBuf = partition->getDOLBuf();
|
|
|
|
const char* buildInfo = (char*)memmem(dolBuf.get(), partition->getDOLSize(), "MetroidBuildInfo", 16) + 19;
|
2015-09-24 07:47:30 +00:00
|
|
|
if (!buildInfo)
|
|
|
|
return false;
|
2015-07-13 06:29:12 +00:00
|
|
|
|
|
|
|
/* Root Report */
|
|
|
|
reps.emplace_back();
|
|
|
|
ExtractReport& rep = reps.back();
|
|
|
|
rep.name = _S("MP2");
|
|
|
|
rep.desc = _S("Metroid Prime 2 ") + regstr;
|
2015-09-24 07:47:30 +00:00
|
|
|
std::string buildStr(buildInfo);
|
2017-11-13 06:19:18 +00:00
|
|
|
hecl::SystemStringConv buildView(buildStr);
|
2015-09-24 07:47:30 +00:00
|
|
|
rep.desc += _S(" (") + buildView + _S(")");
|
2015-07-13 06:29:12 +00:00
|
|
|
|
|
|
|
/* Iterate PAKs and build level options */
|
2016-03-04 23:04:53 +00:00
|
|
|
nod::Node& root = partition->getFSTRoot();
|
2015-08-05 21:46:07 +00:00
|
|
|
buildPaks(root, args, rep);
|
2015-07-13 06:29:12 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
bool checkFromTrilogyDisc(nod::DiscBase& disc,
|
|
|
|
const hecl::SystemString& regstr,
|
|
|
|
const std::vector<hecl::SystemString>& args,
|
2015-10-04 05:08:56 +00:00
|
|
|
std::vector<ExtractReport>& reps)
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2016-03-04 23:04:53 +00:00
|
|
|
std::vector<hecl::SystemString> mp2args;
|
2015-08-10 01:53:24 +00:00
|
|
|
bool doExtract = false;
|
2015-07-13 06:29:12 +00:00
|
|
|
if (args.size())
|
|
|
|
{
|
|
|
|
/* Needs filter */
|
2016-03-04 23:04:53 +00:00
|
|
|
for (const hecl::SystemString& arg : args)
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2016-03-04 23:04:53 +00:00
|
|
|
hecl::SystemString lowerArg = arg;
|
|
|
|
hecl::ToLower(lowerArg);
|
2015-07-22 19:05:18 +00:00
|
|
|
if (!lowerArg.compare(0, 3, _S("mp2")))
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2015-08-10 01:53:24 +00:00
|
|
|
doExtract = true;
|
2015-10-04 05:08:56 +00:00
|
|
|
mp2args.reserve(args.size());
|
2015-07-18 04:33:38 +00:00
|
|
|
size_t slashPos = arg.find(_S('/'));
|
2016-03-04 23:04:53 +00:00
|
|
|
if (slashPos == hecl::SystemString::npos)
|
2015-07-18 04:33:38 +00:00
|
|
|
slashPos = arg.find(_S('\\'));
|
2016-03-04 23:04:53 +00:00
|
|
|
if (slashPos != hecl::SystemString::npos)
|
|
|
|
mp2args.emplace_back(hecl::SystemString(arg.begin() + slashPos + 1, arg.end()));
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-18 04:33:38 +00:00
|
|
|
else
|
2015-08-10 01:53:24 +00:00
|
|
|
doExtract = true;
|
2015-07-18 04:33:38 +00:00
|
|
|
|
2015-08-10 01:53:24 +00:00
|
|
|
if (!doExtract)
|
|
|
|
return false;
|
2015-07-13 06:29:12 +00:00
|
|
|
|
2017-12-29 08:08:12 +00:00
|
|
|
nod::IPartition* partition = disc.getDataPartition();
|
2016-03-04 23:04:53 +00:00
|
|
|
nod::Node& root = partition->getFSTRoot();
|
|
|
|
nod::Node::DirectoryIterator dolIt = root.find("rs5mp2_p.dol");
|
2015-07-13 06:29:12 +00:00
|
|
|
if (dolIt == root.end())
|
2017-08-18 18:41:28 +00:00
|
|
|
{
|
|
|
|
dolIt = root.find("rs5mp2jpn_p.dol");
|
|
|
|
if (dolIt == root.end())
|
|
|
|
return false;
|
|
|
|
}
|
2015-07-13 06:29:12 +00:00
|
|
|
|
|
|
|
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);
|
2017-11-13 06:19:18 +00:00
|
|
|
hecl::SystemStringConv buildView(buildStr);
|
2015-07-18 04:33:38 +00:00
|
|
|
rep.desc += _S(" (") + buildView + _S(")");
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Iterate PAKs and build level options */
|
2016-03-04 23:04:53 +00:00
|
|
|
nod::Node::DirectoryIterator mp2It = root.find("MP2");
|
2015-07-13 06:29:12 +00:00
|
|
|
if (mp2It == root.end())
|
2017-08-18 18:33:18 +00:00
|
|
|
{
|
|
|
|
mp2It = root.find("MP2JPN");
|
|
|
|
if (mp2It == root.end())
|
|
|
|
return false;
|
|
|
|
}
|
2015-08-05 21:46:07 +00:00
|
|
|
buildPaks(*mp2It, mp2args, rep);
|
2015-07-13 06:29:12 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2015-07-16 01:57:34 +00:00
|
|
|
|
2018-03-28 08:09:41 +00:00
|
|
|
bool extractFromDisc(nod::DiscBase& disc, bool force, const hecl::MultiProgressPrinter& progress)
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2017-07-01 23:37:59 +00:00
|
|
|
nod::ExtractionContext ctx = {force, nullptr};
|
2015-10-15 22:25:33 +00:00
|
|
|
|
2016-03-02 01:49:21 +00:00
|
|
|
m_workPath.makeDir();
|
|
|
|
|
2018-03-23 21:56:17 +00:00
|
|
|
progress.startNewLine();
|
|
|
|
progress.print(_S("Indexing PAKs"), _S(""), 0.0);
|
2015-07-28 23:53:57 +00:00
|
|
|
m_pakRouter.build(m_paks, [&progress](float factor)
|
|
|
|
{
|
2018-03-23 21:56:17 +00:00
|
|
|
progress.print(_S("Indexing PAKs"), _S(""), factor);
|
2015-07-28 23:53:57 +00:00
|
|
|
});
|
2018-03-23 21:56:17 +00:00
|
|
|
progress.print(_S("Indexing PAKs"), _S(""), 1.0);
|
2015-07-28 23:53:57 +00:00
|
|
|
|
2016-03-05 00:03:41 +00:00
|
|
|
hecl::ProjectPath outPath(m_project.getProjectWorkingPath(), _S("out"));
|
2016-03-01 20:29:18 +00:00
|
|
|
outPath.makeDir();
|
2018-03-28 08:09:41 +00:00
|
|
|
disc.getDataPartition()->extractSysFiles(outPath.getAbsolutePath(), ctx);
|
|
|
|
hecl::ProjectPath mp2OutPath(outPath, m_standalone ? _S("files") : _S("files/MP2"));
|
2016-03-01 20:29:18 +00:00
|
|
|
mp2OutPath.makeDir();
|
2018-03-23 21:56:17 +00:00
|
|
|
progress.startNewLine();
|
|
|
|
progress.print(_S("MP2 Root"), _S(""), 0.0);
|
2015-07-20 23:25:16 +00:00
|
|
|
int prog = 0;
|
2018-03-23 21:56:17 +00:00
|
|
|
ctx.progressCB = [&prog, &progress](std::string_view name, float) {
|
2017-11-13 06:19:18 +00:00
|
|
|
hecl::SystemStringConv nameView(name);
|
2018-03-23 21:56:17 +00:00
|
|
|
progress.print(_S("MP2 Root"), nameView.c_str(), prog);
|
2015-09-29 05:17:54 +00:00
|
|
|
};
|
2016-03-04 23:04:53 +00:00
|
|
|
for (const nod::Node* node : m_nonPaks)
|
2015-07-20 23:25:16 +00:00
|
|
|
{
|
2016-03-01 20:29:18 +00:00
|
|
|
node->extractToDirectory(mp2OutPath.getAbsolutePath(), ctx);
|
2015-09-29 05:17:54 +00:00
|
|
|
prog++;
|
2015-07-20 23:25:16 +00:00
|
|
|
}
|
2018-03-23 21:56:17 +00:00
|
|
|
progress.print(_S("MP2 Root"), _S(""), 1.0);
|
2015-07-18 04:33:38 +00:00
|
|
|
|
2016-04-01 04:25:00 +00:00
|
|
|
hecl::ClientProcess process;
|
2018-03-23 21:56:17 +00:00
|
|
|
progress.startNewLine();
|
2016-04-08 03:30:00 +00:00
|
|
|
for (std::pair<const std::string, DNAMP2::PAKBridge*>& pair : m_orderedPaks)
|
2015-07-18 04:33:38 +00:00
|
|
|
{
|
2015-08-08 00:08:16 +00:00
|
|
|
DNAMP2::PAKBridge& pak = *pair.second;
|
2015-09-28 01:13:27 +00:00
|
|
|
if (!pak.m_doExtract)
|
|
|
|
continue;
|
|
|
|
|
2017-11-13 06:19:18 +00:00
|
|
|
auto name = pak.getName();
|
|
|
|
hecl::SystemStringConv sysName(name);
|
2015-07-20 23:25:16 +00:00
|
|
|
|
2017-11-14 03:36:36 +00:00
|
|
|
auto pakName = hecl::SystemString(sysName.sys_str());
|
2018-03-23 21:56:17 +00:00
|
|
|
process.addLambdaTransaction([this, &progress, &pak, pakName, force](hecl::blender::Token& btok)
|
2016-04-01 04:25:00 +00:00
|
|
|
{
|
2018-03-23 21:56:17 +00:00
|
|
|
int threadIdx = hecl::ClientProcess::GetThreadWorkerIdx();
|
2016-04-02 00:18:35 +00:00
|
|
|
m_pakRouter.extractResources(pak, force, btok,
|
2018-03-23 21:56:17 +00:00
|
|
|
[&progress, &pakName, threadIdx](const hecl::SystemChar* substr, float factor)
|
2016-04-01 04:25:00 +00:00
|
|
|
{
|
2018-03-23 21:56:17 +00:00
|
|
|
progress.print(pakName.c_str(), substr, factor, threadIdx);
|
2016-04-01 04:25:00 +00:00
|
|
|
});
|
2015-07-20 23:25:16 +00:00
|
|
|
});
|
2015-07-18 04:33:38 +00:00
|
|
|
}
|
|
|
|
|
2016-04-09 23:19:17 +00:00
|
|
|
process.waitUntilComplete();
|
|
|
|
|
2015-07-18 04:33:38 +00:00
|
|
|
return true;
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
2015-10-01 00:40:21 +00:00
|
|
|
|
2017-01-17 01:23:19 +00:00
|
|
|
const hecl::Database::DataSpecEntry& getOriginalSpec() const
|
2016-03-27 20:43:04 +00:00
|
|
|
{
|
2017-01-17 01:23:19 +00:00
|
|
|
return SpecEntMP2;
|
|
|
|
}
|
|
|
|
|
|
|
|
const hecl::Database::DataSpecEntry& getUnmodifiedSpec() const
|
|
|
|
{
|
|
|
|
return SpecEntMP2ORIG;
|
2016-03-27 20:43:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
hecl::ProjectPath getWorking(class UniqueID32& id)
|
2015-11-10 02:07:15 +00:00
|
|
|
{
|
|
|
|
return m_pakRouter.getWorking(id);
|
|
|
|
}
|
|
|
|
|
2016-10-01 23:20:20 +00:00
|
|
|
bool checkPathPrefix(const hecl::ProjectPath& path) const
|
2015-10-04 05:08:56 +00:00
|
|
|
{
|
2015-10-12 04:41:28 +00:00
|
|
|
return path.getRelativePath().compare(0, 4, _S("MP2/")) == 0;
|
2015-10-04 05:08:56 +00:00
|
|
|
}
|
|
|
|
|
2016-08-22 03:47:48 +00:00
|
|
|
bool validateYAMLDNAType(athena::io::IStreamReader& fp) const
|
2015-10-01 00:40:21 +00:00
|
|
|
{
|
2016-09-18 23:47:48 +00:00
|
|
|
athena::io::YAMLDocReader reader;
|
|
|
|
yaml_parser_set_input(reader.getParser(), (yaml_read_handler_t*)athena::io::YAMLAthenaReader, &fp);
|
|
|
|
return reader.ClassTypeOperation([](const char* classType)
|
|
|
|
{
|
|
|
|
if (!strcmp(classType, DNAMP2::MLVL::DNAType()))
|
|
|
|
return true;
|
|
|
|
else if (!strcmp(classType, DNAMP2::STRG::DNAType()))
|
|
|
|
return true;
|
|
|
|
else if (!strcmp(classType, "ATBL"))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
});
|
2015-10-01 00:40:21 +00:00
|
|
|
}
|
2015-10-04 05:08:56 +00:00
|
|
|
|
2017-12-29 08:08:12 +00:00
|
|
|
urde::SObjectTag buildTagFromPath(const hecl::ProjectPath& path, hecl::blender::Token& btok) const
|
2016-10-02 22:41:36 +00:00
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
void cookMesh(const hecl::ProjectPath& out, const hecl::ProjectPath& in,
|
2017-12-29 08:08:12 +00:00
|
|
|
BlendStream& ds, bool fast, hecl::blender::Token& btok,
|
2016-04-10 04:49:02 +00:00
|
|
|
FCookProgress progress)
|
2015-10-04 05:08:56 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-10-17 05:51:53 +00:00
|
|
|
void cookColMesh(const hecl::ProjectPath& out, const hecl::ProjectPath& in,
|
2017-12-29 08:08:12 +00:00
|
|
|
BlendStream& ds, bool fast, hecl::blender::Token& btok,
|
2017-10-17 05:51:53 +00:00
|
|
|
FCookProgress progress)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-02-25 08:23:27 +00:00
|
|
|
void cookPathMesh(const hecl::ProjectPath& out, const hecl::ProjectPath& in,
|
|
|
|
BlendStream& ds, bool fast, hecl::blender::Token& btok,
|
|
|
|
FCookProgress progress)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
void cookActor(const hecl::ProjectPath& out, const hecl::ProjectPath& in,
|
2017-12-29 08:08:12 +00:00
|
|
|
BlendStream& ds, bool fast, hecl::blender::Token& btok,
|
2016-04-10 04:49:02 +00:00
|
|
|
FCookProgress progress)
|
2015-10-04 05:08:56 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
void cookArea(const hecl::ProjectPath& out, const hecl::ProjectPath& in,
|
2017-12-29 08:08:12 +00:00
|
|
|
BlendStream& ds, bool fast, hecl::blender::Token& btok,
|
2016-04-10 04:49:02 +00:00
|
|
|
FCookProgress progress)
|
2015-10-04 05:08:56 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-09-30 22:43:19 +00:00
|
|
|
void cookWorld(const hecl::ProjectPath& out, const hecl::ProjectPath& in,
|
2017-12-29 08:08:12 +00:00
|
|
|
BlendStream& ds, bool fast, hecl::blender::Token& btok,
|
2016-09-30 22:43:19 +00:00
|
|
|
FCookProgress progress)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-01-17 01:23:19 +00:00
|
|
|
void cookGuiFrame(const hecl::ProjectPath& out, const hecl::ProjectPath& in,
|
2017-12-29 08:08:12 +00:00
|
|
|
BlendStream& ds, hecl::blender::Token& btok,
|
2017-01-17 01:23:19 +00:00
|
|
|
FCookProgress progress)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
void cookYAML(const hecl::ProjectPath& out, const hecl::ProjectPath& in,
|
2016-08-22 03:47:48 +00:00
|
|
|
athena::io::IStreamReader& fin, FCookProgress progress)
|
2015-10-04 05:08:56 +00:00
|
|
|
{
|
|
|
|
}
|
2016-09-18 23:47:48 +00:00
|
|
|
|
2016-10-02 22:41:36 +00:00
|
|
|
void flattenDependenciesYAML(athena::io::IStreamReader& fin, std::vector<hecl::ProjectPath>& pathsOut)
|
2017-11-15 04:12:13 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-03-28 08:09:41 +00:00
|
|
|
void flattenDependenciesANCSYAML(athena::io::IStreamReader& fin, std::vector<hecl::ProjectPath>& pathsOut, int charIdx)
|
2016-10-02 22:41:36 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-09-18 23:47:48 +00:00
|
|
|
void cookAudioGroup(const hecl::ProjectPath& out, const hecl::ProjectPath& in,
|
|
|
|
FCookProgress progress)
|
|
|
|
{
|
|
|
|
DNAMP2::AGSC::Cook(in, out);
|
|
|
|
progress(_S("Done"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void cookSong(const hecl::ProjectPath& out, const hecl::ProjectPath& in,
|
|
|
|
FCookProgress progress)
|
|
|
|
{
|
|
|
|
DNAMP1::CSNG::Cook(in, out);
|
|
|
|
progress(_S("Done"));
|
|
|
|
}
|
2017-03-20 05:09:53 +00:00
|
|
|
|
|
|
|
void cookMapArea(const hecl::ProjectPath& out, const hecl::ProjectPath& in,
|
2017-12-29 08:08:12 +00:00
|
|
|
BlendStream& ds, hecl::blender::Token& btok,
|
2017-03-20 05:09:53 +00:00
|
|
|
FCookProgress progress)
|
|
|
|
{
|
2017-12-29 08:08:12 +00:00
|
|
|
hecl::blender::MapArea mapa = ds.compileMapArea();
|
2017-03-20 05:09:53 +00:00
|
|
|
ds.close();
|
|
|
|
DNAMP2::MAPA::Cook(mapa, out);
|
|
|
|
progress(_S("Done"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void cookMapUniverse(const hecl::ProjectPath& out, const hecl::ProjectPath& in,
|
2017-12-29 08:08:12 +00:00
|
|
|
BlendStream& ds, hecl::blender::Token& btok,
|
2017-03-20 05:09:53 +00:00
|
|
|
FCookProgress progress)
|
|
|
|
{
|
2017-12-29 08:08:12 +00:00
|
|
|
hecl::blender::MapUniverse mapu = ds.compileMapUniverse();
|
2017-03-20 05:09:53 +00:00
|
|
|
ds.close();
|
|
|
|
DNAMAPU::MAPU::Cook(mapu, out);
|
|
|
|
progress(_S("Done"));
|
|
|
|
}
|
2015-07-13 06:29:12 +00:00
|
|
|
};
|
2015-07-01 23:50:39 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
hecl::Database::DataSpecEntry SpecEntMP2
|
2015-07-01 23:50:39 +00:00
|
|
|
(
|
2017-11-13 06:19:18 +00:00
|
|
|
_S("MP2"sv),
|
2018-04-02 04:27:24 +00:00
|
|
|
_S("Data specification for original Metroid Prime 2 engine"sv), _S(".pak"sv), 2,
|
2016-03-04 23:04:53 +00:00
|
|
|
[](hecl::Database::Project& project, hecl::Database::DataSpecTool)
|
2018-03-28 08:09:41 +00:00
|
|
|
-> std::unique_ptr<hecl::Database::IDataSpec> {return std::make_unique<SpecMP2>(&SpecEntMP2, project, false);}
|
2015-07-01 23:50:39 +00:00
|
|
|
);
|
2015-07-13 06:29:12 +00:00
|
|
|
|
2016-03-26 00:51:59 +00:00
|
|
|
hecl::Database::DataSpecEntry SpecEntMP2PC =
|
|
|
|
{
|
2017-11-13 06:19:18 +00:00
|
|
|
_S("MP2-PC"sv),
|
2018-04-02 04:27:24 +00:00
|
|
|
_S("Data specification for PC-optimized Metroid Prime 2 engine"sv), _S(".upak"sv), 2,
|
2016-03-27 20:43:04 +00:00
|
|
|
[](hecl::Database::Project& project, hecl::Database::DataSpecTool tool)
|
2018-03-28 08:09:41 +00:00
|
|
|
-> std::unique_ptr<hecl::Database::IDataSpec>
|
2016-03-27 20:43:04 +00:00
|
|
|
{
|
|
|
|
if (tool != hecl::Database::DataSpecTool::Extract)
|
2018-03-28 08:09:41 +00:00
|
|
|
return std::make_unique<SpecMP2>(&SpecEntMP2PC, project, true);
|
|
|
|
return {};
|
2016-03-27 20:43:04 +00:00
|
|
|
}
|
2016-03-26 00:51:59 +00:00
|
|
|
};
|
|
|
|
|
2017-01-17 01:23:19 +00:00
|
|
|
hecl::Database::DataSpecEntry SpecEntMP2ORIG =
|
|
|
|
{
|
2017-11-13 06:19:18 +00:00
|
|
|
_S("MP2-ORIG"sv),
|
|
|
|
_S("Data specification for unmodified Metroid Prime 2 resources"sv),
|
2018-04-02 04:27:24 +00:00
|
|
|
{}, 2, {}
|
2017-01-17 01:23:19 +00:00
|
|
|
};
|
|
|
|
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|