2015-07-18 04:33:38 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2015-07-17 00:01:05 +00:00
|
|
|
#define NOD_ATHENA 1
|
2015-07-16 01:57:34 +00:00
|
|
|
#include "DNAMP1.hpp"
|
2015-07-17 00:01:05 +00:00
|
|
|
#include "STRG.hpp"
|
|
|
|
#include "MLVL.hpp"
|
2015-07-19 06:19:46 +00:00
|
|
|
#include "../DNACommon/TXTR.hpp"
|
2015-07-28 02:24:36 +00:00
|
|
|
#include "CMDL.hpp"
|
2015-08-08 23:24:17 +00:00
|
|
|
#include "ANCS.hpp"
|
2015-07-16 01:57:34 +00:00
|
|
|
|
|
|
|
namespace Retro
|
|
|
|
{
|
|
|
|
namespace DNAMP1
|
|
|
|
{
|
|
|
|
LogVisor::LogModule Log("Retro::DNAMP1");
|
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(false)
|
2015-07-17 00:01:05 +00:00
|
|
|
{
|
|
|
|
NOD::AthenaPartReadStream rs(node.beginReadStream());
|
|
|
|
m_pak.read(rs);
|
|
|
|
|
2015-08-04 02:14:47 +00:00
|
|
|
/* Append Level String */
|
2015-07-17 00:01:05 +00:00
|
|
|
for (const PAK::Entry& entry : m_pak.m_entries)
|
|
|
|
{
|
2015-08-23 06:42:29 +00:00
|
|
|
if (entry.type == FOURCC('MLVL'))
|
2015-07-17 00:01:05 +00:00
|
|
|
{
|
|
|
|
PAKEntryReadStream rs = entry.beginReadStream(m_node);
|
|
|
|
MLVL mlvl;
|
|
|
|
mlvl.read(rs);
|
|
|
|
const PAK::Entry* nameEnt = m_pak.lookupEntry(mlvl.worldNameId);
|
|
|
|
if (nameEnt)
|
|
|
|
{
|
|
|
|
PAKEntryReadStream rs = nameEnt->beginReadStream(m_node);
|
|
|
|
STRG mlvlName;
|
|
|
|
mlvlName.read(rs);
|
2015-08-04 02:14:47 +00:00
|
|
|
if (m_levelString.size())
|
|
|
|
m_levelString += _S(", ");
|
2015-08-10 20:49:19 +00:00
|
|
|
m_levelString += mlvlName.getSystemString(FOURCC('ENGL'), 0);
|
2015-08-04 02:14:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
UniqueResult PAKBridge::uniqueCheck(const PAK::Entry& entry)
|
|
|
|
{
|
|
|
|
UniqueResult::Type result = UniqueResult::UNIQUE_NOTFOUND;
|
|
|
|
bool foundOneLayer = false;
|
|
|
|
UniqueID32 areaId;
|
|
|
|
unsigned layerIdx;
|
|
|
|
for (const auto& pair : m_areaDeps)
|
|
|
|
{
|
|
|
|
unsigned l=0;
|
|
|
|
for (const auto& layer : pair.second.layers)
|
|
|
|
{
|
|
|
|
if (layer.resources.find(entry.id) != layer.resources.end())
|
|
|
|
{
|
|
|
|
if (foundOneLayer)
|
|
|
|
{
|
|
|
|
if (areaId == pair.first)
|
|
|
|
result = UniqueResult::UNIQUE_AREA;
|
|
|
|
else
|
|
|
|
return {UniqueResult::UNIQUE_LEVEL};
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
result = UniqueResult::UNIQUE_LAYER;
|
|
|
|
areaId = pair.first;
|
|
|
|
layerIdx = l;
|
|
|
|
foundOneLayer = true;
|
|
|
|
}
|
|
|
|
++l;
|
|
|
|
}
|
|
|
|
if (pair.second.resources.find(entry.id) != pair.second.resources.end())
|
|
|
|
{
|
|
|
|
if (foundOneLayer)
|
|
|
|
{
|
|
|
|
if (areaId == pair.first)
|
|
|
|
result = UniqueResult::UNIQUE_AREA;
|
|
|
|
else
|
|
|
|
return {UniqueResult::UNIQUE_LEVEL};
|
|
|
|
continue;
|
2015-07-17 00:01:05 +00:00
|
|
|
}
|
2015-08-04 02:14:47 +00:00
|
|
|
else
|
|
|
|
result = UniqueResult::UNIQUE_AREA;
|
|
|
|
areaId = pair.first;
|
|
|
|
foundOneLayer = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
UniqueResult retval = {result};
|
|
|
|
if (result == UniqueResult::UNIQUE_LAYER || result == UniqueResult::UNIQUE_AREA)
|
|
|
|
{
|
|
|
|
const PAKBridge::Area& area = m_areaDeps[areaId];
|
|
|
|
retval.areaName = &area.name;
|
|
|
|
if (result == UniqueResult::UNIQUE_LAYER)
|
|
|
|
{
|
|
|
|
const PAKBridge::Area::Layer& layer = area.layers[layerIdx];
|
|
|
|
retval.layerName = &layer.name;
|
2015-07-17 00:01:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2015-08-04 02:14:47 +00:00
|
|
|
static HECL::SystemString LayerName(const std::string& name)
|
|
|
|
{
|
|
|
|
#if HECL_UCS2
|
|
|
|
HECL::SystemString ret = HECL::UTF8ToWide(mlvl.layerNames[layerIdx++]);
|
|
|
|
#else
|
|
|
|
HECL::SystemString ret = name;
|
|
|
|
#endif
|
|
|
|
for (auto& ch : ret)
|
|
|
|
if (ch == _S('/') || ch == _S('\\'))
|
|
|
|
ch = _S('-');
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PAKBridge::build()
|
|
|
|
{
|
|
|
|
/* First pass: build per-area/per-layer dependency map */
|
|
|
|
for (const PAK::Entry& entry : m_pak.m_entries)
|
|
|
|
{
|
2015-08-23 06:42:29 +00:00
|
|
|
if (entry.type == FOURCC('MLVL'))
|
2015-08-04 02:14:47 +00:00
|
|
|
{
|
|
|
|
PAKEntryReadStream rs = entry.beginReadStream(m_node);
|
|
|
|
MLVL mlvl;
|
|
|
|
mlvl.read(rs);
|
|
|
|
m_areaDeps.reserve(mlvl.areaCount);
|
|
|
|
unsigned layerIdx = 0;
|
|
|
|
for (const MLVL::Area& area : mlvl.areas)
|
|
|
|
{
|
|
|
|
Area& areaDeps = m_areaDeps[area.areaMREAId];
|
|
|
|
const PAK::Entry* areaNameEnt = m_pak.lookupEntry(area.areaNameId);
|
|
|
|
if (areaNameEnt)
|
|
|
|
{
|
|
|
|
STRG areaName;
|
|
|
|
PAKEntryReadStream rs = areaNameEnt->beginReadStream(m_node);
|
|
|
|
areaName.read(rs);
|
2015-08-10 20:49:19 +00:00
|
|
|
areaDeps.name = areaName.getSystemString(FOURCC('ENGL'), 0);
|
2015-08-04 02:14:47 +00:00
|
|
|
}
|
2015-08-04 02:46:48 +00:00
|
|
|
if (areaDeps.name.empty())
|
|
|
|
{
|
|
|
|
#if HECL_UCS2
|
|
|
|
areaDeps.name = _S("MREA_") + HECL::UTF8ToWide(area.areaMREAId.toString());
|
|
|
|
#else
|
|
|
|
areaDeps.name = "MREA_" + area.areaMREAId.toString();
|
|
|
|
#endif
|
|
|
|
}
|
2015-08-04 02:14:47 +00:00
|
|
|
|
|
|
|
areaDeps.layers.reserve(area.depLayerCount-1);
|
|
|
|
unsigned r=0;
|
|
|
|
for (unsigned l=1 ; l<area.depLayerCount ; ++l)
|
|
|
|
{
|
|
|
|
areaDeps.layers.emplace_back();
|
|
|
|
Area::Layer& layer = areaDeps.layers.back();
|
|
|
|
layer.name = LayerName(mlvl.layerNames[layerIdx++]);
|
|
|
|
layer.resources.reserve(area.depLayers[l] - r);
|
|
|
|
for (; r<area.depLayers[l] ; ++r)
|
|
|
|
layer.resources.emplace(area.deps[r].id);
|
|
|
|
}
|
|
|
|
areaDeps.resources.reserve(area.depCount - r);
|
|
|
|
for (; r<area.depCount ; ++r)
|
|
|
|
areaDeps.resources.emplace(area.deps[r].id);
|
2015-08-04 02:46:48 +00:00
|
|
|
areaDeps.resources.emplace(area.areaMREAId);
|
2015-08-04 02:14:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Second pass: cross-compare uniqueness */
|
|
|
|
for (PAK::Entry& entry : m_pak.m_entries)
|
|
|
|
{
|
|
|
|
entry.unique = uniqueCheck(entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ResExtractor<PAKBridge> PAKBridge::LookupExtractor(const PAK::Entry& entry)
|
2015-07-17 00:01:05 +00:00
|
|
|
{
|
2015-08-13 07:29:00 +00:00
|
|
|
switch (entry.type)
|
2015-07-19 06:19:46 +00:00
|
|
|
{
|
|
|
|
case SBIG('STRG'):
|
2015-08-15 04:12:15 +00:00
|
|
|
return {STRG::Extract, nullptr, {".yaml"}};
|
2015-07-19 06:19:46 +00:00
|
|
|
case SBIG('TXTR'):
|
2015-08-15 04:12:15 +00:00
|
|
|
return {TXTR::Extract, nullptr, {".png"}};
|
2015-07-28 02:24:36 +00:00
|
|
|
case SBIG('CMDL'):
|
2015-08-15 04:12:15 +00:00
|
|
|
return {nullptr, CMDL::Extract, {".blend"}, 2};
|
2015-08-08 23:24:17 +00:00
|
|
|
case SBIG('ANCS'):
|
2015-08-15 04:12:15 +00:00
|
|
|
return {nullptr, ANCS::Extract, {".yaml", ".blend"}, 1};
|
2015-08-02 04:25:38 +00:00
|
|
|
case SBIG('MLVL'):
|
2015-08-15 04:12:15 +00:00
|
|
|
return {MLVL::Extract, nullptr, {".yaml"}};
|
2015-07-19 06:19:46 +00:00
|
|
|
}
|
2015-07-17 00:01:05 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2015-07-16 01:57:34 +00:00
|
|
|
}
|
|
|
|
}
|