2015-07-17 00:01:05 +00:00
|
|
|
#define NOD_ATHENA 1
|
2015-07-16 01:57:34 +00:00
|
|
|
#include "DNAMP2.hpp"
|
2015-07-17 00:01:05 +00:00
|
|
|
#include "STRG.hpp"
|
|
|
|
#include "MLVL.hpp"
|
2015-07-16 01:57:34 +00:00
|
|
|
|
|
|
|
namespace Retro
|
|
|
|
{
|
|
|
|
namespace DNAMP2
|
|
|
|
{
|
2015-07-17 00:01:05 +00:00
|
|
|
|
2015-07-16 01:57:34 +00:00
|
|
|
LogVisor::LogModule Log("Retro::DNAMP2");
|
2015-07-17 00:01:05 +00:00
|
|
|
|
|
|
|
PAKBridge::PAKBridge(HECL::Database::Project& project, const NOD::DiscBase::IPartition::Node& node)
|
2015-07-18 04:33:38 +00:00
|
|
|
: m_project(project), m_node(node), m_pak(true)
|
2015-07-17 00:01:05 +00:00
|
|
|
{
|
|
|
|
NOD::AthenaPartReadStream rs(node.beginReadStream());
|
|
|
|
m_pak.read(rs);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string PAKBridge::getLevelString() const
|
|
|
|
{
|
|
|
|
std::string retval;
|
|
|
|
for (const DNAMP1::PAK::Entry& entry : m_pak.m_entries)
|
|
|
|
{
|
|
|
|
if (entry.type == Retro::MLVL)
|
|
|
|
{
|
|
|
|
PAKEntryReadStream rs = entry.beginReadStream(m_node);
|
|
|
|
MLVL mlvl;
|
|
|
|
mlvl.read(rs);
|
|
|
|
const DNAMP1::PAK::Entry* nameEnt = m_pak.lookupEntry(mlvl.worldNameId);
|
|
|
|
if (nameEnt)
|
|
|
|
{
|
|
|
|
PAKEntryReadStream rs = nameEnt->beginReadStream(m_node);
|
|
|
|
STRG mlvlName;
|
|
|
|
mlvlName.read(rs);
|
|
|
|
if (retval.size())
|
|
|
|
retval += _S(", ");
|
2015-07-18 04:33:38 +00:00
|
|
|
retval += mlvlName.getUTF8(ENGL, 0);
|
2015-07-17 00:01:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
ResExtractor PAKBridge::LookupExtractor(const DNAMP1::PAK::Entry& entry)
|
|
|
|
{
|
|
|
|
if (entry.type == Retro::STRG)
|
2015-07-18 04:33:38 +00:00
|
|
|
return {STRG::Extract<STRG>, ".as"};
|
2015-07-17 00:01:05 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2015-07-18 04:33:38 +00:00
|
|
|
bool PAKBridge::extractResources(const HECL::ProjectPath& workingOut,
|
|
|
|
const HECL::ProjectPath& cookedOut,
|
|
|
|
bool force)
|
2015-07-17 00:01:05 +00:00
|
|
|
{
|
|
|
|
for (const std::pair<UniqueID32, DNAMP1::PAK::Entry*>& item : m_pak.m_idMap)
|
|
|
|
{
|
2015-07-18 04:33:38 +00:00
|
|
|
PAKEntryReadStream s;
|
2015-07-17 00:01:05 +00:00
|
|
|
ResExtractor extractor = LookupExtractor(*item.second);
|
|
|
|
if (extractor.func)
|
|
|
|
{
|
2015-07-18 04:33:38 +00:00
|
|
|
HECL::ProjectPath workPath(workingOut, m_pak.bestEntryName(*item.second) + extractor.fileExt);
|
|
|
|
if (force || workPath.getPathType() == HECL::ProjectPath::PT_NONE)
|
|
|
|
{
|
|
|
|
s = item.second->beginReadStream(m_node);
|
|
|
|
extractor.func(s, workPath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
HECL::ProjectPath cookPath(cookedOut, m_pak.bestEntryName(*item.second));
|
|
|
|
if (force || cookPath.getPathType() == HECL::ProjectPath::PT_NONE)
|
|
|
|
{
|
|
|
|
if (!s)
|
|
|
|
s = item.second->beginReadStream(m_node);
|
|
|
|
FILE* fout = HECL::Fopen(cookPath.getAbsolutePath().c_str(), _S("wb"));
|
|
|
|
fwrite(s.data(), 1, s.length(), fout);
|
|
|
|
fclose(fout);
|
2015-07-17 00:01:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-07-16 01:57:34 +00:00
|
|
|
}
|
|
|
|
}
|