From cfa9e0e99ae3e96fc32e68f201abfd17040dcc78 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Mon, 25 Nov 2024 16:09:56 -0600 Subject: [PATCH] About to relearn this version of the language. --- assets/en.json | 42 ++++++++++++++ lib/CMakeLists.txt | 8 +-- src/CMakeLists.txt | 8 +-- src/dawn/CMakeLists.txt | 8 ++- src/dawn/asset/AssetManager.cpp | 1 - src/dawn/asset/AssetManager.hpp | 11 +++- src/dawn/asset/CMakeLists.txt | 2 +- .../asset/{loaders => loader}/CMakeLists.txt | 0 .../asset/{loaders => loader}/JSONLoader.cpp | 0 .../asset/{loaders => loader}/JSONLoader.hpp | 0 .../{loaders => loader}/TextureLoader.cpp | 0 .../{loaders => loader}/TextureLoader.hpp | 0 .../{loaders => loader}/TrueTypeLoader.cpp | 0 .../{loaders => loader}/TrueTypeLoader.hpp | 0 src/dawn/game/Game.cpp | 1 + src/dawn/locale/LocaleManager.cpp | 58 ++++++++++++++++++- src/dawn/locale/LocaleManager.hpp | 39 ++++++++++++- src/dawnopengl/CMakeLists.txt | 22 ++----- tools/CMakeLists.txt | 12 ---- tools/assetstool/CMakeLists.txt | 8 ++- tools/copytool/CMakeLists.txt | 4 +- tools/texturetool/CMakeLists.txt | 12 ++-- tools/truetypetool/CMakeLists.txt | 2 +- 23 files changed, 178 insertions(+), 60 deletions(-) create mode 100644 assets/en.json rename src/dawn/asset/{loaders => loader}/CMakeLists.txt (100%) rename src/dawn/asset/{loaders => loader}/JSONLoader.cpp (100%) rename src/dawn/asset/{loaders => loader}/JSONLoader.hpp (100%) rename src/dawn/asset/{loaders => loader}/TextureLoader.cpp (100%) rename src/dawn/asset/{loaders => loader}/TextureLoader.hpp (100%) rename src/dawn/asset/{loaders => loader}/TrueTypeLoader.cpp (100%) rename src/dawn/asset/{loaders => loader}/TrueTypeLoader.hpp (100%) diff --git a/assets/en.json b/assets/en.json new file mode 100644 index 00000000..01f8f857 --- /dev/null +++ b/assets/en.json @@ -0,0 +1,42 @@ +{ + "main_menu": { + "new_game": "New Game", + "load_game": "Load Game", + "options": "Options", + "exit": "Exit" + }, + "tiles": { + "water": { + "interact": "A refreshing body of water." + }, + "lamp": { + "interact": "An electric lamp.\nA real lightbulb idea." + }, + "rail": { + "interact": "Train tracks.\n...Better not cross them." + } + }, + "entities": { + "sign": { + "name": "Sign" + } + }, + "maps": { + "testmap": { + "bob": "Hello, I am Bob.", + "sign": "This is a sign.", + "sign2": { + "1": "This is another sign.", + "2": "It has two lines." + } + }, + "train_station": { + "stair_sign": { + "0": "Stairs slippery when wet.\n\n<- West to Town.\n-> East to lakefront." + } + } + }, + "battle": { + "start": "Battle Start!" + } +} \ No newline at end of file diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index ea139711..db4868a3 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -6,12 +6,10 @@ include(FetchContent) # GLFW -if(DAWN_TARGET_GLFW) - FetchContent_Declare(glfw URL https://github.com/glfw/glfw/releases/download/3.4/glfw-3.4.zip) - FetchContent_MakeAvailable(glfw) +FetchContent_Declare(glfw URL https://github.com/glfw/glfw/releases/download/3.4/glfw-3.4.zip) +FetchContent_MakeAvailable(glfw) - add_subdirectory(glad) -endif() +add_subdirectory(glad) # GLM FetchContent_Declare( diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 96d37f9f..d4c38e94 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -22,11 +22,9 @@ target_link_libraries(${DAWN_TARGET_NAME} ) # Compile support targets -if(DAWN_TARGET_LINUX) - add_subdirectory(dawnglfw) - add_subdirectory(dawnopengl) - add_subdirectory(dawnlinux) -endif() +add_subdirectory(dawnglfw) +add_subdirectory(dawnopengl) +add_subdirectory(dawnlinux) # Compress the game assets. add_dependencies(${DAWN_TARGET_NAME} dawnassets) \ No newline at end of file diff --git a/src/dawn/CMakeLists.txt b/src/dawn/CMakeLists.txt index 91ead7ed..5c7e7cbf 100644 --- a/src/dawn/CMakeLists.txt +++ b/src/dawn/CMakeLists.txt @@ -36,4 +36,10 @@ add_subdirectory(scene) # add_subdirectory(state) add_subdirectory(time) add_subdirectory(util) -add_subdirectory(ui) \ No newline at end of file +add_subdirectory(ui) + + +# Assets +tool_copy(en en.json) + +add_dependencies(${DAWN_TARGET_NAME} dawnassets) \ No newline at end of file diff --git a/src/dawn/asset/AssetManager.cpp b/src/dawn/asset/AssetManager.cpp index f70d7bbd..890e7686 100644 --- a/src/dawn/asset/AssetManager.cpp +++ b/src/dawn/asset/AssetManager.cpp @@ -4,7 +4,6 @@ // https://opensource.org/licenses/MIT #include "AssetManager.hpp" -#include "loaders/TextureLoader.hpp" using namespace Dawn; diff --git a/src/dawn/asset/AssetManager.hpp b/src/dawn/asset/AssetManager.hpp index b262c7ef..46d2ad3e 100644 --- a/src/dawn/asset/AssetManager.hpp +++ b/src/dawn/asset/AssetManager.hpp @@ -83,7 +83,16 @@ namespace Dawn { * @return The asset loader for the given asset. */ template - std::shared_ptr get(const std::string filename); + std::shared_ptr get(const std::string filename) { + auto existing = this->getExisting(filename); + if(existing) return existing; + + std::shared_ptr loader = std::make_shared(filename); + pendingAssetLoaders.push_back( + std::static_pointer_cast(loader) + ); + return loader; + } /** * Returns the asset loader for the given asset. diff --git a/src/dawn/asset/CMakeLists.txt b/src/dawn/asset/CMakeLists.txt index bc04aeec..00e013a2 100644 --- a/src/dawn/asset/CMakeLists.txt +++ b/src/dawn/asset/CMakeLists.txt @@ -12,4 +12,4 @@ target_sources(${DAWN_TARGET_NAME} ) # Subdirs -add_subdirectory(loaders) \ No newline at end of file +add_subdirectory(loader) \ No newline at end of file diff --git a/src/dawn/asset/loaders/CMakeLists.txt b/src/dawn/asset/loader/CMakeLists.txt similarity index 100% rename from src/dawn/asset/loaders/CMakeLists.txt rename to src/dawn/asset/loader/CMakeLists.txt diff --git a/src/dawn/asset/loaders/JSONLoader.cpp b/src/dawn/asset/loader/JSONLoader.cpp similarity index 100% rename from src/dawn/asset/loaders/JSONLoader.cpp rename to src/dawn/asset/loader/JSONLoader.cpp diff --git a/src/dawn/asset/loaders/JSONLoader.hpp b/src/dawn/asset/loader/JSONLoader.hpp similarity index 100% rename from src/dawn/asset/loaders/JSONLoader.hpp rename to src/dawn/asset/loader/JSONLoader.hpp diff --git a/src/dawn/asset/loaders/TextureLoader.cpp b/src/dawn/asset/loader/TextureLoader.cpp similarity index 100% rename from src/dawn/asset/loaders/TextureLoader.cpp rename to src/dawn/asset/loader/TextureLoader.cpp diff --git a/src/dawn/asset/loaders/TextureLoader.hpp b/src/dawn/asset/loader/TextureLoader.hpp similarity index 100% rename from src/dawn/asset/loaders/TextureLoader.hpp rename to src/dawn/asset/loader/TextureLoader.hpp diff --git a/src/dawn/asset/loaders/TrueTypeLoader.cpp b/src/dawn/asset/loader/TrueTypeLoader.cpp similarity index 100% rename from src/dawn/asset/loaders/TrueTypeLoader.cpp rename to src/dawn/asset/loader/TrueTypeLoader.cpp diff --git a/src/dawn/asset/loaders/TrueTypeLoader.hpp b/src/dawn/asset/loader/TrueTypeLoader.hpp similarity index 100% rename from src/dawn/asset/loaders/TrueTypeLoader.hpp rename to src/dawn/asset/loader/TrueTypeLoader.hpp diff --git a/src/dawn/game/Game.cpp b/src/dawn/game/Game.cpp index 6a1d38a6..dd6c90f7 100644 --- a/src/dawn/game/Game.cpp +++ b/src/dawn/game/Game.cpp @@ -14,6 +14,7 @@ Game::Game() { } void Game::init() { + localeManager.init(shared_from_this()); renderHost.init(shared_from_this()); inputManager.init(shared_from_this()); saveManager.init(shared_from_this()); diff --git a/src/dawn/locale/LocaleManager.cpp b/src/dawn/locale/LocaleManager.cpp index a7ddfd8b..f5d2146f 100644 --- a/src/dawn/locale/LocaleManager.cpp +++ b/src/dawn/locale/LocaleManager.cpp @@ -1,8 +1,62 @@ -// Copyright (c) 2023 Dominic Masters +// Copyright (c) 2024 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #include "LocaleManager.hpp" +#include "assert/assert.hpp" +#include "game/Game.hpp" +#include "util/String.hpp" -using namespace Dawn; \ No newline at end of file +using namespace Dawn; + +LocaleManager::LocaleManager() { +} + +void LocaleManager::init(const std::shared_ptr &game) { + assertNotNull(game, "Game cannot be null."); + this->game = game; + + languageAsset = game->assetManager.get("en.json"); +} + +std::string LocaleManager::getString( + const std::string &key, + const std::unordered_map replacements +) { + assertNotNull(languageAsset, "Language asset cannot be null."); + + // Key comes in like "main_menu.new_game", which would be; + // data["main_menu"]["new_game"], so we need to split by dot and iterate. + auto keyParts = String::split(key, "."); + int32_t currentPart = 0; + json dataCurrent = languageAsset->data; + + while(currentPart < keyParts.size()) { + auto &part = keyParts[currentPart]; + assertTrue( + dataCurrent.contains(part), + "Key '%s' does not exist in the language asset.", key.c_str() + ); + dataCurrent = dataCurrent[part]; + currentPart++; + } + + // For each replacement, replace "{{ key }}" with the value. + std::string output = dataCurrent.get();// overrides? + for(auto &replacement : replacements) { + std::string key = "{{ " + replacement.first + " }}"; + size_t pos = 0; + while((pos = output.find(key, pos)) != std::string::npos) { + output.replace(pos, key.length(), replacement.second); + pos += replacement.second.length(); + } + } + + return output; +} + +LocaleManager::~LocaleManager() { + languageAsset = nullptr; + game.reset(); +} diff --git a/src/dawn/locale/LocaleManager.hpp b/src/dawn/locale/LocaleManager.hpp index f69e39db..66ad0934 100644 --- a/src/dawn/locale/LocaleManager.hpp +++ b/src/dawn/locale/LocaleManager.hpp @@ -1,15 +1,48 @@ -// Copyright (c) 2023 Dominic Masters +// Copyright (c) 2024 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once -#include "dawnlibs.hpp" +#include "asset/loader/JSONLoader.hpp" namespace Dawn { - class LocaleManager final { + class Game; + + class LocaleManager { private: + std::weak_ptr game; + std::shared_ptr languageAsset; public: + /** + * Creates a new LocaleManager. + */ + LocaleManager(); + + /** + * Initializes the LocaleManager. + * + * @param game The game to initialize with. + */ + void init(const std::shared_ptr &game); + + /** + * Returns a string from the locale. + * + * @param key The key of the string. + * @param replacements The replacements to make in the string. + * @return The string. + */ + std::string getString( + const std::string &key, + const std::unordered_map replacements = + std::unordered_map() + ); + + /** + * Destroys the LocaleManager. + */ + ~LocaleManager(); }; } \ No newline at end of file diff --git a/src/dawnopengl/CMakeLists.txt b/src/dawnopengl/CMakeLists.txt index 06abe398..74558193 100644 --- a/src/dawnopengl/CMakeLists.txt +++ b/src/dawnopengl/CMakeLists.txt @@ -3,20 +3,10 @@ # This software is released under the MIT License. # https://opensource.org/licenses/MIT -if(NOT DEFINED DAWN_OPENGL_EXCLUDE_LIBRARIES) - # Libraries - find_package(OpenGL REQUIRED) - - target_include_directories(${DAWN_TARGET_NAME} - PUBLIC - ${OPENGL_INCLUDE_DIR} - ) - - target_link_libraries(${DAWN_TARGET_NAME} - PUBLIC - ${OPENGL_LIBRARIES} - ) -endif() +# Libraries +target_link_libraries(${DAWN_TARGET_NAME} + PRIVATE +) # Includes target_include_directories(${DAWN_TARGET_NAME} @@ -24,7 +14,7 @@ target_include_directories(${DAWN_TARGET_NAME} ${CMAKE_CURRENT_LIST_DIR} ) + # Subdirs add_subdirectory(assert) -add_subdirectory(display) -# add_subdirectory(scene) \ No newline at end of file +add_subdirectory(display) \ No newline at end of file diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 08014a7c..00eab013 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -3,18 +3,6 @@ # 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_GENERATED_DEPENDENCIES - CACHE INTERNAL ${DAWN_CACHE_TARGET} -) - # Tools add_subdirectory(assetstool) add_subdirectory(copytool) diff --git a/tools/assetstool/CMakeLists.txt b/tools/assetstool/CMakeLists.txt index 2cd1a33f..f26a801c 100644 --- a/tools/assetstool/CMakeLists.txt +++ b/tools/assetstool/CMakeLists.txt @@ -3,10 +3,14 @@ # This software is released under the MIT License. # https://opensource.org/licenses/MIT +find_package(Python3 REQUIRED COMPONENTS Interpreter) + add_custom_target(dawnassets - COMMAND ${DAWN_TOOLS_DIR}/assetstool/assetstool.py + COMMAND + ${Python3_EXECUTABLE} + ${DAWN_TOOLS_DIR}/assetstool/assetstool.py --input=${DAWN_ASSETS_BUILD_DIR} - --output=${DAWN_BUILD_DIR}/assets.tar + --output=${DAWN_BUILD_DIR}/dawn.tar COMMENT "Bundling assets..." USES_TERMINAL DEPENDS ${DAWN_ASSETS} diff --git a/tools/copytool/CMakeLists.txt b/tools/copytool/CMakeLists.txt index a8aaee48..44aeeea5 100644 --- a/tools/copytool/CMakeLists.txt +++ b/tools/copytool/CMakeLists.txt @@ -3,9 +3,9 @@ # This software is released under the MIT License. # https://opensource.org/licenses/MIT -function(tool_copy target input output) +function(tool_copy target file) add_custom_target(${target} - COMMAND ${CMAKE_COMMAND} -E copy ${input} ${output} + COMMAND ${CMAKE_COMMAND} -E copy ${DAWN_ASSETS_SOURCE_DIR}/${file} ${DAWN_ASSETS_BUILD_DIR}/${file} ) add_dependencies(dawnassets ${target}) endfunction() \ No newline at end of file diff --git a/tools/texturetool/CMakeLists.txt b/tools/texturetool/CMakeLists.txt index ef87fe7d..4c16a725 100644 --- a/tools/texturetool/CMakeLists.txt +++ b/tools/texturetool/CMakeLists.txt @@ -1,9 +1,5 @@ -# Copyright (c) 2021 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT +find_package(Python3 REQUIRED COMPONENTS Interpreter) -# Tool Function function(tool_texture target) # Defaults set(FILE "" ) @@ -31,9 +27,9 @@ function(tool_texture target) message(FATAL_ERROR "Missing FILE input") endif() - add_custom_target(${target} + add_custom_target(${target}_texture COMMAND ${DAWN_TOOLS_DIR}/texturetool/texturetool.py - --input="${FILE}" + --input="${DAWN_ASSETS_SOURCE_DIR}/${FILE}" --output="${DAWN_ASSETS_BUILD_DIR}/${target}.texture" --wrap-x="${WRAP_X}" --wrap-y="${WRAP_Y}" @@ -46,5 +42,5 @@ function(tool_texture target) --crop-end-y="${CROP_END_Y}" COMMENT "Generating texture ${target} from ${FILE}" ) - add_dependencies(dawnassets ${target}) + add_dependencies(dawnassets ${target}_texture) endfunction() \ No newline at end of file diff --git a/tools/truetypetool/CMakeLists.txt b/tools/truetypetool/CMakeLists.txt index 17dce31f..892c4ef5 100644 --- a/tools/truetypetool/CMakeLists.txt +++ b/tools/truetypetool/CMakeLists.txt @@ -4,5 +4,5 @@ # https://opensource.org/licenses/MIT function(tool_truetype target ttf) - tool_copy(${target} ${ttf} ${DAWN_ASSETS_BUILD_DIR}/${target}.ttf) + tool_copy(${target} ${ttf} ${target}.ttf) endfunction() \ No newline at end of file