This commit is contained in:
2023-03-24 22:58:56 -07:00
parent 4ccd1713a2
commit f787d06713
2 changed files with 10 additions and 2 deletions

View File

@ -9,7 +9,9 @@
namespace Dawn { namespace Dawn {
class FPSLabelComponent : public SceneItemComponent { class FPSLabelComponent : public SceneItemComponent {
public: public:
// @optional
UILabel *label; UILabel *label;
FPSLabelComponent(SceneItem *item); FPSLabelComponent(SceneItem *item);
void onStart() override; void onStart() override;
}; };

View File

@ -34,7 +34,7 @@ struct PrefabComponentParserRuleset PrefabRegistry::getRuleset(std::string type)
} else { } else {
// Begin scanning contentsr // Begin scanning contentsr
// std::string include = this->sources; // 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()); 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) // 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; 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.include = includePath;
ruleset.name = type; ruleset.name = type;
@ -118,7 +124,7 @@ int32_t PrefabTool::start() {
} }
struct PrefabRegistry registry; struct PrefabRegistry registry;
registry.sources = flags["sources"]; registry.sources = File::normalizeSlashes(flags["sources"]);
auto xml = Xml::load(data); auto xml = Xml::load(data);
std::string error; std::string error;