From a7ee65cb6d20778b39656579e81a9c65d86dd6bb Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 26 Mar 2023 21:54:40 -0700 Subject: [PATCH] , --- src/dawn/scene/components/debug/FPSLabelComponent.hpp | 4 ++-- src/dawntools/prefabtool/PrefabTool.cpp | 10 ++++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/dawn/scene/components/debug/FPSLabelComponent.hpp b/src/dawn/scene/components/debug/FPSLabelComponent.hpp index 724285c6..40982193 100644 --- a/src/dawn/scene/components/debug/FPSLabelComponent.hpp +++ b/src/dawn/scene/components/debug/FPSLabelComponent.hpp @@ -9,8 +9,8 @@ namespace Dawn { class FPSLabelComponent : public SceneItemComponent { public: - // @optional - UILabel *label; + /* @optional */ + UILabel *label = nullptr; FPSLabelComponent(SceneItem *item); void onStart() override; diff --git a/src/dawntools/prefabtool/PrefabTool.cpp b/src/dawntools/prefabtool/PrefabTool.cpp index e71b469d..5f2cb3ec 100644 --- a/src/dawntools/prefabtool/PrefabTool.cpp +++ b/src/dawntools/prefabtool/PrefabTool.cpp @@ -38,7 +38,7 @@ struct PrefabComponentParserRuleset PrefabRegistry::getRuleset(std::string type) auto includePath = file.filename.substr(toRemove.size(), file.filename.size() - toRemove.size()); // Now locate the first subdir since we don't want to include the root path (e.g. dawn, dawnrose, etc) - auto firstSlash = includePath.find("/"); + auto firstSlash = includePath.find(FILE_PATH_SEP); if(firstSlash != std::string::npos) { includePath = includePath.substr(firstSlash + 1, includePath.size() - firstSlash - 1); } @@ -65,12 +65,11 @@ struct PrefabComponentParserRuleset PrefabRegistry::getRuleset(std::string type) auto nextLineStart = data.rfind('\n', match.position() + match.length()) + 1; auto nextLineEnd = data.find('\n', nextLineStart); auto nextLine = data.substr(nextLineStart, nextLineEnd - nextLineStart); - - std::regex regex2("^\\s*([^\\s]+)\\s+([^\\s;]+)\\s*;", std::regex_constants::ECMAScript); + // ^\s*((?:struct[\s]+|enum[\s]+)?[^\s]+)\s+([^\s;=]+)(?:.*?);$ + std::regex regex2("(?:struct\\s+|enum\\s+)?(\\w+(?:::\\w+)*(?:\\s*\\*\\s*)?)\\s*(\\*?)\\s*(\\w+)\\s*(?:=\\s*(?:[^;{]+|\\{[^{}]*\\})|(?=;))?", std::regex_constants::ECMAScript); std::sregex_iterator it2(nextLine.begin(), nextLine.end(), regex2); std::sregex_iterator end2; while(it2 != end2) { - // Log out all matches std::smatch match2 = *it2; std::string type = match2[1].str(); std::string name = match2[2].str(); @@ -253,6 +252,7 @@ int32_t PrefabComponentParser::onParse( return v; }; + auto colorParser = rawParser; // Iterate all the optional attributes and store within the out if present auto itOptional = ruleset.optional.begin(); @@ -265,6 +265,8 @@ int32_t PrefabComponentParser::onParse( parser = stringParser; } else if(type.find("float") != std::string::npos) { parser = floatParser; + } else if(type.find("Color") != std::string::npos) { + parser = colorParser; } else if(type.find("*") == (type.size() - 1)) { type = type.substr(0, type.size() - 1); parser = rawParser;