2015-07-07 03:22:44 +00:00
|
|
|
#include <utility>
|
2015-07-16 01:57:34 +00:00
|
|
|
#include <stdio.h>
|
2015-07-22 19:05:18 +00:00
|
|
|
#include <string.h>
|
2015-07-07 03:22:44 +00:00
|
|
|
|
2015-07-01 23:50:39 +00:00
|
|
|
#include "SpecBase.hpp"
|
2015-07-17 00:01:05 +00:00
|
|
|
#include "DNAMP1/DNAMP1.hpp"
|
2015-07-01 23:50:39 +00:00
|
|
|
|
2016-09-10 04:50:00 +00:00
|
|
|
#include "DNAMP1/HINT.hpp"
|
2015-10-01 00:40:21 +00:00
|
|
|
#include "DNAMP1/MLVL.hpp"
|
|
|
|
#include "DNAMP1/STRG.hpp"
|
2017-01-31 11:21:45 +00:00
|
|
|
#include "DNAMP1/SCAN.hpp"
|
2015-10-07 01:17:17 +00:00
|
|
|
#include "DNAMP1/CMDL.hpp"
|
2016-08-10 02:52:00 +00:00
|
|
|
#include "DNAMP1/MREA.hpp"
|
2015-10-23 00:45:26 +00:00
|
|
|
#include "DNAMP1/ANCS.hpp"
|
2016-09-18 23:47:48 +00:00
|
|
|
#include "DNAMP1/AGSC.hpp"
|
|
|
|
#include "DNAMP1/CSNG.hpp"
|
2017-01-21 02:38:34 +00:00
|
|
|
#include "DNACommon/ATBL.hpp"
|
2016-08-17 05:40:25 +00:00
|
|
|
#include "DNACommon/FONT.hpp"
|
2016-03-28 21:38:48 +00:00
|
|
|
#include "DNACommon/PART.hpp"
|
2016-03-29 02:24:47 +00:00
|
|
|
#include "DNACommon/SWHC.hpp"
|
|
|
|
#include "DNACommon/ELSC.hpp"
|
|
|
|
#include "DNACommon/WPSC.hpp"
|
|
|
|
#include "DNACommon/CRSC.hpp"
|
|
|
|
#include "DNACommon/DPSC.hpp"
|
2016-04-12 11:37:07 +00:00
|
|
|
#include "DNACommon/DGRP.hpp"
|
2016-08-31 19:58:21 +00:00
|
|
|
#include "DNACommon/Tweaks/TweakWriter.hpp"
|
|
|
|
#include "DNAMP1/Tweaks/CTweakPlayerRes.hpp"
|
2016-08-31 21:00:06 +00:00
|
|
|
#include "DNAMP1/Tweaks/CTweakGunRes.hpp"
|
2016-09-16 20:18:03 +00:00
|
|
|
#include "DNAMP1/Tweaks/CTweakSlideShow.hpp"
|
2016-09-15 07:26:35 +00:00
|
|
|
#include "DNAMP1/Tweaks/CTweakPlayer.hpp"
|
|
|
|
#include "DNAMP1/Tweaks/CTweakCameraBob.hpp"
|
2017-01-22 01:40:12 +00:00
|
|
|
#include "DNAMP1/Tweaks/CTweakGame.hpp"
|
2017-01-26 10:06:18 +00:00
|
|
|
#include "DNAMP1/Tweaks/CTweakTargeting.hpp"
|
|
|
|
#include "DNAMP1/Tweaks/CTweakAutoMapper.hpp"
|
|
|
|
#include "DNAMP1/Tweaks/CTweakGui.hpp"
|
|
|
|
#include "DNAMP1/Tweaks/CTweakPlayerControl.hpp"
|
|
|
|
#include "DNAMP1/Tweaks/CTweakBall.hpp"
|
|
|
|
#include "DNAMP1/Tweaks/CTweakParticle.hpp"
|
|
|
|
#include "DNAMP1/Tweaks/CTweakGuiColors.hpp"
|
2017-01-27 02:58:21 +00:00
|
|
|
#include "DNAMP1/Tweaks/CTweakPlayerGun.hpp"
|
2015-10-01 00:40:21 +00:00
|
|
|
|
2016-04-01 04:25:00 +00:00
|
|
|
#include "hecl/ClientProcess.hpp"
|
|
|
|
|
2016-02-13 09:02:47 +00:00
|
|
|
namespace DataSpec
|
2015-07-01 23:50:39 +00:00
|
|
|
{
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
static logvisor::Module Log("urde::SpecMP1");
|
|
|
|
extern hecl::Database::DataSpecEntry SpecEntMP1;
|
2016-04-10 04:49:02 +00:00
|
|
|
extern hecl::Database::DataSpecEntry SpecEntMP1PC;
|
2017-01-17 01:23:19 +00:00
|
|
|
extern hecl::Database::DataSpecEntry SpecEntMP1ORIG;
|
2015-07-16 01:57:34 +00:00
|
|
|
|
2017-01-31 05:01:40 +00:00
|
|
|
struct OriginalIDs
|
|
|
|
{
|
2017-01-31 11:21:45 +00:00
|
|
|
static void Generate(PAKRouter<DNAMP1::PAKBridge>& pakRouter, hecl::Database::Project& project)
|
2017-01-31 05:01:40 +00:00
|
|
|
{
|
2017-02-12 03:17:18 +00:00
|
|
|
std::unordered_set<UniqueID32> addedIDs;
|
2017-01-31 05:01:40 +00:00
|
|
|
std::vector<UniqueID32> originalIDs;
|
2017-01-31 11:21:45 +00:00
|
|
|
pakRouter.enumerateResources([&](const DNAMP1::PAK::Entry* ent) -> bool {
|
2017-02-12 03:17:18 +00:00
|
|
|
if (ent->type == FOURCC('MLVL') || ent->type == FOURCC('SCAN') ||
|
|
|
|
ent->id.toUint32() == 0xB7BBD0B4 || ent->id.toUint32() == 0x1F9DA858)
|
|
|
|
{
|
|
|
|
if (addedIDs.find(ent->id) == addedIDs.cend())
|
|
|
|
{
|
|
|
|
addedIDs.insert(ent->id);
|
|
|
|
originalIDs.push_back(ent->id);
|
|
|
|
}
|
|
|
|
}
|
2017-01-31 05:01:40 +00:00
|
|
|
return true;
|
|
|
|
});
|
|
|
|
std::sort(originalIDs.begin(), originalIDs.end());
|
|
|
|
|
|
|
|
athena::io::YAMLDocWriter yamlW("MP1OriginalIDs");
|
|
|
|
for (const UniqueID32& id : originalIDs)
|
|
|
|
{
|
|
|
|
hecl::ProjectPath path = pakRouter.getWorking(id);
|
|
|
|
yamlW.writeString(id.toString().c_str(), path.getRelativePathUTF8());
|
|
|
|
}
|
|
|
|
hecl::ProjectPath path(project.getProjectWorkingPath(), "MP1/!original_ids.yaml");
|
|
|
|
path.makeDirChain(false);
|
|
|
|
athena::io::FileWriter fileW(path.getAbsolutePath());
|
|
|
|
yamlW.finish(&fileW);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void Cook(const hecl::ProjectPath& inPath, const hecl::ProjectPath& outPath)
|
|
|
|
{
|
|
|
|
hecl::Database::Project& project = inPath.getProject();
|
|
|
|
athena::io::YAMLDocReader r;
|
|
|
|
athena::io::FileReader fr(inPath.getAbsolutePath());
|
|
|
|
if (!fr.isOpen() || !r.parse(&fr))
|
|
|
|
return;
|
|
|
|
|
|
|
|
std::vector<std::pair<UniqueID32, UniqueID32>> originalIDs;
|
|
|
|
originalIDs.reserve(r.getRootNode()->m_mapChildren.size());
|
|
|
|
for (const auto& node : r.getRootNode()->m_mapChildren)
|
|
|
|
{
|
|
|
|
char* end = const_cast<char*>(node.first.c_str());
|
|
|
|
u32 id = strtoul(end, &end, 16);
|
|
|
|
if (end != node.first.c_str() + 8)
|
|
|
|
continue;
|
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
hecl::ProjectPath path(project.getProjectWorkingPath(), node.second->m_scalarString.c_str());
|
2017-01-31 05:01:40 +00:00
|
|
|
originalIDs.push_back(std::make_pair(id, path.hash().val32()));
|
|
|
|
}
|
|
|
|
std::sort(originalIDs.begin(), originalIDs.end(),
|
2017-01-31 11:21:45 +00:00
|
|
|
[](const std::pair<UniqueID32, UniqueID32>& a, const std::pair<UniqueID32, UniqueID32>& b) -> bool {
|
|
|
|
return a.first < b.first;
|
|
|
|
});
|
2017-01-31 05:01:40 +00:00
|
|
|
|
|
|
|
athena::io::FileWriter w(outPath.getAbsolutePath());
|
|
|
|
w.writeUint32Big(originalIDs.size());
|
|
|
|
for (const auto& idPair : originalIDs)
|
|
|
|
{
|
|
|
|
idPair.first.write(w);
|
|
|
|
idPair.second.write(w);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::sort(originalIDs.begin(), originalIDs.end(),
|
2017-01-31 11:21:45 +00:00
|
|
|
[](const std::pair<UniqueID32, UniqueID32>& a, const std::pair<UniqueID32, UniqueID32>& b) -> bool {
|
|
|
|
return a.second < b.second;
|
|
|
|
});
|
2017-01-31 05:01:40 +00:00
|
|
|
for (const auto& idPair : originalIDs)
|
|
|
|
{
|
|
|
|
idPair.second.write(w);
|
|
|
|
idPair.first.write(w);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-07-07 03:22:44 +00:00
|
|
|
struct SpecMP1 : SpecBase
|
2015-07-01 23:50:39 +00:00
|
|
|
{
|
2015-07-14 01:07:15 +00:00
|
|
|
bool checkStandaloneID(const char* id) const
|
|
|
|
{
|
|
|
|
if (!memcmp(id, "GM8", 3))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
std::vector<const nod::Node*> m_nonPaks;
|
2015-07-17 00:01:05 +00:00
|
|
|
std::vector<DNAMP1::PAKBridge> m_paks;
|
2016-03-04 23:04:53 +00:00
|
|
|
std::map<std::string, DNAMP1::PAKBridge*, hecl::CaseInsensitiveCompare> m_orderedPaks;
|
2015-07-07 03:22:44 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
hecl::ProjectPath m_workPath;
|
|
|
|
hecl::ProjectPath m_cookPath;
|
2015-07-28 23:53:57 +00:00
|
|
|
PAKRouter<DNAMP1::PAKBridge> m_pakRouter;
|
|
|
|
|
2016-03-28 22:39:56 +00:00
|
|
|
SpecMP1(const hecl::Database::DataSpecEntry* specEntry, hecl::Database::Project& project, bool pc)
|
2017-01-31 11:21:45 +00:00
|
|
|
: SpecBase(specEntry, project, pc)
|
|
|
|
, m_workPath(project.getProjectWorkingPath(), _S("MP1"))
|
|
|
|
, m_cookPath(project.getProjectCookedPath(SpecEntMP1), _S("MP1"))
|
|
|
|
, m_pakRouter(*this, m_workPath, m_cookPath)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void buildPaks(nod::Node& root, const std::vector<hecl::SystemString>& args, ExtractReport& rep)
|
2015-07-01 23:50:39 +00:00
|
|
|
{
|
2015-07-18 04:33:38 +00:00
|
|
|
m_nonPaks.clear();
|
2015-07-12 18:07:58 +00:00
|
|
|
m_paks.clear();
|
2016-03-04 23:04:53 +00:00
|
|
|
for (const nod::Node& child : root)
|
2015-07-07 03:22:44 +00:00
|
|
|
{
|
2015-07-18 04:33:38 +00:00
|
|
|
bool isPak = false;
|
2015-07-10 05:28:08 +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)
|
2015-07-07 03:22:44 +00:00
|
|
|
{
|
2015-07-10 05:28:08 +00:00
|
|
|
std::string::iterator extit = lowerName.end() - 4;
|
|
|
|
if (!std::string(extit, lowerName.end()).compare(".pak"))
|
2015-07-07 03:22:44 +00:00
|
|
|
{
|
2015-07-10 05:28:08 +00:00
|
|
|
/* This is a pak */
|
2015-07-18 04:33:38 +00:00
|
|
|
isPak = true;
|
2015-07-10 05:28:08 +00:00
|
|
|
std::string lowerBase(lowerName.begin(), extit);
|
|
|
|
|
|
|
|
/* Needs filter */
|
|
|
|
bool good = true;
|
|
|
|
if (args.size())
|
|
|
|
{
|
|
|
|
good = false;
|
|
|
|
if (!lowerName.compare(0, 7, "metroid"))
|
|
|
|
{
|
2016-03-04 23:04:53 +00:00
|
|
|
hecl::SystemChar idxChar = lowerName[7];
|
|
|
|
for (const hecl::SystemString& arg : args)
|
2015-07-10 05:28:08 +00:00
|
|
|
{
|
2015-07-13 06:29:12 +00:00
|
|
|
if (arg.size() == 1 && iswdigit(arg[0]))
|
|
|
|
if (arg[0] == idxChar)
|
2015-07-10 05:28:08 +00:00
|
|
|
good = true;
|
|
|
|
}
|
|
|
|
}
|
2015-07-12 18:07:58 +00:00
|
|
|
else
|
|
|
|
good = true;
|
2015-07-10 05:28:08 +00:00
|
|
|
|
|
|
|
if (!good)
|
|
|
|
{
|
2016-03-04 23:04:53 +00:00
|
|
|
for (const hecl::SystemString& arg : args)
|
2015-07-10 05:28:08 +00:00
|
|
|
{
|
2016-03-26 00:51:59 +00:00
|
|
|
std::string lowerArg = hecl::SystemUTF8View(arg).str();
|
2015-07-10 05:28:08 +00:00
|
|
|
std::transform(lowerArg.begin(), lowerArg.end(), lowerArg.begin(), tolower);
|
|
|
|
if (!lowerArg.compare(0, lowerBase.size(), lowerBase))
|
|
|
|
good = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-28 01:13:27 +00:00
|
|
|
m_paks.emplace_back(m_project, child, good);
|
2015-07-07 03:22:44 +00:00
|
|
|
}
|
|
|
|
}
|
2015-07-18 04:33:38 +00:00
|
|
|
|
|
|
|
if (!isPak)
|
|
|
|
m_nonPaks.push_back(&child);
|
2015-07-10 05:28:08 +00:00
|
|
|
}
|
|
|
|
|
2015-07-12 04:26:26 +00:00
|
|
|
/* Sort PAKs alphabetically */
|
2015-07-12 18:07:58 +00:00
|
|
|
m_orderedPaks.clear();
|
2015-07-17 00:01:05 +00:00
|
|
|
for (DNAMP1::PAKBridge& dpak : m_paks)
|
|
|
|
m_orderedPaks[dpak.getName()] = &dpak;
|
2015-07-12 04:26:26 +00:00
|
|
|
|
2015-07-12 18:07:58 +00:00
|
|
|
/* Assemble extract report */
|
2015-10-04 05:08:56 +00:00
|
|
|
rep.childOpts.reserve(m_orderedPaks.size());
|
2015-07-17 00:01:05 +00:00
|
|
|
for (const std::pair<std::string, DNAMP1::PAKBridge*>& item : m_orderedPaks)
|
2015-07-10 05:28:08 +00:00
|
|
|
{
|
2015-09-28 01:13:27 +00:00
|
|
|
if (!item.second->m_doExtract)
|
|
|
|
continue;
|
2015-07-10 05:28:08 +00:00
|
|
|
rep.childOpts.emplace_back();
|
|
|
|
ExtractReport& childRep = rep.childOpts.back();
|
2016-03-04 23:04:53 +00:00
|
|
|
hecl::SystemStringView nameView(item.first);
|
2015-07-22 19:05:18 +00:00
|
|
|
childRep.name = nameView;
|
2015-07-17 00:01:05 +00:00
|
|
|
childRep.desc = item.second->getLevelString();
|
2015-07-07 03:22:44 +00:00
|
|
|
}
|
2015-07-01 23:50:39 +00:00
|
|
|
}
|
2015-07-12 18:07:58 +00:00
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
bool checkFromStandaloneDisc(nod::DiscBase& disc, const hecl::SystemString& regstr,
|
|
|
|
const std::vector<hecl::SystemString>& args, std::vector<ExtractReport>& reps)
|
2015-07-01 23:50:39 +00:00
|
|
|
{
|
2016-03-04 23:04:53 +00:00
|
|
|
nod::Partition* partition = disc.getDataPartition();
|
2015-07-12 18:07:58 +00:00
|
|
|
std::unique_ptr<uint8_t[]> dolBuf = partition->getDOLBuf();
|
|
|
|
const char* buildInfo = (char*)memmem(dolBuf.get(), partition->getDOLSize(), "MetroidBuildInfo", 16) + 19;
|
2015-07-07 03:22:44 +00:00
|
|
|
|
2015-09-24 07:47:30 +00:00
|
|
|
if (!buildInfo)
|
|
|
|
return false;
|
|
|
|
|
2015-07-13 06:29:12 +00:00
|
|
|
/* Root Report */
|
2015-07-12 18:07:58 +00:00
|
|
|
reps.emplace_back();
|
|
|
|
ExtractReport& rep = reps.back();
|
2015-07-13 06:29:12 +00:00
|
|
|
rep.name = _S("MP1");
|
|
|
|
rep.desc = _S("Metroid Prime ") + regstr;
|
2015-07-12 18:07:58 +00:00
|
|
|
if (buildInfo)
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2015-07-14 01:07:15 +00:00
|
|
|
std::string buildStr(buildInfo);
|
2016-03-04 23:04:53 +00:00
|
|
|
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
|
|
|
}
|
2015-07-12 18:07:58 +00:00
|
|
|
|
|
|
|
/* Iterate PAKs and build level options */
|
2016-03-04 23:04:53 +00:00
|
|
|
nod::Node& root = partition->getFSTRoot();
|
2015-08-15 22:56:55 +00:00
|
|
|
buildPaks(root, args, rep);
|
2015-07-12 18:07:58 +00:00
|
|
|
|
|
|
|
return true;
|
2015-07-01 23:50:39 +00:00
|
|
|
}
|
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
bool checkFromTrilogyDisc(nod::DiscBase& disc, const hecl::SystemString& regstr,
|
|
|
|
const std::vector<hecl::SystemString>& args, std::vector<ExtractReport>& reps)
|
2015-07-01 23:50:39 +00:00
|
|
|
{
|
2016-03-04 23:04:53 +00:00
|
|
|
std::vector<hecl::SystemString> mp1args;
|
2015-08-10 01:53:24 +00:00
|
|
|
bool doExtract = false;
|
2015-07-13 06:29:12 +00:00
|
|
|
if (args.size())
|
|
|
|
{
|
|
|
|
/* Needs filter */
|
2016-03-04 23:04:53 +00:00
|
|
|
for (const hecl::SystemString& arg : args)
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2016-03-04 23:04:53 +00:00
|
|
|
hecl::SystemString lowerArg = arg;
|
|
|
|
hecl::ToLower(lowerArg);
|
2015-07-22 19:05:18 +00:00
|
|
|
if (!lowerArg.compare(0, 3, _S("mp1")))
|
2015-07-13 06:29:12 +00:00
|
|
|
{
|
2015-08-10 01:53:24 +00:00
|
|
|
doExtract = true;
|
2015-10-04 05:08:56 +00:00
|
|
|
mp1args.reserve(args.size());
|
2015-07-18 04:33:38 +00:00
|
|
|
size_t slashPos = arg.find(_S('/'));
|
2016-03-04 23:04:53 +00:00
|
|
|
if (slashPos == hecl::SystemString::npos)
|
2015-07-18 04:33:38 +00:00
|
|
|
slashPos = arg.find(_S('\\'));
|
2016-03-04 23:04:53 +00:00
|
|
|
if (slashPos != hecl::SystemString::npos)
|
|
|
|
mp1args.emplace_back(hecl::SystemString(arg.begin() + slashPos + 1, arg.end()));
|
2015-07-13 06:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-18 04:33:38 +00:00
|
|
|
else
|
2015-08-10 01:53:24 +00:00
|
|
|
doExtract = true;
|
2015-07-18 04:33:38 +00:00
|
|
|
|
2015-08-10 01:53:24 +00:00
|
|
|
if (!doExtract)
|
|
|
|
return false;
|
2015-07-13 06:29:12 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
nod::Partition* partition = disc.getDataPartition();
|
|
|
|
nod::Node& root = partition->getFSTRoot();
|
|
|
|
nod::Node::DirectoryIterator dolIt = root.find("rs5mp1_p.dol");
|
2015-07-13 06:29:12 +00:00
|
|
|
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);
|
2016-03-04 23:04:53 +00:00
|
|
|
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 */
|
2016-03-04 23:04:53 +00:00
|
|
|
nod::Node::DirectoryIterator mp1It = root.find("MP1");
|
2015-07-13 06:29:12 +00:00
|
|
|
if (mp1It == root.end())
|
|
|
|
return false;
|
2015-08-15 22:56:55 +00:00
|
|
|
buildPaks(*mp1It, mp1args, rep);
|
2015-07-13 06:29:12 +00:00
|
|
|
|
2015-07-07 03:22:44 +00:00
|
|
|
return true;
|
2015-07-01 23:50:39 +00:00
|
|
|
}
|
2015-07-16 01:57:34 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
bool extractFromDisc(nod::DiscBase&, bool force, FProgress progress)
|
2015-07-01 23:50:39 +00:00
|
|
|
{
|
2016-03-30 20:44:19 +00:00
|
|
|
m_project.enableDataSpecs({_S("MP1-PC")});
|
2016-03-27 20:43:04 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
nod::ExtractionContext ctx = {true, force, nullptr};
|
2015-09-29 03:49:31 +00:00
|
|
|
|
2016-03-02 01:49:21 +00:00
|
|
|
m_workPath.makeDir();
|
|
|
|
|
2015-09-02 22:00:40 +00:00
|
|
|
progress(_S("Indexing PAKs"), _S(""), 2, 0.0);
|
2017-01-31 11:21:45 +00:00
|
|
|
m_pakRouter.build(m_paks, [&progress](float factor) { progress(_S("Indexing PAKs"), _S(""), 2, factor); });
|
2015-09-02 22:00:40 +00:00
|
|
|
progress(_S("Indexing PAKs"), _S(""), 2, 1.0);
|
2015-07-28 23:53:57 +00:00
|
|
|
|
2016-03-05 00:03:41 +00:00
|
|
|
hecl::ProjectPath outPath(m_project.getProjectWorkingPath(), _S("out"));
|
2016-03-01 20:29:18 +00:00
|
|
|
outPath.makeDir();
|
2016-03-05 00:03:41 +00:00
|
|
|
hecl::ProjectPath mp1OutPath(outPath, _S("MP1"));
|
2016-03-01 20:29:18 +00:00
|
|
|
mp1OutPath.makeDir();
|
2017-01-30 23:22:26 +00:00
|
|
|
|
|
|
|
/* Generate original ID mapping for MLVL and SCAN entries */
|
2017-01-31 05:01:40 +00:00
|
|
|
OriginalIDs::Generate(m_pakRouter, m_project);
|
2017-01-30 23:22:26 +00:00
|
|
|
|
|
|
|
/* Extract non-pak files */
|
2015-09-02 22:00:40 +00:00
|
|
|
progress(_S("MP1 Root"), _S(""), 3, 0.0);
|
2015-07-20 23:25:16 +00:00
|
|
|
int prog = 0;
|
2015-09-29 05:17:54 +00:00
|
|
|
ctx.progressCB = [&](const std::string& name) {
|
2016-03-04 23:04:53 +00:00
|
|
|
hecl::SystemStringView nameView(name);
|
2016-04-07 03:40:25 +00:00
|
|
|
progress(_S("MP1 Root"), nameView.c_str(), 3, prog / (float)m_nonPaks.size());
|
2015-09-29 05:17:54 +00:00
|
|
|
};
|
2016-03-04 23:04:53 +00:00
|
|
|
for (const nod::Node* node : m_nonPaks)
|
2015-07-20 23:25:16 +00:00
|
|
|
{
|
2016-03-01 20:29:18 +00:00
|
|
|
node->extractToDirectory(mp1OutPath.getAbsolutePath(), ctx);
|
2015-09-29 05:17:54 +00:00
|
|
|
prog++;
|
2015-07-20 23:25:16 +00:00
|
|
|
}
|
2015-09-02 22:00:40 +00:00
|
|
|
progress(_S("MP1 Root"), _S(""), 3, 1.0);
|
2015-07-18 04:33:38 +00:00
|
|
|
|
2017-01-30 23:22:26 +00:00
|
|
|
/* Extract unique resources */
|
2016-04-01 04:25:00 +00:00
|
|
|
std::mutex msgLock;
|
|
|
|
hecl::ClientProcess process;
|
2015-07-28 23:53:57 +00:00
|
|
|
int compIdx = 4;
|
2015-07-20 23:25:16 +00:00
|
|
|
prog = 0;
|
2016-04-08 03:30:00 +00:00
|
|
|
for (std::pair<const std::string, DNAMP1::PAKBridge*>& pair : m_orderedPaks)
|
2015-07-16 01:57:34 +00:00
|
|
|
{
|
2016-04-08 03:30:00 +00:00
|
|
|
#if 0
|
2016-04-09 23:19:17 +00:00
|
|
|
const DNAMP1::PAK::Entry* ent = pair.second->getPAK().lookupEntry(UniqueID32("A4DFCAD6"));
|
2016-04-08 03:30:00 +00:00
|
|
|
if (ent)
|
|
|
|
{
|
|
|
|
DNAMP1::ANIM anim;
|
|
|
|
PAKEntryReadStream rs = ent->beginReadStream(pair.second->getNode());
|
|
|
|
anim.read(rs);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
continue;
|
|
|
|
#endif
|
|
|
|
|
2015-08-08 00:08:16 +00:00
|
|
|
DNAMP1::PAKBridge& pak = *pair.second;
|
2015-09-28 01:13:27 +00:00
|
|
|
if (!pak.m_doExtract)
|
|
|
|
continue;
|
|
|
|
|
2015-07-17 00:01:05 +00:00
|
|
|
const std::string& name = pak.getName();
|
2016-03-04 23:04:53 +00:00
|
|
|
hecl::SystemStringView sysName(name);
|
2015-07-20 23:25:16 +00:00
|
|
|
|
|
|
|
{
|
2016-04-01 04:25:00 +00:00
|
|
|
std::unique_lock<std::mutex> lk(msgLock);
|
2016-04-07 03:40:25 +00:00
|
|
|
progress(sysName.c_str(), _S(""), compIdx, 0.0);
|
2016-04-01 04:25:00 +00:00
|
|
|
}
|
|
|
|
hecl::SystemString pakName = sysName.sys_str();
|
2017-01-31 11:21:45 +00:00
|
|
|
process.addLambdaTransaction([&, pakName](hecl::BlenderToken& btok) {
|
|
|
|
m_pakRouter.extractResources(pak, force, btok, [&](const hecl::SystemChar* substr, float factor) {
|
2016-04-01 04:25:00 +00:00
|
|
|
std::unique_lock<std::mutex> lk(msgLock);
|
|
|
|
progress(pakName.c_str(), substr, compIdx, factor);
|
|
|
|
});
|
2015-07-20 23:25:16 +00:00
|
|
|
});
|
2015-07-16 01:57:34 +00:00
|
|
|
}
|
|
|
|
|
2016-04-09 23:19:17 +00:00
|
|
|
process.waitUntilComplete();
|
|
|
|
|
2015-07-16 01:57:34 +00:00
|
|
|
return true;
|
2015-07-01 23:50:39 +00:00
|
|
|
}
|
2015-10-01 00:40:21 +00:00
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
const hecl::Database::DataSpecEntry& getOriginalSpec() const { return SpecEntMP1; }
|
2017-01-17 01:23:19 +00:00
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
const hecl::Database::DataSpecEntry& getUnmodifiedSpec() const { return SpecEntMP1ORIG; }
|
2016-03-27 20:43:04 +00:00
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
hecl::ProjectPath getWorking(class UniqueID32& id) { return m_pakRouter.getWorking(id); }
|
2015-11-10 02:07:15 +00:00
|
|
|
|
2016-10-01 23:20:20 +00:00
|
|
|
bool checkPathPrefix(const hecl::ProjectPath& path) const
|
2015-10-04 05:08:56 +00:00
|
|
|
{
|
2015-10-12 04:41:28 +00:00
|
|
|
return path.getRelativePath().compare(0, 4, _S("MP1/")) == 0;
|
2015-10-04 05:08:56 +00:00
|
|
|
}
|
|
|
|
|
2016-08-22 03:47:48 +00:00
|
|
|
bool validateYAMLDNAType(athena::io::IStreamReader& fp) const
|
2015-10-01 00:40:21 +00:00
|
|
|
{
|
2016-03-28 21:38:48 +00:00
|
|
|
athena::io::YAMLDocReader reader;
|
2016-08-22 03:47:48 +00:00
|
|
|
yaml_parser_set_input(reader.getParser(), (yaml_read_handler_t*)athena::io::YAMLAthenaReader, &fp);
|
2017-01-31 11:21:45 +00:00
|
|
|
return reader.ClassTypeOperation([](const char* classType) {
|
2016-03-28 21:38:48 +00:00
|
|
|
if (!strcmp(classType, DNAMP1::MLVL::DNAType()))
|
|
|
|
return true;
|
|
|
|
else if (!strcmp(classType, DNAMP1::STRG::DNAType()))
|
|
|
|
return true;
|
2017-01-31 11:21:45 +00:00
|
|
|
else if (!strcmp(classType, DNAMP1::SCAN::DNAType()))
|
|
|
|
return true;
|
2016-03-28 21:38:48 +00:00
|
|
|
else if (!strcmp(classType, DNAParticle::GPSM<UniqueID32>::DNAType()))
|
|
|
|
return true;
|
2016-03-29 02:24:47 +00:00
|
|
|
else if (!strcmp(classType, DNAParticle::SWSH<UniqueID32>::DNAType()))
|
|
|
|
return true;
|
|
|
|
else if (!strcmp(classType, DNAParticle::ELSM<UniqueID32>::DNAType()))
|
|
|
|
return true;
|
|
|
|
else if (!strcmp(classType, DNAParticle::WPSM<UniqueID32>::DNAType()))
|
|
|
|
return true;
|
|
|
|
else if (!strcmp(classType, DNAParticle::CRSM<UniqueID32>::DNAType()))
|
|
|
|
return true;
|
|
|
|
else if (!strcmp(classType, DNAParticle::DPSM<UniqueID32>::DNAType()))
|
|
|
|
return true;
|
2016-04-12 11:37:07 +00:00
|
|
|
else if (!strcmp(classType, DNADGRP::DGRP<UniqueID32>::DNAType()))
|
|
|
|
return true;
|
2016-08-17 05:40:25 +00:00
|
|
|
else if (!strcmp(classType, DNAFont::FONT<UniqueID32>::DNAType()))
|
|
|
|
return true;
|
2016-08-31 19:58:21 +00:00
|
|
|
else if (!strcmp(classType, DNAMP1::CTweakPlayerRes::DNAType()))
|
|
|
|
return true;
|
2016-08-31 21:00:06 +00:00
|
|
|
else if (!strcmp(classType, DNAMP1::CTweakGunRes::DNAType()))
|
|
|
|
return true;
|
2016-09-16 20:18:03 +00:00
|
|
|
else if (!strcmp(classType, DNAMP1::CTweakSlideShow::DNAType()))
|
2016-09-16 20:23:07 +00:00
|
|
|
return true;
|
2016-09-15 07:26:35 +00:00
|
|
|
else if (!strcmp(classType, DNAMP1::CTweakPlayer::DNAType()))
|
|
|
|
return true;
|
|
|
|
else if (!strcmp(classType, DNAMP1::CTweakCameraBob::DNAType()))
|
2016-09-16 20:18:03 +00:00
|
|
|
return true;
|
2017-01-22 01:40:12 +00:00
|
|
|
else if (!strcmp(classType, DNAMP1::CTweakGame::DNAType()))
|
|
|
|
return true;
|
2017-01-26 10:06:18 +00:00
|
|
|
else if (!strcmp(classType, DNAMP1::CTweakAutoMapper::DNAType()))
|
|
|
|
return true;
|
|
|
|
else if (!strcmp(classType, DNAMP1::CTweakTargeting::DNAType()))
|
|
|
|
return true;
|
|
|
|
else if (!strcmp(classType, DNAMP1::CTweakGui::DNAType()))
|
|
|
|
return true;
|
|
|
|
else if (!strcmp(classType, DNAMP1::CTweakPlayerControl::DNAType()))
|
|
|
|
return true;
|
|
|
|
else if (!strcmp(classType, DNAMP1::CTweakBall::DNAType()))
|
|
|
|
return true;
|
|
|
|
else if (!strcmp(classType, DNAMP1::CTweakParticle::DNAType()))
|
|
|
|
return true;
|
|
|
|
else if (!strcmp(classType, DNAMP1::CTweakGuiColors::DNAType()))
|
|
|
|
return true;
|
2017-01-27 02:58:21 +00:00
|
|
|
else if (!strcmp(classType, DNAMP1::CTweakPlayerGun::DNAType()))
|
|
|
|
return true;
|
2016-09-10 04:50:00 +00:00
|
|
|
else if (!strcmp(classType, DNAMP1::HINT::DNAType()))
|
|
|
|
return true;
|
2016-09-18 23:47:48 +00:00
|
|
|
else if (!strcmp(classType, "ATBL"))
|
|
|
|
return true;
|
2017-01-31 05:01:40 +00:00
|
|
|
else if (!strcmp(classType, "MP1OriginalIDs"))
|
|
|
|
return true;
|
2016-03-28 21:38:48 +00:00
|
|
|
return false;
|
|
|
|
});
|
2015-10-01 00:40:21 +00:00
|
|
|
}
|
2015-10-04 05:08:56 +00:00
|
|
|
|
2016-10-02 22:41:36 +00:00
|
|
|
urde::SObjectTag BuildTagFromPath(const hecl::ProjectPath& path, hecl::BlenderToken& btok) const
|
|
|
|
{
|
|
|
|
if (hecl::StringUtils::EndsWith(path.getAuxInfo(), _S(".CINF")))
|
|
|
|
return {SBIG('CINF'), path.hash().val32()};
|
|
|
|
else if (hecl::StringUtils::EndsWith(path.getAuxInfo(), _S(".CSKR")))
|
|
|
|
return {SBIG('CSKR'), path.hash().val32()};
|
|
|
|
else if (hecl::StringUtils::EndsWith(path.getAuxInfo(), _S(".ANIM")))
|
|
|
|
return {SBIG('ANIM'), path.hash().val32()};
|
2017-01-21 02:38:34 +00:00
|
|
|
else if (const hecl::SystemChar* ext = path.getLastComponentExt())
|
|
|
|
{
|
|
|
|
if (ext[0] == _S('*') || !hecl::StrCmp(ext, _S("proj")))
|
|
|
|
{
|
|
|
|
if (path.getWithExtension(_S(".proj"), true).isFile() &&
|
|
|
|
path.getWithExtension(_S(".pool"), true).isFile() &&
|
|
|
|
path.getWithExtension(_S(".sdir"), true).isFile() &&
|
|
|
|
path.getWithExtension(_S(".samp"), true).isFile())
|
|
|
|
{
|
|
|
|
hecl::ProjectPath glob = path.getWithExtension(_S(".*"), true);
|
|
|
|
return {SBIG('AGSC'), glob.hash().val32()};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-02 22:41:36 +00:00
|
|
|
|
|
|
|
hecl::ProjectPath asBlend;
|
|
|
|
if (path.getPathType() == hecl::ProjectPath::Type::Glob)
|
|
|
|
asBlend = path.getWithExtension(_S(".blend"), true);
|
|
|
|
else
|
|
|
|
asBlend = path;
|
|
|
|
|
|
|
|
if (hecl::IsPathBlend(asBlend))
|
|
|
|
{
|
|
|
|
hecl::BlenderConnection& conn = btok.getBlenderConnection();
|
|
|
|
if (!conn.openBlend(asBlend))
|
|
|
|
return {};
|
|
|
|
|
|
|
|
switch (conn.getBlendType())
|
|
|
|
{
|
|
|
|
case hecl::BlenderConnection::BlendType::Mesh:
|
|
|
|
return {SBIG('CMDL'), path.hash().val32()};
|
|
|
|
case hecl::BlenderConnection::BlendType::Actor:
|
|
|
|
if (path.getAuxInfo().size())
|
|
|
|
{
|
|
|
|
if (hecl::StringUtils::EndsWith(path.getAuxInfo(), _S(".CINF")))
|
|
|
|
return {SBIG('CINF'), path.hash().val32()};
|
|
|
|
else if (hecl::StringUtils::EndsWith(path.getAuxInfo(), _S(".CSKR")))
|
|
|
|
return {SBIG('CSKR'), path.hash().val32()};
|
|
|
|
else if (hecl::StringUtils::EndsWith(path.getAuxInfo(), _S(".ANIM")))
|
|
|
|
return {SBIG('ANIM'), path.hash().val32()};
|
|
|
|
}
|
|
|
|
return {SBIG('ANCS'), path.hash().val32()};
|
|
|
|
case hecl::BlenderConnection::BlendType::Area:
|
|
|
|
return {SBIG('MREA'), path.hash().val32()};
|
|
|
|
case hecl::BlenderConnection::BlendType::World:
|
|
|
|
{
|
|
|
|
if (path.getAuxInfo().size())
|
|
|
|
{
|
2016-10-08 03:41:08 +00:00
|
|
|
if (hecl::StringUtils::EndsWith(path.getAuxInfo(), _S("MAPW")))
|
2016-10-02 22:41:36 +00:00
|
|
|
return {SBIG('MAPW'), path.hash().val32()};
|
2016-10-08 03:41:08 +00:00
|
|
|
else if (hecl::StringUtils::EndsWith(path.getAuxInfo(), _S("SAVW")))
|
2016-10-02 22:41:36 +00:00
|
|
|
return {SBIG('SAVW'), path.hash().val32()};
|
|
|
|
}
|
|
|
|
return {SBIG('MLVL'), path.hash().val32()};
|
|
|
|
}
|
|
|
|
case hecl::BlenderConnection::BlendType::MapArea:
|
|
|
|
return {SBIG('MAPA'), path.hash().val32()};
|
|
|
|
case hecl::BlenderConnection::BlendType::MapUniverse:
|
|
|
|
return {SBIG('MAPU'), path.hash().val32()};
|
|
|
|
case hecl::BlenderConnection::BlendType::Frame:
|
|
|
|
return {SBIG('FRME'), path.hash().val32()};
|
|
|
|
default:
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (hecl::IsPathPNG(path))
|
|
|
|
{
|
|
|
|
return {SBIG('TXTR'), path.hash().val32()};
|
|
|
|
}
|
|
|
|
else if (hecl::IsPathYAML(path))
|
|
|
|
{
|
|
|
|
FILE* fp = hecl::Fopen(path.getAbsolutePath().c_str(), _S("r"));
|
|
|
|
if (!fp)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
athena::io::YAMLDocReader reader;
|
|
|
|
yaml_parser_set_input_file(reader.getParser(), fp);
|
|
|
|
|
|
|
|
urde::SObjectTag resTag;
|
2017-01-31 11:21:45 +00:00
|
|
|
if (reader.ClassTypeOperation([&](const char* className) -> bool {
|
|
|
|
if (!strcmp(className, "GPSM"))
|
|
|
|
{
|
|
|
|
resTag.type = SBIG('PART');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (!strcmp(className, "SWSH"))
|
|
|
|
{
|
|
|
|
resTag.type = SBIG('SWHC');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (!strcmp(className, "ELSM"))
|
|
|
|
{
|
|
|
|
resTag.type = SBIG('ELSC');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (!strcmp(className, "WPSM"))
|
|
|
|
{
|
|
|
|
resTag.type = SBIG('WPSC');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (!strcmp(className, "CRSM"))
|
|
|
|
{
|
|
|
|
resTag.type = SBIG('CRSC');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (!strcmp(className, "DPSM"))
|
|
|
|
{
|
|
|
|
resTag.type = SBIG('DPSC');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (!strcmp(className, "FONT"))
|
|
|
|
{
|
|
|
|
resTag.type = SBIG('FONT');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (!strcmp(className, "urde::DNAMP1::EVNT"))
|
|
|
|
{
|
|
|
|
resTag.type = SBIG('EVNT');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (!strcmp(className, "urde::DGRP"))
|
|
|
|
{
|
|
|
|
resTag.type = SBIG('DGRP');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (!strcmp(className, "urde::DNAMP1::STRG"))
|
|
|
|
{
|
|
|
|
resTag.type = SBIG('STRG');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (!strcmp(className, "urde::DNAMP1::SCAN"))
|
|
|
|
{
|
|
|
|
resTag.type = SBIG('SCAN');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (!strcmp(className, "DataSpec::DNAMP1::CTweakPlayerRes") ||
|
|
|
|
!strcmp(className, "DataSpec::DNAMP1::CTweakGunRes") ||
|
|
|
|
!strcmp(className, "DataSpec::DNAMP1::CTweakSlideShow") ||
|
|
|
|
!strcmp(className, "DataSpec::DNAMP1::CTweakPlayer") ||
|
|
|
|
!strcmp(className, "DataSpec::DNAMP1::CTweakCameraBob") ||
|
|
|
|
!strcmp(className, "DataSpec::DNAMP1::CTweakGame") ||
|
|
|
|
!strcmp(className, "DataSpec::DNAMP1::CTweakTargeting") ||
|
|
|
|
!strcmp(className, "DataSpec::DNAMP1::CTweakAutoMapper") ||
|
|
|
|
!strcmp(className, "DataSpec::DNAMP1::CTweakGui") ||
|
|
|
|
!strcmp(className, "DataSpec::DNAMP1::CTweakPlayerControl") ||
|
|
|
|
!strcmp(className, "DataSpec::DNAMP1::CTweakBall") ||
|
|
|
|
!strcmp(className, "DataSpec::DNAMP1::CTweakParticle") ||
|
|
|
|
!strcmp(className, "DataSpec::DNAMP1::CTweakGuiColors") ||
|
|
|
|
!strcmp(className, "DataSpec::DNAMP1::CTweakPlayerGun"))
|
|
|
|
{
|
|
|
|
resTag.type = SBIG('CTWK');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (!strcmp(className, "DataSpec::DNAMP1::HINT"))
|
|
|
|
{
|
|
|
|
resTag.type = SBIG('HINT');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (!strcmp(className, "ATBL"))
|
|
|
|
{
|
|
|
|
resTag.type = SBIG('ATBL');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (!strcmp(className, "MP1OriginalIDs"))
|
|
|
|
{
|
|
|
|
resTag.type = SBIG('OIDS');
|
|
|
|
return true;
|
|
|
|
}
|
2016-10-02 22:41:36 +00:00
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
return false;
|
|
|
|
}))
|
2016-10-02 22:41:36 +00:00
|
|
|
{
|
|
|
|
resTag.id = path.hash().val32();
|
|
|
|
fclose(fp);
|
|
|
|
return resTag;
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
void cookMesh(const hecl::ProjectPath& out, const hecl::ProjectPath& in, BlendStream& ds, bool fast,
|
|
|
|
hecl::BlenderToken& btok, FCookProgress progress)
|
2015-10-04 05:08:56 +00:00
|
|
|
{
|
2017-01-31 11:21:45 +00:00
|
|
|
Mesh mesh =
|
|
|
|
ds.compileMesh(fast ? hecl::HMDLTopology::Triangles : hecl::HMDLTopology::TriStrips, m_pc ? 16 : -1,
|
|
|
|
[&progress](int surfCount) { progress(hecl::SysFormat(_S("%d"), surfCount).c_str()); });
|
2016-03-31 18:56:43 +00:00
|
|
|
|
|
|
|
if (m_pc)
|
|
|
|
DNAMP1::CMDL::HMDLCook(out, in, mesh);
|
|
|
|
else
|
|
|
|
DNAMP1::CMDL::Cook(out, in, mesh);
|
2015-10-04 05:08:56 +00:00
|
|
|
}
|
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
void cookActor(const hecl::ProjectPath& out, const hecl::ProjectPath& in, BlendStream& ds, bool fast,
|
|
|
|
hecl::BlenderToken& btok, FCookProgress progress)
|
2015-10-04 05:08:56 +00:00
|
|
|
{
|
2015-10-23 00:45:26 +00:00
|
|
|
Actor actor = ds.compileActor();
|
2017-01-31 11:21:45 +00:00
|
|
|
DNAMP1::ANCS::Cook(out, in, actor, ds, m_pc, [&](const hecl::ProjectPath& modelPath) -> bool {
|
2016-04-10 04:49:02 +00:00
|
|
|
hecl::ProjectPath cooked;
|
|
|
|
if (m_pc)
|
|
|
|
cooked = modelPath.getCookedPath(SpecEntMP1PC);
|
|
|
|
else
|
|
|
|
cooked = modelPath.getCookedPath(SpecEntMP1);
|
|
|
|
doCook(modelPath, cooked, fast, btok, progress);
|
|
|
|
return true;
|
|
|
|
});
|
2015-10-04 05:08:56 +00:00
|
|
|
}
|
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
void cookArea(const hecl::ProjectPath& out, const hecl::ProjectPath& in, BlendStream& ds, bool fast,
|
|
|
|
hecl::BlenderToken& btok, FCookProgress progress)
|
2015-10-04 05:08:56 +00:00
|
|
|
{
|
2016-08-10 02:52:00 +00:00
|
|
|
std::vector<std::string> meshes = ds.getMeshList();
|
|
|
|
std::vector<Mesh> meshCompiles;
|
|
|
|
meshCompiles.reserve(meshes.size());
|
|
|
|
|
2016-08-10 21:54:53 +00:00
|
|
|
std::experimental::optional<ColMesh> colMesh;
|
|
|
|
|
2016-08-10 02:52:00 +00:00
|
|
|
for (const std::string& mesh : meshes)
|
|
|
|
{
|
|
|
|
hecl::SystemStringView meshSys(mesh);
|
2016-08-10 21:54:53 +00:00
|
|
|
if (!mesh.compare("CMESH"))
|
|
|
|
{
|
|
|
|
colMesh = ds.compileColMesh(mesh);
|
|
|
|
progress(_S("Collision Mesh"));
|
|
|
|
continue;
|
|
|
|
}
|
2017-01-31 11:21:45 +00:00
|
|
|
meshCompiles.push_back(ds.compileMesh(
|
|
|
|
mesh, fast ? hecl::HMDLTopology::Triangles : hecl::HMDLTopology::TriStrips, -1,
|
|
|
|
[&](int surfCount) { progress(hecl::SysFormat(_S("%s %d"), meshSys.c_str(), surfCount).c_str()); }));
|
2016-08-10 02:52:00 +00:00
|
|
|
}
|
|
|
|
|
2016-08-10 21:54:53 +00:00
|
|
|
if (!colMesh)
|
|
|
|
Log.report(logvisor::Fatal, _S("unable to find mesh named 'CMESH' in %s"), in.getAbsolutePath().c_str());
|
|
|
|
|
2016-08-11 19:52:22 +00:00
|
|
|
std::vector<Light> lights = ds.compileLights();
|
|
|
|
|
2016-08-10 02:52:00 +00:00
|
|
|
if (m_pc)
|
2016-08-11 19:52:22 +00:00
|
|
|
DNAMP1::MREA::PCCook(out, in, meshCompiles, *colMesh, lights);
|
2016-08-10 02:52:00 +00:00
|
|
|
else
|
2016-08-11 19:52:22 +00:00
|
|
|
DNAMP1::MREA::Cook(out, in, meshCompiles, *colMesh, lights);
|
2015-10-04 05:08:56 +00:00
|
|
|
}
|
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
void cookWorld(const hecl::ProjectPath& out, const hecl::ProjectPath& in, BlendStream& ds, bool fast,
|
|
|
|
hecl::BlenderToken& btok, FCookProgress progress)
|
2016-09-30 22:43:19 +00:00
|
|
|
{
|
|
|
|
BlendStream::World world = ds.compileWorld();
|
2016-12-25 01:36:42 +00:00
|
|
|
ds.close();
|
|
|
|
DNAMP1::MLVL::Cook(out, in, world, btok);
|
2016-09-30 22:43:19 +00:00
|
|
|
}
|
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
void cookGuiFrame(const hecl::ProjectPath& out, const hecl::ProjectPath& in, BlendStream& ds,
|
|
|
|
hecl::BlenderToken& btok, FCookProgress progress)
|
2017-01-17 01:23:19 +00:00
|
|
|
{
|
|
|
|
ds.compileGuiFrame(out.getAbsolutePathUTF8(), 0);
|
|
|
|
}
|
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
void cookYAML(const hecl::ProjectPath& out, const hecl::ProjectPath& in, athena::io::IStreamReader& fin,
|
|
|
|
FCookProgress progress)
|
2015-10-04 05:08:56 +00:00
|
|
|
{
|
2016-03-28 21:38:48 +00:00
|
|
|
athena::io::YAMLDocReader reader;
|
2016-08-22 03:47:48 +00:00
|
|
|
if (reader.parse(&fin))
|
2016-03-28 21:38:48 +00:00
|
|
|
{
|
|
|
|
std::string classStr = reader.readString("DNAType");
|
|
|
|
if (classStr.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!classStr.compare(DNAMP1::STRG::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::STRG strg;
|
|
|
|
strg.read(reader);
|
|
|
|
DNAMP1::STRG::Cook(strg, out);
|
|
|
|
}
|
2017-01-31 11:21:45 +00:00
|
|
|
else if (!classStr.compare(DNAMP1::SCAN::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::SCAN scan;
|
|
|
|
scan.read(reader);
|
|
|
|
DNAMP1::SCAN::Cook(scan, out);
|
|
|
|
}
|
2016-03-28 21:38:48 +00:00
|
|
|
else if (!classStr.compare(DNAParticle::GPSM<UniqueID32>::DNAType()))
|
|
|
|
{
|
|
|
|
DNAParticle::GPSM<UniqueID32> gpsm;
|
|
|
|
gpsm.read(reader);
|
|
|
|
DNAParticle::WriteGPSM(gpsm, out);
|
|
|
|
}
|
2016-03-29 02:24:47 +00:00
|
|
|
else if (!classStr.compare(DNAParticle::SWSH<UniqueID32>::DNAType()))
|
|
|
|
{
|
|
|
|
DNAParticle::SWSH<UniqueID32> swsh;
|
|
|
|
swsh.read(reader);
|
|
|
|
DNAParticle::WriteSWSH(swsh, out);
|
|
|
|
}
|
|
|
|
else if (!classStr.compare(DNAParticle::ELSM<UniqueID32>::DNAType()))
|
|
|
|
{
|
|
|
|
DNAParticle::ELSM<UniqueID32> elsm;
|
|
|
|
elsm.read(reader);
|
|
|
|
DNAParticle::WriteELSM(elsm, out);
|
|
|
|
}
|
|
|
|
else if (!classStr.compare(DNAParticle::WPSM<UniqueID32>::DNAType()))
|
|
|
|
{
|
|
|
|
DNAParticle::WPSM<UniqueID32> wpsm;
|
|
|
|
wpsm.read(reader);
|
|
|
|
DNAParticle::WriteWPSM(wpsm, out);
|
|
|
|
}
|
|
|
|
else if (!classStr.compare(DNAParticle::CRSM<UniqueID32>::DNAType()))
|
|
|
|
{
|
|
|
|
DNAParticle::CRSM<UniqueID32> crsm;
|
|
|
|
crsm.read(reader);
|
|
|
|
DNAParticle::WriteCRSM(crsm, out);
|
|
|
|
}
|
|
|
|
else if (!classStr.compare(DNAParticle::DPSM<UniqueID32>::DNAType()))
|
|
|
|
{
|
|
|
|
DNAParticle::DPSM<UniqueID32> dpsm;
|
|
|
|
dpsm.read(reader);
|
|
|
|
DNAParticle::WriteDPSM(dpsm, out);
|
|
|
|
}
|
2016-04-12 11:37:07 +00:00
|
|
|
else if (!classStr.compare(DNADGRP::DGRP<UniqueID32>::DNAType()))
|
|
|
|
{
|
|
|
|
DNADGRP::DGRP<UniqueID32> dgrp;
|
|
|
|
dgrp.read(reader);
|
|
|
|
DNADGRP::WriteDGRP(dgrp, out);
|
|
|
|
}
|
2016-08-17 05:40:25 +00:00
|
|
|
else if (!classStr.compare(DNAFont::FONT<UniqueID32>::DNAType()))
|
|
|
|
{
|
|
|
|
DNAFont::FONT<UniqueID32> font;
|
|
|
|
font.read(reader);
|
|
|
|
DNAFont::WriteFONT(font, out);
|
|
|
|
}
|
2016-08-31 19:58:21 +00:00
|
|
|
else if (!classStr.compare(DNAMP1::CTweakPlayerRes::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::CTweakPlayerRes playerRes;
|
|
|
|
playerRes.read(reader);
|
|
|
|
WriteTweak(playerRes, out);
|
|
|
|
}
|
2016-08-31 21:00:06 +00:00
|
|
|
else if (!classStr.compare(DNAMP1::CTweakGunRes::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::CTweakGunRes gunRes;
|
|
|
|
gunRes.read(reader);
|
|
|
|
WriteTweak(gunRes, out);
|
|
|
|
}
|
2016-09-16 20:18:03 +00:00
|
|
|
else if (!classStr.compare(DNAMP1::CTweakSlideShow::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::CTweakSlideShow slideShow;
|
|
|
|
slideShow.read(reader);
|
|
|
|
WriteTweak(slideShow, out);
|
2016-09-16 20:23:07 +00:00
|
|
|
}
|
2016-09-15 07:26:35 +00:00
|
|
|
else if (!classStr.compare(DNAMP1::CTweakPlayer::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::CTweakPlayer player;
|
|
|
|
player.read(reader);
|
|
|
|
WriteTweak(player, out);
|
|
|
|
}
|
|
|
|
else if (!classStr.compare(DNAMP1::CTweakCameraBob::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::CTweakCameraBob cBob;
|
|
|
|
cBob.read(reader);
|
|
|
|
WriteTweak(cBob, out);
|
2016-09-16 20:18:03 +00:00
|
|
|
}
|
2017-01-22 01:40:12 +00:00
|
|
|
else if (!classStr.compare(DNAMP1::CTweakGame::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::CTweakGame cGame;
|
|
|
|
cGame.read(reader);
|
|
|
|
WriteTweak(cGame, out);
|
|
|
|
}
|
2017-01-26 10:06:18 +00:00
|
|
|
else if (!classStr.compare(DNAMP1::CTweakAutoMapper::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::CTweakAutoMapper autoMapper;
|
|
|
|
autoMapper.read(reader);
|
|
|
|
WriteTweak(autoMapper, out);
|
|
|
|
}
|
|
|
|
else if (!classStr.compare(DNAMP1::CTweakTargeting::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::CTweakTargeting targeting;
|
|
|
|
targeting.read(reader);
|
|
|
|
WriteTweak(targeting, out);
|
|
|
|
}
|
|
|
|
else if (!classStr.compare(DNAMP1::CTweakGui::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::CTweakGui gui;
|
|
|
|
gui.read(reader);
|
|
|
|
WriteTweak(gui, out);
|
|
|
|
}
|
2017-01-27 02:22:52 +00:00
|
|
|
else if (!classStr.compare(DNAMP1::CTweakPlayerControl::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::CTweakPlayerControl pc;
|
|
|
|
pc.read(reader);
|
|
|
|
WriteTweak(pc, out);
|
|
|
|
}
|
2017-01-26 10:06:18 +00:00
|
|
|
else if (!classStr.compare(DNAMP1::CTweakBall::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::CTweakBall ball;
|
|
|
|
ball.read(reader);
|
|
|
|
WriteTweak(ball, out);
|
|
|
|
}
|
|
|
|
else if (!classStr.compare(DNAMP1::CTweakParticle::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::CTweakParticle part;
|
|
|
|
part.read(reader);
|
|
|
|
WriteTweak(part, out);
|
|
|
|
}
|
|
|
|
else if (!classStr.compare(DNAMP1::CTweakGuiColors::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::CTweakGuiColors gColors;
|
|
|
|
gColors.read(reader);
|
|
|
|
WriteTweak(gColors, out);
|
|
|
|
}
|
2017-01-27 02:58:21 +00:00
|
|
|
else if (!classStr.compare(DNAMP1::CTweakPlayerGun::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::CTweakPlayerGun pGun;
|
|
|
|
pGun.read(reader);
|
|
|
|
WriteTweak(pGun, out);
|
|
|
|
}
|
|
|
|
else if (!classStr.compare(DNAMP1::CTweakPlayerControl::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::CTweakPlayerControl pControl;
|
|
|
|
pControl.read(reader);
|
|
|
|
WriteTweak(pControl, out);
|
|
|
|
}
|
2016-09-10 04:50:00 +00:00
|
|
|
else if (!classStr.compare(DNAMP1::HINT::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::HINT::Cook(in, out);
|
|
|
|
}
|
2017-01-21 02:38:34 +00:00
|
|
|
else if (!classStr.compare("ATBL"))
|
|
|
|
{
|
|
|
|
DNAAudio::ATBL::Cook(in, out);
|
|
|
|
}
|
2017-01-31 05:01:40 +00:00
|
|
|
else if (!classStr.compare("MP1OriginalIDs"))
|
|
|
|
{
|
|
|
|
OriginalIDs::Cook(in, out);
|
|
|
|
}
|
2016-03-28 21:38:48 +00:00
|
|
|
}
|
2016-03-29 02:24:47 +00:00
|
|
|
progress(_S("Done"));
|
2015-10-04 05:08:56 +00:00
|
|
|
}
|
2016-09-18 23:47:48 +00:00
|
|
|
|
2016-10-02 22:41:36 +00:00
|
|
|
void flattenDependenciesYAML(athena::io::IStreamReader& fin, std::vector<hecl::ProjectPath>& pathsOut)
|
|
|
|
{
|
|
|
|
athena::io::YAMLDocReader reader;
|
|
|
|
if (reader.parse(&fin))
|
|
|
|
{
|
|
|
|
std::string classStr = reader.readString("DNAType");
|
|
|
|
if (classStr.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!classStr.compare(DNAMP1::STRG::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::STRG strg;
|
|
|
|
strg.read(reader);
|
|
|
|
strg.gatherDependencies(pathsOut);
|
|
|
|
}
|
2017-01-31 11:21:45 +00:00
|
|
|
if (!classStr.compare(DNAMP1::SCAN::DNAType()))
|
|
|
|
{
|
|
|
|
DNAMP1::SCAN scan;
|
|
|
|
scan.read(reader);
|
|
|
|
scan.gatherDependencies(pathsOut);
|
|
|
|
}
|
2016-10-02 22:41:36 +00:00
|
|
|
else if (!classStr.compare(DNAParticle::GPSM<UniqueID32>::DNAType()))
|
|
|
|
{
|
|
|
|
DNAParticle::GPSM<UniqueID32> gpsm;
|
|
|
|
gpsm.read(reader);
|
|
|
|
gpsm.gatherDependencies(pathsOut);
|
|
|
|
}
|
|
|
|
else if (!classStr.compare(DNAParticle::SWSH<UniqueID32>::DNAType()))
|
|
|
|
{
|
|
|
|
DNAParticle::SWSH<UniqueID32> swsh;
|
|
|
|
swsh.read(reader);
|
|
|
|
swsh.gatherDependencies(pathsOut);
|
|
|
|
}
|
|
|
|
else if (!classStr.compare(DNAParticle::ELSM<UniqueID32>::DNAType()))
|
|
|
|
{
|
|
|
|
DNAParticle::ELSM<UniqueID32> elsm;
|
|
|
|
elsm.read(reader);
|
|
|
|
elsm.gatherDependencies(pathsOut);
|
|
|
|
}
|
|
|
|
else if (!classStr.compare(DNAParticle::WPSM<UniqueID32>::DNAType()))
|
|
|
|
{
|
|
|
|
DNAParticle::WPSM<UniqueID32> wpsm;
|
|
|
|
wpsm.read(reader);
|
|
|
|
wpsm.gatherDependencies(pathsOut);
|
|
|
|
}
|
|
|
|
else if (!classStr.compare(DNAParticle::CRSM<UniqueID32>::DNAType()))
|
|
|
|
{
|
|
|
|
DNAParticle::CRSM<UniqueID32> crsm;
|
|
|
|
crsm.read(reader);
|
|
|
|
crsm.gatherDependencies(pathsOut);
|
|
|
|
}
|
|
|
|
else if (!classStr.compare(DNAParticle::DPSM<UniqueID32>::DNAType()))
|
|
|
|
{
|
|
|
|
DNAParticle::DPSM<UniqueID32> dpsm;
|
|
|
|
dpsm.read(reader);
|
|
|
|
dpsm.gatherDependencies(pathsOut);
|
|
|
|
}
|
|
|
|
else if (!classStr.compare(DNAFont::FONT<UniqueID32>::DNAType()))
|
|
|
|
{
|
|
|
|
DNAFont::FONT<UniqueID32> font;
|
|
|
|
font.read(reader);
|
|
|
|
font.gatherDependencies(pathsOut);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
void cookAudioGroup(const hecl::ProjectPath& out, const hecl::ProjectPath& in, FCookProgress progress)
|
2016-09-18 23:47:48 +00:00
|
|
|
{
|
|
|
|
DNAMP1::AGSC::Cook(in, out);
|
|
|
|
progress(_S("Done"));
|
|
|
|
}
|
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
void cookSong(const hecl::ProjectPath& out, const hecl::ProjectPath& in, FCookProgress progress)
|
2016-09-18 23:47:48 +00:00
|
|
|
{
|
|
|
|
DNAMP1::CSNG::Cook(in, out);
|
|
|
|
progress(_S("Done"));
|
|
|
|
}
|
2015-07-01 23:50:39 +00:00
|
|
|
};
|
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
hecl::Database::DataSpecEntry SpecEntMP1 = {
|
|
|
|
_S("MP1"), _S("Data specification for original Metroid Prime engine"),
|
|
|
|
[](hecl::Database::Project& project, hecl::Database::DataSpecTool) -> hecl::Database::IDataSpec* {
|
|
|
|
return new struct SpecMP1(&SpecEntMP1, project, false);
|
|
|
|
}};
|
2015-07-01 23:50:39 +00:00
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
hecl::Database::DataSpecEntry SpecEntMP1PC = {
|
|
|
|
_S("MP1-PC"), _S("Data specification for PC-optimized Metroid Prime engine"),
|
|
|
|
[](hecl::Database::Project& project, hecl::Database::DataSpecTool tool) -> hecl::Database::IDataSpec* {
|
2016-03-27 20:43:04 +00:00
|
|
|
if (tool != hecl::Database::DataSpecTool::Extract)
|
2016-03-28 22:39:56 +00:00
|
|
|
return new struct SpecMP1(&SpecEntMP1PC, project, true);
|
2016-03-27 20:43:04 +00:00
|
|
|
return nullptr;
|
2017-01-31 11:21:45 +00:00
|
|
|
}};
|
2017-01-17 01:23:19 +00:00
|
|
|
|
2017-01-31 11:21:45 +00:00
|
|
|
hecl::Database::DataSpecEntry SpecEntMP1ORIG = {
|
|
|
|
_S("MP1-ORIG"), _S("Data specification for unmodified Metroid Prime resources"), {}};
|
2015-07-01 23:50:39 +00:00
|
|
|
}
|