diff --git a/src/dawn/asset/AssetManager.hpp b/src/dawn/asset/AssetManager.hpp index a2bea45f..f4704e42 100644 --- a/src/dawn/asset/AssetManager.hpp +++ b/src/dawn/asset/AssetManager.hpp @@ -28,7 +28,7 @@ namespace Dawn { } ); - if(existing == finishedAssetLoaders.end()) { + if(existing == pendingAssetLoaders.end()) { existing = std::find_if( finishedAssetLoaders.begin(), finishedAssetLoaders.end(), [&](auto &loader) { diff --git a/src/dawn/component/CMakeLists.txt b/src/dawn/component/CMakeLists.txt index 65820b61..24bc74cc 100644 --- a/src/dawn/component/CMakeLists.txt +++ b/src/dawn/component/CMakeLists.txt @@ -10,4 +10,5 @@ target_sources(${DAWN_TARGET_NAME} # Subdirs add_subdirectory(display) -add_subdirectory(ui) \ No newline at end of file +add_subdirectory(ui) +add_subdirectory(vn) \ No newline at end of file diff --git a/src/dawn/component/ui/UICanvas.cpp b/src/dawn/component/ui/UICanvas.cpp index 6fc28f32..6316e598 100644 --- a/src/dawn/component/ui/UICanvas.cpp +++ b/src/dawn/component/ui/UICanvas.cpp @@ -141,4 +141,9 @@ void UICanvas::flushPass() { void UICanvas::addElement(std::shared_ptr element) { elements.push_back(element); +} + +void UICanvas::removeElement(std::shared_ptr element) { + auto it = std::find(elements.begin(), elements.end(), element); + if(it != elements.end()) elements.erase(it); } \ No newline at end of file diff --git a/src/dawn/component/ui/UICanvas.hpp b/src/dawn/component/ui/UICanvas.hpp index fb24afd5..cd1dcbc5 100644 --- a/src/dawn/component/ui/UICanvas.hpp +++ b/src/dawn/component/ui/UICanvas.hpp @@ -69,5 +69,12 @@ namespace Dawn { * @param component The component to add. */ void addElement(std::shared_ptr component); + + /** + * Removes a component from the canvas. + * + * @param component The component to remove. + */ + void removeElement(std::shared_ptr component); }; } \ No newline at end of file diff --git a/src/dawn/component/vn/CMakeLists.txt b/src/dawn/component/vn/CMakeLists.txt new file mode 100644 index 00000000..5652d8cd --- /dev/null +++ b/src/dawn/component/vn/CMakeLists.txt @@ -0,0 +1,9 @@ +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +target_sources(${DAWN_TARGET_NAME} + PRIVATE + VNManager.cpp +) \ No newline at end of file diff --git a/src/dawn/component/vn/VNManager.cpp b/src/dawn/component/vn/VNManager.cpp new file mode 100644 index 00000000..a2c0f5db --- /dev/null +++ b/src/dawn/component/vn/VNManager.cpp @@ -0,0 +1,62 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "VNManager.hpp" + +using namespace Dawn; + +void VNManager::onInit() { + assertNotNull(canvas, "Canvas must be set."); + assertNotNull(texture, "Texture must be set."); + + container = std::make_shared(); + container->align = { 0, 128, 0, 0 }; + container->alignX = UIAlignmentType::STRETCH; + container->alignY = UIAlignmentType::END; + + borders = std::make_shared(); + borders->align = { 0, 0, 0, 0 }; + borders->alignX = UIAlignmentType::STRETCH; + borders->alignY = UIAlignmentType::STRETCH; + borders->color = COLOR_BLUE; + container->appendChild(borders); + + background = std::make_shared(); + background->align = { 16, 16, 16, 16 }; + background->alignX = UIAlignmentType::STRETCH; + background->alignY = UIAlignmentType::STRETCH; + background->color = COLOR_RED; + container->appendChild(background); + + label = std::make_shared(); + label->align = { 16, 16, 16, 16 }; + label->alignX = UIAlignmentType::STRETCH; + label->alignY = UIAlignmentType::STRETCH; + label->setFont(texture); + label->setText(text); + container->appendChild(label); + + canvas->addElement(container); + + listeners.push_back(getScene()->onUnpausedUpdate.listen([&](const float_t d) { + + })); +} + +void VNManager::onDispose() { + canvas->removeElement(container); + + container = nullptr; + label = nullptr; + background = nullptr; + borders = nullptr; + texture = nullptr; + canvas = nullptr; +} + +void VNManager::setText(const std::wstring &text) { + this->text = text; + if(label) label->setText(text); +} \ No newline at end of file diff --git a/src/dawn/component/vn/VNManager.hpp b/src/dawn/component/vn/VNManager.hpp new file mode 100644 index 00000000..9c6aba2e --- /dev/null +++ b/src/dawn/component/vn/VNManager.hpp @@ -0,0 +1,36 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scene/SceneItem.hpp" +#include "ui/container/UIContainer.hpp" +#include "ui/elements/UILabel.hpp" +#include "ui/elements/UIRectangle.hpp" + +namespace Dawn { + class VNManager : public SceneComponent { + protected: + std::shared_ptr container; + std::shared_ptr label; + std::shared_ptr borders; + std::shared_ptr background; + std::wstring text; + + public: + std::shared_ptr canvas; + std::shared_ptr texture; + + + void onInit() override; + void onDispose() override; + + /** + * Sets the text to display. + * + * @param text The text to display. + */ + void setText(const std::wstring &text); + }; +} \ No newline at end of file diff --git a/src/dawn/ui/UIAlignableElement.cpp b/src/dawn/ui/UIAlignableElement.cpp index 58118707..79489c2d 100644 --- a/src/dawn/ui/UIAlignableElement.cpp +++ b/src/dawn/ui/UIAlignableElement.cpp @@ -200,25 +200,20 @@ void UIAlignableElement::updateSelfAlignment( } bool_t UIAlignableElement::hasExplicitWidth() { - if(size.x == 0.0f) return false; - if( - (alignX == UIAlignmentType::STRETCH) || - (alignX == UIAlignmentType::END) - ) { - return align[0] != UI_ALIGN_SIZE_AUTO; - } - return align[2] != UI_ALIGN_SIZE_AUTO; -} - -bool_t UIAlignableElement::hasExplicitHeight() { - if(size.y == 0.0f) return false; - if( - (alignY == UIAlignmentType::STRETCH) || - (alignY == UIAlignmentType::END) - ) { + if(alignX == UIAlignmentType::STRETCH) return true; + if(alignX == UIAlignmentType::END) { return align[1] != UI_ALIGN_SIZE_AUTO; } return align[3] != UI_ALIGN_SIZE_AUTO; + +} + +bool_t UIAlignableElement::hasExplicitHeight() { + if(alignY == UIAlignmentType::STRETCH) return true; + if(alignY == UIAlignmentType::END) { + return align[0] != UI_ALIGN_SIZE_AUTO; + } + return align[2] != UI_ALIGN_SIZE_AUTO; } float_t UIAlignableElement::getWidth() { diff --git a/src/dawnrpg/dawnrpg.cpp b/src/dawnrpg/dawnrpg.cpp index b62a91c2..0674ec1c 100644 --- a/src/dawnrpg/dawnrpg.cpp +++ b/src/dawnrpg/dawnrpg.cpp @@ -8,5 +8,5 @@ using namespace Dawn; const std::function Scene::getInitialScene() { - return Dawn::worldScene; + return Dawn::vnScene; } \ No newline at end of file diff --git a/src/dawnrpg/scenes/CMakeLists.txt b/src/dawnrpg/scenes/CMakeLists.txt index 311a58fb..3ea6c81b 100644 --- a/src/dawnrpg/scenes/CMakeLists.txt +++ b/src/dawnrpg/scenes/CMakeLists.txt @@ -7,4 +7,5 @@ target_sources(${DAWN_TARGET_NAME} PRIVATE TestScene.cpp WorldScene.cpp + VNScene.cpp ) \ No newline at end of file diff --git a/src/dawnrpg/scenes/SceneList.hpp b/src/dawnrpg/scenes/SceneList.hpp index 8830c0b8..4a9d848b 100644 --- a/src/dawnrpg/scenes/SceneList.hpp +++ b/src/dawnrpg/scenes/SceneList.hpp @@ -9,4 +9,5 @@ namespace Dawn { void testScene(Scene &scene); void worldScene(Scene &scene); + void vnScene(Scene &scene); } diff --git a/src/dawnrpg/scenes/VNScene.cpp b/src/dawnrpg/scenes/VNScene.cpp new file mode 100644 index 00000000..8697ce1f --- /dev/null +++ b/src/dawnrpg/scenes/VNScene.cpp @@ -0,0 +1,42 @@ + +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "scenes/SceneList.hpp" +#include "component/display/Camera.hpp" + +#include "component/ui/UICanvas.hpp" +#include "ui/elements/UIRectangle.hpp" +#include "ui/elements/UILabel.hpp" +#include "ui/UIMenu.hpp" +#include "ui/container/UIRowContainer.hpp" +#include "ui/container/UIPaddingContainer.hpp" +#include "component/vn/VNManager.hpp" + +using namespace Dawn; + +void Dawn::vnScene(Scene &s) { + // Load assets + // auto testj = s.getGame()->assetManager.get("test"); + auto texture = s.getGame()->assetManager.get("font_silver", 32); + while(!s.getGame()->assetManager.isEverythingLoaded()) { + s.getGame()->assetManager.update(); + } + + // Setup camera + auto cameraItem = s.createSceneItem(); + auto camera = cameraItem->addComponent(); + cameraItem->lookAt({ 3, 3, 3 }, { 0, 0, 0 }, { 0, 1, 0 }); + camera->clipFar = 99999.99f; + + // Create canvas + auto canvasItem = s.createSceneItem(); + auto canvas = canvasItem->addComponent(); + + auto vnManager = canvasItem->addComponent(); + vnManager->canvas = canvas; + vnManager->texture = texture; + vnManager->setText(L"broivvoib"); +} \ No newline at end of file