metaforce/DataSpec/DNAMP2/DNAMP2.hpp

49 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
namespace Retro
{
namespace DNAMP2
{
extern LogVisor::LogModule Log;
2015-07-17 00:01:05 +00:00
/* MP2-specific, one-shot PAK traversal/extraction class */
class PAKBridge
{
HECL::Database::Project& m_project;
const NOD::DiscBase::IPartition::Node& m_node;
DNAMP1::PAK m_pak;
struct Area
{
HECL::SystemString name;
struct Layer
{
HECL::SystemString name;
std::unordered_set<UniqueID32> resources;
};
std::vector<Layer> layers;
std::unordered_set<UniqueID32> resources;
};
std::unordered_map<UniqueID32, Area> m_areaDeps;
HECL::SystemString m_levelString;
UniqueResult uniqueCheck(const DNAMP1::PAK::Entry& entry);
2015-07-17 00:01:05 +00:00
public:
PAKBridge(HECL::Database::Project& project, const NOD::DiscBase::IPartition::Node& node);
void build();
static ResExtractor<PAKBridge> LookupExtractor(const DNAMP1::PAK::Entry& entry);
inline const std::string& getName() const {return m_node.getName();}
inline const HECL::SystemString& getLevelString() const {return m_levelString;}
2015-07-28 23:53:57 +00:00
typedef DNAMP1::PAK PAKType;
inline const PAKType& getPAK() const {return m_pak;}
inline const NOD::DiscBase::IPartition::Node& getNode() const {return m_node;}};
2015-07-17 00:01:05 +00:00
2015-07-16 01:57:34 +00:00
}
}
#endif // __DNAMP2_HPP__