Merge branch 'test'

This commit is contained in:
2023-04-02 13:22:59 -07:00
6 changed files with 100 additions and 0 deletions

View File

@ -12,6 +12,7 @@ target_sources(prefabtool
PRIVATE PRIVATE
${DAWN_SHARED_SOURCES} ${DAWN_SHARED_SOURCES}
${DAWN_TOOL_SOURCES} ${DAWN_TOOL_SOURCES}
PrefabAssetParser.cpp
PrefabTool.cpp PrefabTool.cpp
PrefabGen.cpp PrefabGen.cpp
PrefabChildParser.cpp PrefabChildParser.cpp

View File

@ -0,0 +1,34 @@
// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#include "PrefabAssetParser.hpp"
using namespace Dawn;
std::vector<std::string> PrefabAssetParser::getRequiredAttributes() {
return { "type", "name" };
}
std::map<std::string, std::string> PrefabAssetParser::getOptionalAttributes() {
return { };
}
int32_t PrefabAssetParser::onParse(
Xml *node,
std::map<std::string, std::string> values,
struct PrefabAsset *out,
std::string *error
) {
out->name = values["name"];
if(values["type"] == "texture") {
out->type = PREFAB_ASSET_TYPE_TEXTURE;
} else {
*error = "Unknown asset type '" + values["type"] + "'";
return 1;
}
return 0;
}

View File

@ -0,0 +1,32 @@
// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "util/XmlParser.hpp"
namespace Dawn {
enum PrefabAssetType {
PREFAB_ASSET_TYPE_TEXTURE
};
struct PrefabAsset {
PrefabAssetType type;
std::string fileName;
std::string usageName;
};
class PrefabAssetParser : public XmlParser<PrefabAsset> {
public:
virtual std::vector<std::string> getRequiredAttributes();
virtual std::map<std::string, std::string> getOptionalAttributes();
virtual int32_t onParse(
Xml *node,
std::map<std::string, std::string> values,
struct PrefabAsset *out,
std::string *error
);
};
}

View File

@ -47,6 +47,13 @@ int32_t PrefabChildParser::onParse(
auto ret = (PrefabChildParser()).parse(c, &child, error); auto ret = (PrefabChildParser()).parse(c, &child, error);
if(ret != 0) return ret; if(ret != 0) return ret;
out->children.push_back(child); out->children.push_back(child);
} else if(c->node == "asset") {
struct PrefabAsset asset;
auto ret = (PrefabAssetParser()).parse(c, &asset, error);
if(ret != 0) return ret;
out->assets.push_back(asset);
} else { } else {
struct PrefabComponent component; struct PrefabComponent component;
component.registry = out->registry; component.registry = out->registry;

View File

@ -5,6 +5,7 @@
#pragma once #pragma once
#include "PrefabComponentParser.hpp" #include "PrefabComponentParser.hpp"
#include "PrefabAssetParser.hpp"
namespace Dawn { namespace Dawn {
struct PrefabChild { struct PrefabChild {
@ -14,6 +15,7 @@ namespace Dawn {
std::string scale; std::string scale;
std::vector<struct PrefabComponent> components; std::vector<struct PrefabComponent> components;
std::vector<struct PrefabChild> children; std::vector<struct PrefabChild> children;
std::vector<struct PrefabAsset> assets;
}; };
class PrefabChildParser : public XmlParser<struct PrefabChild> { class PrefabChildParser : public XmlParser<struct PrefabChild> {

View File

@ -32,6 +32,30 @@ void PrefabGen::generate(
classInfo.includes.push_back("prefab/SceneItemPrefab.hpp"); classInfo.includes.push_back("prefab/SceneItemPrefab.hpp");
// Process assets
int32_t assetNumber = 0;
auto processAsset = [&](struct PrefabAsset a) {
std::string assetType = "";
switch(a.type) {
case PREFAB_ASSET_TYPE_TEXTURE:
assetType = "TextureAsset";
break;
default:
assertUnreachable();
}
a.usageName = "asset" + std::to_string(assetNumber++);
line(&methodInit.body, "auto " + a.usageName + " = man->get<" + assetType + ">(" + a.fileName + ");", "");
};
// Load self assets
auto itAssets = info->root.assets.begin();
while(itAssets != info->root.assets.end()) {
processAsset(*itAssets);
++itAssets;
}
// TODO: Load child assets?
// Process root and all of its children // Process root and all of its children
int32_t childNumber = 0; int32_t childNumber = 0;
int32_t componentNumber = 0; int32_t componentNumber = 0;