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-18 18:32:34 +02:00
|
|
|
using System.Linq;
|
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;
|
2019-08-09 22:04:26 +02:00
|
|
|
using MLEM.Input;
|
2019-08-28 18:27:17 +02:00
|
|
|
using MLEM.Textures;
|
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-13 23:54:29 +02:00
|
|
|
private Vector2 offset;
|
2019-08-11 18:50:39 +02:00
|
|
|
public Point Padding;
|
2019-08-11 21:24:09 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2019-08-11 21:24:09 +02:00
|
|
|
public Vector2 ScaledSize => this.size * this.Scale;
|
2019-08-13 23:54:29 +02:00
|
|
|
public Vector2 PositionOffset {
|
2019-08-09 18:26:28 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2019-08-13 23:54:29 +02:00
|
|
|
public Point ScaledOffset => (this.offset * this.Scale).ToPoint();
|
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
|
|
|
}
|
|
|
|
}
|
2019-08-12 19:44:16 +02:00
|
|
|
public Rectangle ChildPaddedArea {
|
|
|
|
get {
|
2019-08-24 22:27:47 +02:00
|
|
|
var padded = this.UnscrolledArea;
|
2019-08-12 19:44:16 +02:00
|
|
|
padded.Location += this.ScaledChildPadding;
|
|
|
|
padded.Width -= this.ScaledChildPadding.X * 2;
|
|
|
|
padded.Height -= this.ScaledChildPadding.Y * 2;
|
|
|
|
return padded;
|
|
|
|
}
|
|
|
|
}
|
2019-08-11 21:24:09 +02:00
|
|
|
public Point ScaledChildPadding => this.childPadding.Multiply(this.Scale);
|
2019-08-20 21:35:53 +02:00
|
|
|
public Vector2 AddedDisplayOffset;
|
|
|
|
public Point ScaledDisplayOffset => (this.AddedDisplayOffset * this.Scale).ToPoint();
|
|
|
|
public Vector2 AddedDisplayScale;
|
|
|
|
public Point ScaledDisplayScale => (this.AddedDisplayScale * this.Scale).ToPoint();
|
2019-08-09 18:26:28 +02:00
|
|
|
|
2019-08-25 21:49:27 +02:00
|
|
|
public GenericCallback OnPressed;
|
|
|
|
public GenericCallback OnSecondaryPressed;
|
2019-08-10 18:41:56 +02:00
|
|
|
public GenericCallback OnSelected;
|
|
|
|
public GenericCallback OnDeselected;
|
2019-08-28 16:38:58 +02:00
|
|
|
public GenericCallback OnMouseEnter;
|
|
|
|
public GenericCallback OnMouseExit;
|
2019-08-10 18:41:56 +02:00
|
|
|
public TextInputCallback OnTextInput;
|
2019-08-24 12:40:20 +02:00
|
|
|
public GenericCallback OnAreaUpdated;
|
2019-08-28 18:58:05 +02:00
|
|
|
public OtherElementCallback OnMousedElementChanged;
|
|
|
|
public OtherElementCallback OnSelectedElementChanged;
|
2019-08-09 22:04:26 +02:00
|
|
|
|
2019-08-10 21:37:10 +02:00
|
|
|
private UiSystem system;
|
|
|
|
public UiSystem System {
|
|
|
|
get => this.system;
|
2019-08-28 18:58:05 +02:00
|
|
|
internal 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-28 16:38:58 +02:00
|
|
|
protected UiControls Controls => this.System.Controls;
|
2019-08-28 18:27:17 +02:00
|
|
|
protected InputHandler Input => this.Controls.Input;
|
2019-08-28 18:58:05 +02:00
|
|
|
public RootElement Root { get; internal set; }
|
2019-08-11 21:24:09 +02:00
|
|
|
public float Scale => this.Root.ActualScale;
|
2019-08-09 18:26:28 +02:00
|
|
|
public Element Parent { get; private set; }
|
2019-08-09 22:04:26 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2019-08-28 18:27:17 +02:00
|
|
|
public bool CanBeSelected = true;
|
|
|
|
public bool CanBeMoused = true;
|
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-23 22:23:10 +02:00
|
|
|
public bool CanAutoAnchorsAttach = true;
|
2019-08-09 18:26:28 +02:00
|
|
|
|
|
|
|
private Rectangle area;
|
2019-08-24 22:27:47 +02:00
|
|
|
public Rectangle UnscrolledArea {
|
2019-08-09 18:26:28 +02:00
|
|
|
get {
|
|
|
|
this.UpdateAreaIfDirty();
|
|
|
|
return this.area;
|
|
|
|
}
|
|
|
|
}
|
2019-08-24 22:27:47 +02:00
|
|
|
public Rectangle Area => this.UnscrolledArea.OffsetCopy(this.ScaledScrollOffset);
|
|
|
|
public Point ScrollOffset;
|
|
|
|
public Point ScaledScrollOffset => this.ScrollOffset.Multiply(this.Scale);
|
2019-08-09 18:26:28 +02:00
|
|
|
public Rectangle DisplayArea {
|
|
|
|
get {
|
|
|
|
var padded = this.Area;
|
2019-08-20 21:35:53 +02:00
|
|
|
padded.Inflate(this.ScaledDisplayScale.X, this.ScaledDisplayScale.Y);
|
|
|
|
padded.Location += this.ScaledPadding + this.ScaledDisplayOffset;
|
2019-08-11 21:24:09 +02:00
|
|
|
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-28 18:27:17 +02:00
|
|
|
public NinePatch SelectionIndicator;
|
2019-08-09 18:26:28 +02:00
|
|
|
|
2019-08-09 22:04:26 +02:00
|
|
|
public Element(Anchor anchor, Vector2 size) {
|
2019-08-09 18:26:28 +02:00
|
|
|
this.anchor = anchor;
|
|
|
|
this.size = size;
|
2019-08-09 22:04:26 +02:00
|
|
|
|
2019-08-11 18:02:21 +02:00
|
|
|
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-09 22:04:26 +02:00
|
|
|
|
2019-08-12 14:44:42 +02:00
|
|
|
this.SetAreaDirty();
|
2019-08-09 18:26:28 +02:00
|
|
|
}
|
|
|
|
|
2019-08-23 22:23:10 +02:00
|
|
|
public T AddChild<T>(T element, int index = -1) 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);
|
2019-08-23 22:23:10 +02:00
|
|
|
element.Parent = this;
|
2019-08-28 18:58:05 +02:00
|
|
|
element.Propagate(e => {
|
|
|
|
e.Root = this.Root;
|
|
|
|
e.System = 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
|
|
|
}
|
|
|
|
|
2019-08-23 22:23:10 +02:00
|
|
|
public void RemoveChild(Element element) {
|
2019-08-12 14:44:42 +02:00
|
|
|
this.Children.Remove(element);
|
2019-08-23 22:23:10 +02:00
|
|
|
element.Parent = null;
|
2019-08-28 18:58:05 +02:00
|
|
|
element.Propagate(e => {
|
|
|
|
e.Root = null;
|
|
|
|
e.System = null;
|
|
|
|
});
|
2019-08-12 14:44:42 +02:00
|
|
|
this.SetSortedChildrenDirty();
|
|
|
|
this.SetAreaDirty();
|
2019-08-09 18:26:28 +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);
|
2019-08-21 20:25:32 +02:00
|
|
|
this.sortedChildren.Sort((e1, e2) => e1.Priority.CompareTo(e2.Priority));
|
2019-08-12 14:44:42 +02:00
|
|
|
}
|
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-15 14:59:15 +02:00
|
|
|
if (this.IsHidden)
|
|
|
|
return;
|
2019-08-09 18:26:28 +02:00
|
|
|
|
2019-08-12 19:44:16 +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:
|
2019-08-11 21:24:09 +02:00
|
|
|
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:
|
2019-08-11 21:24:09 +02:00
|
|
|
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:
|
2019-08-11 21:24:09 +02:00
|
|
|
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:
|
2019-08-11 21:24:09 +02:00
|
|
|
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:
|
2019-08-11 21:24:09 +02:00
|
|
|
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:
|
2019-08-11 21:24:09 +02:00
|
|
|
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:
|
2019-08-11 21:24:09 +02:00
|
|
|
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:
|
2019-08-11 21:24:09 +02:00
|
|
|
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:
|
2019-08-11 21:24:09 +02:00
|
|
|
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-24 15:20:00 +02:00
|
|
|
Element previousChild;
|
|
|
|
if (this.Anchor == Anchor.AutoInline || this.Anchor == Anchor.AutoInlineIgnoreOverflow) {
|
|
|
|
previousChild = this.GetOlderSibling(false, false);
|
|
|
|
} else {
|
|
|
|
previousChild = this.GetLowestOlderSibling(false, false);
|
|
|
|
}
|
2019-08-09 18:26:28 +02:00
|
|
|
if (previousChild != null) {
|
2019-08-18 17:49:52 +02:00
|
|
|
var prevArea = previousChild.GetAreaForAutoAnchors();
|
2019-08-09 18:26:28 +02:00
|
|
|
switch (this.Anchor) {
|
|
|
|
case Anchor.AutoLeft:
|
|
|
|
case Anchor.AutoCenter:
|
|
|
|
case Anchor.AutoRight:
|
2019-08-11 21:24:09 +02:00
|
|
|
pos.Y = prevArea.Bottom + this.ScaledOffset.Y;
|
2019-08-09 18:26:28 +02:00
|
|
|
break;
|
|
|
|
case Anchor.AutoInline:
|
2019-08-11 21:24:09 +02:00
|
|
|
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 {
|
2019-08-11 21:24:09 +02:00
|
|
|
pos.Y = prevArea.Bottom + this.ScaledOffset.Y;
|
2019-08-09 18:26:28 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Anchor.AutoInlineIgnoreOverflow:
|
2019-08-11 21:24:09 +02:00
|
|
|
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-24 12:40:20 +02:00
|
|
|
this.OnAreaUpdated?.Invoke(this);
|
|
|
|
|
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
|
|
|
|
2019-08-20 23:04:21 +02:00
|
|
|
if (this.SetHeightBasedOnChildren && this.Children.Count > 0) {
|
2019-08-24 15:12:11 +02:00
|
|
|
var lowest = this.GetLowestChild(false, true);
|
2019-08-24 22:27:47 +02:00
|
|
|
var newHeight = (lowest.UnscrolledArea.Bottom - pos.Y + this.ScaledChildPadding.Y) / this.Scale;
|
2019-08-11 18:50:39 +02:00
|
|
|
if (newHeight != this.size.Y) {
|
|
|
|
this.size.Y = newHeight;
|
2019-08-11 21:57:16 +02:00
|
|
|
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(
|
2019-08-11 21:24:09 +02:00
|
|
|
(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-20 23:04:21 +02:00
|
|
|
protected virtual Rectangle GetAreaForAutoAnchors() {
|
2019-08-24 22:27:47 +02:00
|
|
|
return this.UnscrolledArea;
|
2019-08-18 17:49:52 +02:00
|
|
|
}
|
|
|
|
|
2019-08-24 15:12:11 +02:00
|
|
|
public Element GetLowestChild(bool hiddenAlso, bool unattachableAlso) {
|
2019-08-24 14:34:08 +02:00
|
|
|
Element lowest = null;
|
|
|
|
// the lowest child is expected to be towards the back, so search is usually faster if done backwards
|
|
|
|
for (var i = this.Children.Count - 1; i >= 0; i--) {
|
|
|
|
var child = this.Children[i];
|
2019-08-24 15:00:08 +02:00
|
|
|
if (!hiddenAlso && child.IsHidden || !unattachableAlso && !child.CanAutoAnchorsAttach)
|
2019-08-24 14:34:08 +02:00
|
|
|
continue;
|
|
|
|
if (child.Anchor > Anchor.TopRight && child.Anchor < Anchor.AutoLeft)
|
|
|
|
continue;
|
2019-08-24 22:27:47 +02:00
|
|
|
if (lowest == null || child.UnscrolledArea.Bottom > lowest.UnscrolledArea.Bottom)
|
2019-08-24 14:34:08 +02:00
|
|
|
lowest = child;
|
|
|
|
}
|
|
|
|
return lowest;
|
|
|
|
}
|
|
|
|
|
2019-08-24 15:12:11 +02:00
|
|
|
public Element GetLowestOlderSibling(bool hiddenAlso, bool unattachableAlso) {
|
2019-08-09 18:26:28 +02:00
|
|
|
if (this.Parent == null)
|
|
|
|
return null;
|
2019-08-24 15:12:11 +02:00
|
|
|
Element lowest = null;
|
2019-08-12 14:44:42 +02:00
|
|
|
foreach (var child in this.Parent.Children) {
|
2019-08-09 18:26:28 +02:00
|
|
|
if (child == this)
|
|
|
|
break;
|
2019-08-24 15:12:11 +02:00
|
|
|
if (!hiddenAlso && child.IsHidden || !unattachableAlso && !child.CanAutoAnchorsAttach)
|
|
|
|
continue;
|
2019-08-24 22:27:47 +02:00
|
|
|
if (lowest == null || child.UnscrolledArea.Bottom >= lowest.UnscrolledArea.Bottom)
|
2019-08-24 15:12:11 +02:00
|
|
|
lowest = child;
|
2019-08-09 18:26:28 +02:00
|
|
|
}
|
2019-08-24 15:12:11 +02:00
|
|
|
return lowest;
|
2019-08-09 18:26:28 +02:00
|
|
|
}
|
|
|
|
|
2019-08-24 15:20:00 +02:00
|
|
|
public Element GetOlderSibling(bool hiddenAlso, bool unattachableAlso) {
|
|
|
|
if (this.Parent == null)
|
|
|
|
return null;
|
|
|
|
Element older = null;
|
|
|
|
foreach (var child in this.Parent.Children) {
|
|
|
|
if (child == this)
|
|
|
|
break;
|
|
|
|
if (!hiddenAlso && child.IsHidden || !unattachableAlso && !child.CanAutoAnchorsAttach)
|
|
|
|
continue;
|
|
|
|
older = child;
|
|
|
|
}
|
|
|
|
return older;
|
|
|
|
}
|
|
|
|
|
2019-08-18 18:32:34 +02:00
|
|
|
public IEnumerable<Element> GetSiblings(bool hiddenAlso) {
|
2019-08-13 21:23:20 +02:00
|
|
|
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-18 18:32:34 +02:00
|
|
|
public IEnumerable<Element> GetChildren(Func<Element, bool> condition = null, bool regardChildrensChildren = false) {
|
|
|
|
foreach (var child in this.Children) {
|
|
|
|
if (regardChildrensChildren) {
|
|
|
|
foreach (var cc in child.GetChildren(condition, true))
|
|
|
|
yield return cc;
|
|
|
|
}
|
2019-08-20 21:35:53 +02:00
|
|
|
if (condition == null || condition(child))
|
|
|
|
yield return child;
|
2019-08-18 18:32:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public IEnumerable<T> GetChildren<T>(Func<T, bool> condition = null, bool regardChildrensChildren = false) where T : Element {
|
|
|
|
foreach (var child in this.Children) {
|
|
|
|
if (regardChildrensChildren) {
|
|
|
|
foreach (var cc in child.GetChildren(condition, true))
|
|
|
|
yield return cc;
|
|
|
|
}
|
2019-08-20 21:35:53 +02:00
|
|
|
if (child is T t && (condition == null || condition(t)))
|
|
|
|
yield return t;
|
2019-08-18 18:32:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-21 17:00:22 +02:00
|
|
|
public IEnumerable<Element> GetParentTree() {
|
|
|
|
if (this.Parent == null)
|
|
|
|
yield break;
|
|
|
|
yield return this.Parent;
|
|
|
|
foreach (var parent in this.Parent.GetParentTree())
|
|
|
|
yield return parent;
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2019-08-12 19:44:16 +02:00
|
|
|
public virtual void Draw(GameTime time, SpriteBatch batch, float alpha, Point offset) {
|
2019-08-31 18:07:43 +02:00
|
|
|
this.System.OnElementDrawn?.Invoke(this, time, batch, alpha, 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)
|
2019-08-12 19:44:16 +02:00
|
|
|
child.Draw(time, batch, alpha * child.DrawAlpha, offset);
|
2019-08-09 19:39:51 +02:00
|
|
|
}
|
2019-08-28 18:27:17 +02:00
|
|
|
|
2019-08-31 18:07:43 +02:00
|
|
|
if (this.IsSelected)
|
|
|
|
this.System.OnSelectedElementDrawn?.Invoke(this, time, batch, alpha, offset);
|
2019-08-09 19:28:48 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 14:59:15 +02:00
|
|
|
public virtual void DrawEarly(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)
|
2019-08-15 14:59:15 +02:00
|
|
|
child.DrawEarly(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
|
|
|
|
2019-08-30 18:15:50 +02:00
|
|
|
public virtual Element GetElementUnderPos(Point position) {
|
2019-08-28 18:27:17 +02:00
|
|
|
if (this.IsHidden)
|
2019-08-09 22:04:26 +02:00
|
|
|
return null;
|
2019-08-12 14:44:42 +02:00
|
|
|
for (var i = this.SortedChildren.Count - 1; i >= 0; i--) {
|
2019-08-30 18:15:50 +02:00
|
|
|
var element = this.SortedChildren[i].GetElementUnderPos(position);
|
2019-08-09 22:04:26 +02:00
|
|
|
if (element != null)
|
|
|
|
return element;
|
|
|
|
}
|
2019-08-30 18:15:50 +02:00
|
|
|
return this.CanBeMoused && this.Area.Contains(position) ? this : null;
|
2019-08-09 22:04:26 +02:00
|
|
|
}
|
|
|
|
|
2019-08-10 21:37:10 +02:00
|
|
|
protected virtual void InitStyle(UiStyle style) {
|
2019-08-28 18:27:17 +02:00
|
|
|
this.SelectionIndicator = style.SelectionIndicator;
|
2019-08-10 21:37:10 +02:00
|
|
|
}
|
|
|
|
|
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-28 18:58:05 +02:00
|
|
|
public delegate void OtherElementCallback(Element thisElement, Element otherElement);
|
2019-08-11 18:02:21 +02:00
|
|
|
|
2019-08-31 18:07:43 +02:00
|
|
|
public delegate void DrawCallback(Element element, GameTime time, SpriteBatch batch, float alpha, Point offset);
|
|
|
|
|
2019-08-28 18:58:05 +02:00
|
|
|
internal void Propagate(Action<Element> action) {
|
|
|
|
action(this);
|
2019-08-12 14:44:42 +02:00
|
|
|
foreach (var child in this.Children)
|
2019-08-28 18:58:05 +02:00
|
|
|
child.Propagate(action);
|
2019-08-10 18:41:56 +02:00
|
|
|
}
|
|
|
|
|
2019-08-09 18:26:28 +02:00
|
|
|
}
|
|
|
|
}
|