metaforce/DataSpec/DNAMP1/DNAMP1.hpp

37 lines
915 B
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
namespace Retro
{
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;
const NOD::DiscBase::IPartition::Node& m_node;
PAK m_pak;
public:
PAKBridge(HECL::Database::Project& project, const NOD::DiscBase::IPartition::Node& node);
2015-07-28 23:53:57 +00:00
static ResExtractor LookupExtractor(const PAK::Entry& entry);
2015-07-17 00:01:05 +00:00
const std::string& getName() const {return m_node.getName();}
2015-07-19 06:19:46 +00:00
HECL::SystemString getLevelString() const;
2015-07-28 23:53:57 +00:00
bool extractResources(const PAKRouter<PAKBridge>& router,
2015-07-20 23:25:16 +00:00
bool force,
std::function<void(float)> progress);
2015-07-28 23:53:57 +00:00
typedef PAK PAKType;
const PAKType& getPAK() const {return m_pak;}
2015-07-17 00:01:05 +00:00
};
2015-07-16 01:57:34 +00:00
}
}
#endif // __DNAMP1_HPP__