1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-23 00:53:37 +02:00
MLEM/MLEM.Ui/UiControls.cs

136 lines
5.8 KiB
C#
Raw Normal View History

2019-08-28 18:27:17 +02:00
using System;
using System.Linq;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Input.Touch;
using MLEM.Input;
2019-08-28 18:27:17 +02:00
using MLEM.Ui.Elements;
namespace MLEM.Ui {
public class UiControls {
2019-08-28 18:27:17 +02:00
public readonly InputHandler Input;
private readonly bool isInputOurs;
private readonly UiSystem system;
2019-08-28 18:27:17 +02:00
public Element MousedElement { get; private set; }
public Element SelectedElement { get; private set; }
2019-08-28 18:58:05 +02:00
public bool SelectedLastElementWithMouse { get; private set; }
2019-08-28 18:27:17 +02:00
public UiControls(UiSystem system, InputHandler inputHandler = null) {
this.system = system;
this.Input = inputHandler ?? new InputHandler();
this.isInputOurs = inputHandler == null;
// enable all required gestures
InputHandler.EnableGestures(GestureType.Tap, GestureType.Hold);
2019-08-28 18:27:17 +02:00
}
public void Update() {
if (this.isInputOurs)
this.Input.Update();
// MOUSE INPUT
var mousedNow = this.GetElementUnderPos(this.Input.MousePosition);
2019-08-28 18:27:17 +02:00
if (mousedNow != this.MousedElement) {
if (this.MousedElement != null)
this.MousedElement.OnMouseExit?.Invoke(this.MousedElement);
if (mousedNow != null)
mousedNow.OnMouseEnter?.Invoke(mousedNow);
this.MousedElement = mousedNow;
2019-09-02 18:41:05 +02:00
this.system.ApplyToAll(e => e.OnMousedElementChanged?.Invoke(e, mousedNow));
2019-08-28 18:27:17 +02:00
}
2019-08-28 18:27:17 +02:00
if (this.Input.IsMouseButtonPressed(MouseButton.Left)) {
var selectedNow = mousedNow != null && mousedNow.CanBeSelected ? mousedNow : null;
this.SelectElement(selectedNow, true);
2019-08-28 18:27:17 +02:00
if (mousedNow != null)
mousedNow.OnPressed?.Invoke(mousedNow);
} else if (this.Input.IsMouseButtonPressed(MouseButton.Right)) {
if (mousedNow != null)
mousedNow.OnSecondaryPressed?.Invoke(mousedNow);
}
// KEYBOARD INPUT
else if (this.Input.IsKeyPressed(Keys.Enter) || this.Input.IsKeyPressed(Keys.Space)) {
2019-08-28 18:27:17 +02:00
if (this.SelectedElement != null) {
if (this.Input.IsModifierKeyDown(ModifierKey.Shift)) {
// secondary action on element using space or enter
this.SelectedElement.OnSecondaryPressed?.Invoke(this.SelectedElement);
} else {
// first action on element using space or enter
this.SelectedElement.OnPressed?.Invoke(this.SelectedElement);
}
}
} else if (this.Input.IsKeyPressed(Keys.Tab)) {
// tab or shift-tab to next or previous element
2019-08-28 18:58:05 +02:00
this.SelectElement(this.GetNextElement(this.Input.IsModifierKeyDown(ModifierKey.Shift)), false);
2019-08-28 18:27:17 +02:00
}
// TOUCH INPUT
else if (this.Input.GetGesture(GestureType.Tap, out var tap)) {
var tapped = this.GetElementUnderPos(tap.Position.ToPoint());
this.SelectElement(tapped, true);
if (tapped != null)
tapped.OnPressed?.Invoke(tapped);
} else if (this.Input.GetGesture(GestureType.Hold, out var hold)) {
var held = this.GetElementUnderPos(hold.Position.ToPoint());
this.SelectElement(held, true);
if (held != null)
held.OnSecondaryPressed?.Invoke(held);
}
2019-08-28 18:27:17 +02:00
}
2019-08-28 18:58:05 +02:00
public void SelectElement(Element element, bool mouse) {
if (this.SelectedElement == element)
return;
2019-08-28 18:27:17 +02:00
if (this.SelectedElement != null)
this.SelectedElement.OnDeselected?.Invoke(this.SelectedElement);
if (element != null)
element.OnSelected?.Invoke(element);
this.SelectedElement = element;
2019-08-28 18:58:05 +02:00
this.SelectedLastElementWithMouse = mouse;
2019-09-02 18:41:05 +02:00
this.system.ApplyToAll(e => e.OnSelectedElementChanged?.Invoke(e, element));
2019-08-28 18:27:17 +02:00
}
public Element GetElementUnderPos(Point position) {
2019-08-28 18:27:17 +02:00
foreach (var root in this.system.GetRootElements()) {
var moused = root.Element.GetElementUnderPos(position);
2019-08-28 18:27:17 +02:00
if (moused != null)
return moused;
}
return null;
}
private Element GetNextElement(bool backward) {
var currRoot = this.system.GetRootElements().FirstOrDefault(root => root.CanSelectContent);
if (currRoot == null)
return null;
var children = currRoot.Element.GetChildren(regardChildrensChildren: true);
if (this.SelectedElement == null || this.SelectedElement.Root != currRoot) {
return backward ? children.LastOrDefault(c => c.CanBeSelected) : children.FirstOrDefault(c => c.CanBeSelected);
} else {
var foundCurr = false;
Element lastFound = null;
foreach (var child in children) {
if (!child.CanBeSelected)
continue;
if (child == this.SelectedElement) {
// when going backwards, return the last element found before the current one
if (backward)
return lastFound;
foundCurr = true;
} else {
// when going forwards, return the element after the current one
if (!backward && foundCurr)
return child;
}
lastFound = child;
}
return null;
}
}
}
}