Skipped autogenerated assets

This commit is contained in:
KiritoDv
2024-03-10 15:58:45 -06:00
committed by Lywx
parent 8d9374a113
commit ef6befae9a
2 changed files with 7 additions and 0 deletions
+4
View File
@@ -795,6 +795,10 @@ std::optional<std::vector<std::tuple<std::string, YAML::Node>>> Companion::GetNo
for(auto& [addr, tpl] : this->gAddrMap[this->gCurrentFile]){
auto [name, node] = tpl;
const auto n_type = GetSafeNode<std::string>(node, "type");
if(node["autogen"]){
SPDLOG_DEBUG("Skipping autogenerated asset {}", name);
continue;
}
if(n_type == type){
nodes.push_back(tpl);
}
+3
View File
@@ -345,6 +345,7 @@ std::optional<std::shared_ptr<IParsedData>> DListFactory::parse(std::vector<uint
dl["type"] = "GFX";
dl["offset"] = ptr;
dl["symbol"] = output;
dl["autogen"] = true;
auto result = factory->parse(rom, dl);
@@ -402,6 +403,7 @@ std::optional<std::shared_ptr<IParsedData>> DListFactory::parse(std::vector<uint
light["type"] = "lights";
light["offset"] = ptr;
light["symbol"] = output;
light["autogen"] = true;
auto result = factory->parse(rom, light);
if(result.has_value()){
Companion::Instance->RegisterAsset(output, light);
@@ -467,6 +469,7 @@ std::optional<std::shared_ptr<IParsedData>> DListFactory::parse(std::vector<uint
vtx["offset"] = ptr;
vtx["count"] = nvtx;
vtx["symbol"] = output;
vtx["autogen"] = true;
auto result = factory->parse(rom, vtx);
if(result.has_value()){
Companion::Instance->RegisterAsset(output, vtx);