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-09-07 04:05:44 +00:00
|
|
|
#include "MREA.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
|
|
|
|
2015-09-21 23:36:15 +00:00
|
|
|
static bool GetNoShare(const std::string& name)
|
|
|
|
{
|
2015-09-22 01:42:03 +00:00
|
|
|
std::string lowerName = name;
|
|
|
|
std::transform(lowerName.begin(), lowerName.end(), lowerName.begin(), tolower);
|
2015-09-22 01:58:26 +00:00
|
|
|
if (!lowerName.compare(0, 7, "metroid"))
|
2015-09-22 01:42:03 +00:00
|
|
|
return false;
|
|
|
|
return true;
|
2015-09-21 23:36:15 +00:00
|
|
|
}
|
|
|
|
|
2015-07-17 00:01:05 +00:00
|
|
|
PAKBridge::PAKBridge(HECL::Database::Project& project, const NOD::DiscBase::IPartition::Node& node)
|
2015-09-21 23:36:15 +00:00
|
|
|
: m_project(project), m_node(node), m_pak(false, GetNoShare(node.getName()))
|
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-09-22 01:42:03 +00:00
|
|
|
for (PAK::Entry& entry : m_pak.m_entries)
|
2015-07-17 00:01:05 +00:00
|
|
|
{
|
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;
|
2015-09-23 22:59:12 +00:00
|
|
|
const HECL::SystemString* levelName = nullptr;
|
|
|
|
UniqueID32 levelId;
|
2015-08-04 02:14:47 +00:00
|
|
|
UniqueID32 areaId;
|
|
|
|
unsigned layerIdx;
|
2015-09-23 22:59:12 +00:00
|
|
|
for (const auto& lpair : m_levelDeps)
|
2015-08-04 02:14:47 +00:00
|
|
|
{
|
2015-09-23 22:59:12 +00:00
|
|
|
levelName = &lpair.second.name;
|
|
|
|
if (entry.id == lpair.first)
|
2015-08-04 02:14:47 +00:00
|
|
|
{
|
2015-09-23 22:59:12 +00:00
|
|
|
result = UniqueResult::UNIQUE_LEVEL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const auto& pair : lpair.second.areas)
|
|
|
|
{
|
|
|
|
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 if (levelId == lpair.first)
|
|
|
|
{
|
|
|
|
result = UniqueResult::UNIQUE_LEVEL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return {UniqueResult::UNIQUE_PAK};
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
result = UniqueResult::UNIQUE_LAYER;
|
|
|
|
levelId = lpair.first;
|
|
|
|
areaId = pair.first;
|
|
|
|
layerIdx = l;
|
|
|
|
foundOneLayer = true;
|
|
|
|
}
|
|
|
|
++l;
|
|
|
|
}
|
|
|
|
if (pair.second.resources.find(entry.id) != pair.second.resources.end())
|
2015-08-04 02:14:47 +00:00
|
|
|
{
|
|
|
|
if (foundOneLayer)
|
|
|
|
{
|
|
|
|
if (areaId == pair.first)
|
2015-09-23 22:59:12 +00:00
|
|
|
{
|
2015-08-04 02:14:47 +00:00
|
|
|
result = UniqueResult::UNIQUE_AREA;
|
2015-09-23 22:59:12 +00:00
|
|
|
}
|
|
|
|
else if (levelId == lpair.first)
|
|
|
|
{
|
|
|
|
result = UniqueResult::UNIQUE_LEVEL;
|
|
|
|
break;
|
|
|
|
}
|
2015-08-04 02:14:47 +00:00
|
|
|
else
|
2015-09-23 22:59:12 +00:00
|
|
|
{
|
|
|
|
return {UniqueResult::UNIQUE_PAK};
|
|
|
|
}
|
2015-08-04 02:14:47 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
2015-09-23 22:59:12 +00:00
|
|
|
result = UniqueResult::UNIQUE_AREA;
|
|
|
|
levelId = lpair.first;
|
2015-08-04 02:14:47 +00:00
|
|
|
areaId = pair.first;
|
|
|
|
foundOneLayer = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
UniqueResult retval = {result};
|
2015-09-23 22:59:12 +00:00
|
|
|
retval.levelName = levelName;
|
2015-08-04 02:14:47 +00:00
|
|
|
if (result == UniqueResult::UNIQUE_LAYER || result == UniqueResult::UNIQUE_AREA)
|
|
|
|
{
|
2015-09-23 22:59:12 +00:00
|
|
|
const PAKBridge::Level::Area& area = m_levelDeps[levelId].areas[areaId];
|
2015-08-04 02:14:47 +00:00
|
|
|
retval.areaName = &area.name;
|
|
|
|
if (result == UniqueResult::UNIQUE_LAYER)
|
|
|
|
{
|
2015-09-23 22:59:12 +00:00
|
|
|
const PAKBridge::Level::Area::Layer& layer = area.layers[layerIdx];
|
2015-08-04 02:14:47 +00:00
|
|
|
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
|
2015-08-31 03:44:42 +00:00
|
|
|
HECL::SystemString ret = HECL::UTF8ToWide(name);
|
2015-08-04 02:14:47 +00:00
|
|
|
#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
|
|
|
{
|
2015-09-23 22:59:12 +00:00
|
|
|
PAKBridge::Level& level = m_levelDeps[entry.id];
|
|
|
|
|
2015-08-04 02:14:47 +00:00
|
|
|
PAKEntryReadStream rs = entry.beginReadStream(m_node);
|
|
|
|
MLVL mlvl;
|
|
|
|
mlvl.read(rs);
|
2015-09-23 22:59:12 +00:00
|
|
|
#if HECL_UCS2
|
|
|
|
level.name = HECL::UTF8ToWide(m_pak.bestEntryName(entry));
|
|
|
|
#else
|
|
|
|
level.name = m_pak.bestEntryName(entry);
|
|
|
|
#endif
|
|
|
|
level.areas.reserve(mlvl.areaCount);
|
2015-08-04 02:14:47 +00:00
|
|
|
unsigned layerIdx = 0;
|
2015-09-17 19:50:43 +00:00
|
|
|
|
|
|
|
/* Pre-pass: find duplicate area names */
|
|
|
|
std::unordered_map<HECL::SystemString, std::pair<atUint32, atUint32>> dupeTracker;
|
|
|
|
dupeTracker.reserve(mlvl.areas.size());
|
|
|
|
for (const MLVL::Area& area : mlvl.areas)
|
|
|
|
{
|
|
|
|
const PAK::Entry* areaNameEnt = m_pak.lookupEntry(area.areaNameId);
|
|
|
|
if (areaNameEnt)
|
|
|
|
{
|
|
|
|
STRG areaName;
|
|
|
|
PAKEntryReadStream rs = areaNameEnt->beginReadStream(m_node);
|
|
|
|
areaName.read(rs);
|
|
|
|
HECL::SystemString name = areaName.getSystemString(FOURCC('ENGL'), 0);
|
|
|
|
auto search = dupeTracker.find(name);
|
|
|
|
if (search != dupeTracker.end())
|
|
|
|
++search->second.first;
|
|
|
|
else
|
|
|
|
dupeTracker[name] = std::make_pair(1, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Main-pass: index areas */
|
2015-08-04 02:14:47 +00:00
|
|
|
for (const MLVL::Area& area : mlvl.areas)
|
|
|
|
{
|
2015-09-23 22:59:12 +00:00
|
|
|
Level::Area& areaDeps = level.areas[area.areaMREAId];
|
2015-08-04 02:14:47 +00:00
|
|
|
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-09-17 19:50:43 +00:00
|
|
|
auto search = dupeTracker.find(areaDeps.name);
|
|
|
|
if (search != dupeTracker.end() && search->second.first > 1)
|
|
|
|
{
|
|
|
|
char num[16];
|
|
|
|
snprintf(num, 16, " (%d)", search->second.second++);
|
|
|
|
areaDeps.name += num;
|
|
|
|
}
|
2015-09-01 01:23:05 +00:00
|
|
|
|
|
|
|
/* Trim possible trailing whitespace */
|
|
|
|
#if HECL_UCS2
|
2015-09-01 19:26:55 +00:00
|
|
|
while (areaDeps.name.size() && iswblank(areaDeps.name.back()))
|
|
|
|
areaDeps.name.pop_back();
|
2015-09-01 01:23:05 +00:00
|
|
|
#else
|
2015-09-01 19:26:55 +00:00
|
|
|
while (areaDeps.name.size() && isblank(areaDeps.name.back()))
|
|
|
|
areaDeps.name.pop_back();
|
2015-09-01 01:23:05 +00:00
|
|
|
#endif
|
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();
|
2015-09-23 22:59:12 +00:00
|
|
|
Level::Area::Layer& layer = areaDeps.layers.back();
|
2015-08-04 02:14:47 +00:00
|
|
|
layer.name = LayerName(mlvl.layerNames[layerIdx++]);
|
2015-09-01 02:54:02 +00:00
|
|
|
/* Trim possible trailing whitespace */
|
|
|
|
#if HECL_UCS2
|
2015-09-01 19:26:55 +00:00
|
|
|
while (layer.name.size() && iswblank(layer.name.back()))
|
|
|
|
layer.name.pop_back();
|
2015-09-01 02:54:02 +00:00
|
|
|
#else
|
2015-09-01 19:26:55 +00:00
|
|
|
while (layer.name.size() && isblank(layer.name.back()))
|
|
|
|
layer.name.pop_back();
|
2015-09-01 02:54:02 +00:00
|
|
|
#endif
|
|
|
|
|
2015-08-04 02:14:47 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-06 05:34:30 +00:00
|
|
|
void PAKBridge::addCMDLRigPairs(std::unordered_map<UniqueID32, std::pair<UniqueID32, UniqueID32>>& addTo) const
|
|
|
|
{
|
|
|
|
for (const std::pair<UniqueID32, PAK::Entry*>& entry : m_pak.m_idMap)
|
|
|
|
{
|
|
|
|
if (entry.second->type == FOURCC('ANCS'))
|
|
|
|
{
|
|
|
|
PAKEntryReadStream rs = entry.second->beginReadStream(m_node);
|
|
|
|
ANCS ancs;
|
|
|
|
ancs.read(rs);
|
|
|
|
for (const ANCS::CharacterSet::CharacterInfo& ci : ancs.characterSet.characters)
|
|
|
|
addTo[ci.cmdl] = std::make_pair(ci.cskr, ci.cinf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-04 02:14:47 +00:00
|
|
|
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-31 03:44:42 +00:00
|
|
|
return {STRG::Extract, nullptr, {_S(".yaml")}};
|
2015-07-19 06:19:46 +00:00
|
|
|
case SBIG('TXTR'):
|
2015-08-31 03:44:42 +00:00
|
|
|
return {TXTR::Extract, nullptr, {_S(".png")}};
|
2015-07-28 02:24:36 +00:00
|
|
|
case SBIG('CMDL'):
|
2015-09-06 05:34:30 +00:00
|
|
|
return {nullptr, CMDL::Extract, {_S(".blend")}, 1};
|
2015-08-08 23:24:17 +00:00
|
|
|
case SBIG('ANCS'):
|
2015-09-06 05:34:30 +00:00
|
|
|
return {nullptr, ANCS::Extract, {_S(".yaml"), _S(".blend")}, 2};
|
2015-09-07 04:05:44 +00:00
|
|
|
case SBIG('MREA'):
|
2015-09-09 01:37:00 +00:00
|
|
|
return {nullptr, MREA::Extract, {_S(".blend")}, 3};
|
2015-08-02 04:25:38 +00:00
|
|
|
case SBIG('MLVL'):
|
2015-08-31 03:44:42 +00:00
|
|
|
return {MLVL::Extract, nullptr, {_S(".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
|
|
|
}
|
|
|
|
}
|