metaforce/DataSpec/DNAMP1/DNAMP1.hpp

44 lines
1.4 KiB
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2015-07-16 01:57:34 +00:00
2018-06-29 20:21:36 +00:00
#include "DataSpec/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
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:
bool m_doExtract;
2016-04-15 20:42:40 +00:00
using Level = DataSpec::Level<UniqueID32>;
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
PAKBridge(const nod::Node& node, bool doExtract=true);
void build();
static ResExtractor<PAKBridge> LookupExtractor(const nod::Node& pakNode, 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;}
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;}
void addCMDLRigPairs(PAKRouter<PAKBridge>& pakRouter, CharacterAssociations<UniqueID32>& charAssoc) 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
}