2015-07-13 06:29:12 +00:00
|
|
|
#include <utility>
|
2015-07-14 00:38:48 +00:00
|
|
|
#include <set>
|
2015-07-13 06:29:12 +00:00
|
|
|
|
2015-07-01 23:50:39 +00:00
|
|
|
#include "SpecBase.hpp"
|
2015-07-17 00:01:05 +00:00
|
|
|
#include "DNAMP3/DNAMP3.hpp"
|
2015-07-13 06:29:12 +00:00
|
|
|
|
|
|
|
namespace Retro
|
|
|
|
{
|
|
|
|
|
2015-07-16 01:57:34 +00:00
|
|
|
static LogVisor::LogModule Log("Retro::SpecMP3");
|
2015-07-18 04:33:38 +00:00
|
|
|
extern HECL::Database::DataSpecEntry SpecEntMP3;
|
2015-07-16 01:57:34 +00:00
|
|
|
|
2015-07-13 06:29:12 +00:00
|
|
|
struct SpecMP3 : SpecBase
|
|
|
|
{
|
2015-07-14 01:07:15 +00:00
|
|
|
bool checkStandaloneID(const char* id) const
|
|
|
|
{
|
|
|
|
if (!memcmp(id, "RM3", 3))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-07-18 04:33:38 +00:00
|
|
|
bool doMP3 = false;
|
|
|
|
std::vector<const NOD::DiscBase::IPartition::Node*> m_nonPaks;
|
2015-07-17 00:01:05 +00:00
|
|
|
std::vector<DNAMP3::PAKBridge> m_paks;
|
|
|
|
std::map<std::string, DNAMP3::PAKBridge*, CaseInsensitiveCompare> m_orderedPaks;
|
2015-07-13 06:29:12 +00:00
|
|
|
|
2015-07-18 04:33:38 +00:00
|
|
|
/* These are populated when extracting MPT's frontend (uses MP3's DataSpec) */
|
|
|
|
bool doMPTFE = false;
|
|
|
|
std::vector<const NOD::DiscBase::IPartition::Node*> m_feNonPaks;
|
|
|
|
std::vector<DNAMP3::PAKBridge> m_fePaks;
|
|
|
|
std::map<std::string, DNAMP3::PAKBridge*, CaseInsensitiveCompare> m_feOrderedPaks;
|
|
|
|
|
2015-07-17 00:01:05 +00:00
|
|
|
void buildPaks(HECL::Database::Project& project,
|
|
|
|
NOD::DiscBase::IPartition::Node& root,
|
2015-07-13 06:29:12 +00:00
|
|
|
const std::vector<HECL::SystemString>& args,
|
2015-07-18 04:33:38 +00:00
|
|
|
ExtractReport& rep,
|
|
|
|
bool fe)
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2015-07-18 04:33:38 +00:00
|
|
|
if (fe)
|
|
|
|
{
|
|
|
|
m_feNonPaks.clear();
|
|
|
|
m_fePaks.clear();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_nonPaks.clear();
|
|
|
|
m_paks.clear();
|
|
|
|
}
|
2015-07-13 06:29:12 +00:00
|
|
|
for (const NOD::DiscBase::IPartition::Node& child : root)
|
|
|
|
{
|
2015-07-18 04:33:38 +00:00
|
|
|
bool isPak = false;
|
2015-07-13 06:29:12 +00:00
|
|
|
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 */
|
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"))
|
|
|
|
{
|
|
|
|
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-07-18 04:33:38 +00:00
|
|
|
{
|
|
|
|
if (fe)
|
|
|
|
m_fePaks.emplace_back(project, child);
|
|
|
|
else
|
|
|
|
m_paks.emplace_back(project, child);
|
|
|
|
}
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
2015-07-18 04:33:38 +00:00
|
|
|
|
|
|
|
if (!isPak)
|
|
|
|
{
|
|
|
|
if (fe)
|
|
|
|
m_feNonPaks.push_back(&child);
|
|
|
|
else
|
|
|
|
m_nonPaks.push_back(&child);
|
|
|
|
}
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Sort PAKs alphabetically */
|
2015-07-18 04:33:38 +00:00
|
|
|
if (fe)
|
|
|
|
{
|
|
|
|
m_feOrderedPaks.clear();
|
|
|
|
for (DNAMP3::PAKBridge& dpak : m_fePaks)
|
|
|
|
m_feOrderedPaks[dpak.getName()] = &dpak;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_orderedPaks.clear();
|
|
|
|
for (DNAMP3::PAKBridge& dpak : m_paks)
|
|
|
|
m_orderedPaks[dpak.getName()] = &dpak;
|
|
|
|
}
|
2015-07-13 06:29:12 +00:00
|
|
|
|
|
|
|
/* Assemble extract report */
|
2015-07-18 04:33:38 +00:00
|
|
|
for (const std::pair<std::string, DNAMP3::PAKBridge*>& item : fe ? m_feOrderedPaks : m_orderedPaks)
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
|
|
|
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-14 00:38:48 +00:00
|
|
|
if (!item.first.compare("Worlds.pak"))
|
|
|
|
continue;
|
|
|
|
else if (!item.first.compare("Metroid6.pak"))
|
|
|
|
{
|
2015-07-16 01:57:34 +00:00
|
|
|
/* Phaaze doesn't have a world name D: */
|
2015-07-14 00:38:48 +00:00
|
|
|
childRep.desc = _S("Phaaze");
|
|
|
|
continue;
|
|
|
|
}
|
2015-07-17 00:01:05 +00:00
|
|
|
childRep.desc = item.second->getLevelString();
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-17 00:01:05 +00:00
|
|
|
bool checkFromStandaloneDisc(HECL::Database::Project& project,
|
|
|
|
NOD::DiscBase& disc,
|
2015-07-13 06:29:12 +00:00
|
|
|
const HECL::SystemString& regstr,
|
|
|
|
const std::vector<HECL::SystemString>& args,
|
|
|
|
std::vector<ExtractReport>& reps)
|
|
|
|
{
|
2015-07-18 04:33:38 +00:00
|
|
|
doMP3 = true;
|
2015-07-13 06:29:12 +00:00
|
|
|
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("MP3");
|
|
|
|
rep.desc = _S("Metroid Prime 3 ") + regstr;
|
|
|
|
if (buildInfo)
|
|
|
|
{
|
2015-07-14 01:07:15 +00:00
|
|
|
std::string buildStr(buildInfo);
|
|
|
|
HECL::SystemStringView 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 */
|
|
|
|
NOD::DiscBase::IPartition::Node& root = partition->getFSTRoot();
|
2015-07-18 04:33:38 +00:00
|
|
|
buildPaks(project, root, args, rep, false);
|
2015-07-13 06:29:12 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-07-17 00:01:05 +00:00
|
|
|
bool checkFromTrilogyDisc(HECL::Database::Project& project,
|
|
|
|
NOD::DiscBase& disc,
|
2015-07-13 06:29:12 +00:00
|
|
|
const HECL::SystemString& regstr,
|
|
|
|
const std::vector<HECL::SystemString>& args,
|
|
|
|
std::vector<ExtractReport>& reps)
|
|
|
|
{
|
|
|
|
std::vector<HECL::SystemString> mp3args;
|
2015-07-18 04:33:38 +00:00
|
|
|
std::vector<HECL::SystemString> feargs;
|
2015-07-13 06:29:12 +00:00
|
|
|
if (args.size())
|
|
|
|
{
|
|
|
|
/* Needs filter */
|
|
|
|
for (const HECL::SystemString& arg : args)
|
|
|
|
{
|
2015-07-18 04:33:38 +00:00
|
|
|
HECL::SystemString lowerArg = arg;
|
|
|
|
HECL::ToLower(lowerArg);
|
2015-07-22 19:05:18 +00:00
|
|
|
if (!lowerArg.compare(0, 3, _S("mp3")))
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2015-07-18 04:33:38 +00:00
|
|
|
doMP3 = true;
|
|
|
|
size_t slashPos = arg.find(_S('/'));
|
|
|
|
if (slashPos == HECL::SystemString::npos)
|
|
|
|
slashPos = arg.find(_S('\\'));
|
|
|
|
if (slashPos != HECL::SystemString::npos)
|
2015-07-13 06:29:12 +00:00
|
|
|
mp3args.emplace_back(HECL::SystemString(arg.begin() + slashPos + 1, arg.end()));
|
|
|
|
}
|
|
|
|
}
|
2015-07-18 04:33:38 +00:00
|
|
|
|
|
|
|
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, 2, _S("fe")))
|
2015-07-18 04:33:38 +00:00
|
|
|
{
|
|
|
|
doMPTFE = true;
|
|
|
|
size_t slashPos = arg.find(_S('/'));
|
|
|
|
if (slashPos == HECL::SystemString::npos)
|
|
|
|
slashPos = arg.find(_S('\\'));
|
|
|
|
if (slashPos != HECL::SystemString::npos)
|
|
|
|
feargs.emplace_back(HECL::SystemString(arg.begin() + slashPos + 1, arg.end()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
doMP3 = true;
|
|
|
|
doMPTFE = true;
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NOD::DiscGCN::IPartition* partition = disc.getDataPartition();
|
|
|
|
NOD::DiscBase::IPartition::Node& root = partition->getFSTRoot();
|
|
|
|
|
2015-07-18 04:33:38 +00:00
|
|
|
/* MP3 extract */
|
|
|
|
if (doMP3)
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2015-07-18 04:33:38 +00:00
|
|
|
NOD::DiscBase::IPartition::Node::DirectoryIterator dolIt = root.find("rs5mp3_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("MP3");
|
|
|
|
rep.desc = _S("Metroid Prime 3 ") + 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 mp3It = root.find("MP3");
|
|
|
|
if (mp3It == root.end())
|
|
|
|
return false;
|
|
|
|
buildPaks(project, *mp3It, mp3args, rep, false);
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
|
2015-07-18 04:33:38 +00:00
|
|
|
/* MPT Frontend extract */
|
|
|
|
if (doMPTFE)
|
|
|
|
{
|
|
|
|
NOD::DiscBase::IPartition::Node::DirectoryIterator dolIt = root.find("rs5fe_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("fe");
|
|
|
|
rep.desc = _S("Metroid Prime Trilogy Frontend ") + 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 feIt = root.find("fe");
|
|
|
|
if (feIt == root.end())
|
|
|
|
return false;
|
|
|
|
buildPaks(project, *feIt, feargs, rep, true);
|
|
|
|
}
|
2015-07-13 06:29:12 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2015-07-16 01:57:34 +00:00
|
|
|
|
2015-07-20 23:25:16 +00:00
|
|
|
bool extractFromDisc(HECL::Database::Project& project, NOD::DiscBase&, bool force,
|
|
|
|
FExtractProgress progress)
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2015-07-20 23:25:16 +00:00
|
|
|
int compIdx = 2;
|
|
|
|
int prog;
|
2015-07-18 04:33:38 +00:00
|
|
|
if (doMP3)
|
|
|
|
{
|
|
|
|
HECL::ProjectPath mp3WorkPath(project.getProjectRootPath(), "MP3");
|
|
|
|
mp3WorkPath.makeDir();
|
2015-07-20 23:25:16 +00:00
|
|
|
progress(_S("MP3 Root"), compIdx, 0.0);
|
|
|
|
prog = 0;
|
2015-07-18 04:33:38 +00:00
|
|
|
for (const NOD::DiscBase::IPartition::Node* node : m_nonPaks)
|
2015-07-20 23:25:16 +00:00
|
|
|
{
|
2015-07-18 04:33:38 +00:00
|
|
|
node->extractToDirectory(mp3WorkPath.getAbsolutePath(), force);
|
2015-07-20 23:25:16 +00:00
|
|
|
progress(_S("MP3 Root"), compIdx, prog++ / (float)m_nonPaks.size());
|
|
|
|
}
|
|
|
|
progress(_S("MP3 Root"), compIdx++, 1.0);
|
2015-07-18 04:33:38 +00:00
|
|
|
|
|
|
|
const HECL::ProjectPath& cookPath = project.getProjectCookedPath(SpecEntMP3);
|
|
|
|
cookPath.makeDir();
|
|
|
|
HECL::ProjectPath mp3CookPath(cookPath, "MP3");
|
|
|
|
mp3CookPath.makeDir();
|
|
|
|
|
2015-07-20 23:25:16 +00:00
|
|
|
prog = 0;
|
2015-07-18 04:33:38 +00:00
|
|
|
for (DNAMP3::PAKBridge& pak : m_paks)
|
|
|
|
{
|
|
|
|
const std::string& name = pak.getName();
|
2015-07-20 23:25:16 +00:00
|
|
|
HECL::SystemStringView sysName(name);
|
|
|
|
|
2015-07-18 04:33:38 +00:00
|
|
|
std::string::const_iterator extit = name.end() - 4;
|
|
|
|
std::string baseName(name.begin(), extit);
|
|
|
|
|
|
|
|
HECL::ProjectPath pakWorkPath(mp3WorkPath, baseName);
|
|
|
|
pakWorkPath.makeDir();
|
|
|
|
HECL::ProjectPath pakCookPath(mp3CookPath, baseName);
|
|
|
|
pakCookPath.makeDir();
|
2015-07-20 23:25:16 +00:00
|
|
|
|
|
|
|
progress(sysName.sys_str().c_str(), compIdx, 0.0);
|
|
|
|
pak.extractResources(pakWorkPath, pakCookPath, force,
|
|
|
|
[&progress, &sysName, &compIdx](float factor)
|
|
|
|
{
|
|
|
|
progress(sysName.sys_str().c_str(), compIdx, factor);
|
|
|
|
});
|
|
|
|
progress(sysName.sys_str().c_str(), compIdx++, 1.0);
|
2015-07-18 04:33:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (doMPTFE)
|
|
|
|
{
|
|
|
|
HECL::ProjectPath feWorkPath(project.getProjectRootPath(), "fe");
|
|
|
|
feWorkPath.makeDir();
|
2015-07-20 23:25:16 +00:00
|
|
|
progress(_S("fe Root"), compIdx, 0.0);
|
|
|
|
int prog = 0;
|
|
|
|
for (const NOD::DiscBase::IPartition::Node* node : m_nonPaks)
|
|
|
|
{
|
2015-07-18 04:33:38 +00:00
|
|
|
node->extractToDirectory(feWorkPath.getAbsolutePath(), force);
|
2015-07-20 23:25:16 +00:00
|
|
|
progress(_S("fe Root"), compIdx, prog++ / (float)m_nonPaks.size());
|
|
|
|
}
|
|
|
|
progress(_S("fe Root"), compIdx++, 1.0);
|
2015-07-18 04:33:38 +00:00
|
|
|
|
|
|
|
const HECL::ProjectPath& cookPath = project.getProjectCookedPath(SpecEntMP3);
|
|
|
|
cookPath.makeDir();
|
|
|
|
HECL::ProjectPath feCookPath(cookPath, "fe");
|
|
|
|
feCookPath.makeDir();
|
|
|
|
|
2015-07-20 23:25:16 +00:00
|
|
|
prog = 0;
|
2015-07-18 04:33:38 +00:00
|
|
|
for (DNAMP3::PAKBridge& pak : m_fePaks)
|
|
|
|
{
|
|
|
|
const std::string& name = pak.getName();
|
2015-07-20 23:25:16 +00:00
|
|
|
HECL::SystemStringView sysName(name);
|
|
|
|
|
2015-07-18 04:33:38 +00:00
|
|
|
std::string::const_iterator extit = name.end() - 4;
|
|
|
|
std::string baseName(name.begin(), extit);
|
|
|
|
|
|
|
|
HECL::ProjectPath pakWorkPath(feWorkPath, baseName);
|
|
|
|
pakWorkPath.makeDir();
|
|
|
|
HECL::ProjectPath pakCookPath(feCookPath, baseName);
|
|
|
|
pakCookPath.makeDir();
|
2015-07-20 23:25:16 +00:00
|
|
|
|
|
|
|
progress(sysName.sys_str().c_str(), compIdx, 0.0);
|
|
|
|
pak.extractResources(pakWorkPath, pakCookPath, force,
|
|
|
|
[&progress, &sysName, &compIdx](float factor)
|
|
|
|
{
|
|
|
|
progress(sysName.sys_str().c_str(), compIdx, factor);
|
|
|
|
});
|
|
|
|
progress(sysName.sys_str().c_str(), compIdx++, 1.0);
|
2015-07-18 04:33:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool checkFromProject(HECL::Database::Project& proj)
|
|
|
|
{
|
2015-07-22 19:05:18 +00:00
|
|
|
return false;
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
bool readFromProject(HECL::Database::Project& proj)
|
|
|
|
{
|
2015-07-22 19:05:18 +00:00
|
|
|
return false;
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool visitGameObjects(std::function<bool(const HECL::Database::ObjectBase&)>)
|
|
|
|
{
|
2015-07-22 19:05:18 +00:00
|
|
|
return false;
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
struct LevelSpec : public ILevelSpec
|
|
|
|
{
|
|
|
|
bool visitLevelObjects(std::function<bool(const HECL::Database::ObjectBase&)>)
|
|
|
|
{
|
2015-07-22 19:05:18 +00:00
|
|
|
return false;
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
struct AreaSpec : public IAreaSpec
|
|
|
|
{
|
|
|
|
bool visitAreaObjects(std::function<bool(const HECL::Database::ObjectBase&)>)
|
|
|
|
{
|
2015-07-22 19:05:18 +00:00
|
|
|
return false;
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
bool visitAreas(std::function<bool(const IAreaSpec&)>)
|
|
|
|
{
|
2015-07-22 19:05:18 +00:00
|
|
|
return false;
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
bool visitLevels(std::function<bool(const ILevelSpec&)>)
|
|
|
|
{
|
2015-07-22 19:05:18 +00:00
|
|
|
return false;
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
};
|
2015-07-01 23:50:39 +00:00
|
|
|
|
2015-07-18 04:33:38 +00:00
|
|
|
HECL::Database::DataSpecEntry SpecEntMP3
|
2015-07-01 23:50:39 +00:00
|
|
|
(
|
|
|
|
_S("MP3"),
|
|
|
|
_S("Data specification for original Metroid Prime 3 engine"),
|
2015-07-13 06:29:12 +00:00
|
|
|
[](HECL::Database::DataSpecTool tool) -> HECL::Database::IDataSpec* {return new struct SpecMP3;}
|
2015-07-01 23:50:39 +00:00
|
|
|
);
|
|
|
|
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|