Test dawn build
Some checks failed
build-linux-glfw-x64 / build (push) Failing after 21s

This commit is contained in:
2024-12-06 13:22:56 -06:00
parent 9d91fa6435
commit 250754af0a
9 changed files with 102 additions and 82 deletions

View File

@ -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

View File

@ -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/

View File

@ -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

View File

@ -30,6 +30,7 @@ add_subdirectory(game)
add_subdirectory(locale) add_subdirectory(locale)
add_subdirectory(save) add_subdirectory(save)
add_subdirectory(scene) add_subdirectory(scene)
add_subdirectory(settings)
add_subdirectory(time) add_subdirectory(time)
add_subdirectory(util) add_subdirectory(util)
add_subdirectory(ui) add_subdirectory(ui)

View File

@ -55,8 +55,13 @@ void IGame::init() {
#endif #endif
inputManager.init(selfAsGame); inputManager.init(selfAsGame);
saveManager.init(selfAsGame); saveManager.init(selfAsGame);
settingsManager = std::make_shared<SettingsManager>();
settingsManager->init(selfAsGame);
settingsManager->load();
this->initManagers(); this->initManagers();
// TEST // TEST

View File

@ -13,6 +13,7 @@
#include "locale/LocaleManager.hpp" #include "locale/LocaleManager.hpp"
#include "save/SaveManager.hpp" #include "save/SaveManager.hpp"
#include "physics/PhysicsManager.hpp" #include "physics/PhysicsManager.hpp"
#include "settings/SettingsManager.hpp"
namespace Dawn { namespace Dawn {
class Scene; class Scene;
@ -54,6 +55,7 @@ namespace Dawn {
std::shared_ptr<RenderHost> renderHost; std::shared_ptr<RenderHost> renderHost;
std::shared_ptr<AssetManager> assetManager; std::shared_ptr<AssetManager> assetManager;
std::shared_ptr<LocaleManager> localeManager; std::shared_ptr<LocaleManager> localeManager;
std::shared_ptr<SettingsManager> settingsManager;
#ifdef DAWN_ENABLE_PHYSICS #ifdef DAWN_ENABLE_PHYSICS
std::shared_ptr<PhysicsManager> physicsManager; std::shared_ptr<PhysicsManager> physicsManager;

View File

@ -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
)

View File

@ -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> game) {
this->game = game;
}
std::shared_ptr<Game> SettingsManager::getGame() {
auto game = this->game.lock();
assertNotNull(game, "Game instance is null.");
return game;
}
void SettingsManager::load() {
}
void SettingsManager::save() {
}

View File

@ -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> game;
public:
/**
* Initializes the SettingsManager with the Game instance.
*
* @param game The Game instance.
*/
void init(const std::shared_ptr<Game> game);
/**
* Gets the Game instance.
*
* @return The Game instance.
*/
std::shared_ptr<Game> getGame();
/**
* Loads the settings from the settings file.
*/
void load();
/**
* Saves the settings to the settings file.
*/
void save();
};
}