diff --git a/.gitea/workflows/build-linux-glfw-x64.yml b/.gitea/workflows/build-linux-glfw-x64.yml new file mode 100644 index 00000000..40450310 --- /dev/null +++ b/.gitea/workflows/build-linux-glfw-x64.yml @@ -0,0 +1,17 @@ +name: build-linux-glfw-x64 +on: + push: + branches: [ master, main, main2 ] +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Build Game + run: | + mkdir build + cd build + cmake .. + make \ No newline at end of file diff --git a/.github/workflows/build-helloworld-vita.yml b/.github/workflows/build-helloworld-vita.yml deleted file mode 100644 index b6020242..00000000 --- a/.github/workflows/build-helloworld-vita.yml +++ /dev/null @@ -1,56 +0,0 @@ -name: build-helloworld-vita -on: - push: - branches: [ master ] -jobs: - build: - runs-on: ubuntu-latest - env: - VITASDK: /usr/local/vitasdk - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Cache VITASDK - id: cache-vitasdk-restore - uses: actions/cache/restore@v3 - with: - path: /usr/local/vitasdk - key: ${{ runner.os }}-vitasdk - - - name: Install Vita Toolchain - if: steps.cache-vitasdk.outputs.cache-hit != 'true' - run: ./ci/install-vita-toolchain.sh - - - name: Save VITASDK - id: cache-vitasdk-save - uses: actions/cache/save@v3 - with: - path: /usr/local/vitasdk - key: ${{ steps.cache-vitasdk-restore.outputs.cache-primary-key }} - - - name: Install Libraries - run: ./ci/install-libraries.sh - - - name: Build Tools - run: ./ci/build-tools.sh - - - name: Build Game - run: | - export PATH=$VITASDK/bin:$PATH - mkdir build - cd build - cmake .. -DDAWN_BUILD_TARGET=target-helloworld-vita -DCMAKE_BUILD_TYPE=Debug - make - - - name: Deploying - env: - DAWN_SSH_KEY: ${{ secrets.DAWN_SSH_KEY }} - run: | - mkdir -p ~/.ssh - echo -e "${DAWN_SSH_KEY}" > ~/.ssh/id_rsa - chmod og-rwx ~/.ssh/id_rsa - ssh-keyscan -H wish.moe >> ~/.ssh/known_hosts - ssh -t yourwishes@wish.moe "mkdir -p /home/yourwishes/Dawn/vita/debug" - scp ./build/src/dawnvita/HelloWorld.vpk yourwishes@wish.moe:/home/yourwishes/Dawn/vita/debug/ \ No newline at end of file diff --git a/.github/workflows/build-liminal-glfw-linux64.yml b/.github/workflows/build-liminal-glfw-linux64.yml deleted file mode 100644 index fadb2d6f..00000000 --- a/.github/workflows/build-liminal-glfw-linux64.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: build-liminal-glfw-linux64 -on: - push: - branches: [ master ] -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Install Toolchain - run: ./ci/install-linux-toolchain.sh - - - name: Install Libraries - run: ./ci/install-libraries.sh - - - name: Build Tools - run: ./ci/build-tools.sh - - - name: Build Game - run: | - mkdir build - cd build - cmake .. -DDAWN_BUILD_TARGET=target-liminial-linux64-glfw - make \ No newline at end of file diff --git a/src/dawn/CMakeLists.txt b/src/dawn/CMakeLists.txt index 5f1f18d3..b3d00faf 100644 --- a/src/dawn/CMakeLists.txt +++ b/src/dawn/CMakeLists.txt @@ -30,6 +30,7 @@ add_subdirectory(game) add_subdirectory(locale) add_subdirectory(save) add_subdirectory(scene) +add_subdirectory(settings) add_subdirectory(time) add_subdirectory(util) add_subdirectory(ui) diff --git a/src/dawn/game/IGame.cpp b/src/dawn/game/IGame.cpp index 3b92bcc1..0adc9dcc 100644 --- a/src/dawn/game/IGame.cpp +++ b/src/dawn/game/IGame.cpp @@ -55,8 +55,13 @@ void IGame::init() { #endif inputManager.init(selfAsGame); + saveManager.init(selfAsGame); + settingsManager = std::make_shared(); + settingsManager->init(selfAsGame); + settingsManager->load(); + this->initManagers(); // TEST diff --git a/src/dawn/game/IGame.hpp b/src/dawn/game/IGame.hpp index 56699605..ebaea014 100644 --- a/src/dawn/game/IGame.hpp +++ b/src/dawn/game/IGame.hpp @@ -13,6 +13,7 @@ #include "locale/LocaleManager.hpp" #include "save/SaveManager.hpp" #include "physics/PhysicsManager.hpp" +#include "settings/SettingsManager.hpp" namespace Dawn { class Scene; @@ -54,6 +55,7 @@ namespace Dawn { std::shared_ptr renderHost; std::shared_ptr assetManager; std::shared_ptr localeManager; + std::shared_ptr settingsManager; #ifdef DAWN_ENABLE_PHYSICS std::shared_ptr physicsManager; diff --git a/src/dawn/settings/CMakeLists.txt b/src/dawn/settings/CMakeLists.txt new file mode 100644 index 00000000..f2deba1d --- /dev/null +++ b/src/dawn/settings/CMakeLists.txt @@ -0,0 +1,9 @@ +# Copyright (c) 2024 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +target_sources(${DAWN_TARGET_NAME} + PRIVATE + SettingsManager.cpp +) \ No newline at end of file diff --git a/src/dawn/settings/SettingsManager.cpp b/src/dawn/settings/SettingsManager.cpp new file mode 100644 index 00000000..27023d02 --- /dev/null +++ b/src/dawn/settings/SettingsManager.cpp @@ -0,0 +1,27 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "SettingsManager.hpp" +#include "assert/assert.hpp" + +using namespace Dawn; + +void SettingsManager::init(const std::shared_ptr game) { + this->game = game; +} + +std::shared_ptr SettingsManager::getGame() { + auto game = this->game.lock(); + assertNotNull(game, "Game instance is null."); + return game; +} + +void SettingsManager::load() { + +} + +void SettingsManager::save() { + +} \ No newline at end of file diff --git a/src/dawn/settings/SettingsManager.hpp b/src/dawn/settings/SettingsManager.hpp new file mode 100644 index 00000000..fc335036 --- /dev/null +++ b/src/dawn/settings/SettingsManager.hpp @@ -0,0 +1,41 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "dawn.hpp" + +namespace Dawn { + class Game; + + class SettingsManager final { + private: + std::weak_ptr game; + + public: + /** + * Initializes the SettingsManager with the Game instance. + * + * @param game The Game instance. + */ + void init(const std::shared_ptr game); + + /** + * Gets the Game instance. + * + * @return The Game instance. + */ + std::shared_ptr getGame(); + + /** + * Loads the settings from the settings file. + */ + void load(); + + /** + * Saves the settings to the settings file. + */ + void save(); + }; +} \ No newline at end of file