Grid Progress
This commit is contained in:
@ -11,6 +11,7 @@ target_sources(${DAWN_TARGET_NAME}
|
|||||||
UILabel.cpp
|
UILabel.cpp
|
||||||
UIImage.cpp
|
UIImage.cpp
|
||||||
UIBorder.cpp
|
UIBorder.cpp
|
||||||
|
UIGrid.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
add_subdirectory(menu)
|
add_subdirectory(menu)
|
@ -4,6 +4,7 @@
|
|||||||
// https://opensource.org/licenses/MIT
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
#include "UIComponent.hpp"
|
#include "UIComponent.hpp"
|
||||||
|
#include "UIGrid.hpp"
|
||||||
|
|
||||||
using namespace Dawn;
|
using namespace Dawn;
|
||||||
|
|
||||||
@ -32,11 +33,22 @@ void UIComponent::updateAlignment() {
|
|||||||
auto dimensional = this->getParentDimensional();
|
auto dimensional = this->getParentDimensional();
|
||||||
auto translate = this->transform->getLocalPosition();
|
auto translate = this->transform->getLocalPosition();
|
||||||
|
|
||||||
|
float_t parentWidth, parentHeight, parentX, parentY;
|
||||||
|
auto dimensionalAsGrid = dynamic_cast<UIGrid*>(dimensional);
|
||||||
|
if(dimensionalAsGrid != nullptr) {
|
||||||
|
std::cout << "TEST" << std::endl;
|
||||||
|
} else {
|
||||||
|
parentWidth = dimensional->getWidth();
|
||||||
|
parentHeight = dimensional->getHeight();
|
||||||
|
parentX = 0;
|
||||||
|
parentY = 0;
|
||||||
|
}
|
||||||
|
|
||||||
UIComponent::calculateDimensions(
|
UIComponent::calculateDimensions(
|
||||||
this->alignX,
|
this->alignX,
|
||||||
&translate.x,
|
&translate.x,
|
||||||
&this->width,
|
&this->width,
|
||||||
dimensional->getWidth(),
|
parentWidth,
|
||||||
this->getContentWidth(),
|
this->getContentWidth(),
|
||||||
glm::vec2(align[0], align[2])
|
glm::vec2(align[0], align[2])
|
||||||
);
|
);
|
||||||
@ -44,11 +56,14 @@ void UIComponent::updateAlignment() {
|
|||||||
this->alignY,
|
this->alignY,
|
||||||
&translate.y,
|
&translate.y,
|
||||||
&this->height,
|
&this->height,
|
||||||
dimensional->getHeight(),
|
parentHeight,
|
||||||
this->getContentHeight(),
|
this->getContentHeight(),
|
||||||
glm::vec2(align[1], align[3])
|
glm::vec2(align[1], align[3])
|
||||||
);
|
);
|
||||||
|
|
||||||
|
translate.x += parentX;
|
||||||
|
translate.y += parentY;
|
||||||
|
|
||||||
this->transform->setLocalPosition(translate);
|
this->transform->setLocalPosition(translate);
|
||||||
this->alignmentNeedsUpdating = false;
|
this->alignmentNeedsUpdating = false;
|
||||||
this->eventAlignmentUpdated.invoke();
|
this->eventAlignmentUpdated.invoke();
|
||||||
|
30
src/dawn/scene/components/ui/UIGrid.cpp
Normal file
30
src/dawn/scene/components/ui/UIGrid.cpp
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
// Copyright (c) 2023 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#include "UIGrid.hpp"
|
||||||
|
|
||||||
|
using namespace Dawn;
|
||||||
|
|
||||||
|
UIGrid::UIGrid(SceneItem *item) :
|
||||||
|
SceneItemComponent(item)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
float_t UIGrid::getWidth() {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
float_t UIGrid::getHeight() {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
float_t UIGrid::getContentWidth() {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
float_t UIGrid::getContentHeight() {
|
||||||
|
return 1;
|
||||||
|
}
|
22
src/dawn/scene/components/ui/UIGrid.hpp
Normal file
22
src/dawn/scene/components/ui/UIGrid.hpp
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
// Copyright (c) 2023 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "scene/SceneItemComponent.hpp"
|
||||||
|
#include "UICanvas.hpp"
|
||||||
|
|
||||||
|
namespace Dawn {
|
||||||
|
class UIGrid :
|
||||||
|
public SceneItemComponent,
|
||||||
|
public UIComponentDimensional
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
UIGrid(SceneItem *item);
|
||||||
|
float_t getWidth() override;
|
||||||
|
float_t getHeight() override;
|
||||||
|
float_t getContentWidth() override;
|
||||||
|
float_t getContentHeight() override;
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user