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;
|
2015-10-04 05:08:56 +00:00
|
|
|
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:
|
2015-09-28 01:13:27 +00:00
|
|
|
bool m_doExtract;
|
|
|
|
using Level = Level<UniqueID32>;
|
2015-09-23 22:59:12 +00:00
|
|
|
std::unordered_map<UniqueID32, Level> m_levelDeps;
|
2015-08-04 02:14:47 +00:00
|
|
|
HECL::SystemString m_levelString;
|
2015-09-24 00:59:36 +00:00
|
|
|
|
2015-09-28 01:13:27 +00:00
|
|
|
PAKBridge(HECL::Database::Project& project,
|
2015-10-04 05:08:56 +00:00
|
|
|
const NOD::Node& node,
|
2015-09-28 01:13:27 +00:00
|
|
|
bool doExtract=true);
|
2015-08-04 02:14:47 +00:00
|
|
|
void build();
|
|
|
|
static ResExtractor<PAKBridge> LookupExtractor(const DNAMP1::PAK::Entry& entry);
|
2015-09-06 05:34:30 +00:00
|
|
|
const std::string& getName() const {return m_node.getName();}
|
|
|
|
const HECL::SystemString& getLevelString() const {return m_levelString;}
|
2015-07-28 23:53:57 +00:00
|
|
|
|
2015-09-06 05:34:30 +00:00
|
|
|
using PAKType = DNAMP1::PAK;
|
|
|
|
const PAKType& getPAK() const {return m_pak;}
|
2015-10-04 05:08:56 +00:00
|
|
|
const NOD::Node& getNode() const {return m_node;}
|
2015-09-06 05:34:30 +00:00
|
|
|
|
|
|
|
void addCMDLRigPairs(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 // __DNAMP2_HPP__
|