#ifndef __DNAMP2_HPP__ #define __DNAMP2_HPP__ #include "../DNACommon/DNACommon.hpp" #include "../DNAMP1/PAK.hpp" namespace Retro { namespace DNAMP2 { extern LogVisor::LogModule Log; /* 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 resources; }; std::vector layers; std::unordered_set resources; }; std::unordered_map m_areaDeps; HECL::SystemString m_levelString; UniqueResult uniqueCheck(const DNAMP1::PAK::Entry& entry); public: PAKBridge(HECL::Database::Project& project, const NOD::DiscBase::IPartition::Node& node); void build(); static ResExtractor 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;} typedef DNAMP1::PAK PAKType; inline const PAKType& getPAK() const {return m_pak;} inline const NOD::DiscBase::IPartition::Node& getNode() const {return m_node;}}; } } #endif // __DNAMP2_HPP__