diff --git a/archive/sceneitemcomponentregister/CMakeLists.txt b/archive/sceneitemcomponentregister/CMakeLists.txt deleted file mode 100644 index 6635334d..00000000 --- a/archive/sceneitemcomponentregister/CMakeLists.txt +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright (c) 2023 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -project(sceneitemcomponentgen VERSION 1.0) -add_executable(sceneitemcomponentgen) - -# Sources -target_sources(sceneitemcomponentgen - PRIVATE - ${DAWN_SHARED_SOURCES} - ${DAWN_TOOL_SOURCES} - SceneItemComponentRegister.cpp -) - -# Includes -target_include_directories(sceneitemcomponentgen - PUBLIC - ${DAWN_SHARED_INCLUDES} - ${DAWN_TOOL_INCLUDES} - ${CMAKE_CURRENT_LIST_DIR} -) - -# Definitions -target_compile_definitions(sceneitemcomponentgen - PUBLIC - DAWN_TOOL_INSTANCE=SceneItemComponentRegister - DAWN_TOOL_HEADER="SceneItemComponentRegister.hpp" -) - -# Libraries -target_link_libraries(sceneitemcomponentgen - PUBLIC - ${DAWN_BUILD_HOST_LIBS} -) \ No newline at end of file diff --git a/archive/sceneitemcomponentregister/SceneItemComponentRegister.cpp b/archive/sceneitemcomponentregister/SceneItemComponentRegister.cpp deleted file mode 100644 index 090ab3a1..00000000 --- a/archive/sceneitemcomponentregister/SceneItemComponentRegister.cpp +++ /dev/null @@ -1,119 +0,0 @@ -/** - * Copyright (c) 2023 Dominic Masters - * - * This software is released under the MIT License. - * https://opensource.org/licenses/MIT - */ - -#include "SceneItemComponentRegister.hpp" - -using namespace Dawn; - -void SceneItemComponentRootGen::generate( - std::vector *out, - std::vector *info, - std::string tabs = "" -) { - line(out, "#include \"scene/SceneItemComponentList.hpp\"", tabs); - line(out, "", tabs); - - auto it = info->begin(); - while(it != info->end()) { - auto c = *it; - line(out, "#include \"" + c.header + "\"", tabs); - ++it; - } - line(out, "", tabs); - line(out, "using namespace Dawn;", tabs); - line(out, "", tabs); - - line(out, "SceneItemComponentList::SceneItemComponentList() {", tabs); - it = info->begin(); - while(it != info->end()) { - auto c = *it; - line(out, "this->append<" + c.clazz + ">();", tabs + " "); - ++it; - } - line(out, "}", tabs); -} - -std::vector SceneItemComponentRegister::getRequiredFlags() { - return std::vector{ "input", "output" }; -} - -int32_t SceneItemComponentRegister::start() { - File fileIn(flags["input"]); - if(!fileIn.exists()) { - std::cout << "Input scene item component file does not exist." << std::endl; - return 1; - } - - std::string buffer; - if(!fileIn.readString(&buffer)) { - std::cout << "Failed to read input scene item component file" << std::endl; - return 1; - } - - std::vector components; - struct SceneItemComponent sci; - size_t i = 0; - std::string t; - uint8_t state = 0x00; - while(i < buffer.size()) { - char c = buffer[i++]; - if(c != ';') { - t.push_back(c); - continue; - } - - switch(state) { - case 0x00: - sci.clazz = t; - t.clear(); - state = 0x01; - break; - - case 0x01: - sci.header = t; - t.clear(); - state = 0x00; - components.push_back(sci); - break; - - default: - assertUnreachable(); - } - } - - if(state == 0x01) { - sci.header = t; - components.push_back(sci); - } else { - assertUnreachable(); - } - - - std::vector lines; - SceneItemComponentRootGen::generate(&lines, &components, ""); - - // Generate buffer - std::string bufferOut; - auto itLine = lines.begin(); - while(itLine != lines.end()) { - bufferOut += *itLine + "\n"; - ++itLine; - } - - File fileOut(flags["output"]); - if(!fileOut.mkdirp()) { - std::cout << "Failed to create Scene Item Component List Dir" << std::endl; - return 1; - } - - if(!fileOut.writeString(bufferOut)) { - std::cout << "Failed to write SceneItemComponentList file" << std::endl; - return 1; - } - - return 0; -} \ No newline at end of file diff --git a/archive/sceneitemcomponentregister/SceneItemComponentRegister.hpp b/archive/sceneitemcomponentregister/SceneItemComponentRegister.hpp deleted file mode 100644 index 3f177aae..00000000 --- a/archive/sceneitemcomponentregister/SceneItemComponentRegister.hpp +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/DawnTool.hpp" -#include "util/File.hpp" -#include "util/CodeGen.hpp" - -namespace Dawn { - struct SceneItemComponent { - std::string clazz; - std::string header; - }; - - class SceneItemComponentRootGen : public CodeGen { - public: - static void generate( - std::vector *out, - std::vector *info, - std::string tabs - ); - }; - - class SceneItemComponentRegister : public DawnTool { - protected: - std::vector getRequiredFlags() override; - - public: - int32_t start() override; - }; -} \ No newline at end of file diff --git a/assets/games/liminal/VNTextbox.xml b/assets/games/liminal/prefabs/VNTextbox.xml similarity index 100% rename from assets/games/liminal/VNTextbox.xml rename to assets/games/liminal/prefabs/VNTextbox.xml diff --git a/assets/games/liminal/scenes/scene-base.xml b/assets/games/liminal/scenes/SceneBase.xml similarity index 61% rename from assets/games/liminal/scenes/scene-base.xml rename to assets/games/liminal/scenes/SceneBase.xml index a633b508..35345bdc 100644 --- a/assets/games/liminal/scenes/scene-base.xml +++ b/assets/games/liminal/scenes/SceneBase.xml @@ -1,9 +1,14 @@ - + - + \ No newline at end of file diff --git a/assets/games/liminal/scenes/VNSceneTest.xml b/assets/games/liminal/scenes/VNSceneTest.xml new file mode 100644 index 00000000..2e0b5b65 --- /dev/null +++ b/assets/games/liminal/scenes/VNSceneTest.xml @@ -0,0 +1,9 @@ + + + + + + Hi, I'm Ethereality. + + + \ No newline at end of file diff --git a/assets/games/liminal/scenes/scene-extend.xml b/assets/games/liminal/scenes/scene-extend.xml deleted file mode 100644 index d335213c..00000000 --- a/assets/games/liminal/scenes/scene-extend.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/assets/games/liminal/test.xml b/assets/games/liminal/test.xml deleted file mode 100644 index 8d2fad5b..00000000 --- a/assets/games/liminal/test.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - Hi, I'm Ethereality. - - - - - - Hi, I'm Craig. - - - - - - - - - - - - - - - - <string lang="en">Do you think Craig is cool?</string> - - - Yes - - - No - - - Maybe - - - - - - - Are you unsure? - - - - - - - I agree, Craig is cool. - - - - - I disagree, Craig is cool. - - - - - bruh9000 - - - - - - - - - - - - \ No newline at end of file diff --git a/src/dawnliminal/CMakeLists.txt b/src/dawnliminal/CMakeLists.txt index 8647f1d9..5fe93e20 100644 --- a/src/dawnliminal/CMakeLists.txt +++ b/src/dawnliminal/CMakeLists.txt @@ -18,13 +18,13 @@ 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) tool_truetype(font_main ${DAWN_ASSETS_DIR}/ark-pixel.ttf) +tool_texture(texture_eth ${LIMINAL_ASSETS_DIR}/textures/eth.png) +tool_texture(texture_border ${LIMINAL_ASSETS_DIR}/textures/texture_test.png) + +tool_scene(${LIMINAL_ASSETS_DIR}/scenes/SceneBase.xml) +tool_vnscene(${LIMINAL_ASSETS_DIR}/scenes/VNSceneTest.xml) tool_prefab(${LIMINAL_ASSETS_DIR}/prefabs/EthPrefab.xml) -tool_texture(texture_eth ${LIMINAL_ASSETS_DIR}/textures/eth.png) -tool_texture(texture_border ${LIMINAL_ASSETS_DIR}/textures/texture_test.png) \ No newline at end of file +tool_prefab(${LIMINAL_ASSETS_DIR}/prefabs/VNTextbox.xml) \ No newline at end of file diff --git a/src/dawntools/prefabtool/PrefabTool.cpp b/src/dawntools/prefabtool/PrefabTool.cpp index 0bc9ad7c..decf7219 100644 --- a/src/dawntools/prefabtool/PrefabTool.cpp +++ b/src/dawntools/prefabtool/PrefabTool.cpp @@ -18,7 +18,7 @@ std::map PrefabTool::getOptionalFlags() { int32_t PrefabTool::start() { File input = File(flags["input"]); if(!input.exists()) { - std::cout << "Input file does not exist!" << std::endl; + std::cout << "Input file " + input.filename + " does not exist!" << std::endl; return 1; } diff --git a/src/dawntools/scenetool/SceneTool.cpp b/src/dawntools/scenetool/SceneTool.cpp index b780bb41..d0eda0ee 100644 --- a/src/dawntools/scenetool/SceneTool.cpp +++ b/src/dawntools/scenetool/SceneTool.cpp @@ -18,7 +18,7 @@ std::map SceneTool::getOptionalFlags() { int32_t SceneTool::start() { File input = File(flags["input"]); if(!input.exists()) { - std::cout << "Input file does not exist!" << std::endl; + std::cout << "Input file " + input.filename + " does not exist!" << std::endl; return 1; } diff --git a/src/dawntools/vnscenetool/VNSceneTool.cpp b/src/dawntools/vnscenetool/VNSceneTool.cpp index 23fac8b2..8745284e 100644 --- a/src/dawntools/vnscenetool/VNSceneTool.cpp +++ b/src/dawntools/vnscenetool/VNSceneTool.cpp @@ -18,7 +18,7 @@ std::map VNSceneTool::getOptionalFlags() { int32_t VNSceneTool::start() { File input = File(flags["input"]); if(!input.exists()) { - std::cout << "Input file does not exist!" << std::endl; + std::cout << "Input file " + input.filename + " does not exist!" << std::endl; return 1; }