metaforce/DataSpec/DNAMP1/DNAMP1.hpp

51 lines
1.6 KiB
C++
Raw Normal View History

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:
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
2016-03-04 23:04:53 +00:00
PAKBridge(hecl::Database::Project& project,
const nod::Node& node,
bool doExtract=true);
void build();
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;}
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,
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__