From 5998037994378fe108fd27f1ec51285afc270612 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 3 Dec 2024 17:15:39 -0600 Subject: [PATCH] Add context sharing on prefabs. --- assets/{test_cube.json => prefabs/rosa.json} | 19 ++++--- assets/scenes/test_rpg_scene.json | 30 +++++++++++ assets/test_scene.json | 32 ----------- src/dawn/asset/loader/LoaderForSceneItems.cpp | 4 +- src/dawn/asset/loader/LoaderForSceneItems.hpp | 10 +++- src/dawn/asset/loader/PrefabLoader.cpp | 6 +++ src/dawn/asset/loader/PrefabLoader.hpp | 2 + src/dawn/component/SceneComponentRegistry.cpp | 53 ++++++------------- src/dawn/component/SceneComponentRegistry.hpp | 20 +++++++ src/dawn/component/display/Camera.cpp | 2 +- src/dawn/component/display/Camera.hpp | 2 +- .../material/SimpleTexturedMaterial.cpp | 2 +- .../material/SimpleTexturedMaterial.hpp | 2 +- .../display/mesh/CubeMeshComponent.cpp | 2 +- .../display/mesh/CubeMeshComponent.hpp | 2 +- src/dawn/game/IGame.cpp | 17 +++++- src/dawn/scene/SceneComponent.cpp | 2 +- src/dawn/scene/SceneComponent.hpp | 17 +++++- src/dawn/scene/SceneItem.cpp | 2 +- src/dawn/scene/SceneItem.hpp | 2 +- src/dawnphysics/physics/PhysicsManager.cpp | 7 +++ src/dawnrpg/CMakeLists.txt | 5 +- src/dawnrpg/component/RPGEntity.cpp | 11 +--- src/dawnrpg/component/RPGEntity.hpp | 2 - src/dawnrpg/component/RPGPlayer.cpp | 12 +++++ src/dawnrpg/component/RPGPlayer.hpp | 1 + src/dawnrpg/game/Game.cpp | 10 ++-- src/dawnrpg/scene/CMakeLists.txt | 9 ---- src/dawnrpg/scene/RPGScene.cpp | 47 ---------------- src/dawnrpg/scene/SceneList.hpp | 11 ---- 30 files changed, 166 insertions(+), 177 deletions(-) rename assets/{test_cube.json => prefabs/rosa.json} (57%) create mode 100644 assets/scenes/test_rpg_scene.json delete mode 100644 assets/test_scene.json delete mode 100644 src/dawnrpg/scene/CMakeLists.txt delete mode 100644 src/dawnrpg/scene/RPGScene.cpp delete mode 100644 src/dawnrpg/scene/SceneList.hpp diff --git a/assets/test_cube.json b/assets/prefabs/rosa.json similarity index 57% rename from assets/test_cube.json rename to assets/prefabs/rosa.json index cd5a6bb3..16dc7542 100644 --- a/assets/test_cube.json +++ b/assets/prefabs/rosa.json @@ -1,5 +1,5 @@ { - "name": "Test Cube", + "name": "Rosa", "assets": { "rosa": { @@ -8,21 +8,20 @@ } }, - "position": [ 0, 0, 0 ], - "components": { - "mat": { + "material": { "type": "SimpleTexturedMaterial", - "color": "blue", "texture": "rosa" }, - - "renderer": { + "meshRenderer": { "type": "MeshRenderer" }, - - "mesh": { - "type": "CubeMesh" + "entity": { + "type": "RPGEntity" + }, + "player": { + "type": "RPGPlayer", + "camera": "camera" } } } \ No newline at end of file diff --git a/assets/scenes/test_rpg_scene.json b/assets/scenes/test_rpg_scene.json new file mode 100644 index 00000000..184240d5 --- /dev/null +++ b/assets/scenes/test_rpg_scene.json @@ -0,0 +1,30 @@ +{ + "name": "Test RPG Scene", + + "assets": { + "rosa": { + "type": "prefab", + "path": "prefabs/rosa.json" + } + }, + + "items": { + "camera": { + "components": { + "camera": { + "type": "camera" + } + } + }, + + "rosa": { + "prefab": "rosa", + "position": [ 0, 0, 0 ] + }, + + "rosa2": { + "prefab": "rosa", + "position": [ 2, 0, 0 ] + } + } +} \ No newline at end of file diff --git a/assets/test_scene.json b/assets/test_scene.json deleted file mode 100644 index b7531eb9..00000000 --- a/assets/test_scene.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "name": "Test Scene", - "assets": { - "rosa": { - "type": "texture", - "path": "rosa.texture" - }, - "cube": { - "type": "prefab", - "path": "test_cube.json" - } - }, - - "items": { - "camera": { - "lookAt": { - "position": [ 3, 3, 3 ], - "look": [ 0, 0, 0 ], - "view": [ 0, 1, 0 ] - }, - "components": { - "camera": { - "type": "Camera" - } - } - }, - - "cube": { - "prefab": "cube" - } - } -} \ No newline at end of file diff --git a/src/dawn/asset/loader/LoaderForSceneItems.cpp b/src/dawn/asset/loader/LoaderForSceneItems.cpp index 451b3f2e..c4ddb073 100644 --- a/src/dawn/asset/loader/LoaderForSceneItems.cpp +++ b/src/dawn/asset/loader/LoaderForSceneItems.cpp @@ -35,7 +35,9 @@ void LoaderForSceneItems::setupDependencies() { loader = getAssetManager()->get(path); } else if(type == "prefab") { - loader = getAssetManager()->get(path); + auto prefabLoader = getAssetManager()->get(path); + prefabLoader->parentLoader = weak_from_this(); + loader = prefabLoader; } else { assertUnreachable("Unknown asset type: %s", type.c_str()); diff --git a/src/dawn/asset/loader/LoaderForSceneItems.hpp b/src/dawn/asset/loader/LoaderForSceneItems.hpp index 0a16b2ce..f6fadd6b 100644 --- a/src/dawn/asset/loader/LoaderForSceneItems.hpp +++ b/src/dawn/asset/loader/LoaderForSceneItems.hpp @@ -8,10 +8,14 @@ #include "scene/Scene.hpp" namespace Dawn { - class LoaderForSceneItems : public AssetLoader { + class LoaderForSceneitems; + + class LoaderForSceneItems : + public AssetLoader, + public std::enable_shared_from_this + { protected: std::shared_ptr jsonLoader; - struct SceneComponentLoadContext ctx; /** * Loads the dependencies into the context for the data available in @@ -20,6 +24,8 @@ namespace Dawn { void setupDependencies(); public: + struct SceneComponentLoadContext ctx; + LoaderForSceneItems( const std::shared_ptr assetManager, const std::string name diff --git a/src/dawn/asset/loader/PrefabLoader.cpp b/src/dawn/asset/loader/PrefabLoader.cpp index 9089e49a..d550a644 100644 --- a/src/dawn/asset/loader/PrefabLoader.cpp +++ b/src/dawn/asset/loader/PrefabLoader.cpp @@ -4,6 +4,7 @@ // https://opensource.org/licenses/MIT #include "PrefabLoader.hpp" +#include "SceneLoader.hpp" #include "game/Game.hpp" #include "assert/assert.hpp" #include "asset/loader/TextureLoader.hpp" @@ -64,6 +65,11 @@ std::string PrefabLoader::getAssetType() const { void PrefabLoader::stagePrefab(std::shared_ptr item) { assertTrue(this->loaded, "Prefab not loaded"); + // Can we merge with the parent context? + auto parentLoaderLock = this->parentLoader.lock(); + if(parentLoaderLock) this->ctx.merge(parentLoaderLock->ctx); + + // Force-set new context values ctx.scene = item->getScene(); ctx.data = this->jsonLoader->data; diff --git a/src/dawn/asset/loader/PrefabLoader.hpp b/src/dawn/asset/loader/PrefabLoader.hpp index 50f2fedf..b10172e9 100644 --- a/src/dawn/asset/loader/PrefabLoader.hpp +++ b/src/dawn/asset/loader/PrefabLoader.hpp @@ -8,6 +8,7 @@ #include "scene/Scene.hpp" namespace Dawn { + enum class PrefabLoaderState { INITIAL, LOADING_JSON, @@ -23,6 +24,7 @@ namespace Dawn { public: const static std::string ASSET_TYPE; + std::weak_ptr parentLoader; PrefabLoader( const std::shared_ptr assetManager, diff --git a/src/dawn/component/SceneComponentRegistry.cpp b/src/dawn/component/SceneComponentRegistry.cpp index 9c6f2dcb..f9714545 100644 --- a/src/dawn/component/SceneComponentRegistry.cpp +++ b/src/dawn/component/SceneComponentRegistry.cpp @@ -5,48 +5,29 @@ #include "SceneComponentRegistry.hpp" -#include "component/display/Camera.hpp" -#include "component/display/material/SimpleTexturedMaterial.hpp" -#include "component/display/MeshRenderer.hpp" -#include "component/display/mesh/CubeMeshComponent.hpp" - -#ifdef DAWN_ENABLE_PHYSICS - #include "component/physics/CubeCollider.hpp" - #include "component/physics/SphereCollider.hpp" -#endif using namespace Dawn; +std::unordered_map< + std::string, + std::function( + const std::shared_ptr & + )> +> SceneComponentRegistry::REGISTRY = { + +}; + std::shared_ptr SceneComponentRegistry::createComponent( const std::string &type, const std::shared_ptr &item ) { - if(type.length() == 0) { - assertUnreachable("Component type is empty!"); + auto typeLower = String::toLowercase(type); + assertMapHasKey( + SceneComponentRegistry::REGISTRY, + typeLower, + "Component type not registered: %s", + type.c_str() + ); - } else if(type == "Camera") { - return item->addComponent(); - - } else if(type == "SimpleTexturedMaterial") { - return item->addComponent(); - - } else if(type == "MeshRenderer") { - return item->addComponent(); - - } else if(type == "CubeMesh" || type == "CubeMeshComponent") { - return item->addComponent(); - - #ifdef DAWN_ENABLE_PHYSICS - } else if(type == "CubeCollider") { - return item->addComponent(); - - } else if(type == "SphereCollider") { - return item->addComponent(); - #endif - - } else { - assertUnreachable("Unknown component type: %s", type.c_str()); - } - - return nullptr; + return SceneComponentRegistry::REGISTRY[typeLower](item); } \ No newline at end of file diff --git a/src/dawn/component/SceneComponentRegistry.hpp b/src/dawn/component/SceneComponentRegistry.hpp index 070d8514..91f9381d 100644 --- a/src/dawn/component/SceneComponentRegistry.hpp +++ b/src/dawn/component/SceneComponentRegistry.hpp @@ -5,10 +5,30 @@ #pragma once #include "scene/Scene.hpp" +#include "util/String.hpp" namespace Dawn { class SceneComponentRegistry final { + private: + public: + static std::unordered_map< + std::string, + std::function( + const std::shared_ptr & + )> + > REGISTRY; + + template + static void reg(const std::string name) { + auto nameLower = String::toLowercase(name); + SceneComponentRegistry::REGISTRY[nameLower] = []( + const std::shared_ptr &item + ) { + return item->addComponent(); + }; + } + /** * Creates a scene component by its type name. Type names are unique and * must be registered in order to be constructed by their string name. diff --git a/src/dawn/component/display/Camera.cpp b/src/dawn/component/display/Camera.cpp index fbfab56d..091ca64f 100644 --- a/src/dawn/component/display/Camera.cpp +++ b/src/dawn/component/display/Camera.cpp @@ -21,7 +21,7 @@ void Camera::onDispose() { renderTarget = nullptr; } -void Camera::load(const SceneComponentLoadContext &ctx) { +void Camera::load(SceneComponentLoadContext &ctx) { SceneComponent::load(ctx); if(ctx.data.contains("fov")) { diff --git a/src/dawn/component/display/Camera.hpp b/src/dawn/component/display/Camera.hpp index d9beb1bd..deaa4d63 100644 --- a/src/dawn/component/display/Camera.hpp +++ b/src/dawn/component/display/Camera.hpp @@ -33,7 +33,7 @@ namespace Dawn { void onInit() override; void onDispose() override; - void load(const SceneComponentLoadContext &ctx) override; + void load(SceneComponentLoadContext &ctx) override; /** * Returns the aspect ratio that the camera is using. In future I may diff --git a/src/dawn/component/display/material/SimpleTexturedMaterial.cpp b/src/dawn/component/display/material/SimpleTexturedMaterial.cpp index 4a803a4d..f882a5f8 100644 --- a/src/dawn/component/display/material/SimpleTexturedMaterial.cpp +++ b/src/dawn/component/display/material/SimpleTexturedMaterial.cpp @@ -9,7 +9,7 @@ using namespace Dawn; -void SimpleTexturedMaterial::load(const SceneComponentLoadContext &ctx) { +void SimpleTexturedMaterial::load(SceneComponentLoadContext &ctx) { if(ctx.data.contains("color")) { this->setColor(JSON::color(ctx.data["color"])); } diff --git a/src/dawn/component/display/material/SimpleTexturedMaterial.hpp b/src/dawn/component/display/material/SimpleTexturedMaterial.hpp index b6f94fef..f96f4f4b 100644 --- a/src/dawn/component/display/material/SimpleTexturedMaterial.hpp +++ b/src/dawn/component/display/material/SimpleTexturedMaterial.hpp @@ -15,7 +15,7 @@ namespace Dawn { std::shared_ptr texture; public: - void load(const SceneComponentLoadContext &ctx) override; + void load(SceneComponentLoadContext &ctx) override; /** * Returns the color of this material. diff --git a/src/dawn/component/display/mesh/CubeMeshComponent.cpp b/src/dawn/component/display/mesh/CubeMeshComponent.cpp index 3e159431..74b13140 100644 --- a/src/dawn/component/display/mesh/CubeMeshComponent.cpp +++ b/src/dawn/component/display/mesh/CubeMeshComponent.cpp @@ -27,7 +27,7 @@ void CubeMeshComponent::onDispose() { mesh = nullptr; } -void CubeMeshComponent::load(const SceneComponentLoadContext &ctx) { +void CubeMeshComponent::load(SceneComponentLoadContext &ctx) { if(!mesh) mesh = std::make_shared(); } \ No newline at end of file diff --git a/src/dawn/component/display/mesh/CubeMeshComponent.hpp b/src/dawn/component/display/mesh/CubeMeshComponent.hpp index df692721..b4532e1f 100644 --- a/src/dawn/component/display/mesh/CubeMeshComponent.hpp +++ b/src/dawn/component/display/mesh/CubeMeshComponent.hpp @@ -14,6 +14,6 @@ namespace Dawn { void onInit() override; void onDispose() override; - void load(const SceneComponentLoadContext &ctx) override; + void load(SceneComponentLoadContext &ctx) override; }; } \ No newline at end of file diff --git a/src/dawn/game/IGame.cpp b/src/dawn/game/IGame.cpp index a017edf4..2b5e9d49 100644 --- a/src/dawn/game/IGame.cpp +++ b/src/dawn/game/IGame.cpp @@ -6,13 +6,26 @@ #include "game/Game.hpp" #include "scene/Scene.hpp" #include "util/Flag.hpp" - #include "asset/loader/SceneLoader.hpp" +#include "component/SceneComponentRegistry.hpp" + +// Components to register +#include "component/display/Camera.hpp" +#include "component/display/material/SimpleTexturedMaterial.hpp" +#include "component/display/MeshRenderer.hpp" +#include "component/display/mesh/CubeMeshComponent.hpp" + +#ifdef DAWN_ENABLE_PHYSICS +#endif using namespace Dawn; IGame::IGame() { - + SceneComponentRegistry::reg("Camera"); + SceneComponentRegistry::reg("SimpleTexturedMaterial"); + SceneComponentRegistry::reg("MeshRenderer"); + SceneComponentRegistry::reg("CubeMeshComponent"); + SceneComponentRegistry::reg("CubeMesh"); } void IGame::init() { diff --git a/src/dawn/scene/SceneComponent.cpp b/src/dawn/scene/SceneComponent.cpp index 154238b3..a2e6985c 100644 --- a/src/dawn/scene/SceneComponent.cpp +++ b/src/dawn/scene/SceneComponent.cpp @@ -59,7 +59,7 @@ std::shared_ptr SceneComponent::getGame() { return this->getScene()->getGame(); } -void SceneComponent::load(const SceneComponentLoadContext &context) { +void SceneComponent::load(SceneComponentLoadContext &context) { // Override this method to load data from a JSON object. } diff --git a/src/dawn/scene/SceneComponent.hpp b/src/dawn/scene/SceneComponent.hpp index 3a1ad8b0..0d941b02 100644 --- a/src/dawn/scene/SceneComponent.hpp +++ b/src/dawn/scene/SceneComponent.hpp @@ -35,6 +35,21 @@ namespace Dawn { assertNotNull(asset, "Asset is not of the correct type."); return asset; } + + void merge(const struct SceneComponentLoadContext &ctx) { + for(auto &item : ctx.items) { + if(items.find(item.first) != items.end()) continue; + this->items[item.first] = item.second; + } + for(auto &cmp : ctx.components) { + if(components.find(cmp.first) != components.end()) continue; + this->components[cmp.first] = cmp.second; + } + for(auto &asset : ctx.assets) { + if(assets.find(asset.first) != assets.end()) continue; + this->assets[asset.first] = asset.second; + } + } }; class SceneComponent : std::enable_shared_from_this { @@ -104,7 +119,7 @@ namespace Dawn { * * @param json JSON Data that this object needs to load. */ - virtual void load(const SceneComponentLoadContext &context); + virtual void load(SceneComponentLoadContext &context); /** * Disposes this scene component. diff --git a/src/dawn/scene/SceneItem.cpp b/src/dawn/scene/SceneItem.cpp index accafd8b..3037dac2 100644 --- a/src/dawn/scene/SceneItem.cpp +++ b/src/dawn/scene/SceneItem.cpp @@ -76,7 +76,7 @@ void SceneItem::deinit() { this->components.clear(); } -void SceneItem::load(const SceneComponentLoadContext &ctx) { +void SceneItem::load(SceneComponentLoadContext &ctx) { // Load prefab first, it can be overriden by other properties. if(ctx.data.contains("prefab")) { auto prefabLoader = ctx.getAsset( diff --git a/src/dawn/scene/SceneItem.hpp b/src/dawn/scene/SceneItem.hpp index daa67c85..06d7fcb8 100644 --- a/src/dawn/scene/SceneItem.hpp +++ b/src/dawn/scene/SceneItem.hpp @@ -55,7 +55,7 @@ namespace Dawn { * * @param ctx Context to load this scene item from. */ - void load(const SceneComponentLoadContext &ctx); + void load(SceneComponentLoadContext &ctx); /** * Returns the scene that this scene item belongs to. diff --git a/src/dawnphysics/physics/PhysicsManager.cpp b/src/dawnphysics/physics/PhysicsManager.cpp index 57a01bca..8b3e52c4 100644 --- a/src/dawnphysics/physics/PhysicsManager.cpp +++ b/src/dawnphysics/physics/PhysicsManager.cpp @@ -7,6 +7,10 @@ #include "game/Game.hpp" #include "scene/Scene.hpp" #include "component/physics/Collider.hpp" +#include "component/SceneComponentRegistry.hpp" + +#include "component/physics/CubeCollider.hpp" +#include "component/physics/SphereCollider.hpp" using namespace Dawn; using namespace JPH; @@ -206,6 +210,9 @@ BodyInterface & PhysicsManager::getBodyInterface() { void PhysicsManager::init(const std::shared_ptr &game) { this->game = game; + SceneComponentRegistry::reg("CubeCollider"); + SceneComponentRegistry::reg("SphereCollider"); + RegisterDefaultAllocator(); Trace = TraceImpl; diff --git a/src/dawnrpg/CMakeLists.txt b/src/dawnrpg/CMakeLists.txt index e66bc1f6..71e26daa 100644 --- a/src/dawnrpg/CMakeLists.txt +++ b/src/dawnrpg/CMakeLists.txt @@ -12,9 +12,8 @@ target_include_directories(${DAWN_TARGET_NAME} # Subdirs add_subdirectory(component) add_subdirectory(game) -add_subdirectory(scene) # Assets tool_texture(rosa rosa.png) -tool_copy(test_cube test_cube.json) -tool_copy(test_scene test_scene.json) \ No newline at end of file +tool_copy(prefab_rosa prefabs/rosa.json) +tool_copy(test_rpg_scene scenes/test_rpg_scene.json) \ No newline at end of file diff --git a/src/dawnrpg/component/RPGEntity.cpp b/src/dawnrpg/component/RPGEntity.cpp index 25c78af1..6c383960 100644 --- a/src/dawnrpg/component/RPGEntity.cpp +++ b/src/dawnrpg/component/RPGEntity.cpp @@ -14,7 +14,6 @@ using namespace Dawn; void RPGEntity::onInit() { const glm::vec2 size = { RPG_ENTITY_SIZE, RPG_ENTITY_SIZE }; const glm::vec2 position = -size; - const auto sprites = getGame()->assetManager->get("rosa.texture"); mesh = std::make_shared(); mesh->createBuffers(QUAD_VERTICE_COUNT, QUAD_INDICE_COUNT); @@ -25,20 +24,13 @@ void RPGEntity::onInit() { 0, 0, 0 ); - meshRenderer = getItem()->addComponent(); - meshRenderer->mesh = mesh; - - material = getItem()->addComponent(); - material->setColor(COLOR_WHITE); - material->setTexture(sprites->getTexture()); + getItem()->getComponent()->mesh = mesh; updateSprite(); } void RPGEntity::onDispose() { - meshRenderer = nullptr; mesh = nullptr; - material = nullptr; } enum RPGEntityDirection RPGEntity::getFacingDirection() { @@ -52,6 +44,7 @@ void RPGEntity::setFacingDirection(const enum RPGEntityDirection dir) { } void RPGEntity::updateSprite() { + auto material = getItem()->getComponent(); struct TilesetGrid tileset( 3, 4, material->getTexture()->getWidth(), material->getTexture()->getHeight(), diff --git a/src/dawnrpg/component/RPGEntity.hpp b/src/dawnrpg/component/RPGEntity.hpp index 5d2c0205..10857c3f 100644 --- a/src/dawnrpg/component/RPGEntity.hpp +++ b/src/dawnrpg/component/RPGEntity.hpp @@ -20,9 +20,7 @@ namespace Dawn { private: protected: - std::shared_ptr meshRenderer; std::shared_ptr mesh; - std::shared_ptr material; enum RPGEntityDirection facingDirection = RPGEntityDirection::SOUTH; diff --git a/src/dawnrpg/component/RPGPlayer.cpp b/src/dawnrpg/component/RPGPlayer.cpp index d03757e3..c11de14b 100644 --- a/src/dawnrpg/component/RPGPlayer.cpp +++ b/src/dawnrpg/component/RPGPlayer.cpp @@ -5,6 +5,7 @@ #include "RPGPlayer.hpp" #include "scene/Scene.hpp" +#include "assert/assert.hpp" using namespace Dawn; @@ -68,4 +69,15 @@ void RPGPlayer::onInit() { void RPGPlayer::onDispose() { this->rpgEntity = nullptr; +} + +void RPGPlayer::load(SceneComponentLoadContext &ctx) { + SceneComponent::load(ctx); + + if(ctx.data.contains("camera")) { + assertMapHasKey(ctx.components, ctx.data["camera"], "Camera not found!"); + const auto component = ctx.components[ctx.data["camera"].get()]; + this->camera = std::dynamic_pointer_cast(component); + assertNotNull(this->camera, "Camera not found!"); + } } \ No newline at end of file diff --git a/src/dawnrpg/component/RPGPlayer.hpp b/src/dawnrpg/component/RPGPlayer.hpp index 128b8963..51a55a02 100644 --- a/src/dawnrpg/component/RPGPlayer.hpp +++ b/src/dawnrpg/component/RPGPlayer.hpp @@ -18,5 +18,6 @@ namespace Dawn { void onInit() override; void onDispose() override; + void load(SceneComponentLoadContext &ctx) override; }; } \ No newline at end of file diff --git a/src/dawnrpg/game/Game.cpp b/src/dawnrpg/game/Game.cpp index 48a0fd64..79361138 100644 --- a/src/dawnrpg/game/Game.cpp +++ b/src/dawnrpg/game/Game.cpp @@ -4,16 +4,20 @@ // https://opensource.org/licenses/MIT #include "Game.hpp" -#include "scene/SceneList.hpp" +#include "component/SceneComponentRegistry.hpp" + +#include "component/RPGEntity.hpp" +#include "component/RPGPlayer.hpp" using namespace Dawn; Game::Game() : IGame() { - + SceneComponentRegistry::reg("RPGEntity"); + SceneComponentRegistry::reg("RPGPlayer"); } std::string Game::getInitialScene() { - return "test_scene.json"; + return "scenes/test_rpg_scene.json"; } void Game::initManagers() { diff --git a/src/dawnrpg/scene/CMakeLists.txt b/src/dawnrpg/scene/CMakeLists.txt deleted file mode 100644 index ec00be40..00000000 --- a/src/dawnrpg/scene/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - RPGScene.cpp -) \ No newline at end of file diff --git a/src/dawnrpg/scene/RPGScene.cpp b/src/dawnrpg/scene/RPGScene.cpp deleted file mode 100644 index ae90b6d7..00000000 --- a/src/dawnrpg/scene/RPGScene.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 "scene/SceneList.hpp" -#include "component/display/Camera.hpp" -#include "component/display/material/SimpleTexturedMaterial.hpp" -#include "component/ui/UICanvas.hpp" -#include "asset/loader/TextureLoader.hpp" - -#include "component/RPGEntity.hpp" -#include "component/RPGPlayer.hpp" - -using namespace Dawn; - -void Dawn::rpgScene(Scene &s) { - auto textureRosa = s.getGame()->assetManager->get("rosa.texture"); - - while(!s.getGame()->assetManager->isEverythingLoaded()) { - s.getGame()->assetManager->update(); - } - - auto cameraItem = s.createSceneItem(); - auto camera = cameraItem->addComponent(); - camera->clipFar = 99999.99f; - - // Player: - { - auto ent = s.createSceneItem(); - ent->setLocalPosition(glm::vec3(0, 0, 0.00f)); - auto eEnt = ent->addComponent(); - auto ePlyr = ent->addComponent(); - ePlyr->camera = camera; - } - - // Test Entity - { - auto ent = s.createSceneItem(); - ent->setLocalPosition(glm::vec3(-128, -32, -0.01f)); - auto eEnt = ent->addComponent(); - } - - auto uiCanvasItem = s.createSceneItem(); - auto uiCanvas = uiCanvasItem->addComponent(); -} \ No newline at end of file diff --git a/src/dawnrpg/scene/SceneList.hpp b/src/dawnrpg/scene/SceneList.hpp deleted file mode 100644 index 5da108fc..00000000 --- a/src/dawnrpg/scene/SceneList.hpp +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/Scene.hpp" - -namespace Dawn { - void rpgScene(Scene &s); -} \ No newline at end of file