From aeb5014a07143186d8eed28093df06be69af4d0e Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 5 Mar 2023 15:51:07 -0800 Subject: [PATCH] Scene UI --- lib/SDL | 2 +- lib/openal-soft | 2 +- src/dawn/display/RenderPipeline.cpp | 10 +++++++--- src/dawn/scene/SceneItem.hpp | 17 +++++++++++++++++ src/dawn/scene/components/ui/CMakeLists.txt | 2 ++ src/dawn/scene/components/ui/UIComponent.hpp | 5 +++++ src/dawn/scene/components/ui/UILabel.cpp | 4 ++-- src/dawn/scene/components/ui/UILabel.hpp | 1 + src/dawntictactoe/CMakeLists.txt | 3 ++- src/dawntictactoe/scenes/TicTacToeScene.hpp | 11 +++++++++++ 10 files changed, 49 insertions(+), 8 deletions(-) diff --git a/lib/SDL b/lib/SDL index 87a83787..c9aec268 160000 --- a/lib/SDL +++ b/lib/SDL @@ -1 +1 @@ -Subproject commit 87a83787a3a0a9922b02b35ba809d9da86930fc8 +Subproject commit c9aec268fa7f892e183219683160599a4a2b86db diff --git a/lib/openal-soft b/lib/openal-soft index d66107e9..fde74453 160000 --- a/lib/openal-soft +++ b/lib/openal-soft @@ -1 +1 @@ -Subproject commit d66107e9f008770b48f0df4fce041ee3e501e1e8 +Subproject commit fde74453a62a1ce4b5efaac0ec1835b9f5731e25 diff --git a/src/dawn/display/RenderPipeline.cpp b/src/dawn/display/RenderPipeline.cpp index deb05880..490107f9 100644 --- a/src/dawn/display/RenderPipeline.cpp +++ b/src/dawn/display/RenderPipeline.cpp @@ -153,16 +153,20 @@ void RenderPipeline::renderSceneCamera(Scene *scene, Camera *camera) { assertUnreachable(); } - auto children = canvas->item.chil + auto renderables = canvas->item->findChildrenDeep(); + auto itChild = renderables.begin(); + while(itChild != renderables.end()) { + ++itChild; + } // auto itChild = canvas->children.begin(); - // while(itChild != canvas->children.end()) { + // while(itChild != canvas->children.end()) { // vectorAppend(&shaderPassItems, (*itChild)->getPassItems( // projection, view, model // )); // ++itChild; // } - // ++itCanvas; + ++itCanvas; } // Debug Lines diff --git a/src/dawn/scene/SceneItem.hpp b/src/dawn/scene/SceneItem.hpp index 91fcb8cc..1c2a4ff7 100644 --- a/src/dawn/scene/SceneItem.hpp +++ b/src/dawn/scene/SceneItem.hpp @@ -7,6 +7,7 @@ #include "display/Transform.hpp" #include "event/Event.hpp" #include "scene/Scene.hpp" +#include "util/array.hpp" namespace Dawn { class SceneItemComponent; @@ -113,6 +114,22 @@ namespace Dawn { } return children; } + + template + std::vector findChildrenDeep() { + std::vector itemsToCheck = this->transform.children; + std::vector itemsFound; + + while(itemsToCheck.size() > 0) { + auto item = itemsToCheck.begin(); + vectorAppend(&itemsToCheck, (*item)->children); + auto component = (*item)->item->getComponent(); + if(component != nullptr) itemsFound.push_back(component); + itemsToCheck.erase(item); + } + + return itemsFound; + } /** * Destroy this SceneItem. diff --git a/src/dawn/scene/components/ui/CMakeLists.txt b/src/dawn/scene/components/ui/CMakeLists.txt index 3008a339..a8d0aea3 100644 --- a/src/dawn/scene/components/ui/CMakeLists.txt +++ b/src/dawn/scene/components/ui/CMakeLists.txt @@ -7,6 +7,8 @@ target_sources(${DAWN_TARGET_NAME} PRIVATE UICanvas.cpp + UIComponent.cpp + UILabel.cpp ) tool_scenecomponent(UICanvas scene/components/ui/UICanvas.hpp) \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UIComponent.hpp b/src/dawn/scene/components/ui/UIComponent.hpp index 715f4026..1a3c4783 100644 --- a/src/dawn/scene/components/ui/UIComponent.hpp +++ b/src/dawn/scene/components/ui/UIComponent.hpp @@ -8,6 +8,11 @@ #include "UICanvas.hpp" namespace Dawn { + class UIComponentRendaerable { + public: + int32_t cum; + }; + class UIComponent : public SceneItemComponent { private: UICanvas *canvas = nullptr; diff --git a/src/dawn/scene/components/ui/UILabel.cpp b/src/dawn/scene/components/ui/UILabel.cpp index 8c3a3310..8eabfc91 100644 --- a/src/dawn/scene/components/ui/UILabel.cpp +++ b/src/dawn/scene/components/ui/UILabel.cpp @@ -24,8 +24,8 @@ void UILabel::updateMesh() { // std::string text = this->getGame()->localeManager.getString(key); this->font->buffer( - this->text, - this->fontSize, + text, + fontSize, -1, &this->mesh, &this->measure diff --git a/src/dawn/scene/components/ui/UILabel.hpp b/src/dawn/scene/components/ui/UILabel.hpp index 20a95d33..bded30fb 100644 --- a/src/dawn/scene/components/ui/UILabel.hpp +++ b/src/dawn/scene/components/ui/UILabel.hpp @@ -5,6 +5,7 @@ #pragma once #include "UIComponent.hpp" +#include "display/font/Font.hpp" namespace Dawn { class UILabel : public UIComponent { diff --git a/src/dawntictactoe/CMakeLists.txt b/src/dawntictactoe/CMakeLists.txt index aba4bdf0..ec04854e 100644 --- a/src/dawntictactoe/CMakeLists.txt +++ b/src/dawntictactoe/CMakeLists.txt @@ -24,4 +24,5 @@ add_subdirectory(save) set(DIR_GAME_ASSETS games/tictactoe) tool_language(locale_en ${DIR_GAME_ASSETS}/locale/en.xml) -tool_tileset(tileset_xo texture_xo ${DIR_GAME_ASSETS}/xo.png 1 4) \ No newline at end of file +tool_tileset(tileset_xo texture_xo ${DIR_GAME_ASSETS}/xo.png 1 4) +tool_truetype(truetype_bizudp ${DIR_GAME_ASSETS}/font/BIZUDPGothic-Bold.ttf truetype_bizudp 2048 2048 120) diff --git a/src/dawntictactoe/scenes/TicTacToeScene.hpp b/src/dawntictactoe/scenes/TicTacToeScene.hpp index 76cd691d..b15c627b 100644 --- a/src/dawntictactoe/scenes/TicTacToeScene.hpp +++ b/src/dawntictactoe/scenes/TicTacToeScene.hpp @@ -9,6 +9,7 @@ #include "prefabs/TicTacToeTilePrefab.hpp" #include "display/mesh/TriangleMesh.hpp" #include "components/TicTacToeGame.hpp" +#include "scene/components/ui/UILabel.hpp" #include "state/State.hpp" @@ -43,11 +44,21 @@ namespace Dawn { tile->ticTacToe->tile = i++; } } + + auto canvasItem = this->createSceneItem(); + auto canvas = canvasItem->addComponent(); + + auto labelItem = this->createSceneItem(); + auto label = labelItem->addComponent(); + label->font = &this->game->assetManager.get("truetype_bizudp")->font; + label->text = "Hello World"; + labelItem->transform.setParent(canvas->transform); } std::vector getRequiredAssets() override { auto assMan = &this->game->assetManager; std::vector assets; + assets.push_back(assMan->get("truetype_bizudp")); vectorAppend(&assets, SimpleSpinningCubePrefab::getRequiredAssets(assMan)); vectorAppend(&assets, TicTacToeTilePrefab::getRequiredAssets(assMan)); return assets;