Improve UI

This commit is contained in:
MrLetsplay 2022-11-04 16:55:04 +01:00
parent 96eb91ff78
commit fd71242a42
4 changed files with 61 additions and 63 deletions

View File

@ -82,6 +82,52 @@ int UIElement::uiToScreen(UIValue val) {
return px; return px;
} }
int UIElement::offsetX(int w, Origin origin) {
switch(origin) {
case Origin::TOP_LEFT:
case Origin::BOTTOM_LEFT:
case Origin::LEFT_CENTER:
return 0;
case Origin::TOP_RIGHT:
case Origin::BOTTOM_RIGHT:
case Origin::RIGHT_CENTER:
return -w;
case Origin::TOP_CENTER:
case Origin::BOTTOM_CENTER:
case Origin::CENTER:
return -w / 2;
}
return 0;
}
int UIElement::offsetY(int h, Origin origin) {
switch(origin) {
case Origin::TOP_LEFT:
case Origin::TOP_CENTER:
case Origin::TOP_RIGHT:
return 0;
case Origin::BOTTOM_LEFT:
case Origin::BOTTOM_CENTER:
case Origin::BOTTOM_RIGHT:
return -h;
case Origin::LEFT_CENTER:
case Origin::RIGHT_CENTER:
case Origin::CENTER:
return -h / 2;
}
return 0;
}
UIBounds UIElement::offsetUIBounds(int w, int h, Origin origin) {
return UIBounds(offsetX(w, origin), offsetY(h, origin), w, h);
}
void UIElement::drawAll(UIPoint screenPos, glm::mat4 projection) { void UIElement::drawAll(UIPoint screenPos, glm::mat4 projection) {
if(!visible) return; if(!visible) return;
draw(screenPos, projection); draw(screenPos, projection);

View File

@ -6,52 +6,6 @@
namespace kek { namespace kek {
static inline int offsetX(int w, Origin origin) {
switch(origin) {
case Origin::TOP_LEFT:
case Origin::BOTTOM_LEFT:
case Origin::LEFT_CENTER:
return 0;
case Origin::TOP_RIGHT:
case Origin::BOTTOM_RIGHT:
case Origin::RIGHT_CENTER:
return -w;
case Origin::TOP_CENTER:
case Origin::BOTTOM_CENTER:
case Origin::CENTER:
return -w / 2;
}
return 0;
}
static inline int offsetY(int h, Origin origin) {
switch(origin) {
case Origin::TOP_LEFT:
case Origin::TOP_CENTER:
case Origin::TOP_RIGHT:
return 0;
case Origin::BOTTOM_LEFT:
case Origin::BOTTOM_CENTER:
case Origin::BOTTOM_RIGHT:
return -h;
case Origin::LEFT_CENTER:
case Origin::RIGHT_CENTER:
case Origin::CENTER:
return -h / 2;
}
return 0;
}
static inline UIBounds offsetUIBounds(int w, int h, Origin origin) {
return UIBounds(offsetX(w, origin), offsetY(h, origin), w, h);
}
TextElement::TextElement(UIValue x, UIValue y, Font *font): UIElement(x, y) { TextElement::TextElement(UIValue x, UIValue y, Font *font): UIElement(x, y) {
this->text = new TextObject(font, "Text"); this->text = new TextObject(font, "Text");
this->sizePixels = KEK_DEFAULT_FONT_SIZE_PIXELS; this->sizePixels = KEK_DEFAULT_FONT_SIZE_PIXELS;

View File

@ -41,23 +41,6 @@ enum class UIElementType {
GROUP GROUP
}; };
enum class TextMode {
// Draw with y as baseline, disables vertical offset from the origin position specified using setOrigin()
BASELINE,
// Draw from the set origin
ORIGIN
};
enum class TextBounds {
SMALLEST,
LINE
};
enum class SliderDirection {
HORIZONTAL,
VERTICAL
};
enum class Origin { enum class Origin {
TOP_LEFT, TOP_LEFT,
TOP_CENTER, TOP_CENTER,
@ -150,6 +133,9 @@ public:
protected: protected:
int uiToScreen(UIValue val); int uiToScreen(UIValue val);
static int offsetX(int w, Origin origin);
static int offsetY(int h, Origin origin);
static UIBounds offsetUIBounds(int w, int h, Origin origin);
public: public:
// Returns the bounds of the element relative to its origin // Returns the bounds of the element relative to its origin

View File

@ -16,6 +16,18 @@ class UIWindow: public UIElement {
}; };
enum class TextMode {
// Draw with y as baseline, disables vertical offset from the origin position specified using setOrigin()
BASELINE,
// Draw from the set origin
ORIGIN
};
enum class TextBounds {
SMALLEST,
LINE
};
class TextElement: public UIElement { class TextElement: public UIElement {
protected: protected: