From f787d06713aa0462c8da45cbfab15985e9e460f8 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Fri, 24 Mar 2023 22:58:56 -0700 Subject: [PATCH] prog --- src/dawn/scene/components/debug/FPSLabelComponent.hpp | 2 ++ src/dawntools/prefabtool/PrefabTool.cpp | 10 ++++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/dawn/scene/components/debug/FPSLabelComponent.hpp b/src/dawn/scene/components/debug/FPSLabelComponent.hpp index 04ef2825..724285c6 100644 --- a/src/dawn/scene/components/debug/FPSLabelComponent.hpp +++ b/src/dawn/scene/components/debug/FPSLabelComponent.hpp @@ -9,7 +9,9 @@ namespace Dawn { class FPSLabelComponent : public SceneItemComponent { public: + // @optional UILabel *label; + FPSLabelComponent(SceneItem *item); void onStart() override; }; diff --git a/src/dawntools/prefabtool/PrefabTool.cpp b/src/dawntools/prefabtool/PrefabTool.cpp index 980fafc1..e71b469d 100644 --- a/src/dawntools/prefabtool/PrefabTool.cpp +++ b/src/dawntools/prefabtool/PrefabTool.cpp @@ -34,7 +34,7 @@ struct PrefabComponentParserRuleset PrefabRegistry::getRuleset(std::string type) } else { // Begin scanning contentsr // std::string include = this->sources; - auto toRemove = File::normalizeSlashes(this->sources + "/"); + auto toRemove = File::normalizeSlashes(this->sources + FILE_PATH_SEP); 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) @@ -44,6 +44,12 @@ struct PrefabComponentParserRuleset PrefabRegistry::getRuleset(std::string type) } struct PrefabComponentParserRuleset ruleset; + // Replace all file seps with slashes + size_t pos = 0; + while ((pos = includePath.find(FILE_PATH_SEP, pos)) != std::string::npos) { + includePath.replace(pos, 1, "/"); + pos += 1; + } ruleset.include = includePath; ruleset.name = type; @@ -118,7 +124,7 @@ int32_t PrefabTool::start() { } struct PrefabRegistry registry; - registry.sources = flags["sources"]; + registry.sources = File::normalizeSlashes(flags["sources"]); auto xml = Xml::load(data); std::string error;