From 0794b8739c54e61c6c31bd3fe921d04e63db5a09 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Mon, 13 Feb 2023 17:07:24 -0800 Subject: [PATCH] Refactored audiogen tool --- cmake/hosts/CMakeLists.txt | 24 +++--- cmake/hosts/build-host-linux64/CMakeLists.txt | 10 +-- lint.js | 1 + .../prefabs/characters/DeathPrefab.cpp | 62 +++++++-------- src/dawnshared/CMakeLists.txt | 7 ++ src/dawntools/CMakeLists.txt | 18 +++++ src/dawntools/audio/CMakeLists.txt | 28 +++---- src/dawntools/audio/audiogen/AudioGen.cpp | 60 +++++++++++++++ src/dawntools/audio/audiogen/AudioGen.hpp | 19 +++++ src/dawntools/audio/audiogen/CMakeLists.txt | 21 ++++- src/dawntools/audio/audiogen/main.cpp | 76 ------------------- src/dawntools/util/CMakeLists.txt | 12 +++ src/dawntools/util/DawnTool.cpp | 46 ++++++++++- src/dawntools/util/DawnTool.hpp | 4 + src/dawntools/util/File.cpp | 65 ++++++++++++++-- src/dawntools/util/File.hpp | 34 ++++++++- src/dawntools/util/file.hpp | 2 +- src/dawntools/visualnovel/CMakeLists.txt | 2 +- .../visualnovel/vnscenegen/CMakeLists.txt | 15 ++-- .../visualnovel/vnscenegen/VnSceneGen.cpp | 13 ++-- .../visualnovel/vnscenegen/VnSceneGen.hpp | 1 + 21 files changed, 357 insertions(+), 163 deletions(-) create mode 100644 src/dawntools/audio/audiogen/AudioGen.cpp create mode 100644 src/dawntools/audio/audiogen/AudioGen.hpp delete mode 100644 src/dawntools/audio/audiogen/main.cpp create mode 100644 src/dawntools/util/CMakeLists.txt diff --git a/cmake/hosts/CMakeLists.txt b/cmake/hosts/CMakeLists.txt index 3fcc45c7..b71c4f75 100644 --- a/cmake/hosts/CMakeLists.txt +++ b/cmake/hosts/CMakeLists.txt @@ -1,13 +1,13 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Check for build target, or default -if(WIN32) - set(DAWN_BUILD_HOST "build-host-win32") -elseif(UNIX AND NOT APPLE) - set(DAWN_BUILD_HOST "build-host-linux64") -endif() - +# Copyright (c) 2022 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Check for build target, or default +if(WIN32) + set(DAWN_BUILD_HOST "build-host-win32") +elseif(UNIX AND NOT APPLE) + set(DAWN_BUILD_HOST "build-host-linux64") +endif() + add_subdirectory(${DAWN_BUILD_HOST}) \ No newline at end of file diff --git a/cmake/hosts/build-host-linux64/CMakeLists.txt b/cmake/hosts/build-host-linux64/CMakeLists.txt index 7512c846..22ea4aff 100644 --- a/cmake/hosts/build-host-linux64/CMakeLists.txt +++ b/cmake/hosts/build-host-linux64/CMakeLists.txt @@ -1,6 +1,6 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - +# Copyright (c) 2022 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + set(DAWN_BUILD_HOST_LIBS "m" CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/lint.js b/lint.js index b00b5479..5fe3b10a 100644 --- a/lint.js +++ b/lint.js @@ -91,4 +91,5 @@ const dirScan = directory => { (() => { dirScan(DIR_SOURCES); + console.log('Lint done'); })(); \ No newline at end of file diff --git a/src/dawnpokergame/prefabs/characters/DeathPrefab.cpp b/src/dawnpokergame/prefabs/characters/DeathPrefab.cpp index ec7bd855..dce323a0 100644 --- a/src/dawnpokergame/prefabs/characters/DeathPrefab.cpp +++ b/src/dawnpokergame/prefabs/characters/DeathPrefab.cpp @@ -1,32 +1,32 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "DeathPrefab.hpp" - -using namespace Dawn; - -std::string DeathPrefab::getCharacterTexture() { - return "texture_penny"; -} - -std::string DeathPrefab::getCharacterTileset() { - return "tileset_penny"; -} - -std::string DeathPrefab::getLanguagePrefix() { - return "character.death"; -} - -struct VisualNovelCharacterEmotion DeathPrefab::defineAndGetInitialEmotion( - AssetManager *man -) { - this->emotionHappy.tile = 0; - - this->emotionConcerned.tile = 1; - - this->emotionSurprised.tile = 2; - - return this->emotionHappy; +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "DeathPrefab.hpp" + +using namespace Dawn; + +std::string DeathPrefab::getCharacterTexture() { + return "texture_death"; +} + +std::string DeathPrefab::getCharacterTileset() { + return "tileset_death"; +} + +std::string DeathPrefab::getLanguagePrefix() { + return "character.death"; +} + +struct VisualNovelCharacterEmotion DeathPrefab::defineAndGetInitialEmotion( + AssetManager *man +) { + this->emotionHappy.tile = 0; + + this->emotionConcerned.tile = 1; + + this->emotionSurprised.tile = 2; + + return this->emotionHappy; } \ No newline at end of file diff --git a/src/dawnshared/CMakeLists.txt b/src/dawnshared/CMakeLists.txt index af53f494..e2caf75f 100644 --- a/src/dawnshared/CMakeLists.txt +++ b/src/dawnshared/CMakeLists.txt @@ -12,6 +12,7 @@ set( ${DAWN_CACHE_TARGET} ) +# Sources set(D ${CMAKE_CURRENT_LIST_DIR}) set( DAWN_SHARED_SOURCES @@ -20,4 +21,10 @@ set( CACHE INTERNAL ${DAWN_CACHE_TARGET} +) + +# Compile Definitions +set( + DAWN_SHARED_DEFINITIONS + ) \ No newline at end of file diff --git a/src/dawntools/CMakeLists.txt b/src/dawntools/CMakeLists.txt index 30206d91..08b084c5 100644 --- a/src/dawntools/CMakeLists.txt +++ b/src/dawntools/CMakeLists.txt @@ -3,6 +3,24 @@ # This software is released under the MIT License. # https://opensource.org/licenses/MIT +# Tool Level Values +set( + DAWN_TOOL_INCLUDES + ${CMAKE_CURRENT_LIST_DIR} + CACHE INTERNAL ${DAWN_CACHE_TARGET} +) + +set( + DAWN_TOOL_SOURCES + + CACHE INTERNAL + ${DAWN_CACHE_TARGET} +) + +# Tool-Utils +include(util/CMakeLists.txt) + +# Tools add_subdirectory(audio) add_subdirectory(display) add_subdirectory(file) diff --git a/src/dawntools/audio/CMakeLists.txt b/src/dawntools/audio/CMakeLists.txt index cda9d556..891c5836 100644 --- a/src/dawntools/audio/CMakeLists.txt +++ b/src/dawntools/audio/CMakeLists.txt @@ -1,15 +1,15 @@ -# Copyright (c) 2021 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -add_subdirectory(audiogen) - -# Texture Tool -function(tool_audio target in) - add_custom_target(${target} - COMMAND audiogen "${DAWN_ASSETS_SOURCE_DIR}/${in}" "${DAWN_ASSETS_BUILD_DIR}/${target}" - COMMENT "Generating audio ${target} from ${in}" - DEPENDS audiogen - ) +# Copyright (c) 2021 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +add_subdirectory(audiogen) + +# Texture Tool +function(tool_audio target in) + add_custom_target(${target} + COMMAND audiogen --input="${DAWN_ASSETS_SOURCE_DIR}/${in}" --output="${DAWN_ASSETS_BUILD_DIR}/${target}" + COMMENT "Generating audio ${target} from ${in}" + DEPENDS audiogen + ) endfunction() \ No newline at end of file diff --git a/src/dawntools/audio/audiogen/AudioGen.cpp b/src/dawntools/audio/audiogen/AudioGen.cpp new file mode 100644 index 00000000..04aa053d --- /dev/null +++ b/src/dawntools/audio/audiogen/AudioGen.cpp @@ -0,0 +1,60 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "AudioGen.hpp" + +using namespace Dawn; + +std::vector AudioGen::getRequiredFlags() { + return std::vector{ "input", "output" }; +} + +int32_t AudioGen::start() { + // Finished with XML data, now we can write data out. + File fileOut(flags["output"] + ".audio"); + if(fileOut.exists()) return 0; + + // Load input file + AudioFile audioFile; + if(!audioFile.load(flags["input"])) { + printf("Failed to load audio file.\n"); + return 1; + } + + // Open Output File + fileOut.mkdirp(); + if(!fileOut.open(FILE_MODE_WRITE)) { + std::cout << "Failed to open " << fileOut.filename << " output for writing" << std::endl; + return 1; + } + + // Write Header + char buffer[FILE_BUFFER_SIZE]; + sprintf(buffer, "%i|%i|%i|%i|", + audioFile.getNumChannels(), + audioFile.getSampleRate(), + audioFile.getNumSamplesPerChannel(), + audioFile.getNumSamplesPerChannel() * audioFile.getNumChannels()*( + sizeof(int16_t) / sizeof(uint8_t) + ) + ); + auto bufferLength = strlen(buffer); + fileOut.writeRaw(buffer, bufferLength); + + // Convert Data to 16 bit audio + for (int32_t i = 0; i < audioFile.getNumSamplesPerChannel(); i++) { + for(int32_t y = 0; y < audioFile.getNumChannels(); y++) { + double sample = audioFile.samples[y][i]; + sample = sample < -1 ? -1 : sample > 1 ? 1 : sample; + auto q = static_cast (sample * 32767.); + + buffer[0] = (q >> 8) & 0xFF; + buffer[1] = q & 0xFF; + fileOut.writeRaw(buffer, 2); + } + } + + return 0; +} \ No newline at end of file diff --git a/src/dawntools/audio/audiogen/AudioGen.hpp b/src/dawntools/audio/audiogen/AudioGen.hpp new file mode 100644 index 00000000..a69b5513 --- /dev/null +++ b/src/dawntools/audio/audiogen/AudioGen.hpp @@ -0,0 +1,19 @@ +// 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 "AudioFile.h" + +namespace Dawn { + class AudioGen : public DawnTool { + protected: + std::vector getRequiredFlags() override; + + public: + int32_t start(); + }; +} \ No newline at end of file diff --git a/src/dawntools/audio/audiogen/CMakeLists.txt b/src/dawntools/audio/audiogen/CMakeLists.txt index df35f8ba..67e0370d 100644 --- a/src/dawntools/audio/audiogen/CMakeLists.txt +++ b/src/dawntools/audio/audiogen/CMakeLists.txt @@ -6,17 +6,32 @@ # Texture Build Tool project(audiogen VERSION 1.0) add_executable(audiogen) + +# Sources target_sources(audiogen PRIVATE - main.cpp - ../../util/file.cpp + ${DAWN_SHARED_SOURCES} + ${DAWN_TOOL_SOURCES} + AudioGen.cpp ) + +# Includes target_include_directories(audiogen PUBLIC ${DAWN_SHARED_INCLUDES} - ${CMAKE_CURRENT_LIST_DIR}/../../ + ${DAWN_TOOL_INCLUDES} ${CMAKE_CURRENT_LIST_DIR} ) + +# Definitions +target_compile_definitions(audiogen + PUBLIC + ${DAWN_SHARED_DEFINITIONS} + DAWN_TOOL_INSTANCE=AudioGen + DAWN_TOOL_HEADER="AudioGen.hpp" +) + +# Libraries target_link_libraries(audiogen PUBLIC ${DAWN_BUILD_HOST_LIBS} diff --git a/src/dawntools/audio/audiogen/main.cpp b/src/dawntools/audio/audiogen/main.cpp deleted file mode 100644 index b6aebfb9..00000000 --- a/src/dawntools/audio/audiogen/main.cpp +++ /dev/null @@ -1,76 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "dawnsharedlibs.hpp" -#include "../../util/file.hpp" -#include "AudioFile.h" - -int main(int argc, char *argv[]) { - FILE *fileOut; - char buffer[FILENAME_MAX]; - size_t bufferLength = 0; - - if(argc != 3) { - printf("Invalid number of arguments\n"); - return 1; - } - - fileNormalizeSlashes(argv[1]); - fileNormalizeSlashes(argv[2]); - std::string strFileIn = std::string(argv[1]); - std::string strFileOut = std::string(argv[2]); - - buffer[0] = '\0'; - sprintf(buffer, "%s.audio", strFileOut.c_str()); - fileOut = fopen(buffer, "rb"); - if(fileOut != NULL) { - fclose(fileOut); - return 0; - } - - // Load input file - AudioFile audioFile; - if(!audioFile.load(strFileIn)) { - printf("Failed to load audio file.\n"); - return 1; - } - - // Open Output File - fileMkdirp(buffer); - fileOut = fopen(buffer, "wb"); - if(fileOut == NULL) { - printf("Failed to create output file\n"); - return 1; - } - - // Write header - buffer[0] = '\0'; - sprintf(buffer, "%i|%i|%i|%i|", - audioFile.getNumChannels(), - audioFile.getSampleRate(), - audioFile.getNumSamplesPerChannel(), - audioFile.getNumSamplesPerChannel() * audioFile.getNumChannels()*( - sizeof(int16_t) / sizeof(uint8_t) - ) - ); - bufferLength = strlen(buffer); - fwrite(buffer, sizeof(char), bufferLength, fileOut); - - // Convert Data to 16 bit audio - for (int32_t i = 0; i < audioFile.getNumSamplesPerChannel(); i++) { - for(int32_t y = 0; y < audioFile.getNumChannels(); y++) { - double sample = audioFile.samples[y][i]; - sample = sample < -1 ? -1 : sample > 1 ? 1 : sample; - auto q = static_cast (sample * 32767.); - - buffer[0] = (q >> 8) & 0xFF; - buffer[1] = q & 0xFF; - fwrite(buffer, sizeof(uint8_t), 2, fileOut); - } - } - - fclose(fileOut); - return 0; -} \ No newline at end of file diff --git a/src/dawntools/util/CMakeLists.txt b/src/dawntools/util/CMakeLists.txt new file mode 100644 index 00000000..8497c959 --- /dev/null +++ b/src/dawntools/util/CMakeLists.txt @@ -0,0 +1,12 @@ +# Copyright (c) 2023 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +set(D ${CMAKE_CURRENT_LIST_DIR}) + +list(APPEND + DAWN_TOOL_SOURCES + ${D}/DawnTool.cpp + ${D}/File.cpp +) \ No newline at end of file diff --git a/src/dawntools/util/DawnTool.cpp b/src/dawntools/util/DawnTool.cpp index ca560839..661273d9 100644 --- a/src/dawntools/util/DawnTool.cpp +++ b/src/dawntools/util/DawnTool.cpp @@ -17,9 +17,53 @@ 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++) { - this->args.push_back(std::string(argv[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); + 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(); diff --git a/src/dawntools/util/DawnTool.hpp b/src/dawntools/util/DawnTool.hpp index f9bc1007..da3fbfcc 100644 --- a/src/dawntools/util/DawnTool.hpp +++ b/src/dawntools/util/DawnTool.hpp @@ -18,6 +18,10 @@ namespace Dawn { class DawnTool { protected: std::vector args; + std::map flags; + + virtual std::vector getRequiredFlags(); + virtual std::map getOptionalFlags(); public: int32_t exec(const int32_t argc, const char *argv[]); diff --git a/src/dawntools/util/File.cpp b/src/dawntools/util/File.cpp index fa0ed16f..f61da4de 100644 --- a/src/dawntools/util/File.cpp +++ b/src/dawntools/util/File.cpp @@ -7,8 +7,50 @@ 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 inFile; + bool 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 = fileNormalizeSlashesNew(filename); + this->filename = File::normalizeSlashes(filename); } bool_t File::open(enum FileMode mode) { @@ -42,6 +84,14 @@ 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); fclose(this->file); @@ -49,7 +99,7 @@ void File::close() { } bool_t File::mkdirp() { - fileMkdirp((char*)this->filename.c_str()); + File::mkdirp(this->filename); return true; } @@ -81,10 +131,15 @@ bool_t File::writeString(std::string in) { if(!this->open(FILE_MODE_WRITE)) return false; } assertTrue(this->mode == FILE_MODE_WRITE); + return this->writeRaw((char *)in.c_str(), in.size()) && this->length == in.size(); +} - const char_t *strOut = in.c_str(); - // TODO: Validate write length. - this->length = fwrite(strOut, sizeof(char_t), in.size(), this->file); +bool_t File::writeRaw(char *data, size_t len) { + if(!this->isOpen()) { + if(!this->open(FILE_MODE_WRITE)) return false; + } + assertTrue(this->mode == FILE_MODE_WRITE); + this->length = fwrite(data, sizeof(char_t), len, this->file); return true; } diff --git a/src/dawntools/util/File.hpp b/src/dawntools/util/File.hpp index 5a4a890a..b9cd6cd8 100644 --- a/src/dawntools/util/File.hpp +++ b/src/dawntools/util/File.hpp @@ -5,9 +5,22 @@ #pragma once #include "assert/assert.hpp" -#include "util/file.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 + #define FILE_BUFFER_SIZE 512 namespace Dawn { @@ -23,6 +36,9 @@ namespace Dawn { size_t length; public: + static std::string normalizeSlashes(std::string str); + static void mkdirp(std::string path); + std::string filename; /** @@ -47,6 +63,14 @@ namespace Dawn { */ 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. @@ -78,6 +102,14 @@ namespace Dawn { */ bool_t writeString(std::string in); + /** + * Write raw bytes to the file. + * + * @param data Data to write. + * @return True if written successfully, otherwise false. + */ + bool_t writeRaw(char *data, size_t ); + ~File(); }; } \ No newline at end of file diff --git a/src/dawntools/util/file.hpp b/src/dawntools/util/file.hpp index 8430ea58..c5d50447 100644 --- a/src/dawntools/util/file.hpp +++ b/src/dawntools/util/file.hpp @@ -74,4 +74,4 @@ int32_t skipAhead( char *needles, int32_t needleCount ); -std::string fileNormalizeSlashesNew(std::string str); \ No newline at end of file +static std::string fileNormalizeSlashesNew(std::string str); \ No newline at end of file diff --git a/src/dawntools/visualnovel/CMakeLists.txt b/src/dawntools/visualnovel/CMakeLists.txt index 16ad8d1a..a1df5c13 100644 --- a/src/dawntools/visualnovel/CMakeLists.txt +++ b/src/dawntools/visualnovel/CMakeLists.txt @@ -8,7 +8,7 @@ add_subdirectory(vnscenegen) # UI Tool function(tool_vnscene target in) add_custom_target(${target} - COMMAND vnscenegen "${DAWN_ASSETS_SOURCE_DIR}/${in}" "${DAWN_GENERATED_DIR}/scenes/${target}" + COMMAND vnscenegen --input="${DAWN_ASSETS_SOURCE_DIR}/${in}" --output="${DAWN_GENERATED_DIR}/scenes/${target}" COMMENT "Generating VN Scene ${target} from ${in}" DEPENDS vnscenegen ) diff --git a/src/dawntools/visualnovel/vnscenegen/CMakeLists.txt b/src/dawntools/visualnovel/vnscenegen/CMakeLists.txt index b4ec3631..5a0e32e0 100644 --- a/src/dawntools/visualnovel/vnscenegen/CMakeLists.txt +++ b/src/dawntools/visualnovel/vnscenegen/CMakeLists.txt @@ -3,32 +3,35 @@ # This software is released under the MIT License. # https://opensource.org/licenses/MIT -# Texture Build Tool +# VN Scene Generator Tool project(vnscenegen VERSION 1.1) add_executable(vnscenegen) + +# Sources target_sources(vnscenegen PRIVATE ${DAWN_SHARED_SOURCES} + ${DAWN_TOOL_SOURCES} VnSceneGen.cpp - ../../util/DawnTool.cpp - ../../util/File.cpp - ../../util/file.cpp - ../../util/xml.cpp ) +# Includes target_include_directories(vnscenegen PUBLIC ${DAWN_SHARED_INCLUDES} - ${CMAKE_CURRENT_LIST_DIR}/../../ + ${DAWN_TOOL_INCLUDES} ${CMAKE_CURRENT_LIST_DIR} ) +# Definitions target_compile_definitions(vnscenegen PUBLIC + ${DAWN_SHARED_DEFINITIONS} DAWN_TOOL_INSTANCE=VnSceneGen DAWN_TOOL_HEADER="VnSceneGen.hpp" ) +# Libraries target_link_libraries(vnscenegen PUBLIC ${DAWN_BUILD_HOST_LIBS} diff --git a/src/dawntools/visualnovel/vnscenegen/VnSceneGen.cpp b/src/dawntools/visualnovel/vnscenegen/VnSceneGen.cpp index eec43f5e..d8a5914e 100644 --- a/src/dawntools/visualnovel/vnscenegen/VnSceneGen.cpp +++ b/src/dawntools/visualnovel/vnscenegen/VnSceneGen.cpp @@ -7,14 +7,13 @@ using namespace Dawn; -int32_t VnSceneGen::start() { - if(this->args.size() != 3) { - std::cout << "Invalid number of args passed to VNScene Generator" << std::endl; - return 1; - } +std::vector VnSceneGen::getRequiredFlags() { + return std::vector{ "input", "output" }; +} +int32_t VnSceneGen::start() { // Open input file. - File file(this->args[1]); + File file(flags["input"]); std::string buffer; if(!file.readString(&buffer)) { std::cout << "Failed to read scene " << file.filename << std::endl; @@ -43,7 +42,7 @@ int32_t VnSceneGen::start() { } // Finished with XML data, now we can write data out. - File fileOut(this->args[2] + ".hpp"); + File fileOut(flags["output"] + ".hpp"); if(!fileOut.mkdirp()) { std::cout << "Failed to make scene output dir" << std::endl; return 1; diff --git a/src/dawntools/visualnovel/vnscenegen/VnSceneGen.hpp b/src/dawntools/visualnovel/vnscenegen/VnSceneGen.hpp index 8f5a1a06..8cb7928e 100644 --- a/src/dawntools/visualnovel/vnscenegen/VnSceneGen.hpp +++ b/src/dawntools/visualnovel/vnscenegen/VnSceneGen.hpp @@ -11,6 +11,7 @@ namespace Dawn { class VnSceneGen : public DawnTool { protected: + std::vector getRequiredFlags() override; public: int32_t start();