2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 18:24:55 +00:00

Prelim CSimplePool RE work (needs verification)

This commit is contained in:
2016-02-04 21:52:05 -08:00
parent e060746b14
commit 0133115cee
7 changed files with 57 additions and 14 deletions

13
DataSpec/DNAMP2/AFSM.hpp Normal file
View File

@@ -0,0 +1,13 @@
#ifndef _DNAMP2_AFSM_HPP_
#define _DNAMP2_AFSM_HPP_
#include "../DNAMP1/AFSM.hpp"
namespace Retro
{
namespace DNAMP2
{
using AFSM = DNAMP1::AFSM;
}
}
#endif // _RETRO_AFSM_HPP_

View File

@@ -15,4 +15,5 @@ add_library(DNAMP2
CMDL.hpp
MREA.cpp
MAPA.hpp
AFSM.hpp
STRG.hpp STRG.cpp)

View File

@@ -6,6 +6,7 @@
#include "ANCS.hpp"
#include "MREA.hpp"
#include "MAPA.hpp"
#include "AFSM.hpp"
#include "../DNACommon/TXTR.hpp"
namespace Retro
@@ -215,6 +216,8 @@ ResExtractor<PAKBridge> PAKBridge::LookupExtractor(const DNAMP1::PAK::Entry& ent
return {STRG::Extract, nullptr, {_S(".yaml")}};
case SBIG('TXTR'):
return {TXTR::Extract, nullptr, {_S(".png")}};
case SBIG('AFSM'):
return {AFSM::Extract, nullptr, {_S(".yaml")}};
case SBIG('CMDL'):
return {nullptr, CMDL::Extract, {_S(".blend")}, 1};
case SBIG('ANCS'):