metaforce/DataSpec/DNAMP1/DNAMP1.hpp

45 lines
1.1 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"
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 DNAMP1
{
extern LogVisor::LogModule Log;
2015-07-17 00:01:05 +00:00
/* MP1-specific, one-shot PAK traversal/extraction class */
class PAKBridge
{
HECL::Database::Project& m_project;
2015-10-04 05:08:56 +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;
using Level = Level<UniqueID32>;
std::unordered_map<UniqueID32, Level> m_levelDeps;
HECL::SystemString m_levelString;
2015-09-24 00:59:36 +00:00
PAKBridge(HECL::Database::Project& project,
2015-10-04 05:08:56 +00:00
const NOD::Node& node,
bool doExtract=true);
void build();
static ResExtractor<PAKBridge> LookupExtractor(const PAK::Entry& entry);
const std::string& getName() const {return m_node.getName();}
const HECL::SystemString& getLevelString() const {return m_levelString;}
using PAKType = PAK;
const PAKType& getPAK() const {return m_pak;}
2015-10-04 05:08:56 +00:00
const NOD::Node& getNode() const {return m_node;}
void addCMDLRigPairs(PAKRouter<PAKBridge>& pakRouter,
std::unordered_map<UniqueID32, std::pair<UniqueID32, UniqueID32>>& addTo) const;
2015-07-17 00:01:05 +00:00
};
2015-07-16 01:57:34 +00:00
}
}
#endif // __DNAMP1_HPP__