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

254 lines
9.8 KiB
C#
Raw Normal View History

2019-08-09 18:26:28 +02:00
using System;
using System.Collections.Generic;
2019-08-28 18:27:17 +02:00
using System.Linq;
2019-08-09 18:26:28 +02:00
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
2019-08-09 18:26:28 +02:00
using MLEM.Extensions;
2019-08-09 19:28:48 +02:00
using MLEM.Font;
using MLEM.Input;
using MLEM.Misc;
using MLEM.Textures;
2019-08-09 18:26:28 +02:00
using MLEM.Ui.Elements;
2019-08-10 21:37:10 +02:00
using MLEM.Ui.Style;
2019-08-09 18:26:28 +02:00
namespace MLEM.Ui {
public class UiSystem : GameComponent {
2019-08-09 18:26:28 +02:00
2019-08-10 18:41:56 +02:00
public readonly GraphicsDevice GraphicsDevice;
2019-09-01 19:33:33 +02:00
public readonly GameWindow Window;
2019-08-09 18:26:28 +02:00
private readonly List<RootElement> rootElements = new List<RootElement>();
2020-02-06 01:59:33 +01:00
public Rectangle Viewport { get; private set; }
public bool AutoScaleWithScreen;
public Point AutoScaleReferenceSize;
private float globalScale = 1;
2019-08-09 23:43:50 +02:00
public float GlobalScale {
get {
if (!this.AutoScaleWithScreen)
return this.globalScale;
return Math.Min(this.Viewport.Width / (float) this.AutoScaleReferenceSize.X, this.Viewport.Height / (float) this.AutoScaleReferenceSize.Y) * this.globalScale;
}
2019-08-09 23:43:50 +02:00
set {
this.globalScale = value;
foreach (var root in this.rootElements)
root.Element.ForceUpdateArea();
}
}
2020-02-24 14:03:53 +01:00
2019-08-10 21:37:10 +02:00
private UiStyle style;
public UiStyle Style {
get => this.style;
set {
this.style = value;
foreach (var root in this.rootElements) {
root.Element.AndChildren(e => e.System = this);
2019-08-12 14:44:42 +02:00
root.Element.SetAreaDirty();
2019-08-10 21:37:10 +02:00
}
}
}
2019-08-10 13:42:18 +02:00
public float DrawAlpha = 1;
2019-08-09 23:43:50 +02:00
public BlendState BlendState;
public SamplerState SamplerState = SamplerState.PointClamp;
2019-08-28 18:27:17 +02:00
public UiControls Controls;
2019-09-25 16:47:27 +02:00
public Element.DrawCallback OnElementDrawn = (e, time, batch, alpha) => e.OnDrawn?.Invoke(e, time, batch, alpha);
public Element.DrawCallback OnSelectedElementDrawn;
2019-09-25 16:47:27 +02:00
public Element.TimeCallback OnElementUpdated = (e, time) => e.OnUpdated?.Invoke(e, time);
public Element.GenericCallback OnElementPressed = e => e.OnPressed?.Invoke(e);
public Element.GenericCallback OnElementSecondaryPressed = e => e.OnSecondaryPressed?.Invoke(e);
public Element.GenericCallback OnElementSelected = e => e.OnSelected?.Invoke(e);
public Element.GenericCallback OnElementDeselected = e => e.OnDeselected?.Invoke(e);
public Element.GenericCallback OnElementMouseEnter = e => e.OnMouseEnter?.Invoke(e);
public Element.GenericCallback OnElementMouseExit = e => e.OnMouseExit?.Invoke(e);
public Element.GenericCallback OnElementAreaUpdated = e => e.OnAreaUpdated?.Invoke(e);
public Element.GenericCallback OnMousedElementChanged;
public Element.GenericCallback OnSelectedElementChanged;
public RootCallback OnRootAdded;
public RootCallback OnRootRemoved;
public UiSystem(GameWindow window, GraphicsDevice device, UiStyle style, InputHandler inputHandler = null) : base(null) {
2019-08-28 18:27:17 +02:00
this.Controls = new UiControls(this, inputHandler);
2019-08-10 18:41:56 +02:00
this.GraphicsDevice = device;
this.Window = window;
2019-08-10 21:37:10 +02:00
this.style = style;
this.Viewport = device.Viewport.Bounds;
this.AutoScaleReferenceSize = this.Viewport.Size;
2019-08-09 19:28:48 +02:00
window.ClientSizeChanged += (sender, args) => {
this.Viewport = device.Viewport.Bounds;
2019-08-09 18:26:28 +02:00
foreach (var root in this.rootElements)
root.Element.ForceUpdateArea();
};
2019-08-30 19:05:27 +02:00
2020-02-24 14:03:53 +01:00
TextInputWrapper.Current.AddListener(window, (sender, key, character) => this.ApplyToAll(e => e.OnTextInput?.Invoke(e, key, character)));
this.OnMousedElementChanged = e => this.ApplyToAll(t => t.OnMousedElementChanged?.Invoke(t, e));
this.OnSelectedElementChanged = e => this.ApplyToAll(t => t.OnSelectedElementChanged?.Invoke(t, e));
this.OnSelectedElementDrawn = (element, time, batch, alpha) => {
2020-02-06 17:36:51 +01:00
if (this.Controls.IsAutoNavMode && element.SelectionIndicator.HasValue()) {
batch.Draw(element.SelectionIndicator, element.DisplayArea, Color.White * alpha, element.Scale / 2);
}
};
this.OnElementPressed += e => {
if (e.OnPressed != null)
e.ActionSound.Value?.Replay();
};
this.OnElementSecondaryPressed += e => {
if (e.OnSecondaryPressed != null)
e.SecondActionSound.Value?.Replay();
};
2019-08-09 18:26:28 +02:00
}
public override void Update(GameTime time) {
2019-08-28 18:27:17 +02:00
this.Controls.Update();
2019-08-10 18:41:56 +02:00
for (var i = this.rootElements.Count - 1; i >= 0; i--) {
this.rootElements[i].Element.Update(time);
}
2019-08-09 18:26:28 +02:00
}
public void DrawEarly(GameTime time, SpriteBatch batch) {
foreach (var root in this.rootElements) {
if (!root.Element.IsHidden)
root.Element.DrawEarly(time, batch, this.DrawAlpha * root.Element.DrawAlpha, this.BlendState, this.SamplerState, root.Transform);
}
}
public void Draw(GameTime time, SpriteBatch batch) {
2019-08-09 19:39:51 +02:00
foreach (var root in this.rootElements) {
if (root.Element.IsHidden)
continue;
batch.Begin(SpriteSortMode.Deferred, this.BlendState, this.SamplerState, null, null, null, root.Transform);
var alpha = this.DrawAlpha * root.Element.DrawAlpha;
root.Element.Draw(time, batch, alpha, this.BlendState, this.SamplerState, root.Transform);
batch.End();
2019-08-09 19:39:51 +02:00
}
2019-08-09 18:26:28 +02:00
}
public RootElement Add(string name, Element element) {
2019-12-25 12:15:55 +01:00
if (this.IndexOf(name) >= 0)
return null;
var root = new RootElement(name, element, this);
2019-12-25 12:15:55 +01:00
this.rootElements.Add(root);
2019-09-02 18:41:05 +02:00
root.Element.AndChildren(e => {
2019-08-28 18:58:05 +02:00
e.Root = root;
e.System = this;
root.OnElementAdded(e);
e.SetAreaDirty();
2019-08-28 18:58:05 +02:00
});
this.OnRootAdded?.Invoke(root);
2019-12-25 12:15:55 +01:00
this.SortRoots();
return root;
2019-08-09 18:26:28 +02:00
}
public void Remove(string name) {
var root = this.Get(name);
if (root == null)
2019-08-09 18:26:28 +02:00
return;
this.rootElements.Remove(root);
root.SelectElement(null);
2019-09-02 18:41:05 +02:00
root.Element.AndChildren(e => {
2019-08-28 18:58:05 +02:00
e.Root = null;
e.System = null;
root.OnElementRemoved(e);
e.SetAreaDirty();
2019-08-28 18:58:05 +02:00
});
this.OnRootRemoved?.Invoke(root);
2019-08-09 18:26:28 +02:00
}
public RootElement Get(string name) {
2019-08-09 18:26:28 +02:00
var index = this.IndexOf(name);
return index < 0 ? null : this.rootElements[index];
2019-08-09 18:26:28 +02:00
}
private int IndexOf(string name) {
return this.rootElements.FindIndex(element => element.Name == name);
}
2019-12-25 12:15:55 +01:00
internal void SortRoots() {
// Normal list sorting isn't stable, but ordering is
var sorted = this.rootElements.OrderBy(root => root.Priority).ToArray();
this.rootElements.Clear();
this.rootElements.AddRange(sorted);
}
2019-08-28 18:27:17 +02:00
public IEnumerable<RootElement> GetRootElements() {
for (var i = this.rootElements.Count - 1; i >= 0; i--)
yield return this.rootElements[i];
2019-08-28 18:58:05 +02:00
}
2019-09-02 18:41:05 +02:00
public void ApplyToAll(Action<Element> action) {
2019-08-28 18:58:05 +02:00
foreach (var root in this.rootElements)
2019-09-02 18:41:05 +02:00
root.Element.AndChildren(action);
}
public delegate void RootCallback(RootElement root);
2019-08-09 18:26:28 +02:00
}
public class RootElement {
2019-08-09 18:26:28 +02:00
public readonly string Name;
public readonly Element Element;
public readonly UiSystem System;
private float scale = 1;
public float Scale {
get => this.scale;
set {
if (this.scale == value)
return;
this.scale = value;
this.Element.ForceUpdateArea();
}
}
2019-12-25 12:15:55 +01:00
private int priority;
public int Priority {
get => this.priority;
set {
this.priority = value;
this.System.SortRoots();
2019-12-25 12:15:55 +01:00
}
}
public float ActualScale => this.System.GlobalScale * this.Scale;
2019-08-09 18:26:28 +02:00
public Matrix Transform = Matrix.Identity;
public Matrix InvTransform => Matrix.Invert(this.Transform);
2019-09-09 17:12:36 +02:00
public Element SelectedElement { get; private set; }
public bool CanSelectContent { get; private set; }
public Element.GenericCallback OnElementAdded;
public Element.GenericCallback OnElementRemoved;
2019-09-09 17:12:36 +02:00
public RootElement(string name, Element element, UiSystem system) {
2019-08-09 18:26:28 +02:00
this.Name = name;
this.Element = element;
this.System = system;
this.OnElementAdded += e => {
if (e.CanBeSelected)
this.CanSelectContent = true;
};
this.OnElementRemoved += e => {
if (e.CanBeSelected && !this.Element.GetChildren(regardGrandchildren: true).Any(c => c.CanBeSelected))
this.CanSelectContent = false;
};
2019-08-09 18:26:28 +02:00
}
2020-03-16 15:33:25 +01:00
public void SelectElement(Element element, bool? autoNav = null) {
2019-09-09 17:12:36 +02:00
if (this.SelectedElement == element)
return;
if (this.SelectedElement != null)
this.System.OnElementDeselected?.Invoke(this.SelectedElement);
2019-09-09 17:12:36 +02:00
if (element != null)
this.System.OnElementSelected?.Invoke(element);
2019-09-09 17:12:36 +02:00
this.SelectedElement = element;
this.System.OnSelectedElementChanged?.Invoke(element);
2020-03-16 15:33:25 +01:00
if (autoNav != null)
this.System.Controls.IsAutoNavMode = autoNav.Value;
2019-09-09 17:12:36 +02:00
}
2019-08-09 18:26:28 +02:00
}
}