2015-07-16 01:57:34 +00:00
|
|
|
#ifndef __DNAMP1_HPP__
|
|
|
|
#define __DNAMP1_HPP__
|
|
|
|
|
|
|
|
#include "../DNACommon/DNACommon.hpp"
|
2015-07-17 00:01:05 +00:00
|
|
|
#include "PAK.hpp"
|
2016-10-01 23:20:20 +00:00
|
|
|
#include "zeus/CMatrix4f.hpp"
|
2015-07-16 01:57:34 +00:00
|
|
|
|
2017-12-29 08:08:12 +00:00
|
|
|
namespace DataSpec::DNAMP1
|
2015-07-16 01:57:34 +00:00
|
|
|
{
|
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
extern logvisor::Module Log;
|
2015-07-16 01:57:34 +00:00
|
|
|
|
2015-07-17 00:01:05 +00:00
|
|
|
/* MP1-specific, one-shot PAK traversal/extraction class */
|
|
|
|
class PAKBridge
|
|
|
|
{
|
2016-03-04 23:04:53 +00:00
|
|
|
hecl::Database::Project& m_project;
|
|
|
|
const nod::Node& m_node;
|
2015-07-17 00:01:05 +00:00
|
|
|
PAK m_pak;
|
2015-09-24 00:59:36 +00:00
|
|
|
public:
|
2015-09-28 01:13:27 +00:00
|
|
|
bool m_doExtract;
|
2016-04-15 20:42:40 +00:00
|
|
|
using Level = DataSpec::Level<UniqueID32>;
|
2015-09-23 22:59:12 +00:00
|
|
|
std::unordered_map<UniqueID32, Level> m_levelDeps;
|
2016-03-04 23:04:53 +00:00
|
|
|
hecl::SystemString m_levelString;
|
2015-09-24 00:59:36 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
PAKBridge(hecl::Database::Project& project,
|
|
|
|
const nod::Node& node,
|
2015-09-28 01:13:27 +00:00
|
|
|
bool doExtract=true);
|
2015-08-04 02:14:47 +00:00
|
|
|
void build();
|
2016-08-31 19:58:21 +00:00
|
|
|
static ResExtractor<PAKBridge> LookupExtractor(const PAK& pak, const PAK::Entry& entry);
|
2017-11-13 06:19:18 +00:00
|
|
|
std::string_view getName() const {return m_node.getName();}
|
|
|
|
hecl::SystemStringView getLevelString() const {return m_levelString;}
|
2015-09-06 05:34:30 +00:00
|
|
|
using PAKType = PAK;
|
|
|
|
const PAKType& getPAK() const {return m_pak;}
|
2016-03-04 23:04:53 +00:00
|
|
|
const nod::Node& getNode() const {return m_node;}
|
2015-09-06 05:34:30 +00:00
|
|
|
|
2015-10-27 00:19:03 +00:00
|
|
|
void addCMDLRigPairs(PAKRouter<PAKBridge>& pakRouter,
|
2016-09-19 05:29:05 +00:00
|
|
|
std::unordered_map<UniqueID32, std::pair<UniqueID32, UniqueID32>>& addTo,
|
2016-09-19 06:08:18 +00:00
|
|
|
std::unordered_map<UniqueID32, std::pair<UniqueID32, std::string>>& cskrCinfToAncs) const;
|
2016-10-01 23:20:20 +00:00
|
|
|
|
2018-02-24 06:17:17 +00:00
|
|
|
void addPATHToMREA(PAKRouter<PAKBridge>& pakRouter,
|
|
|
|
std::unordered_map<UniqueID32, UniqueID32>& pathToMrea) const;
|
|
|
|
|
2016-10-01 23:20:20 +00:00
|
|
|
void addMAPATransforms(PAKRouter<PAKBridge>& pakRouter,
|
|
|
|
std::unordered_map<UniqueID32, zeus::CMatrix4f>& addTo,
|
|
|
|
std::unordered_map<UniqueID32, hecl::ProjectPath>& pathOverrides) const;
|
2015-07-17 00:01:05 +00:00
|
|
|
};
|
|
|
|
|
2015-07-16 01:57:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __DNAMP1_HPP__
|