metaforce/DataSpec/DNAMP2/DNAMP2.hpp

47 lines
1.3 KiB
C++
Raw Normal View History

2015-07-16 01:57:34 +00:00
#ifndef __DNAMP2_HPP__
#define __DNAMP2_HPP__
#include "../DNACommon/DNACommon.hpp"
2015-07-17 00:01:05 +00:00
#include "../DNAMP1/PAK.hpp"
2015-07-16 01:57:34 +00:00
2016-02-13 09:02:47 +00:00
namespace DataSpec
2015-07-16 01:57:34 +00:00
{
namespace DNAMP2
{
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
/* MP2-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
DNAMP1::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 DNAMP1::PAK& pak, const DNAMP1::PAK::Entry& entry);
const std::string& getName() const {return m_node.getName();}
2016-03-04 23:04:53 +00:00
const hecl::SystemString& getLevelString() const {return m_levelString;}
2015-07-28 23:53:57 +00:00
using PAKType = DNAMP1::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,
std::unordered_map<UniqueID32, UniqueID32>& cskrCinfToAncs) const;
};
2015-07-17 00:01:05 +00:00
2015-07-16 01:57:34 +00:00
}
}
#endif // __DNAMP2_HPP__