metaforce/DataSpec/SpecMP1.cpp

283 lines
9.6 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-06 20:22:44 -07:00
#define NOD_ATHENA 1
2015-07-01 16:50:39 -07:00
#include "SpecBase.hpp"
2015-07-06 20:22:44 -07:00
#include "DNAMP1/PAK.hpp"
2015-07-09 22:28:08 -07:00
#include "DNAMP1/MLVL.hpp"
#include "DNAMP1/STRG.hpp"
2015-07-01 16:50:39 -07:00
namespace Retro
{
2015-07-15 18:57:34 -07:00
static LogVisor::LogModule Log("Retro::SpecMP1");
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;
}
2015-07-11 21:26:26 -07:00
struct DiscPAK
{
const NOD::DiscBase::IPartition::Node& node;
DNAMP1::PAK pak;
DiscPAK(const NOD::DiscBase::IPartition::Node& n) : node(n) {}
};
std::vector<DiscPAK> m_paks;
2015-07-12 11:07:58 -07:00
std::map<std::string, DiscPAK*, CaseInsensitiveCompare> m_orderedPaks;
2015-07-06 20:22:44 -07:00
2015-07-12 11:07:58 -07:00
void buildPaks(NOD::DiscBase::IPartition::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
{
2015-07-12 11:07:58 -07:00
m_paks.clear();
2015-07-06 20:22:44 -07:00
for (const NOD::DiscBase::IPartition::Node& child : root)
{
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 */
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)
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)
{
for (const HECL::SystemString& arg : args)
2015-07-09 22:28:08 -07:00
{
#if HECL_UCS2
std::string lowerArg = HECL::WideToUTF8(arg);
2015-07-09 22:28:08 -07:00
#else
std::string lowerArg = arg;
2015-07-09 22:28:08 -07:00
#endif
std::transform(lowerArg.begin(), lowerArg.end(), lowerArg.begin(), tolower);
if (!lowerArg.compare(0, lowerBase.size(), lowerBase))
good = true;
}
}
}
if (good)
{
2015-07-11 21:26:26 -07:00
m_paks.emplace_back(child);
2015-07-09 22:28:08 -07:00
NOD::AthenaPartReadStream rs(child.beginReadStream());
2015-07-11 21:26:26 -07:00
m_paks.back().pak.read(rs);
2015-07-09 22:28:08 -07:00
}
2015-07-06 20:22:44 -07:00
}
}
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-11 21:26:26 -07:00
for (DiscPAK& dpak : m_paks)
2015-07-12 11:07:58 -07:00
m_orderedPaks[dpak.node.getName()] = &dpak;
2015-07-11 21:26:26 -07:00
2015-07-12 11:07:58 -07:00
/* Assemble extract report */
2015-07-15 18:57:34 -07:00
for (const std::pair<std::string, DiscPAK*>& item : m_orderedPaks)
2015-07-09 22:28:08 -07:00
{
rep.childOpts.emplace_back();
ExtractReport& childRep = rep.childOpts.back();
childRep.name = item.first;
2015-07-06 20:22:44 -07:00
2015-07-11 21:26:26 -07:00
DNAMP1::PAK& pak = item.second->pak;
for (DNAMP1::PAK::Entry& entry : pak.m_entries)
2015-07-09 22:28:08 -07:00
{
if (entry.type == MLVL)
2015-07-09 22:28:08 -07:00
{
2015-07-13 17:38:48 -07:00
PAKEntryReadStream rs = entry.beginReadStream(item.second->node);
2015-07-09 22:28:08 -07:00
DNAMP1::MLVL mlvl;
mlvl.read(rs);
2015-07-11 21:26:26 -07:00
const DNAMP1::PAK::Entry* nameEnt = pak.lookupEntry(mlvl.worldNameId);
2015-07-09 22:28:08 -07:00
if (nameEnt)
{
2015-07-13 17:38:48 -07:00
PAKEntryReadStream rs = nameEnt->beginReadStream(item.second->node);
2015-07-09 22:28:08 -07:00
DNAMP1::STRG mlvlName;
mlvlName.read(rs);
if (childRep.desc.size())
childRep.desc += _S(", ");
childRep.desc += mlvlName.getSystemString(ENGL, 0);
2015-07-09 22:28:08 -07:00
}
}
}
2015-07-06 20:22:44 -07:00
}
2015-07-01 16:50:39 -07:00
}
2015-07-12 11:07:58 -07:00
bool checkFromStandaloneDisc(NOD::DiscBase& disc,
const HECL::SystemString& regstr,
const std::vector<HECL::SystemString>& args,
2015-07-12 11:07:58 -07:00
std::vector<ExtractReport>& reps)
2015-07-01 16:50:39 -07:00
{
2015-07-12 11:07:58 -07: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;
2015-07-06 20:22:44 -07:00
/* 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);
HECL::SystemStringView buildView(buildStr);
rep.desc += _S(" (") + buildView.sys_str() + _S(")");
}
2015-07-12 11:07:58 -07:00
/* Iterate PAKs and build level options */
NOD::DiscBase::IPartition::Node& root = partition->getFSTRoot();
2015-07-12 11:07:58 -07:00
buildPaks(root, args, rep);
return true;
2015-07-01 16:50:39 -07:00
}
2015-07-12 11:07:58 -07:00
bool checkFromTrilogyDisc(NOD::DiscBase& disc,
const HECL::SystemString& regstr,
const std::vector<HECL::SystemString>& args,
2015-07-12 11:07:58 -07:00
std::vector<ExtractReport>& reps)
2015-07-01 16:50:39 -07:00
{
std::vector<HECL::SystemString> mp1args;
if (args.size())
{
/* Needs filter */
for (const HECL::SystemString& arg : args)
{
size_t slashPos = arg.find(_S('/'));
if (slashPos == HECL::SystemString::npos)
slashPos = arg.find(_S('\\'));
if (slashPos != HECL::SystemString::npos)
{
HECL::SystemString lowerArg(arg.begin(), arg.begin() + slashPos);
HECL::ToLower(lowerArg);
if (!lowerArg.compare(_S("mp1")))
mp1args.emplace_back(HECL::SystemString(arg.begin() + slashPos + 1, arg.end()));
}
}
}
NOD::DiscGCN::IPartition* partition = disc.getDataPartition();
NOD::DiscBase::IPartition::Node& root = partition->getFSTRoot();
NOD::DiscBase::IPartition::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);
HECL::SystemStringView buildView(buildStr);
rep.desc += _S(" (") + buildView.sys_str() + _S(")");
}
/* Iterate PAKs and build level options */
NOD::DiscBase::IPartition::Node::DirectoryIterator mp1It = root.find("MP1");
if (mp1It == root.end())
return false;
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
bool extractFromDisc(NOD::DiscBase& disc, const HECL::Database::Project& project)
2015-07-01 16:50:39 -07:00
{
2015-07-15 18:57:34 -07:00
HECL::ProjectPath mp1Path(project.getProjectRootPath(), "MP1");
for (const DiscPAK& pak : m_paks)
{
const std::string& name = pak.node.getName();
std::string::const_iterator extit = name.end() - 4;
std::string baseName(name.begin(), extit);
HECL::ProjectPath pakPath(mp1Path, baseName);
for (const std::pair<UniqueID32, DNAMP1::PAK::Entry*>& item : pak.pak.m_idMap)
{
if (item.second->type == STRG)
{
DNAMP1::STRG strg;
PAKEntryReadStream strgIn = item.second->beginReadStream(pak.node);
strg.read(strgIn);
HECL::SystemChar strgPath[1024];
HECL::SNPrintf(strgPath, 1024, _S("%s/%08X.strg"), pakPath.getAbsolutePath().c_str(), item.second->id.toUint32());
std::ofstream strgOut(strgPath);
strg.writeAngelScript(strgOut);
}
}
}
return true;
2015-07-01 16:50:39 -07:00
}
2015-07-06 20:22:44 -07:00
bool checkFromProject(HECL::Database::Project& proj)
2015-07-01 16:50:39 -07:00
{
}
2015-07-06 20:22:44 -07:00
bool readFromProject(HECL::Database::Project& proj)
2015-07-01 16:50:39 -07:00
{
}
bool visitGameObjects(std::function<bool(const HECL::Database::ObjectBase&)>)
{
}
struct LevelSpec : public ILevelSpec
{
bool visitLevelObjects(std::function<bool(const HECL::Database::ObjectBase&)>)
{
}
struct AreaSpec : public IAreaSpec
{
bool visitAreaObjects(std::function<bool(const HECL::Database::ObjectBase&)>)
{
}
};
bool visitAreas(std::function<bool(const IAreaSpec&)>)
{
}
};
bool visitLevels(std::function<bool(const ILevelSpec&)>)
{
}
};
2015-07-05 18:33:06 -07:00
HECL::Database::DataSpecEntry SpecMP1 =
{
2015-07-01 16:50:39 -07:00
_S("MP1"),
_S("Data specification for original Metroid Prime engine"),
[](HECL::Database::DataSpecTool) -> HECL::Database::IDataSpec* {return new struct SpecMP1;}
2015-07-05 18:33:06 -07:00
};
2015-07-01 16:50:39 -07:00
}