diff --git a/src/dawn/scene/components/ui/UICanvas.hpp b/src/dawn/scene/components/ui/UICanvas.hpp index 1b23cf67..bbba0ac5 100644 --- a/src/dawn/scene/components/ui/UICanvas.hpp +++ b/src/dawn/scene/components/ui/UICanvas.hpp @@ -11,9 +11,32 @@ namespace Dawn { class UIComponentDimensional { public: + /** + * Returns the width of this dimensional UI item. + * + * @return Width of this item. + */ virtual float_t getWidth() = 0; + + /** + * Returns the height of this dimensional UI item. + * + * @return Height of this item. + */ virtual float_t getHeight() = 0; + + /** + * Returns the content width of this dimensional UI item. + * + * @return Content width of this item. + */ virtual float_t getContentWidth() = 0; + + /** + * Returns the content height of this dimensional UI item. + * + * @return Content height of this item. + */ virtual float_t getContentHeight() = 0; }; @@ -54,7 +77,6 @@ namespace Dawn { float_t getHeight() override; float_t getContentWidth() override; float_t getContentHeight() override; - void onStart() override; void onDispose() override; }; diff --git a/src/dawn/scene/components/ui/UIComponent.hpp b/src/dawn/scene/components/ui/UIComponent.hpp index 7c7d7173..d7fcdb7c 100644 --- a/src/dawn/scene/components/ui/UIComponent.hpp +++ b/src/dawn/scene/components/ui/UIComponent.hpp @@ -19,6 +19,15 @@ namespace Dawn { class UIComponentRenderable { public: + /** + * Implemented UI Components that have rendering should implement this and + * return their rendering items. Items are passed back to the render + * pipeline. + * + * @param projection Camera projection, obtained from the canvas. + * @param view Camera view, obtained from the canvas. + * @return A list of renderable shader pass items for this renderable. + */ virtual std::vector getPassItems( glm::mat4 projection, glm::mat4 view @@ -27,13 +36,22 @@ namespace Dawn { class UIComponent : public SceneItemComponent, public UIComponentDimensional { protected: - // Calculated (and cached) values float_t width = 1; float_t height = 1; StateEvent<> eventAlignmentUpdated; + + /** + * Simply returns this UI Components' dimensional parent, used for the + * alignment of this item. + * + * @return Pointer to the parent dimensional. + */ UIComponentDimensional * getParentDimensional(); + /** + * Internal method to update the alignment of this item. + */ void updateAlignment(); public: @@ -58,8 +76,6 @@ namespace Dawn { glm::vec2 alignment ); - // - StateProperty alignX; StateProperty alignY; StateProperty alignment; @@ -68,7 +84,6 @@ namespace Dawn { float_t getWidth() override; float_t getHeight() override; - void onStart() override; friend class UICanvas; diff --git a/src/dawn/scene/components/ui/UILabel.cpp b/src/dawn/scene/components/ui/UILabel.cpp index aa0ef1fb..23b5697c 100644 --- a/src/dawn/scene/components/ui/UILabel.cpp +++ b/src/dawn/scene/components/ui/UILabel.cpp @@ -30,8 +30,8 @@ void UILabel::updateMesh() { if(!this->hasText()) return; float_t width = this->maxWidth; - assertTrue(width == 0 || width == -1 || width > 0); - if(width == 0) { + assertTrue(width == UI_LABEL_MAX_WIDTH_NONE || width == UI_LABEL_MAX_WIDTH_ALIGN || width > 0); + if(width == UI_LABEL_MAX_WIDTH_ALIGN) { auto dimensional = this->getParentDimensional(); auto align = (glm::vec4)this->alignment; float_t x; diff --git a/src/dawn/scene/components/ui/UILabel.hpp b/src/dawn/scene/components/ui/UILabel.hpp index 37f54539..276fa3ad 100644 --- a/src/dawn/scene/components/ui/UILabel.hpp +++ b/src/dawn/scene/components/ui/UILabel.hpp @@ -16,7 +16,16 @@ namespace Dawn { bool_t needsRebuffering = true; Mesh mesh; + /** + * Returns true if the label contains renderable text. + * + * @return True if the label has text, otherwise false. + */ bool_t hasText(); + + /** + * Internally performs the mesh update. + */ void updateMesh(); public: