metaforce/DataSpec/DNAMP1/MAPA.hpp

35 lines
855 B
C++
Raw Normal View History

2015-08-08 00:08:16 +00:00
#ifndef __DNAMP1_MAPA_HPP__
#define __DNAMP1_MAPA_HPP__
#include <vector>
2015-10-26 02:31:09 +00:00
#include "../DNACommon/PAK.hpp"
#include "../DNACommon/MAPA.hpp"
#include "DNAMP1.hpp"
2015-08-08 00:08:16 +00:00
namespace Retro
{
namespace DNAMP1
{
2015-10-26 02:31:09 +00:00
2015-12-06 03:05:34 +00:00
struct MAPA : DNAMAPA::MAPA
{
2015-10-26 02:31:09 +00:00
static bool Extract(const SpecBase& dataSpec,
PAKEntryReadStream& rs,
const HECL::ProjectPath& outPath,
PAKRouter<PAKBridge>& pakRouter,
const PAK::Entry& entry,
bool force,
std::function<void(const HECL::SystemChar*)> fileChanged)
{
MAPA mapa;
mapa.read(rs);
HECL::BlenderConnection& conn = HECL::BlenderConnection::SharedConnection();
return DNAMAPA::ReadMAPAToBlender(conn, mapa, outPath, pakRouter, entry, force);
}
2015-08-08 00:08:16 +00:00
};
}
}
#endif