mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-13 11:26:10 +00:00
Additional extract directory tier for level names
This commit is contained in:
@@ -17,18 +17,23 @@ class PAKBridge
|
||||
HECL::Database::Project& m_project;
|
||||
const NOD::DiscBase::IPartition::Node& m_node;
|
||||
PAK m_pak;
|
||||
struct Area
|
||||
struct Level
|
||||
{
|
||||
HECL::SystemString name;
|
||||
struct Layer
|
||||
struct Area
|
||||
{
|
||||
HECL::SystemString name;
|
||||
struct Layer
|
||||
{
|
||||
HECL::SystemString name;
|
||||
std::unordered_set<UniqueID32> resources;
|
||||
};
|
||||
std::vector<Layer> layers;
|
||||
std::unordered_set<UniqueID32> resources;
|
||||
};
|
||||
std::vector<Layer> layers;
|
||||
std::unordered_set<UniqueID32> resources;
|
||||
std::unordered_map<UniqueID32, Area> areas;
|
||||
};
|
||||
std::unordered_map<UniqueID32, Area> m_areaDeps;
|
||||
std::unordered_map<UniqueID32, Level> m_levelDeps;
|
||||
HECL::SystemString m_levelString;
|
||||
UniqueResult uniqueCheck(const PAK::Entry& entry);
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user