diff --git a/.gitignore b/.gitignore index d7c3cd4c..e13527be 100644 --- a/.gitignore +++ b/.gitignore @@ -83,7 +83,6 @@ assets/borrowed .VSCode* /vita -/tools ._* diff --git a/CMakeLists.txt b/CMakeLists.txt index d72d5a0a..a25a21f7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,7 @@ set(DAWN_CACHE_TARGET "dawn-target") set(DAWN_ROOT_DIR "${CMAKE_SOURCE_DIR}") set(DAWN_BUILD_DIR "${CMAKE_BINARY_DIR}") set(DAWN_SOURCES_DIR "${DAWN_ROOT_DIR}/src") -set(DAWN_TOOLS_DIR "${DAWN_SOURCES_DIR}/dawntools") +set(DAWN_TOOLS_DIR "${DAWN_ROOT_DIR}/tools") set(DAWN_ASSETS_SOURCE_DIR "${DAWN_ROOT_DIR}/assets") set(DAWN_ASSETS_BUILD_DIR "${DAWN_BUILD_DIR}/assets") set(DAWN_GENERATED_DIR "${DAWN_BUILD_DIR}/generated") @@ -34,6 +34,9 @@ project(Dawn LANGUAGES C CXX ) +# Add tools +add_subdirectory(tools) + # Add Libraries add_subdirectory(lib) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a42e7d0a..25adbccc 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -12,9 +12,6 @@ set( # Include shared libs add_subdirectory(dawnshared) -# Include tools -add_subdirectory(dawntools) - # Change what we are building. Pulled from the cmake/targets dir. if(DEFINED DAWN_BUILDING) add_subdirectory(${DAWN_BUILDING}) diff --git a/src/dawntools/prefabtool/CMakeLists.txt b/src/dawntools/prefabtool/CMakeLists.txt deleted file mode 100644 index c0be18a7..00000000 --- a/src/dawntools/prefabtool/CMakeLists.txt +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright (c) 2023 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Texture Build Tool -project(prefabtool VERSION 1.0) -add_executable(prefabtool) - -# Sources -target_sources(prefabtool - PRIVATE - ${DAWN_SHARED_SOURCES} - ${DAWN_TOOL_SOURCES} - PrefabTool.cpp - PrefabGen.cpp - PrefabParser.cpp -) - -# Includes -target_include_directories(prefabtool - PUBLIC - ${DAWN_SHARED_INCLUDES} - ${DAWN_TOOL_INCLUDES} - ${CMAKE_CURRENT_LIST_DIR} -) - -# Definitions -target_compile_definitions(prefabtool - PUBLIC - ${DAWN_SHARED_DEFINITIONS} - DAWN_TOOL_INSTANCE=PrefabTool - DAWN_TOOL_HEADER="PrefabTool.hpp" -) - -# Libraries -target_link_libraries(prefabtool - PUBLIC - ${DAWN_BUILD_HOST_LIBS} -) - -# Tool Function -function(tool_prefab in) - set(DEPS "") - if(DAWN_BUILD_TOOLS) - set(DEPS prefabtool) - endif() - - STRING(REGEX REPLACE "[\.|\\|\/|\:]" "-" prefab_name ${in}) - add_custom_target(prefab_${prefab_name} - COMMAND prefabtool --input="${in}" --output="${DAWN_GENERATED_DIR}/generatedprefabs" --sources="${DAWN_SOURCES_DIR}" - COMMENT "Generating prefab from ${in}" - DEPENDS ${DEPS} - ) - target_include_directories(${DAWN_TARGET_NAME} - PUBLIC - ${DAWN_GENERATED_DIR}/generatedprefabs - ) - add_dependencies(${DAWN_TARGET_NAME} prefab_${prefab_name}) -endfunction() \ No newline at end of file diff --git a/src/dawntools/prefabtool/PrefabGen.cpp b/src/dawntools/prefabtool/PrefabGen.cpp deleted file mode 100644 index 6700b728..00000000 --- a/src/dawntools/prefabtool/PrefabGen.cpp +++ /dev/null @@ -1,65 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "PrefabGen.hpp" - -using namespace Dawn; - -void PrefabGen::generate( - std::vector *out, - struct Prefab *info, - std::string tabs -) { - struct ClassGenInfo classInfo; - classInfo.clazz = info->name; - classInfo.extend = "SceneItemPrefab<" + info->name + ">"; - classInfo.constructorArgs = "Scene *scene, sceneitemid_t id"; - classInfo.extendArgs = "scene, id"; - - struct MethodGenInfo methodAssets; - methodAssets.name = "prefabAssets"; - methodAssets.isStatic = true; - methodAssets.type = "std::vector"; - methodAssets.args = "AssetManager *man"; - line(&methodAssets.body, "std::vector assets;", ""); - - struct MethodGenInfo methodInit; - methodInit.name = "prefabInit"; - methodInit.isOverride = true; - methodInit.args = "AssetManager *man"; - - classInfo.includes.push_back("prefab/SceneItemPrefab.hpp"); - - // Generate - int32_t assetNumber = 0; - int32_t childNumber = 0; - int32_t componentNumber = 0; - std::map assetMap; - info->root.ref = "this"; - SceneItemGenerator::generate( - assetNumber, - componentNumber, - childNumber, - assetMap, - classInfo.includes, - &classInfo.publicProperties, - &methodInit.body, - &methodAssets.body, - "", - "scene", - &info->root, - "" - ); - - // Seal methods - line(&methodAssets.body, "return assets;", ""); - - // Add in methods - CodeGen::methodGen(&classInfo.publicCode, methodAssets); - line(&classInfo.publicCode, "", ""); - CodeGen::methodGen(&classInfo.publicCode, methodInit); - - CodeGen::classGen(out, classInfo); -} \ No newline at end of file diff --git a/src/dawntools/prefabtool/PrefabGen.hpp b/src/dawntools/prefabtool/PrefabGen.hpp deleted file mode 100644 index e14bcde7..00000000 --- a/src/dawntools/prefabtool/PrefabGen.hpp +++ /dev/null @@ -1,19 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "PrefabParser.hpp" -#include "util/generator/SceneItemGenerator.hpp" - -namespace Dawn { - class PrefabGen : public CodeGen { - public: - static void generate( - std::vector *out, - struct Prefab *prefab, - std::string tabs - ); - }; -} \ No newline at end of file diff --git a/src/dawntools/prefabtool/PrefabParser.cpp b/src/dawntools/prefabtool/PrefabParser.cpp deleted file mode 100644 index 1e02bc9b..00000000 --- a/src/dawntools/prefabtool/PrefabParser.cpp +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "PrefabParser.hpp" - -using namespace Dawn; - -std::vector PrefabParser::getRequiredAttributes() { - return { "name", "type" }; -} - -std::map PrefabParser::getOptionalAttributes() { - return { }; -} - -int32_t PrefabParser::onParse( - Xml *node, - std::map values, - struct Prefab *out, - std::string *error -) { - out->name = values["name"]; - out->type = values["type"]; - out->root.registry = out->registry; - return (SceneItemParser()).parse(node, &out->root, error); -} \ No newline at end of file diff --git a/src/dawntools/prefabtool/PrefabParser.hpp b/src/dawntools/prefabtool/PrefabParser.hpp deleted file mode 100644 index 2e825f16..00000000 --- a/src/dawntools/prefabtool/PrefabParser.hpp +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/parser/SceneItemComponentParser.hpp" -#include "util/parser/SceneItemParser.hpp" - -namespace Dawn { - struct Prefab { - struct SceneItemComponentRegistry *registry; - struct SceneItem root; - std::string name; - std::string type; - }; - - class PrefabParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct Prefab *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/prefabtool/PrefabTool.cpp b/src/dawntools/prefabtool/PrefabTool.cpp deleted file mode 100644 index decf7219..00000000 --- a/src/dawntools/prefabtool/PrefabTool.cpp +++ /dev/null @@ -1,69 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "PrefabTool.hpp" - -using namespace Dawn; - -std::vector PrefabTool::getRequiredFlags() { - return { "input", "output", "sources" }; -} - -std::map PrefabTool::getOptionalFlags() { - return std::map(); -} - -int32_t PrefabTool::start() { - File input = File(flags["input"]); - if(!input.exists()) { - std::cout << "Input file " + input.filename + " does not exist!" << std::endl; - return 1; - } - - std::string data; - if(!input.readString(&data)) { - std::cout << "Failed to read input file!" << std::endl; - return 1; - } - - struct SceneItemComponentRegistry registry; - registry.sources = File::normalizeSlashes(flags["sources"]); - - auto xml = Xml::load(data); - std::string error; - struct Prefab prefab; - prefab.registry = ®istry; - auto result = ((PrefabParser()).parse(&xml, &prefab, &error)); - if(result != 0) { - std::cout << "Failed to parse prefab: " << error << std::endl; - return result; - } - - // Generate output - std::vector outputData; - PrefabGen::generate(&outputData, &prefab, ""); - - // Load output file from name and type - File outputFile = File(flags["output"] + "/prefabs/" + prefab.type + "/" + prefab.name + ".hpp"); - if(!outputFile.mkdirp()) { - std::cout << "Failed to create output directory!" << std::endl; - return 1; - } - - // Combine vector into single string - std::string outputDataStr = ""; - auto it = outputData.begin(); - while(it != outputData.end()) { - outputDataStr += *it + "\n"; - ++it; - } - - if(!outputFile.writeString(outputDataStr)) { - std::cout << "Failed to write output file!" << std::endl; - return 1; - } - - return 0; -} \ No newline at end of file diff --git a/src/dawntools/prefabtool/PrefabTool.hpp b/src/dawntools/prefabtool/PrefabTool.hpp deleted file mode 100644 index 4ff53d31..00000000 --- a/src/dawntools/prefabtool/PrefabTool.hpp +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "PrefabGen.hpp" - -namespace Dawn { - class PrefabTool : public DawnTool { - protected: - std::vector getRequiredFlags() override; - std::map getOptionalFlags() override; - - public: - int32_t start(); - }; -} \ No newline at end of file diff --git a/src/dawntools/scenetool/CMakeLists.txt b/src/dawntools/scenetool/CMakeLists.txt deleted file mode 100644 index d6bf13c9..00000000 --- a/src/dawntools/scenetool/CMakeLists.txt +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright (c) 2023 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Texture Build Tool -project(scenetool VERSION 1.0) -add_executable(scenetool) - -# Subdirs - -# Sources -target_sources(scenetool - PRIVATE - ${DAWN_SHARED_SOURCES} - ${DAWN_TOOL_SOURCES} - SceneTool.cpp - SceneGen.cpp -) - -# Includes -target_include_directories(scenetool - PUBLIC - ${DAWN_SHARED_INCLUDES} - ${DAWN_TOOL_INCLUDES} - ${CMAKE_CURRENT_LIST_DIR} -) - -# Definitions -target_compile_definitions(scenetool - PUBLIC - ${DAWN_SHARED_DEFINITIONS} - DAWN_TOOL_INSTANCE=SceneTool - DAWN_TOOL_HEADER="SceneTool.hpp" -) - -# Libraries -target_link_libraries(scenetool - PUBLIC - ${DAWN_BUILD_HOST_LIBS} -) - -# Tool Function -function(tool_scene in) - set(DEPS "") - if(DAWN_BUILD_TOOLS) - set(DEPS scenetool) - endif() - - STRING(REGEX REPLACE "[\.|\\|\/|\:]" "-" scene_name ${in}) - add_custom_target(scene_${scene_name} - COMMAND scenetool --input="${in}" --output="${DAWN_GENERATED_DIR}/generatedscenes" --sources="${DAWN_SOURCES_DIR}" - COMMENT "Generating scene from ${in}" - DEPENDS ${DEPS} - ) - target_include_directories(${DAWN_TARGET_NAME} - PUBLIC - ${DAWN_GENERATED_DIR}/generatedscenes - ) - add_dependencies(${DAWN_TARGET_NAME} scene_${scene_name}) -endfunction() \ No newline at end of file diff --git a/src/dawntools/scenetool/SceneGen.cpp b/src/dawntools/scenetool/SceneGen.cpp deleted file mode 100644 index 3f9e49f5..00000000 --- a/src/dawntools/scenetool/SceneGen.cpp +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneGen.hpp" - -using namespace Dawn; - -void SceneGen::generate( - std::vector *out, - struct Scene *scene, - std::string tabs -) { - struct ClassGenInfo classInfo; - struct MethodGenInfo methodAssets; - struct MethodGenInfo methodInit; - - SceneGenerator::generate( - scene, - classInfo, - methodAssets, - methodInit - ); - - // Add in methods - CodeGen::methodGen(&classInfo.publicCode, methodAssets); - line(&classInfo.publicCode, "", ""); - CodeGen::methodGen(&classInfo.publicCode, methodInit); - - CodeGen::classGen(out, classInfo); -} \ No newline at end of file diff --git a/src/dawntools/scenetool/SceneGen.hpp b/src/dawntools/scenetool/SceneGen.hpp deleted file mode 100644 index e1361eed..00000000 --- a/src/dawntools/scenetool/SceneGen.hpp +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/generator/SceneGenerator.hpp" - -namespace Dawn { - class SceneGen : public CodeGen { - public: - static void generate( - std::vector *out, - struct Scene *scene, - std::string tabs - ); - }; -} \ No newline at end of file diff --git a/src/dawntools/scenetool/SceneTool.cpp b/src/dawntools/scenetool/SceneTool.cpp deleted file mode 100644 index d40d53b0..00000000 --- a/src/dawntools/scenetool/SceneTool.cpp +++ /dev/null @@ -1,69 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneTool.hpp" - -using namespace Dawn; - -std::vector SceneTool::getRequiredFlags() { - return { "input", "output", "sources" }; -} - -std::map SceneTool::getOptionalFlags() { - return std::map(); -} - -int32_t SceneTool::start() { - File input = File(flags["input"]); - if(!input.exists()) { - std::cout << "Input file " + input.filename + " does not exist!" << std::endl; - return 1; - } - - std::string data; - if(!input.readString(&data)) { - std::cout << "Failed to read input file!" << std::endl; - return 1; - } - - auto xml = Xml::load(data); - std::string error; - - struct Scene scene; - struct SceneItemComponentRegistry registry; - registry.sources = File::normalizeSlashes(flags["sources"]); - scene.registry = ®istry; - auto result = ((SceneParser()).parse(&xml, &scene, &error)); - if(result != 0) { - std::cout << "Failed to parse scene " << input.filename << "::" << error << std::endl; - return result; - } - - // Generate output - std::vector outputData; - SceneGen::generate(&outputData, &scene, ""); - - // Load output file from name and type - File outputFile = File(flags["output"] + "/scenes/" + scene.name + ".hpp"); - if(!outputFile.mkdirp()) { - std::cout << "Failed to create output directory!" << std::endl; - return 1; - } - - // Combine vector into single string - std::string outputDataStr = ""; - auto it = outputData.begin(); - while(it != outputData.end()) { - outputDataStr += *it + "\n"; - ++it; - } - - if(!outputFile.writeString(outputDataStr)) { - std::cout << "Failed to write output file! " << input.filename << std::endl; - return 1; - } - - return 0; -} \ No newline at end of file diff --git a/src/dawntools/scenetool/SceneTool.hpp b/src/dawntools/scenetool/SceneTool.hpp deleted file mode 100644 index bb4f0a31..00000000 --- a/src/dawntools/scenetool/SceneTool.hpp +++ /dev/null @@ -1,22 +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/Xml.hpp" -#include "util/parser/SceneParser.hpp" -#include "SceneGen.hpp" - -namespace Dawn { - class SceneTool : public DawnTool { - protected: - std::vector getRequiredFlags() override; - std::map getOptionalFlags() override; - - public: - int32_t start(); - }; -} \ No newline at end of file diff --git a/src/dawntools/truetypetool/CMakeLists.txt b/src/dawntools/truetypetool/CMakeLists.txt deleted file mode 100644 index e5ddc74c..00000000 --- a/src/dawntools/truetypetool/CMakeLists.txt +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright (c) 2023 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -project(truetypetool VERSION 3.0) -add_executable(truetypetool) - -target_sources(truetypetool - PRIVATE - ${DAWN_SHARED_SOURCES} - ${DAWN_TOOL_SOURCES} - TrueTypeTool.cpp -) - -target_include_directories(truetypetool - PUBLIC - ${DAWN_SHARED_INCLUDES} - ${DAWN_TOOL_INCLUDES} - ${CMAKE_CURRENT_LIST_DIR} -) - -# Definitions -target_compile_definitions(truetypetool - PUBLIC - ${DAWN_SHARED_DEFINITIONS} - DAWN_TOOL_INSTANCE=TrueTypeTool - DAWN_TOOL_HEADER="TrueTypeTool.hpp" -) - -# Libraries -target_link_libraries(truetypetool - PUBLIC - ${DAWN_BUILD_HOST_LIBS} -) - -# Tool Function -function(tool_truetype target) - # Defaults - set(FILE "" ) - - # Parse Args - foreach(_PAIR IN LISTS ARGN) - if (_PAIR MATCHES "^([^:]+)=(.*)$") - set(${CMAKE_MATCH_1} ${CMAKE_MATCH_2}) - else() - message(FATAL_ERROR "Invalid pair: ${_PAIR}") - endif() - endforeach() - - set(DEPS "") - if(DAWN_BUILD_TOOLS) - set(DEPS truetypetool) - endif() - - add_custom_target(${target} - COMMAND truetypetool - --output="${DAWN_ASSETS_BUILD_DIR}/${target}.truetype" - --regular="${REGULAR}" - --bold="${BOLD}" - --italics="${ITALICS}" - --bold-italics="${BOLD_ITALICS}" - COMMENT "Generating truetype" - DEPENDS ${DEPS} - ) - add_dependencies(dawnassets ${target}) -endfunction() \ No newline at end of file diff --git a/src/dawntools/truetypetool/TrueTypeTool.cpp b/src/dawntools/truetypetool/TrueTypeTool.cpp deleted file mode 100644 index 90810cac..00000000 --- a/src/dawntools/truetypetool/TrueTypeTool.cpp +++ /dev/null @@ -1,159 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "TrueTypeTool.hpp" - -using namespace Dawn; - -TrueTypeFile::TrueTypeFile(std::string path) : file(path) { - this->path = path; - - // Remove extension - size_t pos = path.find_last_of("."); - std::string filename = path.substr(0, pos); - std::string pathLower = stringToLowercase(path); - - style = 0; - if(pathLower.find("bold") != std::string::npos || filename.ends_with("bd") || filename.ends_with("bi")) { - style |= TRUE_TYPE_VARIANT_BOLD; - } - if(pathLower.find("italic") != std::string::npos || filename.ends_with("i") || filename.ends_with("bi")) { - style |= TRUE_TYPE_VARIANT_ITALICS; - } - - if(!file.exists()) { - std::cout << "File " << path << " does not exist!" << std::endl; - throw "File not found"; - } - - if(!file.open(FILE_MODE_READ)) { - std::cout << "Failed to open file " << path << " for reading!" << std::endl; - throw "Unable to open file for reading!"; - } -} - -TrueTypeFile::~TrueTypeFile() { -} - - -std::vector TrueTypeTool::getRequiredFlags() { - return { "output" }; -} - -std::map TrueTypeTool::getOptionalFlags() { - return { - { "regular", "" }, - { "italics", "" }, - { "bold", "" }, - { "bold-italics", "" } - }; -} - -int32_t TrueTypeTool::start() { - std::vector files; - std::vector flags = { "regular", "italics", "bold", "bold-italics" }; - - auto cleanupFiles = [&]() { - auto itFile = files.begin(); - while(itFile != files.end()) { - auto file = *itFile; - delete file; - ++itFile; - } - }; - - // For each flag - auto itFlag = flags.begin(); - while(itFlag != flags.end()) { - std::string flag = *itFlag; - std::string path = this->flags[flag]; - - if(path.empty()) { - ++itFlag; - continue; - } - - try { - auto n = new TrueTypeFile(path); - files.push_back(n); - } catch(const char *e) { - cleanupFiles(); - return 1; - } - ++itFlag; - } - - if(files.size() == 0) { - std::cout << "No valid TTF files provided!" << std::endl; - cleanupFiles(); - return 1; - } - - // Create the output file - File fileOut = File(this->flags["output"]); - if(!fileOut.mkdirp()) { - std::cout << "Failed to create output directory!" << std::endl; - cleanupFiles(); - return 1; - } - if(!fileOut.open(FILE_MODE_WRITE)) { - std::cout << "Failed to open output file for writing!" << std::endl; - cleanupFiles(); - return 1; - } - - // Prepare to write data - std::string header = "DE_TTF|3.00|"; - - // Write file count - header += std::to_string(files.size()) + "|"; - - // For each file - auto itFile = files.begin(); - while(itFile != files.end()) { - auto file = *itFile; - // Style - header += std::to_string(file->style); - header += ":"; - // File length - header += std::to_string(file->file.length); - header += "|"; - ++itFile; - } - - if(!fileOut.writeRaw((char *)header.c_str(), header.length())) { - std::cout << "Failed to write TTF Header to " << fileOut.filename << std::endl; - cleanupFiles(); - return 1; - } - - // Now write the data for each file - itFile = files.begin(); - while(itFile != files.end()) { - auto file = *itFile; - - // Write the file data - file->file.setPosition(0); - if(!fileOut.copyRaw(&file->file, file->file.length)) { - std::cout << "Failed copy output data of " << file->file.filename << std::endl; - cleanupFiles(); - return 1; - } - - // Write vertical bar - char sep[1]; - sep[0] = '|'; - fileOut.writeRaw(sep, 1); - - ++itFile; - } - - // Cleanup - cleanupFiles(); - - // Done - fileOut.close(); - return 0; -} \ No newline at end of file diff --git a/src/dawntools/truetypetool/TrueTypeTool.hpp b/src/dawntools/truetypetool/TrueTypeTool.hpp deleted file mode 100644 index 62f196dc..00000000 --- a/src/dawntools/truetypetool/TrueTypeTool.hpp +++ /dev/null @@ -1,31 +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 "display/font/truetype/TrueTypeShared.hpp" -#include "util/string.hpp" - -namespace Dawn { - class TrueTypeFile { - public: - flag_t style; - std::string path; - File file; - - TrueTypeFile(std::string path); - ~TrueTypeFile(); - }; - - class TrueTypeTool : public DawnTool { - protected: - std::vector getRequiredFlags() override; - std::map getOptionalFlags() override; - - public: - int32_t start(); - }; -} \ No newline at end of file diff --git a/src/dawntools/util/CMakeLists.txt b/src/dawntools/util/CMakeLists.txt deleted file mode 100644 index 447ebd15..00000000 --- a/src/dawntools/util/CMakeLists.txt +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright (c) 2023 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -set(D ${CMAKE_CURRENT_LIST_DIR}) - -set( - DAWN_TOOL_SOURCES - ${DAWN_TOOL_SOURCES} - ${D}/DawnTool.cpp - ${D}/File.cpp - ${D}/Language.cpp - ${D}/CodeGen.cpp - ${D}/Directory.cpp - - CACHE INTERNAL - ${DAWN_CACHE_TARGET} -) \ No newline at end of file diff --git a/src/dawntools/util/CodeGen.cpp b/src/dawntools/util/CodeGen.cpp deleted file mode 100644 index 52d9bd5f..00000000 --- a/src/dawntools/util/CodeGen.cpp +++ /dev/null @@ -1,100 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "CodeGen.hpp" - -using namespace Dawn; - -void CodeGen::line( - std::vector *out, - std::string contents, - std::string tabs -) { - out->push_back(tabs + contents); -} - -void CodeGen::lines( - std::vector *out, - std::vector lines, - std::string tabs -) { - auto itLine = lines.begin(); - while(itLine != lines.end()) { - line(out, *itLine, tabs); - ++itLine; - } -} - -void CodeGen::classGen( - std::vector *out, - struct ClassGenInfo info -) { - std::vector buffer; - - line(out, "#pragma once", ""); - line(out, "", ""); - - // Includes - if(info.includes.size() > 0) { - // iterate over info.includes - std::vector included; - auto itInclude = info.includes.begin(); - while(itInclude != info.includes.end()) { - // skip if already included - if(std::find(included.begin(), included.end(), *itInclude) != included.end()) { - ++itInclude; - continue; - } - if(itInclude->find("#include") == std::string::npos) { - line(out, "#include \"" + *itInclude + "\"", ""); - } else { - line(out, *itInclude, ""); - } - - included.push_back(*itInclude); - ++itInclude; - } - line(out, "", ""); - } - - line(out, "namespace Dawn {", ""); - auto itTemplates = info.classTemplates.begin(); - while(itTemplates != info.classTemplates.end()) { - line(out, "template<" + itTemplates->second + " " + itTemplates->first + ">", " "); - ++itTemplates; - } - line(out, "class " + info.clazz + (info.extend.size() == 0 ? "{" : " : public " + info.extend + " {" ), " "); - if(info.protectedCode.size() > 0) { - line(out, "protected:", " "); - lines(out, info.protectedProperties, " "); - line(out, "", " "); - lines(out, info.protectedCode, " "); - } - - if(info.publicCode.size() > 0 || info.constructorArgs.size() > 0 || info.constructorCode.size() > 0) { - line(out, "public:", " "); - lines(out, info.publicProperties, " "); - line(out, "", " "); - line(out, info.clazz + "(" + info.constructorArgs + ")" + (info.extend.size() > 0 ? " : " + info.extend + "(" + info.extendArgs + ")" : "") + " {", " "); - lines(out, info.constructorCode, " "); - line(out, "}", " "); - if(info.publicCode.size() > 0) { - line(out, "", " "); - lines(out, info.publicCode, " "); - } - } - line(out, "};", " "); - line(out, "}", ""); -} - - -void CodeGen::methodGen( - std::vector *out, - struct MethodGenInfo info -) { - line(out, (info.isStatic ? "static " : "") + info.type + " " + info.name + "(" + info.args + ") " + ( info.isOverride ? "override " : "" ) + "{", ""); - lines(out, info.body, " "); - line(out, "}", ""); -} \ No newline at end of file diff --git a/src/dawntools/util/CodeGen.hpp b/src/dawntools/util/CodeGen.hpp deleted file mode 100644 index 1dcf9861..00000000 --- a/src/dawntools/util/CodeGen.hpp +++ /dev/null @@ -1,87 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnsharedlibs.hpp" - -namespace Dawn { - struct ClassGenInfo { - std::vector includes; - std::string clazz = "Unknown"; - std::string extend = ""; - std::string constructorArgs = ""; - std::string extendArgs = ""; - - std::map classTemplates; - - std::vector constructorCode; - - std::vector protectedCode; - std::vector protectedProperties; - - std::vector publicCode; - std::vector publicProperties; - }; - - struct MethodGenInfo { - std::string name; - std::string type = "void"; - std::vector body; - std::string args = ""; - bool_t isStatic = false; - bool_t isOverride = false; - }; - - class CodeGen { - protected: - /** - * Append a line of code to the output buffer. - * - * @param out Output buffer to append to. - * @param contents Line of code to append to the buffer. - * @param tabs Prepended string of spaces/tabs. - */ - static void line( - std::vector *out, - std::string contents, - std::string tabs - ); - - /** - * Append an array of lines to the output buffer. - * - * @param out Output buffer to append to. - * @param lines List of lines of code to append to the buffer. - * @param tabs Prepended string of tabs/spaces to prepend to EACH line. - */ - static void lines( - std::vector *out, - std::vector lines, - std::string tabs - ); - - /** - * Generate code of a class - * - * @param out Output buffer to write the class to. - * @param info Information about how the class should be generated. - */ - static void classGen( - std::vector *out, - struct ClassGenInfo info - ); - - /** - * Generate code of a method/function. - * - * @param out Output buffer to write the method to. - * @param info Information about how the method should be generated. - */ - static void methodGen( - std::vector *out, - struct MethodGenInfo info - ); - }; -} \ No newline at end of file diff --git a/src/dawntools/util/DawnTool.cpp b/src/dawntools/util/DawnTool.cpp deleted file mode 100644 index 4c2bc6fe..00000000 --- a/src/dawntools/util/DawnTool.cpp +++ /dev/null @@ -1,81 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "DawnTool.hpp" -#include "util/memory.hpp" - -#if !defined(DAWN_TOOL_INSTANCE) - #error Dawn Tool Instance, e.g. LanguageTool has not been defined -#endif - -#if !defined(DAWN_TOOL_HEADER) - #error Dawn Tool Include, e.g. LanguageTool.hpp has not been defined -#endif - -#include DAWN_TOOL_HEADER - -using namespace Dawn; - -std::vector DawnTool::getRequiredFlags() { - return std::vector(); -} - -std::map DawnTool::getOptionalFlags() { - return std::map(); -} - -int32_t DawnTool::exec(const int32_t argc, const char *argv[]) { - // Set up flags - flags = this->getOptionalFlags(); - - // Parse args - for(int32_t i = 0; i < argc; i++) { - std::string a(argv[i]); - this->args.push_back(a); - - // First arg is the path, we ignore it. - if(i == 0) continue; - - // Is this a flag-like arg, as in has "--[name]=[value]" - if(a.size() < 5) continue; - if(a[0] != '-' || a[1] != '-') continue; - - // Remove -- - auto flag = a.erase(0, 2); - - // Ensure = is present - auto equalPos = flag.find('='); - if(equalPos == std::string::npos) continue; - - // Get prefix and val and store - auto prefix = flag.substr(0, equalPos); - auto val = flag.substr(equalPos + 1); - if(val.size() == 0) continue; - flags[prefix] = val; - } - - // Now validate flags - auto required = this->getRequiredFlags(); - auto itReq = required.begin(); - while(itReq != required.end()) { - auto match = flags.find(*itReq); - if(match == flags.end()) { - std::cout << "Missing required flag \"" + *itReq + "\"!" << std::endl; - return 1; - } - ++itReq; - } - - return this->start(); -} - -int main(const int32_t argc, const char *argv[]) { - memoryInit(); - DAWN_TOOL_INSTANCE *self = new DAWN_TOOL_INSTANCE(); - int32_t ret = self->exec(argc, argv); - delete self; - if(ret == 0) memoryDispose(); - return ret; -} \ No newline at end of file diff --git a/src/dawntools/util/DawnTool.hpp b/src/dawntools/util/DawnTool.hpp deleted file mode 100644 index 115026ce..00000000 --- a/src/dawntools/util/DawnTool.hpp +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnsharedlibs.hpp" -#include -#include -#include -#include -#include - -namespace Dawn { - class DawnTool { - protected: - std::vector args; - std::map flags; - - /** - * Get the required flags for this tool. These flags will be checked in - * the passed args to the CLI. - * - * @return Array of required flags. - */ - virtual std::vector getRequiredFlags(); - - /** - * Get the optional flags for this tool. Mapped by key value pair where - * the value is some default value you want for your tool. - * - * @return Array of optional flags. - */ - virtual std::map getOptionalFlags(); - - public: - int32_t *test; - - /** - * Execute the Dawn Tool from the CLI, functionally identically to main() - * - * @param argc Count of arguments in the array. - * @param argv Array of arguments. - * @return int32_t - */ - int32_t exec(const int32_t argc, const char *argv[]); - - /** - * Overridable start method after the tool has been set up. - * - * @return 0 for success, otherwise for failure. - */ - virtual int32_t start() = 0; - }; -} - -int main(const int32_t argc, const char *argv[]); \ No newline at end of file diff --git a/src/dawntools/util/Directory.cpp b/src/dawntools/util/Directory.cpp deleted file mode 100644 index 225248c5..00000000 --- a/src/dawntools/util/Directory.cpp +++ /dev/null @@ -1,58 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "Directory.hpp" - -using namespace Dawn; - -Directory::Directory(std::string dirname) { - this->filename = File::normalizeSlashes(dirname); -} - -bool_t Directory::open() { - if(!this->exists()) return false; - if (handle != std::filesystem::end(handle)) return true; - handle = std::filesystem::directory_iterator(filename); - return handle != std::filesystem::end(handle); -} - -bool_t Directory::isOpen() { - return handle != std::filesystem::end(handle); -} - -void Directory::close() { - if(this->isOpen()) { - handle = std::filesystem::directory_iterator(); - } -} - -bool_t Directory::exists() { - return std::filesystem::exists(filename); -} - -void Directory::mkdirp() { - File::mkdirp(this->filename); -} - -std::map Directory::readDirectory() { - this->close(); - if(!this->open()) return {}; - - std::map children; - for(const auto& entry : handle) { - if (entry.is_directory()) { - children[entry.path().filename().string()] = DIRECTORY_CHILD_TYPE_DIRECTORY; - } else if (entry.is_regular_file()) { - children[entry.path().filename().string()] = DIRECTORY_CHILD_TYPE_FILE; - } - } - - this->close(); - return children; -} - -Directory::~Directory() { - this->close(); -} \ No newline at end of file diff --git a/src/dawntools/util/Directory.hpp b/src/dawntools/util/Directory.hpp deleted file mode 100644 index 991a2d09..00000000 --- a/src/dawntools/util/Directory.hpp +++ /dev/null @@ -1,60 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/File.hpp" -#include - -namespace Dawn { - enum DirectoryChildType { - DIRECTORY_CHILD_TYPE_FILE, - DIRECTORY_CHILD_TYPE_DIRECTORY - }; - - class Directory { - public: - std::string filename; - std::filesystem::directory_iterator handle; - - Directory(std::string dir); - - /** - * Opens a connection to the directory. - * @return True if success, otherwise for failure. - */ - bool_t open(); - - /** - * Returns if the directory is open. - * @return True if open, otherwise false. - */ - bool_t isOpen(); - - /** - * Closes the directory. - */ - void close(); - - /** - * Returns if the directory exists. - * @return True if exists, otherwise false. - */ - bool_t exists(); - - /** - * Creates the directory and all parent directories. - */ - void mkdirp(); - - /** - * Reads the directory and returns a list of files. - * - * @return List of filenames/directories within this directory. - */ - std::map readDirectory(); - - ~Directory(); - }; -} \ No newline at end of file diff --git a/src/dawntools/util/File.cpp b/src/dawntools/util/File.cpp deleted file mode 100644 index 462d31ef..00000000 --- a/src/dawntools/util/File.cpp +++ /dev/null @@ -1,264 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "File.hpp" - -using namespace Dawn; - -std::string File::normalizeSlashes(std::string str) { - size_t i = 0; - while(i < str.size()) { - auto c = str[i]; - if(c == '\\' || c == '/') str[i] = FILE_PATH_SEP; - ++i; - } - return str; -} - -void File::mkdirp(std::string path) { - std::string buffer; - char c; - size_t i = 0; - bool_t inFile; - bool_t hasMore; - - inFile = false; - hasMore = false; - while(c = path[i]) { - if((c == '\\' || c == '/') && i > 0) { - fileMkdir(buffer.c_str(), 0755); - inFile = false; - hasMore = false; - buffer += FILE_PATH_SEP; - i++; - continue; - } - - if(c == '.') inFile = true; - hasMore = true; - buffer += c; - i++; - } - - if(!inFile && hasMore) { - fileMkdir(buffer.c_str(), 0755); - } -} - -// - -File::File(std::string filename) { - this->filename = File::normalizeSlashes(filename); -} - -bool_t File::open(enum FileMode mode) { - assertNull(this->file, "File is already open"); - - this->mode = mode; - this->file = fopen( - this->filename.c_str(), - mode == FILE_MODE_READ ? "rb" : "wb" - ); - - if(this->file == NULL) return false; - - if(mode == FILE_MODE_READ) { - fseek(this->file, 0, SEEK_END); - this->length = ftell(this->file); - fseek(this->file, 0, SEEK_SET); - - if(this->length <= 0) { - this->close(); - return false; - } - } else { - this->length = 0; - } - - return true; -} - -bool_t File::isOpen() { - return this->file != nullptr; -} - -bool_t File::exists() { - if(this->file != nullptr) return true; - FILE *f = fopen(this->filename.c_str(), "rb"); - if(f == NULL || f == nullptr) return false; - fclose(f); - return true; -} - -void File::close() { - assertNotNull(this->file, "File::close: File is not open"); - fclose(this->file); - this->file = nullptr; -} - -bool_t File::mkdirp() { - File::mkdirp(this->filename); - return true; -} - -bool_t File::readString(std::string *out) { - assertNotNull(out, "File::readString: Out cannot be null"); - - if(!this->isOpen()) { - if(!this->open(FILE_MODE_READ)) return false; - } - assertTrue(this->mode == FILE_MODE_READ, "File::readString: File must be open in read mode"); - out->clear(); - - size_t i = 0; - char buffer[FILE_BUFFER_SIZE + 1];// +1 for null term - while(i != this->length) { - size_t amt = mathMin(FILE_BUFFER_SIZE, (this->length - i)); - auto amtRead = fread(buffer, sizeof(char), amt, this->file); - if(amtRead != amt) return false; - i += amtRead; - buffer[amtRead] = '\0'; - out->append(buffer); - } - - return true; -} - -size_t File::readAhead(char *buffer, size_t max, char needle) { - assertNotNull(buffer, "File::readAhead: Buffer cannot be null"); - assertTrue(max > 0, "File::readAhead: Max must be greater than 0"); - - if(!this->isOpen()) { - if(!this->open(FILE_MODE_READ)) return 0; - } - assertTrue(this->mode == FILE_MODE_READ, "File::readAhead: File must be open in read mode"); - - // Buffer - size_t pos = ftell(this->file); - size_t amountLeftToRead = mathMin(max, this->length - pos); - char temporary[FILE_BUFFER_SIZE]; - size_t n = 0; - - while(amountLeftToRead > 0) { - size_t toRead = mathMin(amountLeftToRead, FILE_BUFFER_SIZE); - amountLeftToRead -= toRead; - // Read bytes - size_t read = fread(temporary, sizeof(char), toRead, this->file); - - // Read error? - if(toRead != read) return 0; - - // Did we read the needle? - size_t i = 0; - while(i < read) { - char c = temporary[i++]; - if(c == needle) { - return n; - } else { - buffer[n++] = c; - } - } - } - - // Needle was not found. - return -1; -} - -size_t File::readToBuffer(char **buffer) { - if(!this->isOpen()) { - if(!this->open(FILE_MODE_READ)) return 0; - } - assertTrue(this->mode == FILE_MODE_READ, "File::readToBuffer: File must be open in read mode"); - - if((*buffer) == nullptr) *buffer = (char*)malloc(this->length); - fseek(this->file, 0, SEEK_SET); - auto l = fread((*buffer), sizeof(char), this->length, this->file); - return l; -} - -size_t File::readRaw(char *buffer, size_t max) { - assertNotNull(buffer, "File::readRaw: Buffer cannot be null"); - assertTrue(max > 0, "File::readRaw: Max must be greater than 0"); - if(!this->isOpen()) { - if(!this->open(FILE_MODE_READ)) return 0; - } - assertTrue(this->mode == FILE_MODE_READ, "File::readRaw: File must be open in read mode"); - return fread(buffer, sizeof(char), max, this->file); -} - -bool_t File::writeString(std::string in) { - if(!this->isOpen() && !this->open(FILE_MODE_WRITE)) return false; - assertTrue(this->mode == FILE_MODE_WRITE, "File::writeString: File must be open in write mode"); - return this->writeRaw((char *)in.c_str(), in.size()) && this->length == in.size(); -} - -bool_t File::writeRaw(char *data, size_t len) { - if(!this->isOpen() && !this->open(FILE_MODE_WRITE)) return false; - assertTrue(this->mode == FILE_MODE_WRITE, "File::writeRaw: File must be open in write mode"); - assertTrue(len > 0, "File::writeRaw: Length must be greater than 0"); - this->length = fwrite(data, sizeof(char_t), len, this->file); - return true; -} - -bool_t File::copyRaw(File *otherFile, size_t length) { - assertTrue(length > 0, "File::copyRaw: Length must be greater than 0"); - assertTrue(otherFile->isOpen(), "File::copyRaw: Other file must be open"); - - char buffer[FILE_BUFFER_SIZE]; - size_t amountLeftToRead = length; - size_t read = 0; - while(amountLeftToRead > 0) { - auto iRead = otherFile->readRaw(buffer, mathMin(FILE_BUFFER_SIZE, amountLeftToRead)); - if(iRead == 0) return false; - this->writeRaw(buffer, iRead); - amountLeftToRead -= iRead; - read += iRead; - } - - assertTrue(read == length, "File::copyRaw: Read length does not match expected length"); - return true; -} - -void File::setPosition(size_t n) { - fseek(this->file, 0, SEEK_SET); - fseek(this->file, n, SEEK_CUR); -} - -std::string File::getFileName(bool_t withExt) { - // Remove all but last slash - std::string basename; - size_t lastSlash = this->filename.find_last_of('/'); - if(lastSlash == std::string::npos) { - basename = this->filename; - } else { - basename = this->filename.substr(lastSlash + 1); - } - - // Do we need to remove ext? - if(withExt) return basename; - size_t lastDot = basename.find_last_of('.'); - if(lastDot == std::string::npos) return basename; - return basename.substr(0, lastDot); -} - -std::string File::getExtension() { - // Remove all but last slash - std::string basename; - size_t lastSlash = this->filename.find_last_of('/'); - if(lastSlash == std::string::npos) { - basename = this->filename; - } else { - basename = this->filename.substr(lastSlash + 1); - } - - size_t lastDot = basename.find_last_of('.'); - if(lastDot == std::string::npos) return ""; - return basename.substr(lastDot + 1); -} - - -File::~File() { - if(this->file != nullptr) this->close(); -} \ No newline at end of file diff --git a/src/dawntools/util/File.hpp b/src/dawntools/util/File.hpp deleted file mode 100644 index 9fd76671..00000000 --- a/src/dawntools/util/File.hpp +++ /dev/null @@ -1,183 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "assert/assert.hpp" -#include "util/mathutils.hpp" - -#if defined(_MSC_VER) - #include - #include - #define getcwd _getcwd - #define FILE_PATH_SEP '\\' - #define fileMkdir(path, perms) _mkdir(path) -#elif defined(__GNUC__) - #include - #include - #include - #define FILE_PATH_SEP '/' - #define fileMkdir(path, perms) mkdir(path, perms) -#endif -#include - -#define FILE_BUFFER_SIZE 512 - -namespace Dawn { - enum FileMode { - FILE_MODE_READ, - FILE_MODE_WRITE - }; - - class File { - private: - enum FileMode mode; - - public: - static std::string normalizeSlashes(std::string str); - static void mkdirp(std::string path); - - std::string filename; - size_t length; - FILE *file = nullptr; - - /** - * Constructs a new File interface class. - * - * @param filename Filename that you want to interface with. - */ - File(std::string filename); - - /** - * Opens a connection to the file. - * - * @param mode File mode to use for this interface. - * @return True if success, otherwise for failure. - */ - bool_t open(enum FileMode mode); - - /** - * Returns whether or not the file connection is currently opened. - * - * @return True if the connection is open, otherwise if it's not. - */ - bool_t isOpen(); - - /** - * Returns whether or not the file exists. Will open the connection if it - * does exist. - * - * @return True if exists, otherwsie if it doesn't. - */ - bool_t exists(); - - /** - * Closes the currently open interface to the file. Done automatically - * when this object is disposed. - */ - void close(); - - /** - * Makes all directories above this file's filename. - * - * @return True if successful, otherwise false. - */ - bool_t mkdirp(); - - /** - * Reads the entire contents of a file to the given output string buffer. - * This is a bit dangerous since the length of the file isn't checked - * against the memory to be consumed. - * - * @param out Pointer to a string where the output data will be stored. - * @return True if the read was successful, otherwise false. - */ - bool_t readString(std::string *out); - - /** - * Reads ahead from the current position to a specific needle (character). - * - * @param buffer Buffer to output read chars to. - * @param max Max length of the buffer / amount of chars to read ahead. - * @param needle The character (needle) to look for. - * @return Amount of chars read, or <= 0 on error. - */ - size_t readAhead( - char *buffer, - size_t max, - char needle - ); - - /** - * Reads the contents of this file into a given buffer. If buffer is null - * then the buffer will be allocated and returned. - * - * @param buffer Pointer to buffer to read to. - * @return The size of the read data. - */ - size_t readToBuffer(char **buffer); - - /** - * Reads the contents of this file into a given buffer. - * - * @param buffer Pointer to buffer to read to. - * @param max Max length of the buffer. - * @return Amount of bytes read. - */ - size_t readRaw(char *buffer, size_t max); - - /** - * Writes the entire contents of a string to a file. - * - * @param in String to write to this file. - * @return True if written successfully, otherwise false. - */ - bool_t writeString(std::string in); - - /** - * Write raw bytes to the file. - * - * @param data Data to write. - * @param size Size of the data to write. - * @return True if written successfully, otherwise false. - */ - bool_t writeRaw(char *data, size_t size); - - /** - * Write raw bytes to the file from another file. - * - * @param otherFile Other file to read from. - * @param length Length of the data to read. - * @return True if written successfully, otherwise false. - */ - bool_t copyRaw(File *otherFile, size_t length); - - /** - * Set the position of the cursor of the file reader. - * - * @param pos Position to set. - */ - void setPosition(size_t pos); - - /** - * Get the file name of this file, optionally with the extension. - * - * @param withExtension If true, the extension will be included. - * @return The file name. - */ - std::string getFileName(bool_t withExtension = true); - - /** - * Returns the extension of this file. - * - * @return The extension of this file. - */ - std::string getExtension(); - - /** - * Destruct the File manager. - */ - ~File(); - }; -} \ No newline at end of file diff --git a/src/dawntools/util/Image.cpp b/src/dawntools/util/Image.cpp deleted file mode 100644 index e410bae9..00000000 --- a/src/dawntools/util/Image.cpp +++ /dev/null @@ -1,55 +0,0 @@ -/** - * Copyright (c) 2021 Dominic Masters - * - * This software is released under the MIT License. - * https://opensource.org/licenses/MIT - */ - -#include "Image.hpp" - -#ifndef STB_IMAGE_IMPLEMENTATION - #define STB_IMAGE_IMPLEMENTATION - #include -#endif - -#ifndef STB_IMAGE_RESIZE_IMPLEMENTATION - #define STB_IMAGE_RESIZE_IMPLEMENTATION - #include -#endif - -#ifndef STB_IMAGE_WRITE_IMPLEMENTATION - #define STB_IMAGE_WRITE_IMPLEMENTATION - #include -#endif - -void imageCopy( - uint8_t *source, int32_t sourceWidth, int32_t sourceHeight, - uint8_t *dest, int32_t destWidth, int32_t destHeight, - int32_t cropX, int32_t cropY, int32_t cropWidth, int32_t cropHeight, - int32_t pasteX, int32_t pasteY, - int32_t channels -) { - int32_t x, y, c; - int32_t absX, absY; - int32_t sourceIndex, targetIndex; - - if(cropX == -1) cropX = 0; - if(cropY == -1) cropY = 0; - if(cropWidth == -1) cropWidth = sourceWidth; - if(cropHeight == -1) cropHeight = sourceHeight; - if(pasteX == -1) pasteX = 0; - if(pasteY == -1) pasteY = 0; - - for(x = cropX; x < cropX + cropWidth; x++) { - for(y = cropY; y < cropY + cropHeight; y++) { - absX = x - cropX + pasteX; - absY = y - cropY + pasteY; - if(absX >= destWidth || absY >= destHeight || absX < 0 || absY < 0)continue; - targetIndex = absY * destWidth + absX; - sourceIndex = y * sourceWidth + x; - for(c = 0; c < channels; c++) { - dest[(targetIndex*channels) + c] = source[(sourceIndex*channels) + c]; - } - } - } -} \ No newline at end of file diff --git a/src/dawntools/util/Image.hpp b/src/dawntools/util/Image.hpp deleted file mode 100644 index 3035ddc2..00000000 --- a/src/dawntools/util/Image.hpp +++ /dev/null @@ -1,38 +0,0 @@ -/** - * Copyright (c) 2021 Dominic Masters - * - * This software is released under the MIT License. - * https://opensource.org/licenses/MIT - */ - -#pragma once -#include "File.hpp" - -#include -#include -#include - -/** - * Unused currently. - * - * @param source - * @param sourceWidth - * @param sourceHeight - * @param dest - * @param destWidth - * @param destHeight - * @param cropX - * @param cropY - * @param cropWidth - * @param cropHeight - * @param pasteX - * @param pasteY - * @param channels - */ -void imageCopy( - uint8_t *source, int32_t sourceWidth, int32_t sourceHeight, - uint8_t *dest, int32_t destWidth, int32_t destHeight, - int32_t cropX, int32_t cropY, int32_t cropWidth, int32_t cropHeight, - int32_t pasteX, int32_t pasteY, - int32_t channels -); \ No newline at end of file diff --git a/src/dawntools/util/Language.cpp b/src/dawntools/util/Language.cpp deleted file mode 100644 index d0b4039d..00000000 --- a/src/dawntools/util/Language.cpp +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "Language.hpp" - -using namespace Dawn; - -int32_t languageSaveStrings( - std::string languagesDir, - std::vector strings -) { - if(languagesDir.size() <= 0) { - std::cout << "Languages dir is not defined" << std::endl; - return 1; - } - - File file(languagesDir); - if(!file.mkdirp()) { - std::cout << "Failed to create languages string output dir " << file.filename << std::endl; - return 1; - } - - // Now convert to xml - std::string buffer; - auto it = strings.begin(); - while(it != strings.end()) { - auto s = *it; - buffer += s.lang + "|" + s.key + "|" + s.text + "|"; - ++it; - } - file.writeString(buffer); - - return 0; -} \ No newline at end of file diff --git a/src/dawntools/util/Language.hpp b/src/dawntools/util/Language.hpp deleted file mode 100644 index ca8e58f5..00000000 --- a/src/dawntools/util/Language.hpp +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/Xml.hpp" -#include "util/File.hpp" - -struct LanguageString { - std::string key; - std::string lang; - std::string text; -}; - -/** - * Shorthand method to save a list of languages to a file. - * - * @param languagesDir Directory where the language(s) are to be stored. - * @param strings List of strings to store. - * @return 0 for success, otherwise for failure. - */ -static int32_t languageSaveStrings( - std::string languagesDir, - std::vector strings -); \ No newline at end of file diff --git a/src/dawntools/util/XmlParser.hpp b/src/dawntools/util/XmlParser.hpp deleted file mode 100644 index 71acbe42..00000000 --- a/src/dawntools/util/XmlParser.hpp +++ /dev/null @@ -1,113 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/Xml.hpp" - -namespace Dawn { - template - class XmlParser { - protected: - /** - * Get the required attributes for this Xml Node to have. - * - * @return Vector of strings of required attribute keys. - */ - virtual std::vector getRequiredAttributes() = 0; - - /** - * Return optional attributes with defaults for this node to have. - * - * @return Key-Value Pair of optional attributes and defaults. - */ - virtual std::map getOptionalAttributes() = 0; - - /** - * Callback to be invoked upon successful parse of this node. - * - * @param node Node that was parsed. - * @param values KVP of values from the required and optional attrs. - * @param output Templated output of the parse from this method. - * @param error Pointer to a string to write-out any errors. - * @return Non 0 for error, 0 for success. - */ - virtual int32_t onParse( - Xml *node, - std::map values, - T *output, - std::string *error - ) = 0; - - public: - /** - * Common parse method to parse a duration from a value string. - * - * @param duration Duration string to parse. - * @return The parsed duration. - */ - static std::string parseDuration(std::string duration) { - std::string dur = duration; - if(dur.find('.') == std::string::npos) dur += ".0"; - return dur + "f"; - } - - /** - * Common parse method to parse an easing from a value string. - * - * @param e Easing string to parse. - * @return The parsed ease. - */ - static std::string parseEase(std::string e) { - if(e == "out-quad") return "&easeOutQuad"; - if(e == "linear") return "&easeLinear"; - return ""; - } - - /** - * Handles parsing of an Xml node. - * - * @param xml Xml node to parse. - * @param output Output struct to put the output data. - * @param error Pointer to the string for errors to be stored. - * @return 0 for success, otherwise for error. - */ - int32_t parse(Xml *xml, T *output, std::string *error) { - std::map values; - - // First get the required attributes - auto required = this->getRequiredAttributes(); - auto itRequired = required.begin(); - while(itRequired != required.end()) { - auto s = *itRequired; - auto attr = xml->attributes.find(s); - if(attr == xml->attributes.end()) { - std::cout << "Missing required attribute \"" << s << "\" on node \"" << xml->node << "\"" << std::endl; - return 1; - } - values[s] = attr->second; - ++itRequired; - } - - // Now get the optional attributes - auto optional = this->getOptionalAttributes(); - auto itOptional = optional.begin(); - while(itOptional != optional.end()) { - auto key = itOptional->first; - auto defaultValue = itOptional->second; - - auto attr = xml->attributes.find(key); - if(attr == xml->attributes.end()) { - values[key] = defaultValue; - } else { - values[key] = attr->second; - } - ++itOptional; - } - - // Now send to parser - return this->onParse(xml, values, output, error); - } - }; -} \ No newline at end of file diff --git a/src/dawntools/util/generator/CMakeLists.txt b/src/dawntools/util/generator/CMakeLists.txt deleted file mode 100644 index 19378cec..00000000 --- a/src/dawntools/util/generator/CMakeLists.txt +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright (c) 2023 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -set(D ${CMAKE_CURRENT_LIST_DIR}) - -set( - DAWN_TOOL_SOURCES - ${DAWN_TOOL_SOURCES} - ${D}/SceneItemGenerator.cpp - ${D}/SceneAssetGenerator.cpp - ${D}/SceneCodeGenerator.cpp - ${D}/SceneGenerator.cpp - ${D}/SceneItemComponentGenerator.cpp - - CACHE INTERNAL - ${DAWN_CACHE_TARGET} -) \ No newline at end of file diff --git a/src/dawntools/util/generator/SceneAssetGenerator.cpp b/src/dawntools/util/generator/SceneAssetGenerator.cpp deleted file mode 100644 index 2c56ff61..00000000 --- a/src/dawntools/util/generator/SceneAssetGenerator.cpp +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneAssetGenerator.hpp" - -using namespace Dawn; - -void SceneAssetGenerator::generate( - std::map &assetMap, - int32_t &assetNumber, - std::vector *publicProperties, - std::vector *initBody, - std::vector *assetsBody, - struct SceneAsset *asset, - std::string tabs -) { - std::string assetType = ""; - - bool_t componentInit = true; - if(asset->ref.empty()) { - asset->usageName = "asset" + std::to_string(assetNumber++); - } else { - asset->usageName = asset->ref; - } - - switch(asset->type) { - case SCENE_ASSET_TYPE_TEXTURE: - assetType = "TextureAsset"; - assetMap[asset->fileName] = "&" + asset->usageName + "->texture"; - assetMap[asset->usageName] = "&" + asset->usageName + "->texture"; - break; - - case SCENE_ASSET_TYPE_TRUETYPE_FONT: - assetType = "TrueTypeAsset"; - assetMap[asset->fileName] = asset->usageName; - assetMap[asset->usageName] = asset->usageName; - break; - - default: - assertUnreachable("SceneAssetGenerator::generate: Unknown asset type"); - } - - if(!asset->ref.empty()) { - line(publicProperties, assetType + " *" + asset->usageName + " = nullptr;", ""); - line(initBody, asset->usageName + " = man->get<" + assetType + ">(\"" + asset->fileName + "\");", ""); - } else { - line(initBody, "auto " + asset->usageName + " = man->get<" + assetType + ">(\"" + asset->fileName + "\");", ""); - } - - line(assetsBody, "assets.push_back(man->get<" + assetType + ">(\"" + asset->fileName + "\"));", ""); -} \ No newline at end of file diff --git a/src/dawntools/util/generator/SceneAssetGenerator.hpp b/src/dawntools/util/generator/SceneAssetGenerator.hpp deleted file mode 100644 index dbae2b27..00000000 --- a/src/dawntools/util/generator/SceneAssetGenerator.hpp +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/parser/SceneAssetParser.hpp" -#include "util/CodeGen.hpp" - -namespace Dawn { - class SceneAssetGenerator : public CodeGen { - public: - static void generate( - std::map &assetMap, - int32_t &assetNumber, - std::vector *publicProperties, - std::vector *initBody, - std::vector *assetsBody, - struct SceneAsset *asset, - std::string tabs - ); - }; -} \ No newline at end of file diff --git a/src/dawntools/util/generator/SceneCodeGenerator.cpp b/src/dawntools/util/generator/SceneCodeGenerator.cpp deleted file mode 100644 index 1cbdb38c..00000000 --- a/src/dawntools/util/generator/SceneCodeGenerator.cpp +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneCodeGenerator.hpp" - -using namespace Dawn; - -void SceneCodeGenerator::generate( - std::vector *publicProperties, - std::vector *initBody, - std::vector *includes, - struct SceneCode *code, - std::string tabs -) { - switch(code->codeType) { - case SCENE_CODE_TYPE_PROPERTIES: - line(publicProperties, code->code, ""); - break; - - case SCENE_CODE_TYPE_INIT: - line(initBody, code->code, ""); - break; - - case SCENE_CODE_TYPE_INCLUDE: - line(includes, code->code, ""); - break; - - default: - break; - } -} \ No newline at end of file diff --git a/src/dawntools/util/generator/SceneCodeGenerator.hpp b/src/dawntools/util/generator/SceneCodeGenerator.hpp deleted file mode 100644 index 030c41e9..00000000 --- a/src/dawntools/util/generator/SceneCodeGenerator.hpp +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/parser/SceneCodeParser.hpp" -#include "util/CodeGen.hpp" - -namespace Dawn { - class SceneCodeGenerator : public CodeGen { - public: - static void generate( - std::vector *publicProperties, - std::vector *initBody, - std::vector *includes, - struct SceneCode *code, - std::string tabs - ); - }; -} \ No newline at end of file diff --git a/src/dawntools/util/generator/SceneGenerator.cpp b/src/dawntools/util/generator/SceneGenerator.cpp deleted file mode 100644 index 2c72fd0d..00000000 --- a/src/dawntools/util/generator/SceneGenerator.cpp +++ /dev/null @@ -1,103 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneGenerator.hpp" - -using namespace Dawn; - -void SceneGenerator::generate( - struct Scene *scene, - struct ClassGenInfo &classInfo, - struct MethodGenInfo &methodAssets, - struct MethodGenInfo &methodInit -) { - assertNotNull(scene, "SceneGenerator::generate: Scene cannot be null"); - - std::map assetMap; - int32_t assetNumber = 0; - std::string baseClassName = "Scene"; - - classInfo.clazz = scene->name; - classInfo.constructorArgs = "DawnGame *game"; - classInfo.extendArgs = "game"; - - // Determine extends - if(scene->extend.empty()) { - classInfo.includes.push_back("scene/Scene.hpp"); - } else { - classInfo.includes.push_back(scene->extend + ".hpp"); - - // Get last slash of scene->extend - auto lastSlash = scene->extend.find_last_of('/'); - baseClassName = scene->extend; - if(lastSlash != std::string::npos) { - baseClassName = scene->extend.substr(lastSlash + 1); - } - } - classInfo.extend = baseClassName; - - methodAssets.name = "getRequiredAssets"; - methodAssets.isOverride = true; - methodAssets.type = "std::vector"; - line(&methodAssets.body, "auto man = &this->game->assetManager;", ""); - - methodInit.name = "stage"; - methodInit.isOverride = true; - - if(scene->extend.empty()) { - line(&methodAssets.body, "std::vector assets;", ""); - } else { - line(&methodAssets.body, "std::vector assets = " + baseClassName + "::getRequiredAssets();", ""); - line(&methodInit.body, baseClassName + "::stage();", ""); - } - - // Scene assets - line(&methodInit.body, "auto man = &this->game->assetManager;", ""); - - auto itAssets = scene->assets.begin(); - while(itAssets != scene->assets.end()) { - SceneAssetGenerator::generate( - assetMap, - assetNumber, - &classInfo.publicProperties, - &methodInit.body, - &methodAssets.body, - &(*itAssets), - "" - ); - ++itAssets; - } - - // Generate - int32_t childNumber = 0; - int32_t componentNumber = 0; - std::vector componentsUnused; - - auto itDeps = scene->dependencies.begin(); - while(itDeps != scene->dependencies.end()) { - auto dep = *itDeps; - SceneItemGenerator::generateDependency( - assetNumber, - componentNumber, - childNumber, - assetMap, - classInfo.includes, - &classInfo.publicProperties, - &methodInit.body, - &methodAssets.body, - "", - "this", - componentsUnused, - scene->items, - scene->code, - dep - ); - ++itDeps; - } - - - // Seal methods - line(&methodAssets.body, "return assets;", ""); -} \ No newline at end of file diff --git a/src/dawntools/util/generator/SceneGenerator.hpp b/src/dawntools/util/generator/SceneGenerator.hpp deleted file mode 100644 index bd6f87c1..00000000 --- a/src/dawntools/util/generator/SceneGenerator.hpp +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/parser/SceneParser.hpp" -#include "SceneItemGenerator.hpp" -#include "util/CodeGen.hpp" - -namespace Dawn { - class SceneGenerator : public CodeGen { - public: - static void generate( - struct Scene *scene, - struct ClassGenInfo &classInfo, - struct MethodGenInfo &methodAssets, - struct MethodGenInfo &methodInit - ); - }; -} \ No newline at end of file diff --git a/src/dawntools/util/generator/SceneItemComponentGenerator.cpp b/src/dawntools/util/generator/SceneItemComponentGenerator.cpp deleted file mode 100644 index 84adf24f..00000000 --- a/src/dawntools/util/generator/SceneItemComponentGenerator.cpp +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneItemComponentGenerator.hpp" - -using namespace Dawn; - -void SceneItemComponentGenerator::generate( - std::map &assetMap, - int32_t &componentNumber, - std::vector &includes, - std::string itemRef, - std::vector *publicProperties, - std::vector *initBody, - struct SceneItemComponent *component, - std::string tabs -) { - auto componentName = "cmp" + std::to_string(componentNumber++); - bool_t componentInit = true; - if(component->ref.size() > 0) { - componentInit = false; - componentName = component->ref; - line(publicProperties, component->type + " *" + component->ref + " = nullptr;", ""); - } - - // Initialize - line(initBody, (componentInit ? "auto " : "") + componentName + " = " + itemRef + "->addComponent<" + component->type + ">();", ""); - - // Now set each property - auto itValues = component->values.begin(); - while(itValues != component->values.end()) { - auto value = itValues->second; - if(assetMap.find(value) != assetMap.end()) { - value = assetMap[value]; - } - line(initBody, componentName + "->" + itValues->first + " = " + value + ";", ""); - ++itValues; - } - - includes.push_back(component->include); -} \ No newline at end of file diff --git a/src/dawntools/util/generator/SceneItemComponentGenerator.hpp b/src/dawntools/util/generator/SceneItemComponentGenerator.hpp deleted file mode 100644 index 9817f439..00000000 --- a/src/dawntools/util/generator/SceneItemComponentGenerator.hpp +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/parser/SceneItemComponentParser.hpp" -#include "util/CodeGen.hpp" - -namespace Dawn { - class SceneItemComponentGenerator : public CodeGen { - public: - static void generate( - std::map &assetMap, - int32_t &componentNumber, - std::vector &includes, - std::string itemRef, - std::vector *publicProperties, - std::vector *initBody, - struct SceneItemComponent *component, - std::string tabs - ); - }; -} \ No newline at end of file diff --git a/src/dawntools/util/generator/SceneItemGenerator.cpp b/src/dawntools/util/generator/SceneItemGenerator.cpp deleted file mode 100644 index 5048feb0..00000000 --- a/src/dawntools/util/generator/SceneItemGenerator.cpp +++ /dev/null @@ -1,213 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneItemGenerator.hpp" - -using namespace Dawn; - -void SceneItemGenerator::generateDependency( - int32_t &assetNumber, - int32_t &componentNumber, - int32_t &childNumber, - std::map &assetMap, - std::vector &includes, - std::vector *publicProperties, - std::vector *initBody, - std::vector *assetBody, - std::string name, - std::string sceneRef, - std::vector &components, - std::vector &children, - std::vector &code, - struct SceneItemDependency dep -) { - switch(dep.type) { - case SCENE_ITEM_DEPENDENCY_TYPE_CODE: { - auto i = &code[dep.position]; - SceneCodeGenerator::generate( - publicProperties, - initBody, - &includes, - i, - "" - ); - line(initBody, "", ""); - break; - } - - case SCENE_ITEM_DEPENDENCY_TYPE_COMPONENT: { - auto i = &components[dep.position]; - SceneItemComponentGenerator::generate( - assetMap, - componentNumber, - includes, - name, - publicProperties, - initBody, - i, - "" - ); - line(initBody, "", ""); - break; - } - - case SCENE_ITEM_DEPENDENCY_TYPE_ITEM: { - auto i = &children[dep.position]; - SceneItemGenerator::generate( - assetNumber, - componentNumber, - childNumber, - assetMap, - includes, - publicProperties, - initBody, - assetBody, - name, - sceneRef, - i, - "" - ); - line(initBody, "", ""); - break; - } - - default: - assertUnreachable("SceneItemGenerator::generateDependency: Unknown dependency type"); - } -} - -void SceneItemGenerator::generate( - int32_t &assetNumber, - int32_t &componentNumber, - int32_t &childNumber, - std::map &assetMap, - std::vector &includes, - std::vector *publicProperties, - std::vector *initBody, - std::vector *assetBody, - std::string parentRef, - std::string sceneRef, - struct SceneItem *item, - std::string tabs -) { - assertNotNull(publicProperties, "SceneItemGenerator::generate: publicProperties cannot be null"); - assertNotNull(initBody, "SceneItemGenerator::generate: initBody cannot be null"); - assertNotNull(assetBody, "SceneItemGenerator::generate: assetBody cannot be null"); - assertNotNull(item, "SceneItemGenerator::generate: item cannot be null"); - - // Determine interface - std::string name = "itm" + std::to_string(childNumber++); - std::string itemType = "SceneItem"; - - if(item->ref == "this") { - name = item->ref; - } else { - // Determine name - if(!item->ref.empty()) name = item->ref; - - // Initialize, either prefab or created. - if(!item->prefab.empty()) { - // Determine prefab name, type and include - std::string prefabName = item->prefab; - if(prefabName.find("/") != std::string::npos) { - prefabName = prefabName.substr(prefabName.find_last_of("/") + 1); - } - itemType = prefabName; - - // Create prefab - includes.push_back(item->prefab + ".hpp"); - line(initBody, (item->ref.empty() ? "auto " : "") + name + " = " + prefabName + "::create(" + sceneRef + ");", ""); - line(assetBody, "vectorAppend(&assets, " + prefabName + "::getRequiredAssets(man));", ""); - } else { - // Not a prefab, init empty child. - line(initBody, (item->ref.empty() ? "auto " : "") + name + " = " + sceneRef + "->createSceneItem();", ""); - } - - // Property/Ref defintion - if(!item->ref.empty() && item->ref != "this") { - line(publicProperties, itemType + " *" + name + " = nullptr;", ""); - } - } - - // Process extra properties - if(item->position.size() > 0) { - line(initBody, name + "->transform.setLocalPosition(" + item->position + ");", ""); - } - - if(item->alignment.size() > 0) { - line(initBody, name + "->uiItem->alignment = " + item->alignment + ";", ""); - } - - if(item->alignX.size() > 0) { - line(initBody, name + "->uiItem->alignX = " + item->alignX + ";", ""); - } - - if(item->alignY.size() > 0) { - line(initBody, name + "->uiItem->alignY = " + item->alignY + ";", ""); - } - - if(item->menuX.size() > 0) { - line(initBody, name + "->menuItem->menuX = " + item->menuX + ";", ""); - } - - if(item->menuY.size() > 0) { - line(initBody, name + "->menuItem->menuY = " + item->menuY + ";", ""); - } - - if(item->scale.size() > 0) { - line(initBody, name + "->transform.setLocalScale(" + item->scale + ");", ""); - } - - if(item->lookAtPosition.size() > 0) { - line(initBody, name + "->transform.lookAt(" + item->lookAtPosition + ", " + item->lookAtTarget + ");", ""); - } - - if(!item->label.empty()) { - line(initBody, name + "->label->text = " + item->label + ";", ""); - } - - // Add assets - auto itAssets = item->assets.begin(); - while(itAssets != item->assets.end()) { - SceneAssetGenerator::generate( - assetMap, - assetNumber, - publicProperties, - initBody, - assetBody, - &(*itAssets), - "" - ); - ++itAssets; - } - - // Add the dependencies - auto itDeps = item->dependencies.begin(); - while(itDeps != item->dependencies.end()) { - auto dep = *itDeps; - SceneItemGenerator::generateDependency( - assetNumber, - componentNumber, - childNumber, - assetMap, - includes, - publicProperties, - initBody, - assetBody, - name, - sceneRef, - item->components, - item->children, - item->code, - dep - ); - ++itDeps; - } - - // Set parent - if(!parentRef.empty()) { - line(initBody, name + "->transform.setParent(&"+parentRef+"->transform);", ""); - } -} \ No newline at end of file diff --git a/src/dawntools/util/generator/SceneItemGenerator.hpp b/src/dawntools/util/generator/SceneItemGenerator.hpp deleted file mode 100644 index 48dce188..00000000 --- a/src/dawntools/util/generator/SceneItemGenerator.hpp +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "SceneItemComponentGenerator.hpp" -#include "SceneAssetGenerator.hpp" -#include "util/parser/SceneItemParser.hpp" -#include "util/generator/SceneCodeGenerator.hpp" - -namespace Dawn { - class SceneItemGenerator : public CodeGen { - public: - static void generateDependency( - int32_t &assetNumber, - int32_t &componentNumber, - int32_t &childNumber, - std::map &assetMap, - std::vector &includes, - std::vector *publicProperties, - std::vector *initBody, - std::vector *assetBody, - std::string name, - std::string sceneRef, - std::vector &components, - std::vector &children, - std::vector &code, - struct SceneItemDependency dep - ); - - static void generate( - int32_t &assetNumber, - int32_t &componentNumber, - int32_t &childNumber, - std::map &assetMap, - std::vector &includes, - std::vector *publicProperties, - std::vector *initBody, - std::vector *assetBody, - std::string parentRef, - std::string sceneRef, - struct SceneItem *item, - std::string tabs - ); - }; -} \ No newline at end of file diff --git a/src/dawntools/util/parser/CMakeLists.txt b/src/dawntools/util/parser/CMakeLists.txt deleted file mode 100644 index 584fb9a9..00000000 --- a/src/dawntools/util/parser/CMakeLists.txt +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright (c) 2023 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -set(D ${CMAKE_CURRENT_LIST_DIR}) - -set( - DAWN_TOOL_SOURCES - ${DAWN_TOOL_SOURCES} - ${D}/SceneParser.cpp - ${D}/SceneItemParser.cpp - ${D}/SceneAssetParser.cpp - ${D}/SceneCodeParser.cpp - ${D}/SceneItemComponentParser.cpp - ${D}/SceneItemComponentRegistry.cpp - - CACHE INTERNAL - ${DAWN_CACHE_TARGET} -) \ No newline at end of file diff --git a/src/dawntools/util/parser/SceneAssetParser.cpp b/src/dawntools/util/parser/SceneAssetParser.cpp deleted file mode 100644 index 434edf76..00000000 --- a/src/dawntools/util/parser/SceneAssetParser.cpp +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneAssetParser.hpp" - -using namespace Dawn; - -std::vector SceneAssetParser::getRequiredAttributes() { - return { "type", "name" }; -} - -std::map SceneAssetParser::getOptionalAttributes() { - return { - { "ref", "" } - }; -} - -int32_t SceneAssetParser::onParse( - Xml *node, - std::map values, - struct SceneAsset *out, - std::string *error -) { - out->fileName = values["name"]; - - if(values["type"] == "texture") { - out->type = SCENE_ASSET_TYPE_TEXTURE; - } else if(values["type"] == "truetype") { - out->type = SCENE_ASSET_TYPE_TRUETYPE_FONT; - } else { - *error = "Unknown asset type '" + values["type"] + "'"; - return 1; - } - - out->ref = values["ref"]; - - return 0; -} \ No newline at end of file diff --git a/src/dawntools/util/parser/SceneAssetParser.hpp b/src/dawntools/util/parser/SceneAssetParser.hpp deleted file mode 100644 index 0528ae49..00000000 --- a/src/dawntools/util/parser/SceneAssetParser.hpp +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/XmlParser.hpp" - -namespace Dawn { - enum SceneAssetType { - SCENE_ASSET_TYPE_TEXTURE, - SCENE_ASSET_TYPE_TRUETYPE_FONT - }; - - struct SceneAsset { - SceneAssetType type; - std::string fileName; - std::string usageName; - std::string ref; - }; - - class SceneAssetParser : public XmlParser { - public: - virtual std::vector getRequiredAttributes(); - virtual std::map getOptionalAttributes(); - - virtual int32_t onParse( - Xml *node, - std::map values, - struct SceneAsset *out, - std::string *error - ); - }; -} \ No newline at end of file diff --git a/src/dawntools/util/parser/SceneCodeParser.cpp b/src/dawntools/util/parser/SceneCodeParser.cpp deleted file mode 100644 index 9326ce46..00000000 --- a/src/dawntools/util/parser/SceneCodeParser.cpp +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneCodeParser.hpp" - -using namespace Dawn; - -std::vector SceneCodeParser::getRequiredAttributes() { - return { "type" }; -} - -std::map SceneCodeParser::getOptionalAttributes() { - return {}; -} - -int32_t SceneCodeParser::onParse( - Xml *node, - std::map values, - struct SceneCode *out, - std::string *error -) { - // Get the type - std::string type = values["type"]; - if(type == "properties") { - out->codeType = SCENE_CODE_TYPE_PROPERTIES; - } else if(type == "init") { - out->codeType = SCENE_CODE_TYPE_INIT; - } else if(type == "include") { - out->codeType = SCENE_CODE_TYPE_INCLUDE; - } else { - *error = "Invalid type '" + type + "' for SceneCode."; - return -1; - } - - // Get the code - out->code = node->textContent; - - return 0; -} \ No newline at end of file diff --git a/src/dawntools/util/parser/SceneCodeParser.hpp b/src/dawntools/util/parser/SceneCodeParser.hpp deleted file mode 100644 index 710c4a9b..00000000 --- a/src/dawntools/util/parser/SceneCodeParser.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/XmlParser.hpp" - -namespace Dawn { - enum SceneCodeType { - SCENE_CODE_TYPE_PROPERTIES, - SCENE_CODE_TYPE_INIT, - SCENE_CODE_TYPE_INCLUDE - }; - - struct SceneCode { - enum SceneCodeType codeType; - std::string code; - }; - - class SceneCodeParser : public XmlParser { - public: - virtual std::vector getRequiredAttributes(); - virtual std::map getOptionalAttributes(); - - virtual int32_t onParse( - Xml *node, - std::map values, - struct SceneCode *out, - std::string *error - ); - }; -} \ No newline at end of file diff --git a/src/dawntools/util/parser/SceneItemComponentParser.cpp b/src/dawntools/util/parser/SceneItemComponentParser.cpp deleted file mode 100644 index 8583f800..00000000 --- a/src/dawntools/util/parser/SceneItemComponentParser.cpp +++ /dev/null @@ -1,80 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneItemComponentParser.hpp" - -using namespace Dawn; - -std::vector SceneItemComponentParser::getRequiredAttributes() { - return { }; -} - -std::map SceneItemComponentParser::getOptionalAttributes() { - return { { "ref", "" } }; -} - -int32_t SceneItemComponentParser::onParse( - Xml *node, - std::map values, - struct SceneItemComponent *out, - std::string *error -) { - // Check if values contains key "ref" and has a string of size more than 0 - if(values.find("ref") != values.end() && values["ref"].size() > 0) { - out->ref = values["ref"]; - } - - // Get the ruleset. - auto ruleset = out->registry->getRuleset(node->node); - if(ruleset.name.size() == 0) { - *error = "Unknown prefab node type: " + node->node; - return 1; - } - - out->include = ruleset.include; - out->type = node->node; - - // Define parser types here. - - // Iterate all the optional attributes and store within the out if present - auto itOptional = ruleset.optional.begin(); - while(itOptional != ruleset.optional.end()) { - // Determine the parser to use - auto name = itOptional->first; - auto type = itOptional->second; - - std::function parser = rawParser; - try { - parser = parserFromTypeName(type); - } catch(std::string err) { - if(name[0] == '*') { - name = name.substr(1, name.size()); - parser = rawParser; - } else { - *error = "Unknown parser for type: " + type + "::" + name; - return 1; - } - } - - if(node->attributes.find(name) != node->attributes.end()) { - auto raw = node->attributes[name]; - out->values[name] = parser(raw, error); - if(error->size() != 0) return 1; - } - ++itOptional; - } - - auto itInnerXml = ruleset.innerXml.begin(); - while(itInnerXml != ruleset.innerXml.end()) { - auto name = itInnerXml->first; - auto type = itInnerXml->second; - - out->values[name] = stringParser(node->innerXml, error); - if(error->size() != 0) return 1; - ++itInnerXml; - } - - return 0; -} \ No newline at end of file diff --git a/src/dawntools/util/parser/SceneItemComponentParser.hpp b/src/dawntools/util/parser/SceneItemComponentParser.hpp deleted file mode 100644 index 73546e0f..00000000 --- a/src/dawntools/util/parser/SceneItemComponentParser.hpp +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/parser/SceneItemComponentRegistry.hpp" -#include "util/parser/TypeParsers.hpp" - -namespace Dawn { - struct SceneItemComponent { - struct SceneItemComponentRegistry *registry; - std::string include; - std::string type; - std::map values; - std::string ref; - }; - - class SceneItemComponentParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct SceneItemComponent *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/util/parser/SceneItemComponentRegistry.cpp b/src/dawntools/util/parser/SceneItemComponentRegistry.cpp deleted file mode 100644 index 2070a283..00000000 --- a/src/dawntools/util/parser/SceneItemComponentRegistry.cpp +++ /dev/null @@ -1,203 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneItemComponentRegistry.hpp" - -using namespace Dawn; - -struct SceneItemComponentRuleset SceneItemComponentRegistry::parseFile( - File *file, - std::string clazz -) { - assertNotNull(file, "SceneItemCOmponentRegistry::parseFile: File is null"); - - std::string data; - if(!file->readString(&data)) { - std::cout << "Failed to read ruleset file!" << std::endl; - return { .name = "" }; - } - - // Begin scanning contentsr - // std::string include = 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) - auto firstSlash = includePath.find(FILE_PATH_SEP); - if(firstSlash != std::string::npos) { - includePath = includePath.substr(firstSlash + 1, includePath.size() - firstSlash - 1); - } - - struct SceneItemComponentRuleset 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 = clazz; - - std::regex_constants::syntax_option_type regexFlags; - #if defined(__GNUC__) - regexFlags = std::regex_constants::ECMAScript | std::regex_constants::multiline; - #else - regexFlags = std::regex_constants::ECMAScript; - #endif - - // First, let's look for what class(es) this class extends - std::regex regexClassName("class\\s+\\w+\\s+:\\s+", regexFlags); - std::smatch match; - if(std::regex_search(data, match, regexClassName)) { - // Now find the next "{" - auto matchStart = match.position() + match.length(); - auto openBracePos = data.find("{", matchStart); - if(openBracePos == std::string::npos) { - std::cout << "Failed to find open brace for class!" << std::endl; - return { .name = "" }; - } - - // Match each of the class names - std::regex regexClass("(public\\s+(\\w+))[,\\s{]+", regexFlags); - std::sregex_iterator itClass(data.begin() + matchStart, data.begin() + openBracePos, regexClass); - std::sregex_iterator endClass; - while(itClass != endClass) { - // Get the class name - auto className = itClass->str(2); - itClass++; - - // We don't parse interface classes - if(className[0] == 'I') continue; - ruleset.extends.push_back(className); - } - } - - // Find each instance of "@optional" when it's used within a comment - // e.g. // @optional or /* @optional */ in the string data.1 - std::regex regex("^\\s*(?:\\/\\/|\\/\\*){1}\\s*\\@(optional|innerXml)\\s*(?:\\*\\/)?\\s*$", regexFlags); - std::sregex_iterator it(data.begin(), data.end(), regex); - std::sregex_iterator end; - while(it != end) { - // Extract the kind of parameter this is - std::smatch match; - if(!std::regex_search(data, match, regex)) { - std::cout << "Failed to determine parameter type!" << std::endl; - return { .name = "" }; - } - - std::string paramType = match[1].str(); - - // Find the next ";" - auto endPos = data.find(";", it->position() + it->length()); - if(endPos == std::string::npos) { - std::cout << "Failed to find end of line for attribute!" << std::endl; - return { .name = "" }; - } - - // Go backwards see if there's an equals sign after the match but before endPos - auto equalsPos = data.rfind("=", endPos); - - // If there's an equals sign, we search backwards from there, - // otherwise we search backwards from the ; - auto varStart = it->position() + it->length() + 1; - size_t lastSearchPos = ( - (equalsPos == std::string::npos || equalsPos <= varStart) ? - endPos : - equalsPos - ); - - // Now we have our string - auto varLength = lastSearchPos - varStart; - auto variableString = data.substr(varStart, varLength); - - // Now (should) be able to extract the type; - std::regex regex2("^\\s*(?:[\\S]+<)?([\\w*:_\\s]+)(?:[\\S]+)? (\\**[\\w]+)\\s*$", regexFlags); - std::smatch match2; - if(!std::regex_search(variableString, match2, regex2)) { - std::cout << "Failed to extract type and name from variable string! " << variableString << std::endl; - return { .name = "" }; - } - - // Now we have our type and name - auto type = match2[1].str(); - auto name = match2[2].str(); - - // Now store depending on the type - if(paramType == "optional") { - ruleset.selfOptional[name] = type; - } else if(paramType == "innerXml") { - ruleset.innerXml[name] = type; - } else { - assertUnreachable("SceneItemComponentRegistry::parseFile: Unknown parameter type"); - } - ++it; - } - return ruleset; -} - -struct SceneItemComponentRuleset SceneItemComponentRegistry::getRuleset(std::string type) { - if(this->rulesets.find(type) != this->rulesets.end()) { - return this->rulesets[type]; - } - - std::vector pathsToScan; - pathsToScan.push_back(this->sources); - - auto it = pathsToScan.begin(); - while(it != pathsToScan.end()) { - auto str = *it; - pathsToScan.erase(it); - - Directory dir = Directory(str); - auto children = dir.readDirectory(); - - auto itChildren = children.begin(); - while(itChildren != children.end()) { - if(itChildren->second == DIRECTORY_CHILD_TYPE_DIRECTORY) { - pathsToScan.push_back(str + "/" + itChildren->first); - ++itChildren; - continue; - } - - if(itChildren->first != type+".hpp") { - ++itChildren; - continue; - } - - - // Load ruleset - File file(str + "/" + itChildren->first); - auto parsed = SceneItemComponentRegistry::parseFile(&file, type); - if(parsed.name == "") { - std::cout << "Parsing error occured on " << type << std::endl; - return parsed; - } - - // Update optionals - parsed.optional.insert(parsed.selfOptional.begin(), parsed.selfOptional.end()); - - // Recursively parse children - auto itExtends = parsed.extends.begin(); - while(itExtends != parsed.extends.end()) { - auto ruleset = this->getRuleset(*itExtends); - if(ruleset.name == "") { - ++itExtends; - continue; - } - - // Merge ruleset - parsed.optional.insert(ruleset.optional.begin(), ruleset.optional.end()); - ++itExtends; - } - - this->rulesets[type] = parsed; - return parsed; - } - - it = pathsToScan.begin(); - }; - - return { .name = "" }; -} diff --git a/src/dawntools/util/parser/SceneItemComponentRegistry.hpp b/src/dawntools/util/parser/SceneItemComponentRegistry.hpp deleted file mode 100644 index 71dad60d..00000000 --- a/src/dawntools/util/parser/SceneItemComponentRegistry.hpp +++ /dev/null @@ -1,41 +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/Directory.hpp" -#include "util/XmlParser.hpp" -#include "util/CodeGen.hpp" -#include "util/string.hpp" -#include - -namespace Dawn { - struct SceneItemComponentRuleset { - std::string name; - std::string include; - std::map selfOptional; - std::map innerXml; - std::map optional; - std::vector extends; - }; - - struct SceneItemComponentRegistry { - std::string sources; - std::map rulesets; - - struct SceneItemComponentRuleset parseFile( - File *file, - std::string clazz - ); - - /** - * Gets a prefab component ruleset for a specific scene item component type. - * - * @param type Scene Item Component Type to get ruleset for. - * @return The found ruleset, or an empty ruleset if not found. - */ - struct SceneItemComponentRuleset getRuleset(std::string type); - }; -} \ No newline at end of file diff --git a/src/dawntools/util/parser/SceneItemParser.cpp b/src/dawntools/util/parser/SceneItemParser.cpp deleted file mode 100644 index cec76d97..00000000 --- a/src/dawntools/util/parser/SceneItemParser.cpp +++ /dev/null @@ -1,152 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneItemParser.hpp" - -using namespace Dawn; - -std::vector SceneItemParser::getRequiredAttributes() { - return std::vector(); -} - -std::map SceneItemParser::getOptionalAttributes() { - return { - { "ref", "" }, - { "position", "" }, - { "lookAt", "" }, - { "scale", "" }, - { "prefab", "" }, - { "alignment", "" }, - { "alignX", "" }, - { "aignY", "" }, - { "menuX", "" }, - { "menuY", "" }, - { "label", "" } - }; -} - -int32_t SceneItemParser::onParse( - Xml *node, - std::map values, - struct SceneItem *out, - std::string *error -) { - out->ref = values["ref"]; - - if(values["position"].size() > 0) { - out->position = vec3Parser(values["position"], error); - if(error->size() > 0) return 1; - } - - if(values["alignment"].size() > 0) { - out->alignment = vec4Parser(values["alignment"], error); - if(error->size() > 0) return 1; - } - - if(values["alignX"].size() > 0) { - out->alignX = uiComponentAlignParser(values["alignX"], error); - if(error->size() > 0) return 1; - } - - if(values["alignY"].size() > 0) { - out->alignY = uiComponentAlignParser(values["alignY"], error); - if(error->size() > 0) return 1; - } - - if(values["menuX"].size() > 0) { - out->menuX = intParser(values["menuX"], error); - if(error->size() > 0) return 1; - } - - if(values["menuY"].size() > 0) { - out->menuY = intParser(values["menuY"], error); - if(error->size() > 0) return 1; - } - - if(values["scale"].size() > 0) { - out->scale = vec3Parser(values["scale"], error); - if(error->size() > 0) return 1; - } - - if(values["label"].size() > 0) { - out->label = stringParser(values["label"], error); - 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"]; - - struct SceneItemDependency dep; - - auto itChildren = node->childNodes.begin(); - while(itChildren != node->childNodes.end()) { - if(itChildren->nodeType != XML_NODE_TYPE_ELEMENT) { - ++itChildren; - continue; - } - - // Parse child nodes, they may be components or not - auto c = itChildren->child; - - if(c->node == "child" || c->node == "item") { - struct SceneItem child; - child.registry = out->registry; - auto ret = (SceneItemParser()).parse(c, &child, error); - if(ret != 0) return ret; - out->children.push_back(child); - - // Add a dependency. This solves the reference order problem. - struct SceneItemDependency dep; - dep.type = SCENE_ITEM_DEPENDENCY_TYPE_ITEM; - dep.position = out->children.size() - 1; - out->dependencies.push_back(dep); - - } else if(c->node == "asset") { - struct SceneAsset asset; - auto ret = (SceneAssetParser()).parse(c, &asset, error); - if(ret != 0) return ret; - out->assets.push_back(asset); - - } else if(c->node == "code") { - struct SceneCode code; - auto ret = (SceneCodeParser()).parse(c, &code, error); - if(ret != 0) return ret; - out->code.push_back(code); - - // Add Dep - dep.type = SCENE_ITEM_DEPENDENCY_TYPE_CODE; - dep.position = out->code.size() - 1; - out->dependencies.push_back(dep); - - } else { - struct SceneItemComponent component; - component.registry = out->registry; - auto ret = (SceneItemComponentParser()).parse(c, &component, error); - if(ret != 0) return ret; - out->components.push_back(component); - - // Add dep - struct SceneItemDependency dep; - dep.type = SCENE_ITEM_DEPENDENCY_TYPE_COMPONENT; - dep.position = out->components.size() - 1; - out->dependencies.push_back(dep); - } - ++itChildren; - } - - return 0; -} diff --git a/src/dawntools/util/parser/SceneItemParser.hpp b/src/dawntools/util/parser/SceneItemParser.hpp deleted file mode 100644 index e3c1bd4d..00000000 --- a/src/dawntools/util/parser/SceneItemParser.hpp +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/parser/SceneItemComponentParser.hpp" -#include "util/parser/SceneAssetParser.hpp" -#include "util/parser/SceneCodeParser.hpp" - -namespace Dawn { - enum SceneItemDependencyType { - SCENE_ITEM_DEPENDENCY_TYPE_ITEM, - SCENE_ITEM_DEPENDENCY_TYPE_COMPONENT, - SCENE_ITEM_DEPENDENCY_TYPE_CODE, - }; - - struct SceneItemDependency { - enum SceneItemDependencyType type; - size_t position; - }; - - struct SceneItem { - struct SceneItemComponentRegistry *registry; - std::string ref; - std::string position; - std::string alignment; - std::string alignX; - std::string alignY; - std::string lookAtPosition; - std::string lookAtTarget; - std::string scale; - std::string prefab; - std::string menuX; - std::string menuY; - std::string label; - std::vector components; - std::vector children; - std::vector assets; - std::vector code; - std::vector dependencies; - }; - - class SceneItemParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct SceneItem *out, - std::string *error - ) override; - }; -} diff --git a/src/dawntools/util/parser/SceneParser.cpp b/src/dawntools/util/parser/SceneParser.cpp deleted file mode 100644 index 578575a6..00000000 --- a/src/dawntools/util/parser/SceneParser.cpp +++ /dev/null @@ -1,78 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneParser.hpp" - -using namespace Dawn; - -std::vector SceneParser::getRequiredAttributes() { - return { "name" }; -} - -std::map SceneParser::getOptionalAttributes() { - return { - { "extend", "" } - }; -} - -int32_t SceneParser::onParse( - Xml *node, - std::map values, - struct Scene *out, - std::string *error -) { - int32_t ret; - - //Create the scene item - out->name = values["name"]; - out->extend = values["extend"]; - - struct SceneItemDependency dep; - - //Parse the children - auto itChildren = node->childNodes.begin(); - while(itChildren != node->childNodes.end()) { - if(itChildren->nodeType != XML_NODE_TYPE_ELEMENT) { - ++itChildren; - continue; - } - - Xml *child = itChildren->child; - - if(child->node == "asset") { - struct SceneAsset asset; - auto ret = (SceneAssetParser()).parse(child, &asset, error); - if(ret != 0) return ret; - out->assets.push_back(asset); - - } else if(child->node == "item") { - struct SceneItem item; - item.registry = out->registry; - ret = (SceneItemParser()).parse(child, &item, error); - if(ret != 0) return 1; - out->items.push_back(item); - - //Add the dependency - dep.type = SCENE_ITEM_DEPENDENCY_TYPE_ITEM; - dep.position = out->items.size() - 1; - out->dependencies.push_back(dep); - - } else if(child->node == "code") { - struct SceneCode code; - ret = (SceneCodeParser()).parse(child, &code, error); - if(ret != 0) return ret; - out->code.push_back(code); - - //Add the dependency - dep.type = SCENE_ITEM_DEPENDENCY_TYPE_CODE; - dep.position = out->code.size() - 1; - out->dependencies.push_back(dep); - } - - ++itChildren; - } - - return 0; -} \ No newline at end of file diff --git a/src/dawntools/util/parser/SceneParser.hpp b/src/dawntools/util/parser/SceneParser.hpp deleted file mode 100644 index 1eaceccf..00000000 --- a/src/dawntools/util/parser/SceneParser.hpp +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/parser/SceneItemParser.hpp" -#include "util/parser/SceneCodeParser.hpp" - -namespace Dawn { - struct Scene { - std::string name; - std::string extend; - std::vector items; - std::vector code; - std::vector assets; - struct SceneItemComponentRegistry *registry; - std::vector dependencies; - }; - - class SceneParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct Scene *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/util/string.hpp b/src/dawntools/util/string.hpp deleted file mode 100644 index fa622ca9..00000000 --- a/src/dawntools/util/string.hpp +++ /dev/null @@ -1,36 +0,0 @@ -/** - * Copyright (c) 2023 Dominic Masters - * - * This software is released under the MIT License. - * https://opensource.org/licenses/MIT - */ - -#pragma once -#include "dawnsharedlibs.hpp" - -/** - * Remove all instances of a character from a C-Styled string. - * - * @param string String to remove characters from. - * @param remove Character to remove. - */ -static inline void stringRemoveAll(char *string, char remove) { - size_t len = strlen(string); - size_t i, j; - - i = 0; - while(i < len) { - char c = string[i]; - if(c != remove) { - i++; - continue; - } - - j = i + 1; - while(j < len) { - string[j-1] = string[j]; - j++; - } - len--; - } -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/CMakeLists.txt b/src/dawntools/vnscenetool/CMakeLists.txt deleted file mode 100644 index 995a2e16..00000000 --- a/src/dawntools/vnscenetool/CMakeLists.txt +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright (c) 2023 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Texture Build Tool -project(vnscenetool VERSION 1.0) -add_executable(vnscenetool) - -# Subdirs -add_subdirectory(events) - -# Sources -target_sources(vnscenetool - PRIVATE - ${DAWN_SHARED_SOURCES} - ${DAWN_TOOL_SOURCES} - VNSceneTool.cpp - VNSceneParser.cpp - VNSceneGen.cpp - VNSceneItemParser.cpp -) - -# Includes -target_include_directories(vnscenetool - PUBLIC - ${DAWN_SHARED_INCLUDES} - ${DAWN_TOOL_INCLUDES} - ${CMAKE_CURRENT_LIST_DIR} -) - -# Definitions -target_compile_definitions(vnscenetool - PUBLIC - ${DAWN_SHARED_DEFINITIONS} - DAWN_TOOL_INSTANCE=VNSceneTool - DAWN_TOOL_HEADER="VNSceneTool.hpp" -) - -# Libraries -target_link_libraries(vnscenetool - PUBLIC - ${DAWN_BUILD_HOST_LIBS} -) - -# Tool Function -function(tool_vnscene in) - set(DEPS "") - if(DAWN_BUILD_TOOLS) - set(DEPS vnscenetool) - endif() - - STRING(REGEX REPLACE "[\.|\\|\/|\:]" "-" scene_name ${in}) - add_custom_target(scene_${scene_name} - COMMAND vnscenetool --input="${in}" --output="${DAWN_GENERATED_DIR}/generatedscenes" - COMMENT "Generating vnscene from ${in}" - DEPENDS ${DEPS} - ) - target_include_directories(${DAWN_TARGET_NAME} - PUBLIC - ${DAWN_GENERATED_DIR}/generatedscenes - ) - add_dependencies(${DAWN_TARGET_NAME} scene_${scene_name}) -endfunction() \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneGen.cpp b/src/dawntools/vnscenetool/VNSceneGen.cpp deleted file mode 100644 index 9abe34e2..00000000 --- a/src/dawntools/vnscenetool/VNSceneGen.cpp +++ /dev/null @@ -1,233 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNSceneGen.hpp" - -using namespace Dawn; - -void VNSceneGen::test( - std::string eventName, - struct VNSceneEvent *event, - int32_t *eventIndex, - std::vector *eventInit, - std::vector *eventChain, - std::vector *includes -) { - std::string initType = ""; - std::string toInclude = ""; - std::string initArgs = ""; - - std::vector eventInitAfter; - - switch(event->type) { - case VN_SCENE_EVENT_TYPE_TEXT: - initType = "VNTextEvent"; - toInclude = "games/vn/events/VNTextEvent.hpp"; - line(&eventInitAfter, eventName + "->" + "text = " + event->text.texts.begin()->text + ";", ""); - break; - - case VN_SCENE_EVENT_TYPE_POSITION: - initType = "VNPositionEvent"; - toInclude = "games/vn/events/VNPositionEvent.hpp"; - line(&eventInitAfter, eventName + "->item = " + event->position.item + ";", ""); - if(event->position.x != "") line(&eventInitAfter, eventName + "->" + "to.x = " + event->position.x + ";", ""); - if(event->position.y != "") line(&eventInitAfter, eventName + "->" + "to.y = " + event->position.y + ";", ""); - if(event->position.z != "") line(&eventInitAfter, eventName + "->" + "to.z = " + event->position.z + ";", ""); - break; - - case VN_SCENE_EVENT_TYPE_SET: - initType = "VNSetEvent<" + event->set.type + ">"; - toInclude = "games/vn/events/VNSetEvent.hpp"; - line(&eventInitAfter, eventName + "->modifies = &" + event->set.property + ";", ""); - line(&eventInitAfter, eventName + "->value = " + event->set.to + ";", ""); - break; - - case VN_SCENE_EVENT_TYPE_WAIT: - initType = "VNWaitEvent"; - toInclude = "games/vn/events/VNWaitEvent.hpp"; - line(&eventInitAfter, eventName + "->duration = " + event->wait.duration + ";", ""); - break; - - case VN_SCENE_EVENT_TYPE_PARALLEL: { - initType = "VNParallelEvent"; - toInclude = "games/vn/events/VNParallelEvent.hpp"; - - auto itParallel = event->parallel.events.events.begin(); - while(itParallel != event->parallel.events.events.end()) { - std::string pEventName = "pEvent" + std::to_string((*eventIndex)++); - VNSceneGen::test( - pEventName, - &(*itParallel), - eventIndex, - eventInit, - eventChain, - includes - ); - line(&eventInitAfter, eventName + "->events.push_back(" + pEventName + ");", ""); - line(&eventInitAfter, "", ""); - ++itParallel; - } - break; - } - - case VN_SCENE_EVENT_TYPE_MARKER: - initType = "VNDummyEvent"; - toInclude = "games/vn/events/VNDummyEvent.hpp"; - line(&eventInitAfter, "auto marker_" + event->marker.name + " = " + eventName + ";", ""); - break; - - case VN_SCENE_EVENT_TYPE_GOTO_MARKER: - initType = "VNDummyEvent"; - toInclude = "games/vn/events/VNDummyEvent.hpp"; - line(eventChain, eventName + "->then(marker_" + event->gotoMarker.name + ");", ""); - break; - - case VN_SCENE_EVENT_TYPE_CHOICES: { - initType = "VNChoiceEvent"; - toInclude = "games/vn/events/VNChoiceEvent.hpp"; - - line(&eventInitAfter, eventName + "->key = \"" + event->choices.key+ "\";", ""); - line(&eventInitAfter, eventName + "->text = " + event->choices.titles.begin()->text + ";", ""); - auto itChoices = event->choices.choices.begin(); - while(itChoices != event->choices.choices.end()) { - line(&eventInitAfter, eventName + "->choices[\"" + itChoices->value + "\"] = " + itChoices->texts.begin()->text + ";", ""); - ++itChoices; - } - break; - } - - case VN_SCENE_EVENT_TYPE_CHOICE_SET: - initType = "VNChoiceSetEvent"; - toInclude = "games/vn/events/VNChoiceSetEvent.hpp"; - line(&eventInitAfter, eventName + "->key = \"" + event->choiceSet.key + "\";", ""); - line(&eventInitAfter, eventName + "->value = \"" + event->choiceSet.value + "\";", ""); - break; - - case VN_SCENE_EVENT_TYPE_IF: { - initType = "VNIfEvent"; - toInclude = "games/vn/events/VNIfEvent.hpp"; - line(&eventInitAfter, eventName + "->key = \"" + event->ifEvent.key + "\";", ""); - line(&eventInitAfter, eventName + "->value = \"" + event->ifEvent.value + "\";", ""); - - std::string ifPrevious = ""; - std::string ifFirst = ""; - auto itIf = event->ifEvent.events.events.begin(); - while(itIf != event->ifEvent.events.events.end()) { - std::string ifEventName = "ifEvent" + std::to_string((*eventIndex)++); - VNSceneGen::test( - ifEventName, - &(*itIf), - eventIndex, - eventInit, - eventChain, - includes - ); - if(!ifPrevious.empty()) line(eventChain, ifPrevious + "->then(" + ifEventName + ");", ""); - ifPrevious = ifEventName; - if(ifFirst == "") ifFirst = ifEventName; - ++itIf; - } - - if(ifFirst == "" || ifPrevious == "") { - std::cout << "If event must have at least one event" << std::endl; - assertUnreachable("VNSCeneGen::test: If event must have at least one event"); - } - - line(eventChain, eventName + "->ifTrue = " + ifFirst + ";", ""); - line(eventChain, eventName + "->ifEnd = " + ifPrevious + ";", ""); - break; - } - - case VN_SCENE_EVENT_TYPE_SCENE_CHANGE: { - initType = "VNSceneChangeEvent<" + event->sceneChange.scene + ">"; - toInclude = "games/vn/events/VNSceneChangeEvent.hpp"; - includes->push_back(event->sceneChange.include); - break; - } - - case VN_SCENE_EVENT_SET_DEFAULT_FONT: { - initType = "VNSetDefaultFontEvent"; - toInclude = "games/vn/events/VNSetDefaultFontEvent.hpp"; - std::string strFont = "setDefaultFont; - if(!sdf.font.empty()) strFont += "font=" + stringParser(sdf.font, NULL); - if(!sdf.fontSize.empty()) strFont += " size=\"" + floatParser(sdf.fontSize, NULL) + "\""; - if(!sdf.color.empty()) strFont += " color=\"" + colorParser(sdf.color, NULL) + "\""; - if(!sdf.style.empty()) strFont += " style=" + stringParser(sdf.style, NULL); - strFont += ">{{ text }}"; - line(&eventInitAfter, eventName + "->font = " + stringParser(strFont, NULL) + ";", ""); - break; - } - - default: - std::cout << "Unknown event type: " << event->type << std::endl; - assertUnreachable("VNSceneGen::test: Unknown event type"); - } - - if(!toInclude.empty()) includes->push_back(toInclude); - - line(eventInit, "auto " + eventName + " = vnManager->createEvent<" + initType + ">(" + initArgs + ");", ""); - lines(eventInit, eventInitAfter, ""); -} - -void VNSceneGen::generate( - std::vector *out, - struct VNScene *scene, - std::string tabs -) { - struct ClassGenInfo classInfo; - struct MethodGenInfo methodAssets; - struct MethodGenInfo methodInit; - - // Load Scene - SceneGenerator::generate( - &scene->scene, - classInfo, - methodAssets, - methodInit - ); - - - // Events - classInfo.includes.push_back("games/vn/events/VNDummyEvent.hpp"); - line(&methodInit.body, "assertNotNull(vnManager, \"VNSceneGenInit - VN Manager is null?\");", ""); - line(&methodInit.body, "VNEvent *previous = vnManager->createEvent();", ""); - line(&methodInit.body, "auto eventStart = previous;", ""); - - int32_t eventIndex = 0; - auto itEvents = scene->events.events.begin(); - std::string previous = "eventStart"; - - std::vector eventInit; - std::vector eventChain; - - while(itEvents != scene->events.events.end()) { - line(&eventInit, "", ""); - std::string eventName = "event" + std::to_string(eventIndex++); - VNSceneGen::test( - eventName, - &(*itEvents), - &eventIndex, - &eventInit, - &eventChain, - &classInfo.includes - ); - if(!previous.empty()) line(&eventChain, previous + "->then(" + eventName + ");", ""); - previous = eventName; - if(itEvents->type == VN_SCENE_EVENT_TYPE_GOTO_MARKER) previous = ""; - ++itEvents; - } - - lines(&methodInit.body, eventInit, ""); - lines(&methodInit.body, eventChain, ""); - line(&methodInit.body, "vnManager->setEvent(eventStart);", ""); - - // Add in methods - CodeGen::methodGen(&classInfo.publicCode, methodAssets); - line(&classInfo.publicCode, "", ""); - CodeGen::methodGen(&classInfo.publicCode, methodInit); - - CodeGen::classGen(out, classInfo); -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneGen.hpp b/src/dawntools/vnscenetool/VNSceneGen.hpp deleted file mode 100644 index 2addd290..00000000 --- a/src/dawntools/vnscenetool/VNSceneGen.hpp +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "VNSceneParser.hpp" -#include "util/CodeGen.hpp" -#include "util/generator/SceneGenerator.hpp" - -namespace Dawn { - class VNSceneGen : public CodeGen { - public: - static void test( - std::string eventName, - struct VNSceneEvent *event, - int32_t *eventIndex, - std::vector *eventInit, - std::vector *eventChain, - std::vector *includes - ); - - static void generate( - std::vector *out, - struct VNScene *scene, - std::string tabs - ); - }; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneItemParser.cpp b/src/dawntools/vnscenetool/VNSceneItemParser.cpp deleted file mode 100644 index e903e57a..00000000 --- a/src/dawntools/vnscenetool/VNSceneItemParser.cpp +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNSceneItemParser.hpp" - -using namespace Dawn; - -std::vector VNSceneItemParser::getRequiredAttributes() { - return { "prefab" }; -} - -std::map VNSceneItemParser::getOptionalAttributes() { - return { - { "ref", "" } - }; -} - -int32_t VNSceneItemParser::onParse( - Xml *node, - std::map values, - struct VNSceneItem *out, - std::string *error -) { - out->ref = values["ref"]; - out->prefab = values["prefab"]; - - // Split prefab by / and use the last part as the class name - std::string clazz = out->prefab; - size_t pos = clazz.find_last_of('/'); - if(pos != std::string::npos) clazz = clazz.substr(pos+1); - out->className = clazz; - - // Make sure prefab and className is not empty - if(out->prefab.empty()) { - *error = "Prefab cannot be empty."; - return -1; - } - - if(out->className.empty()) { - *error = "Class name cannot be empty."; - return -1; - } - - return 0; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneItemParser.hpp b/src/dawntools/vnscenetool/VNSceneItemParser.hpp deleted file mode 100644 index 02515e9b..00000000 --- a/src/dawntools/vnscenetool/VNSceneItemParser.hpp +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/XmlParser.hpp" - -namespace Dawn { - struct VNSceneItem { - std::string ref; - std::string prefab; - std::string className; - }; - - class VNSceneItemParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct VNSceneItem *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneParser.cpp b/src/dawntools/vnscenetool/VNSceneParser.cpp deleted file mode 100644 index d1043dbb..00000000 --- a/src/dawntools/vnscenetool/VNSceneParser.cpp +++ /dev/null @@ -1,50 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNSceneParser.hpp" - -using namespace Dawn; - -std::vector VNSceneParser::getRequiredAttributes() { - return { }; -} - -std::map VNSceneParser::getOptionalAttributes() { - return { }; -} - -int32_t VNSceneParser::onParse( - Xml *node, - std::map values, - struct VNScene *out, - std::string *error -) { - // - int32_t ret; - - // First, pass as a standard scene - ret = (SceneParser()).parse(node, &out->scene, error); - if(ret != 0) return ret; - - // Now pass the VN Events - auto itChildren = node->childNodes.begin(); - while(itChildren != node->childNodes.end()) { - if(itChildren->nodeType != XML_NODE_TYPE_ELEMENT) { - ++itChildren; - continue; - } - - Xml *child = itChildren->child; - if(child->node != "events") { - ++itChildren; - continue; - } - ret = (VNSceneEventsParser()).parse(child, &out->events, error); - if(ret != 0) return ret; - break; - } - - return 0; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneParser.hpp b/src/dawntools/vnscenetool/VNSceneParser.hpp deleted file mode 100644 index 6d70a873..00000000 --- a/src/dawntools/vnscenetool/VNSceneParser.hpp +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/parser/SceneParser.hpp" -#include "VNSceneItemParser.hpp" -#include "events/VNSceneEventsParser.hpp" - -namespace Dawn { - struct VNScene { - struct Scene scene; - struct VNSceneEventList events; - }; - - class VNSceneParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct VNScene *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneTool.cpp b/src/dawntools/vnscenetool/VNSceneTool.cpp deleted file mode 100644 index 8745284e..00000000 --- a/src/dawntools/vnscenetool/VNSceneTool.cpp +++ /dev/null @@ -1,65 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNSceneTool.hpp" - -using namespace Dawn; - -std::vector VNSceneTool::getRequiredFlags() { - return { "input", "output" }; -} - -std::map VNSceneTool::getOptionalFlags() { - return std::map(); -} - -int32_t VNSceneTool::start() { - File input = File(flags["input"]); - if(!input.exists()) { - std::cout << "Input file " + input.filename + " does not exist!" << std::endl; - return 1; - } - - std::string data; - if(!input.readString(&data)) { - std::cout << "Failed to read input file!" << std::endl; - return 1; - } - - auto xml = Xml::load(data); - std::string error; - struct VNScene scene; - auto result = ((VNSceneParser()).parse(&xml, &scene, &error)); - if(result != 0) { - std::cout << "Failed to parse scene: " << error << std::endl; - return result; - } - - // Generate output - std::vector outputData; - VNSceneGen::generate(&outputData, &scene, ""); - - // Load output file from name and type - File outputFile = File(flags["output"] + "/vnscenes/" + scene.scene.name + ".hpp"); - if(!outputFile.mkdirp()) { - std::cout << "Failed to create output directory!" << std::endl; - return 1; - } - - // Combine vector into single string - std::string outputDataStr = ""; - auto it = outputData.begin(); - while(it != outputData.end()) { - outputDataStr += *it + "\n"; - ++it; - } - - if(!outputFile.writeString(outputDataStr)) { - std::cout << "Failed to write output file!" << std::endl; - return 1; - } - - return 0; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/VNSceneTool.hpp b/src/dawntools/vnscenetool/VNSceneTool.hpp deleted file mode 100644 index 5b7d12f4..00000000 --- a/src/dawntools/vnscenetool/VNSceneTool.hpp +++ /dev/null @@ -1,21 +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 "VNSceneParser.hpp" -#include "VNSceneGen.hpp" -#include "util/File.hpp" - -namespace Dawn { - class VNSceneTool : public DawnTool { - protected: - std::vector getRequiredFlags() override; - std::map getOptionalFlags() override; - - public: - int32_t start(); - }; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/CMakeLists.txt b/src/dawntools/vnscenetool/events/CMakeLists.txt deleted file mode 100644 index 99f79dcb..00000000 --- a/src/dawntools/vnscenetool/events/CMakeLists.txt +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Sources -target_sources(vnscenetool - PRIVATE - VNMarkerParser.cpp - VNSceneEventsParser.cpp - VNPositionEventParser.cpp - VNTextEventParser.cpp - VNSetEventParser.cpp - VNWaitEventParser.cpp - VNParallelEventParser.cpp - VNGoToMarkerEventParser.cpp - VNChoiceEventParser.cpp - VNChoiceSetEventParser.cpp - VNIfEventParser.cpp - VNSceneChangeEventParser.cpp - VNSetDefaultFontEventParser.cpp -) \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNChoiceEventParser.cpp b/src/dawntools/vnscenetool/events/VNChoiceEventParser.cpp deleted file mode 100644 index c9a24e15..00000000 --- a/src/dawntools/vnscenetool/events/VNChoiceEventParser.cpp +++ /dev/null @@ -1,110 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNChoiceEventParser.hpp" - -using namespace Dawn; - -std::vector VNChoiceParser::getRequiredAttributes() { - return { "value" }; -} - -std::map VNChoiceParser::getOptionalAttributes() { - return { }; -} - -int32_t VNChoiceParser::onParse( - Xml *node, - std::map values, - struct VNChoice *out, - std::string *error -) { - int32_t ret; - auto itChildren = node->childNodes.begin(); - while(itChildren != node->childNodes.end()) { - if(itChildren->nodeType != XML_NODE_TYPE_ELEMENT) { - ++itChildren; - continue; - } - - Xml *child = itChildren->child; - - // Parse strings - if(child->node == "string") { - VNText text; - ret = (VNTextParser()).parse(child, &text, error); - if(ret != 0) return ret; - out->texts.push_back(text); - } else { - *error = "Unknown child node for choice event '" + child->node + "'"; - return -1; - } - - itChildren++; - } - - out->value = values["value"]; - return 0; -} - -// // // // // // // // // // // // // // // // // // // // // // // // // // // - -std::vector VNChoicesEventParser::getRequiredAttributes() { - return { "key" }; -} - -std::map VNChoicesEventParser::getOptionalAttributes() { - return { }; -} - -int32_t VNChoicesEventParser::onParse( - Xml *node, - std::map values, - struct VNChoiceEvent *out, - std::string *error -) { - int32_t ret; - auto itChildren = node->childNodes.begin(); - while(itChildren != node->childNodes.end()) { - if(itChildren->nodeType != XML_NODE_TYPE_ELEMENT) { - ++itChildren; - continue; - } - - Xml *child = itChildren->child; - - // Parse strings - if(child->node == "title") { - auto itChildren2 = child->childNodes.begin(); - while(itChildren2 != child->childNodes.end()) { - if(itChildren2->nodeType != XML_NODE_TYPE_ELEMENT) { - ++itChildren2; - continue; - } - - VNText text; - ret = (VNTextParser()).parse(itChildren2->child, &text, error); - if(ret != 0) return ret; - out->titles.push_back(text); - ++itChildren2; - } - - } else if(child->node == "choice") { - VNChoice choice; - ret = (VNChoiceParser()).parse(child, &choice, error); - if(ret != 0) return ret; - out->choices.push_back(choice); - - } else { - *error = "Unknown child node for choices event '" + child->node + "'"; - return -1; - } - - itChildren++; - } - - out->key = values["key"]; - return 0; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNChoiceEventParser.hpp b/src/dawntools/vnscenetool/events/VNChoiceEventParser.hpp deleted file mode 100644 index f06d9d63..00000000 --- a/src/dawntools/vnscenetool/events/VNChoiceEventParser.hpp +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "VNTextEventParser.hpp" - -namespace Dawn { - struct VNChoice { - std::vector texts; - std::string value; - }; - - struct VNChoiceEvent { - std::vector titles; - std::vector choices; - std::string key; - }; - - class VNChoiceParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct VNChoice *out, - std::string *error - ) override; - }; - - class VNChoicesEventParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct VNChoiceEvent *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNChoiceSetEventParser.cpp b/src/dawntools/vnscenetool/events/VNChoiceSetEventParser.cpp deleted file mode 100644 index 14a78383..00000000 --- a/src/dawntools/vnscenetool/events/VNChoiceSetEventParser.cpp +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNChoiceSetEventParser.hpp" - -using namespace Dawn; - -std::vector VNChoiceSetEventParser::getRequiredAttributes() { - return { "key", "value" }; -} - -std::map VNChoiceSetEventParser::getOptionalAttributes() { - return {}; -} - -int32_t VNChoiceSetEventParser::onParse( - Xml *node, - std::map values, - struct VNChoiceSetEvent *out, - std::string *error -) { - out->key = values["key"]; - out->value = values["value"]; - return 0; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNChoiceSetEventParser.hpp b/src/dawntools/vnscenetool/events/VNChoiceSetEventParser.hpp deleted file mode 100644 index 0691c9b5..00000000 --- a/src/dawntools/vnscenetool/events/VNChoiceSetEventParser.hpp +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/XmlParser.hpp" - -namespace Dawn { - struct VNChoiceSetEvent { - std::string key; - std::string value; - }; - - class VNChoiceSetEventParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct VNChoiceSetEvent *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNGoToMarkerEventParser.cpp b/src/dawntools/vnscenetool/events/VNGoToMarkerEventParser.cpp deleted file mode 100644 index 3aa025c3..00000000 --- a/src/dawntools/vnscenetool/events/VNGoToMarkerEventParser.cpp +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNGoToMarkerEventParser.hpp" - -using namespace Dawn; - -std::vector VNGoToMarkerEventParser::getRequiredAttributes() { - return { "name" }; -} - -std::map VNGoToMarkerEventParser::getOptionalAttributes() { - return {}; -} - -int32_t VNGoToMarkerEventParser::onParse( - Xml *node, - std::map values, - struct VNGoToMarkerEvent *out, - std::string *error -) { - out->name = values["name"]; - return 0; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNGoToMarkerEventParser.hpp b/src/dawntools/vnscenetool/events/VNGoToMarkerEventParser.hpp deleted file mode 100644 index e44d0630..00000000 --- a/src/dawntools/vnscenetool/events/VNGoToMarkerEventParser.hpp +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/XmlParser.hpp" - -namespace Dawn { - struct VNGoToMarkerEvent { - std::string name; - }; - - class VNGoToMarkerEventParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct VNGoToMarkerEvent *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNIfEventParser.cpp b/src/dawntools/vnscenetool/events/VNIfEventParser.cpp deleted file mode 100644 index fb39e19c..00000000 --- a/src/dawntools/vnscenetool/events/VNIfEventParser.cpp +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNIfEventParser.hpp" -#include "VNSceneEventsParser.hpp" - -using namespace Dawn; - -std::vector VNIfEventParser::getRequiredAttributes() { - return { "key", "value" }; -} - -std::map VNIfEventParser::getOptionalAttributes() { - return {}; -} - -int32_t VNIfEventParser::onParse( - Xml *node, - std::map values, - struct VNIfEvent *out, - std::string *error -) { - //Get the key and value - out->key = values["key"]; - out->value = values["value"]; - - return (VNSceneEventsParser()).parse(node, &out->events, error); -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNIfEventParser.hpp b/src/dawntools/vnscenetool/events/VNIfEventParser.hpp deleted file mode 100644 index 4e457cd8..00000000 --- a/src/dawntools/vnscenetool/events/VNIfEventParser.hpp +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/XmlParser.hpp" - -namespace Dawn { - struct VNIfEvent; - - class VNIfEventParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct VNIfEvent *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNMarkerParser.cpp b/src/dawntools/vnscenetool/events/VNMarkerParser.cpp deleted file mode 100644 index 93921925..00000000 --- a/src/dawntools/vnscenetool/events/VNMarkerParser.cpp +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNMarkerParser.hpp" - -using namespace Dawn; - -std::vector VNMarkerParser::getRequiredAttributes() { - return { "name" }; -} - -std::map VNMarkerParser::getOptionalAttributes() { - return {}; -} - -int32_t VNMarkerParser::onParse( - Xml *node, - std::map values, - struct VNMarker *out, - std::string *error -) { - // Ensure name only contains letters, and numbers, no spaces or symbols - if(!std::regex_match(values["name"], std::regex("^[a-zA-Z0-9]+$"))) { - *error = "Marker name " + values["name"] + " must only contain letters and numbers."; - return -1; - } - - out->name = values["name"]; - return 0; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNMarkerParser.hpp b/src/dawntools/vnscenetool/events/VNMarkerParser.hpp deleted file mode 100644 index 8fcc7840..00000000 --- a/src/dawntools/vnscenetool/events/VNMarkerParser.hpp +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/XmlParser.hpp" -#include - -namespace Dawn { - struct VNMarker { - std::string name; - }; - - class VNMarkerParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct VNMarker *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNParallelEventParser.cpp b/src/dawntools/vnscenetool/events/VNParallelEventParser.cpp deleted file mode 100644 index a811bc65..00000000 --- a/src/dawntools/vnscenetool/events/VNParallelEventParser.cpp +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNParallelEventParser.hpp" -#include "VNSceneEventsParser.hpp" - -using namespace Dawn; - -std::vector VNParallelEventParser::getRequiredAttributes() { - return std::vector(); -} - -std::map VNParallelEventParser::getOptionalAttributes() { - return std::map(); -} - -int32_t VNParallelEventParser::onParse( - Xml *node, - std::map values, - struct VNParallelEvent *out, - std::string *error -) { - // Parse all children - return (VNSceneEventsParser()).parse(node, &out->events, error); -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNParallelEventParser.hpp b/src/dawntools/vnscenetool/events/VNParallelEventParser.hpp deleted file mode 100644 index 07169f91..00000000 --- a/src/dawntools/vnscenetool/events/VNParallelEventParser.hpp +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/XmlParser.hpp" - -namespace Dawn { - struct VNParallelEvent; - - class VNParallelEventParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct VNParallelEvent *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNPositionEventParser.cpp b/src/dawntools/vnscenetool/events/VNPositionEventParser.cpp deleted file mode 100644 index e43eaafb..00000000 --- a/src/dawntools/vnscenetool/events/VNPositionEventParser.cpp +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNPositionEventParser.hpp" - -using namespace Dawn; - -std::vector VNPositionEventParser::getRequiredAttributes() { - return { "item" }; -} - -std::map VNPositionEventParser::getOptionalAttributes() { - return { - { "x", "" }, - { "y", "" }, - { "z", "" } - }; -} - -int32_t VNPositionEventParser::onParse( - Xml *node, - std::map values, - struct VNPositionEvent *out, - std::string *error -) { - out->x = values["x"]; - out->y = values["y"]; - out->z = values["z"]; - out->item = values["item"]; - return 0; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNPositionEventParser.hpp b/src/dawntools/vnscenetool/events/VNPositionEventParser.hpp deleted file mode 100644 index a670ed0c..00000000 --- a/src/dawntools/vnscenetool/events/VNPositionEventParser.hpp +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/XmlParser.hpp" - -namespace Dawn { - struct VNPositionEvent { - std::string x = ""; - std::string y = ""; - std::string z = ""; - std::string item = ""; - }; - - class VNPositionEventParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct VNPositionEvent *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNSceneChangeEventParser.cpp b/src/dawntools/vnscenetool/events/VNSceneChangeEventParser.cpp deleted file mode 100644 index 3a35594c..00000000 --- a/src/dawntools/vnscenetool/events/VNSceneChangeEventParser.cpp +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNSceneChangeEventParser.hpp" - -using namespace Dawn; - -std::vector VNSceneChangeEventParser::getRequiredAttributes() { - return { "scene" }; -} - -std::map VNSceneChangeEventParser::getOptionalAttributes() { - return {}; -} - -int32_t VNSceneChangeEventParser::onParse( - Xml *node, - std::map values, - struct VNSceneChangeEvent *out, - std::string *error -) { - out->include = values["scene"] + ".hpp"; - - // Find last slash and take all string after that - size_t lastSlash = values["scene"].find_last_of('/'); - if(lastSlash != std::string::npos) { - out->scene = values["scene"].substr(lastSlash+1); - } - - return 0; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNSceneChangeEventParser.hpp b/src/dawntools/vnscenetool/events/VNSceneChangeEventParser.hpp deleted file mode 100644 index 616dcb20..00000000 --- a/src/dawntools/vnscenetool/events/VNSceneChangeEventParser.hpp +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/XmlParser.hpp" - -namespace Dawn { - struct VNSceneChangeEvent { - std::string scene; - std::string include; - }; - - class VNSceneChangeEventParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct VNSceneChangeEvent *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNSceneEventsParser.cpp b/src/dawntools/vnscenetool/events/VNSceneEventsParser.cpp deleted file mode 100644 index e6ffdfc4..00000000 --- a/src/dawntools/vnscenetool/events/VNSceneEventsParser.cpp +++ /dev/null @@ -1,109 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNSceneEventsParser.hpp" -#include "VNParallelEventParser.hpp" - -using namespace Dawn; - -std::vector VNSceneEventsParser::getRequiredAttributes() { - return { }; -} - -std::map VNSceneEventsParser::getOptionalAttributes() { - return { }; -} - -int32_t VNSceneEventsParser::onParse( - Xml *node, - std::map values, - struct VNSceneEventList *out, - std::string *error -) { - int32_t ret; - - auto itChildren = node->childNodes.begin(); - while(itChildren != node->childNodes.end()) { - if(itChildren->nodeType != XML_NODE_TYPE_ELEMENT) { - ++itChildren; - continue; - } - - Xml *child = itChildren->child; - struct VNSceneEvent event; - - // Parse event(s) - if(child->node == "text") { - event.type = VN_SCENE_EVENT_TYPE_TEXT; - ret = (VNTextEventParser()).parse(child, &event.text, error); - if(ret != 0) return ret; - - } else if(child->node == "position") { - event.type = VN_SCENE_EVENT_TYPE_POSITION; - ret = (VNPositionEventParser()).parse(child, &event.position, error); - if(ret != 0) return ret; - - } else if(child->node == "set") { - event.type = VN_SCENE_EVENT_TYPE_SET; - ret = (VNSetEventParser()).parse(child, &event.set, error); - if(ret != 0) return ret; - - } else if(child->node == "wait") { - event.type = VN_SCENE_EVENT_TYPE_WAIT; - ret = (VNWaitEventParser()).parse(child, &event.wait, error); - if(ret != 0) return ret; - - } else if(child->node == "parallel") { - event.type = VN_SCENE_EVENT_TYPE_PARALLEL; - ret = (VNParallelEventParser()).parse(child, &event.parallel, error); - if(ret != 0) return ret; - - } else if(child->node == "marker") { - event.type = VN_SCENE_EVENT_TYPE_MARKER; - ret = (VNMarkerParser()).parse(child, &event.marker, error); - if(ret != 0) return ret; - - } else if(child->node == "goto-marker") { - event.type = VN_SCENE_EVENT_TYPE_GOTO_MARKER; - ret = (VNGoToMarkerEventParser()).parse(child, &event.gotoMarker, error); - if(ret != 0) return ret; - - } else if(child->node == "choices") { - event.type = VN_SCENE_EVENT_TYPE_CHOICES; - ret = (VNChoicesEventParser()).parse(child, &event.choices, error); - if(ret != 0) return ret; - - } else if(child->node == "choice-set") { - event.type = VN_SCENE_EVENT_TYPE_CHOICE_SET; - ret = (VNChoiceSetEventParser()).parse(child, &event.choiceSet, error); - if(ret != 0) return ret; - - } else if(child->node == "if") { - event.type = VN_SCENE_EVENT_TYPE_IF; - ret = (VNIfEventParser()).parse(child, &event.ifEvent, error); - if(ret != 0) return ret; - - } else if(child->node == "scene-change") { - event.type = VN_SCENE_EVENT_TYPE_SCENE_CHANGE; - ret = (VNSceneChangeEventParser()).parse(child, &event.sceneChange, error); - if(ret != 0) return ret; - - } else if(child->node == "set-default-font" || child->node == "set-font") { - event.type = VN_SCENE_EVENT_SET_DEFAULT_FONT; - ret = (VNSetDefaultFontEventParser()).parse(child, &event.setDefaultFont, error); - if(ret != 0) return ret; - - } else { - *error = "Unknown child node '" + child->node + "'"; - return -1; - } - - if(ret != 0) return ret; - out->events.push_back(event); - itChildren++; - } - - return 0; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNSceneEventsParser.hpp b/src/dawntools/vnscenetool/events/VNSceneEventsParser.hpp deleted file mode 100644 index 4185f708..00000000 --- a/src/dawntools/vnscenetool/events/VNSceneEventsParser.hpp +++ /dev/null @@ -1,80 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "VNTextEventParser.hpp" -#include "VNPositionEventParser.hpp" -#include "VNSetEventParser.hpp" -#include "VNWaitEventParser.hpp" -#include "VNParallelEventParser.hpp" -#include "VNMarkerParser.hpp" -#include "VNGoToMarkerEventParser.hpp" -#include "VNChoiceEventParser.hpp" -#include "VNChoiceSetEventParser.hpp" -#include "VNIfEventParser.hpp" -#include "VNSceneChangeEventParser.hpp" -#include "VNSetDefaultFontEventParser.hpp" - -namespace Dawn { - struct VNSceneEvent; - - struct VNSceneEventList { - std::vector events; - }; - - enum VNSceneEventType { - VN_SCENE_EVENT_TYPE_TEXT, - VN_SCENE_EVENT_TYPE_POSITION, - VN_SCENE_EVENT_TYPE_SET, - VN_SCENE_EVENT_TYPE_WAIT, - VN_SCENE_EVENT_TYPE_PARALLEL, - VN_SCENE_EVENT_TYPE_MARKER, - VN_SCENE_EVENT_TYPE_GOTO_MARKER, - VN_SCENE_EVENT_TYPE_CHOICES, - VN_SCENE_EVENT_TYPE_CHOICE_SET, - VN_SCENE_EVENT_TYPE_IF, - VN_SCENE_EVENT_TYPE_SCENE_CHANGE, - VN_SCENE_EVENT_SET_DEFAULT_FONT - }; - - struct VNParallelEvent { - struct VNSceneEventList events; - }; - - struct VNIfEvent { - std::string key; - std::string value; - struct VNSceneEventList events; - }; - - struct VNSceneEvent { - enum VNSceneEventType type; - - struct VNTextEvent text; - struct VNPositionEvent position; - struct VNSetEvent set; - struct VNWaitEvent wait; - struct VNParallelEvent parallel; - struct VNMarker marker; - struct VNGoToMarkerEvent gotoMarker; - struct VNChoiceEvent choices; - struct VNChoiceSetEvent choiceSet; - struct VNIfEvent ifEvent; - struct VNSceneChangeEvent sceneChange; - struct VNSetFont setDefaultFont; - }; - - class VNSceneEventsParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct VNSceneEventList *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNSetDefaultFontEventParser.cpp b/src/dawntools/vnscenetool/events/VNSetDefaultFontEventParser.cpp deleted file mode 100644 index 28cae84d..00000000 --- a/src/dawntools/vnscenetool/events/VNSetDefaultFontEventParser.cpp +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNSetDefaultFontEventParser.hpp" - -using namespace Dawn; - -std::map VNSetDefaultFontEventParser::getOptionalAttributes() { - return { - { "font", "font_main" }, - { "style", "" }, - { "size", "" }, - { "color", "" } - }; -} - -std::vector VNSetDefaultFontEventParser::getRequiredAttributes() { - return {}; -} - -int32_t VNSetDefaultFontEventParser::onParse( - Xml *node, - std::map values, - struct VNSetFont *out, - std::string *error -) { - //Get the font - out->font = values["font"]; - if(out->font.empty()) { - *error = "Font is required."; - return 1; - } - - //Get the style - out->style = values["style"]; - - //Get the size - out->fontSize = values["size"]; - - //Get the color - out->color = values["color"]; - - return 0; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNSetDefaultFontEventParser.hpp b/src/dawntools/vnscenetool/events/VNSetDefaultFontEventParser.hpp deleted file mode 100644 index f2d525e9..00000000 --- a/src/dawntools/vnscenetool/events/VNSetDefaultFontEventParser.hpp +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/XmlParser.hpp" - -namespace Dawn { - struct VNSetFont { - std::string font; - std::string style; - std::string fontSize; - std::string color; - }; - - class VNSetDefaultFontEventParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct VNSetFont *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNSetEventParser.cpp b/src/dawntools/vnscenetool/events/VNSetEventParser.cpp deleted file mode 100644 index cba32b0c..00000000 --- a/src/dawntools/vnscenetool/events/VNSetEventParser.cpp +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNSetEventParser.hpp" - -using namespace Dawn; - -std::vector VNSetEventParser::getRequiredAttributes() { - return { "property", "type" }; -} - -std::map VNSetEventParser::getOptionalAttributes() { - return { - { "to", "" }, - { "value", "" } - }; -} - -int32_t VNSetEventParser::onParse( - Xml *node, - std::map values, - struct VNSetEvent *out, - std::string *error -) { - if(values["to"] != "") { - out->to = values["to"]; - } else if(values["value"] != "") { - out->to = values["value"]; - } else { - *error = "Either 'to' or 'value' must be specified"; - return -1; - } - - out->type = values["type"]; - out->property = values["property"]; - return 0; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNSetEventParser.hpp b/src/dawntools/vnscenetool/events/VNSetEventParser.hpp deleted file mode 100644 index 4a2be102..00000000 --- a/src/dawntools/vnscenetool/events/VNSetEventParser.hpp +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/XmlParser.hpp" - -namespace Dawn { - struct VNSetEvent { - std::string property = ""; - std::string to = ""; - std::string type = ""; - }; - - class VNSetEventParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct VNSetEvent *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNTextEventParser.cpp b/src/dawntools/vnscenetool/events/VNTextEventParser.cpp deleted file mode 100644 index 86d2daa5..00000000 --- a/src/dawntools/vnscenetool/events/VNTextEventParser.cpp +++ /dev/null @@ -1,82 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNTextEventParser.hpp" -#include "util/parser/TypeParsers.hpp" - -using namespace Dawn; - -std::vector VNTextParser::getRequiredAttributes() { - return { "lang" }; -} - -std::map VNTextParser::getOptionalAttributes() { - return { }; -} - -int32_t VNTextParser::onParse( - Xml *node, - std::map values, - struct VNText *out, - std::string *error -) { - std::string innerXml = node->innerXml; - - // Split by newlines, then trim each line. - std::vector lines = stringSplit(innerXml, "\n"); - std::vector finalLines; - for(auto it = lines.begin(); it != lines.end(); ++it) { - auto newLine = stringTrim(*it); - if(newLine.length() > 0) finalLines.push_back(newLine); - } - std::string finalXml = stringJoin(finalLines, "\n"); - - out->language = values["lang"]; - out->text = stringParser(finalXml, error); - return error->length() == 0 ? 0 : -1; -} - -// // // // // // // // // // // // // // // // // // // // // // // // // // // - -std::vector VNTextEventParser::getRequiredAttributes() { - return { }; -} - -std::map VNTextEventParser::getOptionalAttributes() { - return { }; -} - -int32_t VNTextEventParser::onParse( - Xml *node, - std::map values, - struct VNTextEvent *out, - std::string *error -) { - int32_t ret; - auto itChildren = node->childNodes.begin(); - while(itChildren != node->childNodes.end()) { - if(itChildren->nodeType != XML_NODE_TYPE_ELEMENT) { - ++itChildren; - continue; - } - - Xml *child = itChildren->child; - - // Parse strings - if(child->node == "string") { - VNText text; - ret = (VNTextParser()).parse(child, &text, error); - if(ret != 0) return ret; - out->texts.push_back(text); - } else { - *error = "Unknown child node for text event '" + child->node + "'"; - return -1; - } - - itChildren++; - } - - return 0; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNTextEventParser.hpp b/src/dawntools/vnscenetool/events/VNTextEventParser.hpp deleted file mode 100644 index a28570b8..00000000 --- a/src/dawntools/vnscenetool/events/VNTextEventParser.hpp +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/XmlParser.hpp" - -namespace Dawn { - struct VNText { - std::string language; - std::string text; - }; - - struct VNTextEvent { - std::vector texts; - }; - - class VNTextParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct VNText *out, - std::string *error - ) override; - }; - - class VNTextEventParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - struct VNTextEvent *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNWaitEventParser.cpp b/src/dawntools/vnscenetool/events/VNWaitEventParser.cpp deleted file mode 100644 index f4cf8f65..00000000 --- a/src/dawntools/vnscenetool/events/VNWaitEventParser.cpp +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNWaitEventParser.hpp" - -using namespace Dawn; - -std::vector VNWaitEventParser::getRequiredAttributes() { - return { }; -} - -std::map VNWaitEventParser::getOptionalAttributes() { - return { { "duration", "" }, { "time", "" } }; -} - -int32_t VNWaitEventParser::onParse( - Xml *node, - std::map values, - VNWaitEvent *out, - std::string *error -) { - //Get the duration - if(!values["duration"].empty()) { - out->duration = values["duration"]; - } else if(!values["time"].empty()) { - out->duration = values["time"]; - } else { - *error = "No duration specified."; - return -1; - } - - return 0; -} \ No newline at end of file diff --git a/src/dawntools/vnscenetool/events/VNWaitEventParser.hpp b/src/dawntools/vnscenetool/events/VNWaitEventParser.hpp deleted file mode 100644 index 75d2bf6b..00000000 --- a/src/dawntools/vnscenetool/events/VNWaitEventParser.hpp +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/XmlParser.hpp" - -namespace Dawn { - struct VNWaitEvent { - std::string duration; - }; - - class VNWaitEventParser : public XmlParser { - protected: - std::vector getRequiredAttributes() override; - std::map getOptionalAttributes() override; - int32_t onParse( - Xml *node, - std::map values, - VNWaitEvent *out, - std::string *error - ) override; - }; -} \ No newline at end of file diff --git a/src/dawntools/CMakeLists.txt b/tools/CMakeLists.txt similarity index 53% rename from src/dawntools/CMakeLists.txt rename to tools/CMakeLists.txt index 7c5af684..1138d244 100644 --- a/src/dawntools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -15,16 +15,6 @@ set( CACHE INTERNAL ${DAWN_CACHE_TARGET} ) -# Tool-Utils -set(DAWN_TOOL_SOURCES "") -include(util/CMakeLists.txt) -include(util/parser/CMakeLists.txt) -include(util/generator/CMakeLists.txt) - # Tools add_subdirectory(assetstool) -add_subdirectory(prefabtool) -add_subdirectory(scenetool) -add_subdirectory(texturetool) -add_subdirectory(truetypetool) -add_subdirectory(vnscenetool) \ No newline at end of file +add_subdirectory(texturetool) \ No newline at end of file diff --git a/src/dawntools/assetstool/CMakeLists.txt b/tools/assetstool/CMakeLists.txt similarity index 100% rename from src/dawntools/assetstool/CMakeLists.txt rename to tools/assetstool/CMakeLists.txt diff --git a/src/dawntools/assetstool/assetstool.py b/tools/assetstool/assetstool.py similarity index 100% rename from src/dawntools/assetstool/assetstool.py rename to tools/assetstool/assetstool.py diff --git a/src/dawntools/texturetool/CMakeLists.txt b/tools/texturetool/CMakeLists.txt similarity index 100% rename from src/dawntools/texturetool/CMakeLists.txt rename to tools/texturetool/CMakeLists.txt diff --git a/src/dawntools/texturetool/texturetool.py b/tools/texturetool/texturetool.py similarity index 100% rename from src/dawntools/texturetool/texturetool.py rename to tools/texturetool/texturetool.py