Comitting incase I break something
This commit is contained in:
@ -19,6 +19,7 @@ add_subdirectory(save)
|
||||
# Assets
|
||||
set(LIMINAL_ASSETS_DIR ${DAWN_ASSETS_DIR}/games/liminal)
|
||||
tool_scene(${LIMINAL_ASSETS_DIR}/scenes/scene-base.xml)
|
||||
tool_scene(${LIMINAL_ASSETS_DIR}/scenes/scene-extend.xml)
|
||||
# tool_vnscene(${LIMINAL_ASSETS_DIR}/test.xml)
|
||||
|
||||
tool_prefab(${LIMINAL_ASSETS_DIR}/VNTextbox.xml)
|
||||
|
@ -12,7 +12,9 @@ std::vector<std::string> SceneParser::getRequiredAttributes() {
|
||||
}
|
||||
|
||||
std::map<std::string, std::string> SceneParser::getOptionalAttributes() {
|
||||
return {};
|
||||
return {
|
||||
{ "extend", "" }
|
||||
};
|
||||
}
|
||||
|
||||
int32_t SceneParser::onParse(
|
||||
@ -25,6 +27,7 @@ int32_t SceneParser::onParse(
|
||||
|
||||
//Create the scene item
|
||||
out->name = values["name"];
|
||||
out->extend = values["extend"];
|
||||
|
||||
//Parse the children
|
||||
auto itChildren = node->children.begin();
|
||||
|
@ -9,6 +9,7 @@
|
||||
namespace Dawn {
|
||||
struct Scene {
|
||||
std::string name;
|
||||
std::string extend;
|
||||
std::vector<struct SceneItem> items;
|
||||
struct SceneItemComponentRegistry *registry;
|
||||
};
|
||||
|
@ -64,6 +64,10 @@ void SceneItemGenerator::generate(
|
||||
line(initBody, name + "->transform.setLocalScale(" + item->scale + ");", "");
|
||||
}
|
||||
|
||||
if(item->lookAtPosition.size() > 0) {
|
||||
line(initBody, name + "->transform.lookAt(" + item->lookAtPosition + ", " + item->lookAtTarget + ");", "");
|
||||
}
|
||||
|
||||
// Add assets
|
||||
auto itAssets = item->assets.begin();
|
||||
while(itAssets != item->assets.end()) {
|
||||
|
@ -15,6 +15,7 @@ std::map<std::string, std::string> SceneItemParser::getOptionalAttributes() {
|
||||
return {
|
||||
{ "ref", "" },
|
||||
{ "position", "" },
|
||||
{ "lookAt", "" },
|
||||
{ "scale", "" },
|
||||
{ "prefab", "" }
|
||||
};
|
||||
@ -38,6 +39,19 @@ int32_t SceneItemParser::onParse(
|
||||
if(error->size() > 0) return 1;
|
||||
}
|
||||
|
||||
if(values["lookAt"].size() > 0) {
|
||||
auto lookAtSplit = stringSplit(values["lookAt"], ",");
|
||||
if(lookAtSplit.size() != 6) {
|
||||
*error = "Invalid lookAt value: " + values["lookAt"];
|
||||
return 1;
|
||||
}
|
||||
|
||||
out->lookAtPosition = vec3Parser(lookAtSplit[0] + "," + lookAtSplit[1] + "," + lookAtSplit[2], error);
|
||||
if(error->size() > 0) return 1;
|
||||
out->lookAtTarget = vec3Parser(lookAtSplit[3] + "," + lookAtSplit[4] + "," + lookAtSplit[5], error);
|
||||
if(error->size() > 0) return 1;
|
||||
}
|
||||
|
||||
out->prefab = values["prefab"];
|
||||
|
||||
auto itChildren = node->children.begin();
|
||||
|
@ -12,6 +12,8 @@ namespace Dawn {
|
||||
struct SceneItemComponentRegistry *registry;
|
||||
std::string ref;
|
||||
std::string position;
|
||||
std::string lookAtPosition;
|
||||
std::string lookAtTarget;
|
||||
std::string scale;
|
||||
std::string prefab;
|
||||
std::vector<struct SceneItemComponent> components;
|
||||
|
@ -79,6 +79,26 @@ namespace Dawn {
|
||||
};
|
||||
|
||||
|
||||
static inline std::string vec6Parser(std::string v, std::string *error) {
|
||||
// Split string by comma into two strings that we pass into float
|
||||
auto split = stringSplit(v, ",");
|
||||
if(split.size() != 6) {
|
||||
*error = "Invalid vec6 value: " + v;
|
||||
return std::string("");
|
||||
}
|
||||
return std::string(
|
||||
"glm::vec3(" +
|
||||
floatParser(split[0], error) + ", " +
|
||||
floatParser(split[1], error) + ", " +
|
||||
floatParser(split[2], error) + ", " +
|
||||
floatParser(split[3], error) + ", " +
|
||||
floatParser(split[4], error) + ", " +
|
||||
floatParser(split[5], error) +
|
||||
")"
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
static inline std::string vec4Parser(std::string v, std::string *error) {
|
||||
// Split string by comma into two strings that we pass into float
|
||||
auto split = stringSplit(v, ",");
|
||||
|
Reference in New Issue
Block a user