metaforce/DataSpec/DNAMP3/DNAMP3.hpp

38 lines
1.2 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"
2015-07-16 01:57:34 +00:00
2018-12-08 05:30:43 +00:00
namespace DataSpec::DNAMP3 {
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
/* MP3-specific, one-shot PAK traversal/extraction class */
2018-12-08 05:30:43 +00:00
class PAKBridge {
const nod::Node& m_node;
PAK m_pak;
2015-07-17 00:01:05 +00:00
public:
2018-12-08 05:30:43 +00:00
bool m_doExtract;
using Level = DataSpec::Level<UniqueID64>;
std::unordered_map<UniqueID64, Level> m_levelDeps;
hecl::SystemString m_levelString;
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);
std::string_view getName() const { return m_node.getName(); }
hecl::SystemStringView getLevelString() const { return m_levelString; }
2015-07-17 00:01:05 +00:00
2018-12-08 05:30:43 +00:00
using PAKType = PAK;
const PAKType& getPAK() const { return m_pak; }
const nod::Node& getNode() const { return m_node; }
void addCMDLRigPairs(PAKRouter<PAKBridge>& pakRouter, CharacterAssociations<UniqueID64>& charAssoc) const;
void addMAPATransforms(PAKRouter<PAKBridge>& pakRouter, std::unordered_map<UniqueID64, zeus::CMatrix4f>& addTo,
std::unordered_map<UniqueID64, hecl::ProjectPath>& pathOverrides) const;
};
2015-07-16 01:57:34 +00:00
2018-12-08 05:30:43 +00:00
} // namespace DataSpec::DNAMP3