From 370e380337a2ba654ba39958f4c50ef23d5d67f1 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Thu, 21 Dec 2023 11:21:16 -0600 Subject: [PATCH] Basic UI Alignment controls examples --- src/dawn/component/ui/UICanvas.cpp | 34 +++++----- src/dawn/component/ui/UICanvas.hpp | 6 +- src/dawn/ui/CMakeLists.txt | 9 ++- ...UIComponent.cpp => UIAlignableElement.cpp} | 23 ++++--- src/dawn/ui/UIAlignableElement.hpp | 64 ++++++++++++++++++ src/dawn/ui/UIElement.cpp | 37 ++++++++++ .../ui/{UIComponent.hpp => UIElement.hpp} | 67 +++++-------------- src/dawn/ui/UILabel.cpp | 2 +- src/dawn/ui/UILabel.hpp | 5 +- src/dawn/ui/UIMenu.cpp | 54 +++++++++++++++ src/dawn/ui/UIMenu.hpp | 67 +++++++++++++++++++ src/dawn/ui/UIRectangle.hpp | 4 +- src/dawn/ui/container/CMakeLists.txt | 10 +++ .../UIContainer.hpp} | 7 +- src/dawn/ui/container/UIGroupContainer.cpp | 28 ++++++++ src/dawn/ui/container/UIGroupContainer.hpp | 36 ++++++++++ src/dawn/ui/container/UIRowContainer.cpp | 56 ++++++++++++++++ src/dawn/ui/container/UIRowContainer.hpp | 42 ++++++++++++ src/dawnhelloworld/scene/HelloWorldScene.cpp | 47 ++++++++++--- 19 files changed, 497 insertions(+), 101 deletions(-) rename src/dawn/ui/{UIComponent.cpp => UIAlignableElement.cpp} (90%) create mode 100644 src/dawn/ui/UIAlignableElement.hpp create mode 100644 src/dawn/ui/UIElement.cpp rename src/dawn/ui/{UIComponent.hpp => UIElement.hpp} (50%) create mode 100644 src/dawn/ui/UIMenu.cpp create mode 100644 src/dawn/ui/UIMenu.hpp create mode 100644 src/dawn/ui/container/CMakeLists.txt rename src/dawn/ui/{UIAlign.hpp => container/UIContainer.hpp} (61%) create mode 100644 src/dawn/ui/container/UIGroupContainer.cpp create mode 100644 src/dawn/ui/container/UIGroupContainer.hpp create mode 100644 src/dawn/ui/container/UIRowContainer.cpp create mode 100644 src/dawn/ui/container/UIRowContainer.hpp diff --git a/src/dawn/component/ui/UICanvas.cpp b/src/dawn/component/ui/UICanvas.cpp index bf81a50d..6fc28f32 100644 --- a/src/dawn/component/ui/UICanvas.cpp +++ b/src/dawn/component/ui/UICanvas.cpp @@ -6,7 +6,7 @@ #include "UICanvas.hpp" #include "display/pass/RenderPass.hpp" #include "display/mesh/QuadMesh.hpp" -#include "ui/UIComponent.hpp" +#include "ui/UIElement.hpp" using namespace Dawn; @@ -36,15 +36,12 @@ void UICanvas::onDispose() { std::vector> UICanvas::getPasses( struct RenderPassContext &ctx ) { - if(this->components.empty()) return {}; + if(this->elements.empty()) return {}; glm::mat4 projection; glm::mat4 view; - - // data.projection = ctx.camera->getProjection(); - // data.view = ctx.camera->getItem()->getWorldTransform(); - // data.model = this->getItem()->getWorldTransform(); - + + // Setup the projection and views data.projection = glm::ortho( 0.0f, ctx.renderTarget->getWidth(), ctx.renderTarget->getHeight(), 0.0f, @@ -53,24 +50,27 @@ struct RenderPassContext &ctx data.view = glm::mat4(1.0f); data.model = glm::mat4(1.0f); + // Reset the passes this->passes.clear(); this->textureBindings.clear(); this->textures.clear(); quadCount = 0; nextBinding = 0; - // Define the root alignment + // Alignment root + const glm::vec2 rootPosition = { 0, 0 }; + const glm::vec2 rootSize = { + ctx.renderTarget->getWidth(), + ctx.renderTarget->getHeight() + }; + const float_t rootScale = 1.0f; // Get the quads for each component - auto itComponents = components.begin(); + auto itComponents = elements.begin(); auto self = std::ref(*this); - while(itComponents != components.end()) { + while(itComponents != elements.end()) { auto component = *itComponents; - component->updateAlignment( - glm::vec2(0, 0), - glm::vec2(ctx.renderTarget->getWidth(), ctx.renderTarget->getHeight()), - 1.0f - ); + component->updateAlignment(rootPosition, rootSize, rootScale); component->getQuads(self); ++itComponents; } @@ -139,6 +139,6 @@ void UICanvas::flushPass() { textureBindings.clear(); } -void UICanvas::addComponent(std::shared_ptr component) { - components.push_back(component); +void UICanvas::addElement(std::shared_ptr element) { + elements.push_back(element); } \ No newline at end of file diff --git a/src/dawn/component/ui/UICanvas.hpp b/src/dawn/component/ui/UICanvas.hpp index cf6fa812..fb24afd5 100644 --- a/src/dawn/component/ui/UICanvas.hpp +++ b/src/dawn/component/ui/UICanvas.hpp @@ -9,7 +9,7 @@ #include "display/shader/UIShader.hpp" namespace Dawn { - class UIComponent; + class UIElement; class UICanvas : public SceneComponent, @@ -18,7 +18,7 @@ namespace Dawn { private: std::shared_ptr mesh; UIShaderData data; - std::vector> components; + std::vector> elements; size_t quadCount = 0; shadertexturebinding_t nextBinding = 0; @@ -68,6 +68,6 @@ namespace Dawn { * * @param component The component to add. */ - void addComponent(std::shared_ptr component); + void addElement(std::shared_ptr component); }; } \ No newline at end of file diff --git a/src/dawn/ui/CMakeLists.txt b/src/dawn/ui/CMakeLists.txt index 8e1f7db0..64c2cdb6 100644 --- a/src/dawn/ui/CMakeLists.txt +++ b/src/dawn/ui/CMakeLists.txt @@ -5,7 +5,12 @@ target_sources(${DAWN_TARGET_NAME} PRIVATE - UIComponent.cpp + UIAlignableElement.cpp + UIElement.cpp UIRectangle.cpp UILabel.cpp -) \ No newline at end of file + UIMenu.cpp +) + +# Subdirs +add_subdirectory(container) \ No newline at end of file diff --git a/src/dawn/ui/UIComponent.cpp b/src/dawn/ui/UIAlignableElement.cpp similarity index 90% rename from src/dawn/ui/UIComponent.cpp rename to src/dawn/ui/UIAlignableElement.cpp index 53b9e737..560d2608 100644 --- a/src/dawn/ui/UIComponent.cpp +++ b/src/dawn/ui/UIAlignableElement.cpp @@ -3,12 +3,11 @@ // This software is released under the MIT License. // https://opensource.org/licenses/MIT -#include "UIComponent.hpp" -#include "assert/assert.hpp" +#include "UIAlignableElement.hpp" using namespace Dawn; -UIComponent::UIComponent() { +UIAlignableElement::UIAlignableElement() { alignUnit[0] = UIAlignmentUnit::SCALE; alignUnit[1] = UIAlignmentUnit::SCALE; alignUnit[2] = UIAlignmentUnit::SCALE; @@ -18,7 +17,7 @@ UIComponent::UIComponent() { }; } -void UIComponent::updateAlignment( +void UIAlignableElement::updateSelfAlignment( const glm::vec2 pPos, const glm::vec2 pSize, const float_t canvasScale @@ -180,18 +179,20 @@ void UIComponent::updateAlignment( ); } + this->position += pPos; this->eventAlignmentUpdated(position, size); } -std::vector> UIComponent::getChildren() { - return {}; -} - -void UIComponent::getQuads(UICanvas &ctx) { - this->getSelfQuads(ctx); +void UIAlignableElement::updateAlignment( + const glm::vec2 pPos, + const glm::vec2 pSize, + const float_t canvasScale +) { + this->updateSelfAlignment(pPos, pSize, canvasScale); + // Now update children alignment auto children = getChildren(); for(auto &c : children) { - c->getQuads(ctx); + c->updateAlignment(this->position, this->size, canvasScale); } } \ No newline at end of file diff --git a/src/dawn/ui/UIAlignableElement.hpp b/src/dawn/ui/UIAlignableElement.hpp new file mode 100644 index 00000000..2df54df0 --- /dev/null +++ b/src/dawn/ui/UIAlignableElement.hpp @@ -0,0 +1,64 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "ui/UIElement.hpp" + +namespace Dawn { + enum class UIAlignmentType { + START, + MIDDLE, + END, + STRETCH + }; + + enum class UIAlignmentUnit { + PIXEL, + SCALE, + PERCENT, + RATIO + }; + + class UIAlignableElement : public UIElement { + protected: + glm::vec2 position; + glm::vec2 size; + + /** + * Updates the alignment of this element ONLY. + * + * @param parentPosition The position of the parent. + * @param parentSize The size of the parent. + * @param canvasScale The scale of the canvas. + */ + virtual void updateSelfAlignment( + const glm::vec2 parentPosition, + const glm::vec2 parentSize, + const float_t canvasScale + ); + + public: + // Primary alignment controls + glm::vec4 align = glm::vec4(0, 0, 0, 0); + enum UIAlignmentType alignX = UIAlignmentType::STRETCH; + enum UIAlignmentType alignY = UIAlignmentType::STRETCH; + enum UIAlignmentUnit alignUnit[4]; + + std::function< + void(const glm::vec2, const glm::vec2) + > eventAlignmentUpdated; + + /** + * Constructor for the UIAlignableElement. + */ + UIAlignableElement(); + + void updateAlignment( + const glm::vec2 parentPosition, + const glm::vec2 parentSize, + const float_t canvasScale + ) override; + }; +} \ No newline at end of file diff --git a/src/dawn/ui/UIElement.cpp b/src/dawn/ui/UIElement.cpp new file mode 100644 index 00000000..522f3d66 --- /dev/null +++ b/src/dawn/ui/UIElement.cpp @@ -0,0 +1,37 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "UIElement.hpp" +#include "assert/assert.hpp" + +using namespace Dawn; + +std::vector> UIElement::getChildren() { + return {}; +} + +void UIElement::getSelfQuads(UICanvas &ctx) { + //Do nothing +} + +void UIElement::getQuads(UICanvas &ctx) { + this->getSelfQuads(ctx); + + auto children = getChildren(); + for(auto &c : children) { + c->getQuads(ctx); + } +} + +void UIElement::updateAlignment( + const glm::vec2 parentPosition, + const glm::vec2 parentSize, + const float_t canvasScale +) { + auto children = getChildren(); + for(auto &c : children) { + c->updateAlignment(parentPosition, parentSize, canvasScale); + } +} \ No newline at end of file diff --git a/src/dawn/ui/UIComponent.hpp b/src/dawn/ui/UIElement.hpp similarity index 50% rename from src/dawn/ui/UIComponent.hpp rename to src/dawn/ui/UIElement.hpp index 64ed7f2d..4212ece3 100644 --- a/src/dawn/ui/UIComponent.hpp +++ b/src/dawn/ui/UIElement.hpp @@ -8,66 +8,23 @@ #include "component/ui/UICanvas.hpp" namespace Dawn { - enum class UIAlignmentType { - START, - MIDDLE, - END, - STRETCH - }; - - enum class UIAlignmentUnit { - PIXEL, - SCALE, - PERCENT, - RATIO - }; - - class UIComponent { + class UIElement { protected: - glm::vec2 position; - glm::vec2 size; - /** - * Virtual method overridden by the UIComponent to get the quads for the + * Virtual method overridden by the UIElement to get the quads for the * component. * * @param alignment The alignment of this component. * @param ctx The canvas to add the quads to. */ - virtual void getSelfQuads(UICanvas &ctx) = 0; - - /** - * Updates the alignment of this component based on the parent. - * - * @param parentPosition The position of the parent. - * @param parentSize The size of the parent. - */ - void updateAlignment( - const glm::vec2 parentPosition, - const glm::vec2 parentSize, - const float_t canvasScale - ); + virtual void getSelfQuads(UICanvas &ctx); public: - glm::vec4 align = glm::vec4(0, 0, 32, 32); - enum UIAlignmentType alignX = UIAlignmentType::START; - enum UIAlignmentType alignY = UIAlignmentType::START; - enum UIAlignmentUnit alignUnit[4]; - - std::function< - void(const glm::vec2, const glm::vec2) - > eventAlignmentUpdated; - /** - * Instantiates a new UIComponent. - */ - UIComponent(); - - /** - * Virtual method overridden by the UIComponent to get the children of + * Virtual method overridden by the UIElement to get the children of * this component. */ - virtual std::vector> getChildren(); + virtual std::vector> getChildren(); /** * Method called by the UICanvas to get the quads for this component. @@ -76,6 +33,18 @@ namespace Dawn { */ void getQuads(UICanvas &ctx); - friend class UICanvas; + /** + * Updates the alignment of this component based on the parent. Typically + * left to the UIAlignableElement to implement, default implementation + * does nothing but invoke children. + * + * @param parentPosition The position of the parent. + * @param parentSize The size of the parent. + */ + virtual void updateAlignment( + const glm::vec2 parentPosition, + const glm::vec2 parentSize, + const float_t canvasScale + ); }; } \ No newline at end of file diff --git a/src/dawn/ui/UILabel.cpp b/src/dawn/ui/UILabel.cpp index 584a4de6..4d91d55b 100644 --- a/src/dawn/ui/UILabel.cpp +++ b/src/dawn/ui/UILabel.cpp @@ -75,7 +75,7 @@ void UILabel::getSelfQuads(UICanvas &ctx) { info.quad.z, info.quad.w }, - COLOR_WHITE, + this->color, UIShaderQuadStyle::FONT, texture->texture ); diff --git a/src/dawn/ui/UILabel.hpp b/src/dawn/ui/UILabel.hpp index dcfb3f56..561f8705 100644 --- a/src/dawn/ui/UILabel.hpp +++ b/src/dawn/ui/UILabel.hpp @@ -4,11 +4,11 @@ // https://opensource.org/licenses/MIT #pragma once -#include "ui/UIComponent.hpp" +#include "ui/UIAlignableElement.hpp" #include "display/font/TrueTypeTexture.hpp" namespace Dawn { - class UILabel final : public UIComponent { + class UILabel final : public UIAlignableElement { private: std::shared_ptr texture = nullptr; std::wstring text = L"Hello World"; @@ -18,6 +18,7 @@ namespace Dawn { public: bool_t wordWrap = true; + struct Color color = COLOR_WHITE; /** * Returns the font used for this label. diff --git a/src/dawn/ui/UIMenu.cpp b/src/dawn/ui/UIMenu.cpp new file mode 100644 index 00000000..58fadbc3 --- /dev/null +++ b/src/dawn/ui/UIMenu.cpp @@ -0,0 +1,54 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "UIMenu.hpp" + +using namespace Dawn; + +std::vector> UIMenu::getChildren() { + return children; +} + +void UIMenu::setPosition(int32_t x, int32_t y) { + assertTrue(x >= 0, "X position must be greater than or equal to 0."); + assertTrue(y >= 0, "Y position must be greater than or equal to 0."); + assertTrue(x < columns, "X must be less than the number of columns."); + assertTrue(y < rows, "Y must be less than the number of rows."); + + if(this->x == x && this->y == y) return; + + this->x = x; + this->y = y; + + eventPositionChanged.emit(x, y); +} + +void UIMenu::setSize(int32_t columns, int32_t rows) { + assertTrue(columns > 0, "Columns must be greater than 0."); + assertTrue(rows > 0, "Rows must be greater than 0."); + assertTrue(columns > x, "Columns must be greater than current x position."); + assertTrue(rows > y, "Rows must be greater than current y position."); + + if(this->columns == columns && this->rows == rows) return; + + this->columns = columns; + this->rows = rows; +} + +int32_t UIMenu::getX() { + return x; +} + +int32_t UIMenu::getY() { + return y; +} + +int32_t UIMenu::getColumns() { + return columns; +} + +int32_t UIMenu::getRows() { + return rows; +} \ No newline at end of file diff --git a/src/dawn/ui/UIMenu.hpp b/src/dawn/ui/UIMenu.hpp new file mode 100644 index 00000000..5a424f0a --- /dev/null +++ b/src/dawn/ui/UIMenu.hpp @@ -0,0 +1,67 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "ui/UIElement.hpp" + +namespace Dawn { + class UIMenu final : public UIElement { + private: + int32_t x = 0; + int32_t y = 0; + int32_t columns = 1; + int32_t rows = 1; + + public: + Event eventPositionChanged; + std::vector> children; + + std::vector> getChildren() override; + + /** + * Sets the position of this menu. + * + * @param x The x position of this menu. + * @param y The y position of this menu. + */ + void setPosition(int32_t x, int32_t y); + + /** + * Sets the size of this menu. + * + * @param columns The number of columns in this menu. + * @param rows The number of rows in this menu. + */ + void setSize(int32_t columns, int32_t rows); + + /** + * Gets the x position of this menu. + * + * @return The x position of this menu. + */ + int32_t getX(); + + /** + * Gets the y position of this menu. + * + * @return The y position of this menu. + */ + int32_t getY(); + + /** + * Gets the number of columns in this menu. + * + * @return The number of columns in this menu. + */ + int32_t getColumns(); + + /** + * Gets the number of rows in this menu. + * + * @return The number of rows in this menu. + */ + int32_t getRows(); + }; +} \ No newline at end of file diff --git a/src/dawn/ui/UIRectangle.hpp b/src/dawn/ui/UIRectangle.hpp index 942a15b8..73cc1587 100644 --- a/src/dawn/ui/UIRectangle.hpp +++ b/src/dawn/ui/UIRectangle.hpp @@ -4,10 +4,10 @@ // https://opensource.org/licenses/MIT #pragma once -#include "ui/UIComponent.hpp" +#include "ui/UIAlignableElement.hpp" namespace Dawn { - class UIRectangle final : public UIComponent { + class UIRectangle final : public UIAlignableElement { protected: void getSelfQuads(UICanvas &ctx) override; diff --git a/src/dawn/ui/container/CMakeLists.txt b/src/dawn/ui/container/CMakeLists.txt new file mode 100644 index 00000000..379ae1c0 --- /dev/null +++ b/src/dawn/ui/container/CMakeLists.txt @@ -0,0 +1,10 @@ +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +target_sources(${DAWN_TARGET_NAME} + PRIVATE + UIGroupContainer.cpp + UIRowContainer.cpp +) \ No newline at end of file diff --git a/src/dawn/ui/UIAlign.hpp b/src/dawn/ui/container/UIContainer.hpp similarity index 61% rename from src/dawn/ui/UIAlign.hpp rename to src/dawn/ui/container/UIContainer.hpp index e3a8de5c..3e06b232 100644 --- a/src/dawn/ui/UIAlign.hpp +++ b/src/dawn/ui/container/UIContainer.hpp @@ -4,10 +4,11 @@ // https://opensource.org/licenses/MIT #pragma once -#include "dawnlibs.hpp" +#include "ui/UIAlignableElement.hpp" namespace Dawn { - struct UIAlign { - glm::vec2 position; + class UIContainer : public UIAlignableElement { + public: + }; } \ No newline at end of file diff --git a/src/dawn/ui/container/UIGroupContainer.cpp b/src/dawn/ui/container/UIGroupContainer.cpp new file mode 100644 index 00000000..22e48f44 --- /dev/null +++ b/src/dawn/ui/container/UIGroupContainer.cpp @@ -0,0 +1,28 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "UIGroupContainer.hpp" + +using namespace Dawn; + +std::vector> UIGroupContainer::getChildren() { + return this->children; +} + +void UIGroupContainer::appendChild(std::shared_ptr child) { + assertNotNull(child, "Cannot append a null child!"); + this->children.push_back(child); +} + +void UIGroupContainer::removeChild(std::shared_ptr child) { + assertNotNull(child, "Cannot remove a null child!"); + auto it = std::find(this->children.begin(), this->children.end(), child); + if(it == this->children.end()) return; + this->children.erase(it); +} + +void UIGroupContainer::clearChildren() { + this->children.clear(); +} \ No newline at end of file diff --git a/src/dawn/ui/container/UIGroupContainer.hpp b/src/dawn/ui/container/UIGroupContainer.hpp new file mode 100644 index 00000000..a2a35407 --- /dev/null +++ b/src/dawn/ui/container/UIGroupContainer.hpp @@ -0,0 +1,36 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "ui/container/UIContainer.hpp" + +namespace Dawn { + class UIGroupContainer : public UIContainer { + private: + std::vector> children; + + public: + std::vector> getChildren() override; + + /** + * Appends a child to this container. + * + * @param child Child to append. + */ + void appendChild(std::shared_ptr child); + + /** + * Removes a child from this container. + * + * @param child Child to remove. + */ + void removeChild(std::shared_ptr child); + + /** + * Removes all children from this container. + */ + void clearChildren(); + }; +} \ No newline at end of file diff --git a/src/dawn/ui/container/UIRowContainer.cpp b/src/dawn/ui/container/UIRowContainer.cpp new file mode 100644 index 00000000..94686909 --- /dev/null +++ b/src/dawn/ui/container/UIRowContainer.cpp @@ -0,0 +1,56 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "assert/assert.hpp" +#include "UIRowContainer.hpp" + +using namespace Dawn; + +std::vector> UIRowContainer::getChildren() { + return this->children; +} + +void UIRowContainer::appendChild(std::shared_ptr child) { + assertNotNull(child, "Cannot append a null child!"); + this->children.push_back(child); +} + +void UIRowContainer::removeChild(std::shared_ptr child) { + assertNotNull(child, "Cannot remove a null child!"); + auto it = std::find(this->children.begin(), this->children.end(), child); + if(it == this->children.end()) return; + this->children.erase(it); +} + +void UIRowContainer::clearChildren() { + this->children.clear(); +} + +void UIRowContainer::updateAlignment( + const glm::vec2 parentPosition, + const glm::vec2 parentSize, + const float_t canvasScale +) { + this->updateSelfAlignment(parentPosition, parentSize, canvasScale); + + // Now we have our dimensions, divide evenly + auto children = this->getChildren(); + + float_t y = 0.0f; + float_t yPiece = this->size.y / (float_t)children.size(); + + // Update all children + for(auto &child : this->children) { + child->updateAlignment( + this->position + glm::vec2(0, y), + glm::vec2( + this->size.x, + yPiece + ), + canvasScale + ); + y += yPiece; + } +} \ No newline at end of file diff --git a/src/dawn/ui/container/UIRowContainer.hpp b/src/dawn/ui/container/UIRowContainer.hpp new file mode 100644 index 00000000..6196113d --- /dev/null +++ b/src/dawn/ui/container/UIRowContainer.hpp @@ -0,0 +1,42 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "ui/container/UIContainer.hpp" + +namespace Dawn { + class UIRowContainer final : public UIContainer { + private: + std::vector> children; + + public: + std::vector> getChildren() override; + + /** + * Appends a child to this container. + * + * @param child Child to append. + */ + void appendChild(std::shared_ptr child); + + /** + * Removes a child from this container. + * + * @param child Child to remove. + */ + void removeChild(std::shared_ptr child); + + /** + * Removes all children from this container. + */ + void clearChildren(); + + void updateAlignment( + const glm::vec2 parentPosition, + const glm::vec2 parentSize, + const float_t canvasScale + ) override; + }; +} \ No newline at end of file diff --git a/src/dawnhelloworld/scene/HelloWorldScene.cpp b/src/dawnhelloworld/scene/HelloWorldScene.cpp index 890f4505..6b2cc78a 100644 --- a/src/dawnhelloworld/scene/HelloWorldScene.cpp +++ b/src/dawnhelloworld/scene/HelloWorldScene.cpp @@ -14,6 +14,9 @@ #include "component/ui/UICanvas.hpp" #include "ui/UIRectangle.hpp" #include "ui/UILabel.hpp" +#include "ui/UIMenu.hpp" +#include "ui/container/UIRowContainer.hpp" +#include "ui/container/UIGroupContainer.hpp" #include #include FT_FREETYPE_H @@ -55,18 +58,40 @@ void Dawn::helloWorldScene(Scene &s) { auto uiCanvasItem = s.createSceneItem(); auto uiCanvas = uiCanvasItem->addComponent(); + auto container = std::make_shared(); + container->align = { 32, 32, 300, 250 }; + container->alignX = UIAlignmentType::START; + container->alignY = UIAlignmentType::START; + uiCanvas->addElement(container); + auto rect = std::make_shared(); rect->color = COLOR_MAGENTA; - rect->align = { 32, 32, 300, 250 }; - rect->alignX = UIAlignmentType::START; - rect->alignY = UIAlignmentType::START; - uiCanvas->addComponent(rect); + container->appendChild(rect); - auto label = std::make_shared(); - label->setText(L"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."); - label->setFont(texture); - label->align = { 32, 32, 300, 250 }; - label->alignX = UIAlignmentType::START; - label->alignY = UIAlignmentType::START; - uiCanvas->addComponent(label); + auto menu = std::make_shared(); + menu->setSize(1, 4); + container->appendChild(menu); + + auto rowContainer = std::make_shared(); + menu->children.push_back(rowContainer); + + auto label0 = std::make_shared(); + label0->setText(L"New Game"); + label0->setFont(texture); + rowContainer->appendChild(label0); + + auto label1 = std::make_shared(); + label1->setText(L"Load Game"); + label1->setFont(texture); + rowContainer->appendChild(label1); + + auto label2 = std::make_shared(); + label2->setText(L"Options"); + label2->setFont(texture); + rowContainer->appendChild(label2); + + auto label3 = std::make_shared(); + label3->setText(L"Exit"); + label3->setFont(texture); + rowContainer->appendChild(label3); } \ No newline at end of file