1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-23 17:13:38 +02:00
MLEM/MLEM.Ui/Elements/Element.cs

414 lines
15 KiB
C#
Raw Normal View History

2019-08-09 18:26:28 +02:00
using System;
using System.Collections.Generic;
2019-08-12 14:44:42 +02:00
using System.Diagnostics;
2019-08-09 18:26:28 +02:00
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
2019-08-10 18:41:56 +02:00
using Microsoft.Xna.Framework.Input;
2019-08-09 18:26:28 +02:00
using MLEM.Extensions;
using MLEM.Input;
2019-08-10 21:37:10 +02:00
using MLEM.Ui.Style;
2019-08-09 18:26:28 +02:00
namespace MLEM.Ui.Elements {
2019-08-09 19:28:48 +02:00
public abstract class Element {
2019-08-09 18:26:28 +02:00
2019-08-12 14:44:42 +02:00
protected readonly List<Element> Children = new List<Element>();
private readonly List<Element> sortedChildren = new List<Element>();
protected List<Element> SortedChildren {
get {
this.UpdateSortedChildrenIfDirty();
return this.sortedChildren;
}
}
2019-08-09 18:26:28 +02:00
private Anchor anchor;
2019-08-09 19:28:48 +02:00
private Vector2 size;
2019-08-09 18:26:28 +02:00
private Point offset;
2019-08-11 18:50:39 +02:00
public Point Padding;
public Point ScaledPadding => this.Padding.Multiply(this.Scale);
2019-08-09 19:28:48 +02:00
private Point childPadding;
2019-08-09 18:26:28 +02:00
public Anchor Anchor {
get => this.anchor;
set {
2019-08-10 15:12:27 +02:00
if (this.anchor == value)
return;
2019-08-09 18:26:28 +02:00
this.anchor = value;
2019-08-12 14:44:42 +02:00
this.SetAreaDirty();
2019-08-09 18:26:28 +02:00
}
}
2019-08-09 19:28:48 +02:00
public Vector2 Size {
2019-08-09 18:26:28 +02:00
get => this.size;
set {
2019-08-10 15:12:27 +02:00
if (this.size == value)
return;
2019-08-09 18:26:28 +02:00
this.size = value;
2019-08-12 14:44:42 +02:00
this.SetAreaDirty();
2019-08-09 18:26:28 +02:00
}
}
public Vector2 ScaledSize => this.size * this.Scale;
2019-08-09 18:26:28 +02:00
public Point PositionOffset {
get => this.offset;
set {
2019-08-10 15:12:27 +02:00
if (this.offset == value)
return;
2019-08-09 18:26:28 +02:00
this.offset = value;
2019-08-12 14:44:42 +02:00
this.SetAreaDirty();
2019-08-09 18:26:28 +02:00
}
}
public Point ScaledOffset => this.offset.Multiply(this.Scale);
2019-08-09 19:28:48 +02:00
public Point ChildPadding {
get => this.childPadding;
set {
2019-08-10 15:12:27 +02:00
if (this.childPadding == value)
return;
2019-08-09 19:28:48 +02:00
this.childPadding = value;
2019-08-12 14:44:42 +02:00
this.SetAreaDirty();
2019-08-09 19:28:48 +02:00
}
}
public Rectangle ChildPaddedArea {
get {
var padded = this.Area;
padded.Location += this.ScaledChildPadding;
padded.Width -= this.ScaledChildPadding.X * 2;
padded.Height -= this.ScaledChildPadding.Y * 2;
return padded;
}
}
public Point ScaledChildPadding => this.childPadding.Multiply(this.Scale);
2019-08-09 18:26:28 +02:00
public MouseClickCallback OnClicked;
2019-08-10 18:41:56 +02:00
public GenericCallback OnSelected;
public GenericCallback OnDeselected;
public MouseCallback OnMouseEnter;
public MouseCallback OnMouseExit;
2019-08-10 18:41:56 +02:00
public TextInputCallback OnTextInput;
2019-08-10 21:37:10 +02:00
private UiSystem system;
public UiSystem System {
get => this.system;
private set {
2019-08-10 21:37:10 +02:00
this.system = value;
if (this.system != null && !this.HasCustomStyle)
this.InitStyle(this.system.Style);
}
}
2019-08-10 18:41:56 +02:00
protected InputHandler Input => this.System.InputHandler;
public RootElement Root { get; private set; }
public float Scale => this.Root.ActualScale;
2019-08-13 16:02:29 +02:00
public Point MousePos => this.Input.MousePosition;
2019-08-09 18:26:28 +02:00
public Element Parent { get; private set; }
public bool IsMouseOver { get; private set; }
2019-08-10 18:41:56 +02:00
public bool IsSelected { get; private set; }
2019-08-09 22:23:16 +02:00
private bool isHidden;
public bool IsHidden {
get => this.isHidden;
set {
2019-08-10 15:12:27 +02:00
if (this.isHidden == value)
return;
2019-08-09 22:23:16 +02:00
this.isHidden = value;
2019-08-12 14:44:42 +02:00
this.SetAreaDirty();
2019-08-09 22:23:16 +02:00
}
}
public bool IgnoresMouse;
2019-08-10 13:42:18 +02:00
public float DrawAlpha = 1;
2019-08-10 21:37:10 +02:00
public bool HasCustomStyle;
2019-08-11 18:50:39 +02:00
public bool SetHeightBasedOnChildren;
2019-08-09 18:26:28 +02:00
private Rectangle area;
public Rectangle Area {
get {
this.UpdateAreaIfDirty();
return this.area;
}
}
public Rectangle DisplayArea {
get {
var padded = this.Area;
padded.Location += this.ScaledPadding;
padded.Width -= this.ScaledPadding.X * 2;
padded.Height -= this.ScaledPadding.Y * 2;
2019-08-09 18:26:28 +02:00
return padded;
}
}
2019-08-12 14:44:42 +02:00
private int priority;
public int Priority {
get => this.priority;
set {
this.priority = value;
if (this.Parent != null)
this.Parent.SetSortedChildrenDirty();
}
}
2019-08-09 19:28:48 +02:00
private bool areaDirty;
2019-08-12 14:44:42 +02:00
private bool sortedChildrenDirty;
2019-08-09 18:26:28 +02:00
public Element(Anchor anchor, Vector2 size) {
2019-08-09 18:26:28 +02:00
this.anchor = anchor;
this.size = size;
this.OnMouseEnter += element => this.IsMouseOver = true;
this.OnMouseExit += element => this.IsMouseOver = false;
2019-08-10 18:41:56 +02:00
this.OnSelected += element => this.IsSelected = true;
this.OnDeselected += element => this.IsSelected = false;
2019-08-12 14:44:42 +02:00
this.SetAreaDirty();
2019-08-09 18:26:28 +02:00
}
public T AddChild<T>(T element, int index = -1, bool propagateInfo = true) where T : Element {
2019-08-12 14:44:42 +02:00
if (index < 0 || index > this.Children.Count)
index = this.Children.Count;
this.Children.Insert(index, element);
if (propagateInfo) {
element.Parent = this;
element.PropagateRoot(this.Root);
element.PropagateUiSystem(this.System);
}
2019-08-12 14:44:42 +02:00
this.SetSortedChildrenDirty();
this.SetAreaDirty();
2019-08-09 22:23:16 +02:00
return element;
2019-08-09 18:26:28 +02:00
}
public void RemoveChild(Element element, bool propagateInfo = true) {
2019-08-12 14:44:42 +02:00
this.Children.Remove(element);
if (propagateInfo) {
element.Parent = null;
element.PropagateRoot(null);
element.PropagateUiSystem(null);
}
2019-08-12 14:44:42 +02:00
this.SetSortedChildrenDirty();
this.SetAreaDirty();
2019-08-09 18:26:28 +02:00
}
2019-08-09 22:23:16 +02:00
public void MoveToFront() {
if (this.Parent != null) {
this.Parent.RemoveChild(this, false);
this.Parent.AddChild(this, -1, false);
2019-08-09 22:23:16 +02:00
}
}
public void MoveToBack() {
if (this.Parent != null) {
this.Parent.RemoveChild(this, false);
this.Parent.AddChild(this, 0, false);
2019-08-09 22:23:16 +02:00
}
}
2019-08-12 14:44:42 +02:00
public void SetAreaDirty() {
2019-08-09 19:28:48 +02:00
this.areaDirty = true;
2019-08-10 15:12:27 +02:00
if (this.Anchor >= Anchor.AutoLeft && this.Parent != null)
2019-08-12 14:44:42 +02:00
this.Parent.SetAreaDirty();
}
public void SetSortedChildrenDirty() {
this.sortedChildrenDirty = true;
}
public void UpdateSortedChildrenIfDirty() {
if (this.sortedChildrenDirty) {
this.sortedChildrenDirty = false;
this.sortedChildren.Clear();
this.sortedChildren.AddRange(this.Children);
this.sortedChildren.Sort((e1, e2) => e1.Priority.CompareTo(e1.Priority));
}
2019-08-09 18:26:28 +02:00
}
public void UpdateAreaIfDirty() {
2019-08-09 19:28:48 +02:00
if (this.areaDirty)
2019-08-09 18:26:28 +02:00
this.ForceUpdateArea();
}
2019-08-09 19:28:48 +02:00
public virtual void ForceUpdateArea() {
this.areaDirty = false;
2019-08-09 18:26:28 +02:00
var parentArea = this.Parent != null ? this.Parent.ChildPaddedArea : this.system.Viewport;
2019-08-09 18:26:28 +02:00
var parentCenterX = parentArea.X + parentArea.Width / 2;
var parentCenterY = parentArea.Y + parentArea.Height / 2;
2019-08-09 19:28:48 +02:00
var actualSize = this.CalcActualSize(parentArea);
2019-08-09 18:26:28 +02:00
var pos = new Point();
switch (this.anchor) {
case Anchor.TopLeft:
case Anchor.AutoLeft:
case Anchor.AutoInline:
case Anchor.AutoInlineIgnoreOverflow:
pos.X = parentArea.X + this.ScaledOffset.X;
pos.Y = parentArea.Y + this.ScaledOffset.Y;
2019-08-09 18:26:28 +02:00
break;
case Anchor.TopCenter:
case Anchor.AutoCenter:
pos.X = parentCenterX - actualSize.X / 2 + this.ScaledOffset.X;
pos.Y = parentArea.Y + this.ScaledOffset.Y;
2019-08-09 18:26:28 +02:00
break;
case Anchor.TopRight:
case Anchor.AutoRight:
pos.X = parentArea.Right - actualSize.X - this.ScaledOffset.X;
pos.Y = parentArea.Y + this.ScaledOffset.Y;
2019-08-09 18:26:28 +02:00
break;
case Anchor.CenterLeft:
pos.X = parentArea.X + this.ScaledOffset.X;
pos.Y = parentCenterY - actualSize.Y / 2 + this.ScaledOffset.Y;
2019-08-09 18:26:28 +02:00
break;
case Anchor.Center:
pos.X = parentCenterX - actualSize.X / 2 + this.ScaledOffset.X;
pos.Y = parentCenterY - actualSize.Y / 2 + this.ScaledOffset.Y;
2019-08-09 18:26:28 +02:00
break;
case Anchor.CenterRight:
pos.X = parentArea.Right - actualSize.X - this.ScaledOffset.X;
pos.Y = parentCenterY - actualSize.Y / 2 + this.ScaledOffset.Y;
2019-08-09 18:26:28 +02:00
break;
case Anchor.BottomLeft:
pos.X = parentArea.X + this.ScaledOffset.X;
pos.Y = parentArea.Bottom - actualSize.Y - this.ScaledOffset.Y;
2019-08-09 18:26:28 +02:00
break;
case Anchor.BottomCenter:
pos.X = parentCenterX - actualSize.X / 2 + this.ScaledOffset.X;
pos.Y = parentArea.Bottom - actualSize.Y - this.ScaledOffset.Y;
2019-08-09 18:26:28 +02:00
break;
case Anchor.BottomRight:
pos.X = parentArea.Right - actualSize.X - this.ScaledOffset.X;
pos.Y = parentArea.Bottom - actualSize.Y - this.ScaledOffset.Y;
2019-08-09 18:26:28 +02:00
break;
}
if (this.Anchor >= Anchor.AutoLeft) {
2019-08-09 22:23:16 +02:00
var previousChild = this.GetPreviousChild(false);
2019-08-09 18:26:28 +02:00
if (previousChild != null) {
var prevArea = previousChild.Area;
switch (this.Anchor) {
case Anchor.AutoLeft:
case Anchor.AutoCenter:
case Anchor.AutoRight:
pos.Y = prevArea.Bottom + this.ScaledOffset.Y;
2019-08-09 18:26:28 +02:00
break;
case Anchor.AutoInline:
var newX = prevArea.Right + this.ScaledOffset.X;
2019-08-09 18:26:28 +02:00
if (newX + actualSize.X <= parentArea.Right) {
pos.X = newX;
pos.Y = prevArea.Y;
} else {
pos.Y = prevArea.Bottom + this.ScaledOffset.Y;
2019-08-09 18:26:28 +02:00
}
break;
case Anchor.AutoInlineIgnoreOverflow:
pos.X = prevArea.Right + this.ScaledOffset.X;
2019-08-09 18:26:28 +02:00
pos.Y = prevArea.Y;
break;
}
}
}
this.area = new Rectangle(pos, actualSize);
2019-08-12 14:44:42 +02:00
foreach (var child in this.Children)
2019-08-09 18:26:28 +02:00
child.ForceUpdateArea();
2019-08-11 18:50:39 +02:00
if (this.SetHeightBasedOnChildren) {
var height = 0;
2019-08-12 14:44:42 +02:00
foreach (var child in this.Children) {
2019-08-11 18:50:39 +02:00
if (!child.isHidden && (child.Anchor <= Anchor.TopRight || child.Anchor >= Anchor.AutoLeft) && child.area.Bottom > height)
height = child.area.Bottom;
}
var newHeight = (height - pos.Y + this.ScaledChildPadding.Y) / this.Scale;
2019-08-11 18:50:39 +02:00
if (newHeight != this.size.Y) {
this.size.Y = newHeight;
if (this.Anchor > Anchor.TopRight)
this.ForceUpdateArea();
2019-08-11 18:50:39 +02:00
}
}
2019-08-09 18:26:28 +02:00
}
2019-08-09 19:28:48 +02:00
protected virtual Point CalcActualSize(Rectangle parentArea) {
return new Point(
(this.size.X > 1 ? this.ScaledSize.X : parentArea.Width * this.size.X).Floor(),
(this.size.Y > 1 ? this.ScaledSize.Y : parentArea.Height * this.size.Y).Floor());
2019-08-09 18:26:28 +02:00
}
2019-08-09 22:23:16 +02:00
protected Element GetPreviousChild(bool hiddenAlso) {
2019-08-09 18:26:28 +02:00
if (this.Parent == null)
return null;
Element lastChild = null;
2019-08-12 14:44:42 +02:00
foreach (var child in this.Parent.Children) {
2019-08-09 22:23:16 +02:00
if (!hiddenAlso && child.IsHidden)
continue;
2019-08-09 18:26:28 +02:00
if (child == this)
break;
lastChild = child;
}
return lastChild;
}
protected IEnumerable<Element> GetSiblings(bool hiddenAlso) {
if (this.Parent == null)
yield break;
foreach (var child in this.Parent.Children) {
if (!hiddenAlso && child.IsHidden)
continue;
if (child != this)
yield return child;
}
}
2019-08-09 19:28:48 +02:00
public virtual void Update(GameTime time) {
2019-08-12 14:44:42 +02:00
foreach (var child in this.SortedChildren)
2019-08-09 18:26:28 +02:00
child.Update(time);
}
public virtual void Draw(GameTime time, SpriteBatch batch, float alpha, Point offset) {
2019-08-12 14:44:42 +02:00
foreach (var child in this.SortedChildren) {
2019-08-09 19:39:51 +02:00
if (!child.IsHidden)
child.Draw(time, batch, alpha * child.DrawAlpha, offset);
2019-08-09 19:39:51 +02:00
}
2019-08-09 19:28:48 +02:00
}
public virtual void DrawUnbound(GameTime time, SpriteBatch batch, float alpha, BlendState blendState = null, SamplerState samplerState = null) {
2019-08-12 14:44:42 +02:00
foreach (var child in this.SortedChildren) {
2019-08-09 19:39:51 +02:00
if (!child.IsHidden)
child.DrawUnbound(time, batch, alpha * child.DrawAlpha, blendState, samplerState);
2019-08-09 19:39:51 +02:00
}
2019-08-09 19:28:48 +02:00
}
2019-08-09 18:26:28 +02:00
public Element GetMousedElement() {
if (this.IsHidden || this.IgnoresMouse)
return null;
if (!this.Area.Contains(this.MousePos))
return null;
2019-08-12 14:44:42 +02:00
for (var i = this.SortedChildren.Count - 1; i >= 0; i--) {
var element = this.SortedChildren[i].GetMousedElement();
if (element != null)
return element;
}
return this;
}
2019-08-10 21:37:10 +02:00
protected virtual void InitStyle(UiStyle style) {
}
public delegate void MouseClickCallback(Element element, MouseButton button);
public delegate void MouseCallback(Element element);
2019-08-10 18:41:56 +02:00
public delegate void TextInputCallback(Element element, Keys key, char character);
public delegate void GenericCallback(Element element);
2019-08-10 21:37:10 +02:00
internal void PropagateUiSystem(UiSystem system) {
2019-08-10 18:41:56 +02:00
this.System = system;
2019-08-12 14:44:42 +02:00
foreach (var child in this.Children)
2019-08-10 21:37:10 +02:00
child.PropagateUiSystem(system);
2019-08-10 18:41:56 +02:00
}
internal void PropagateRoot(RootElement root) {
this.Root = root;
2019-08-12 14:44:42 +02:00
foreach (var child in this.Children)
child.PropagateRoot(root);
}
2019-08-10 18:41:56 +02:00
internal void PropagateInput(Keys key, char character) {
this.OnTextInput?.Invoke(this, key, character);
2019-08-12 14:44:42 +02:00
foreach (var child in this.Children)
2019-08-10 18:41:56 +02:00
child.PropagateInput(key, character);
}
2019-08-09 18:26:28 +02:00
}
}