mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 11:40:52 +01:00
331 lines
9.3 KiB
C#
331 lines
9.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Robust.Client.Graphics;
|
|
using Robust.Shared.Maths;
|
|
using static Robust.Client.UserInterface.Controls.BoxContainer;
|
|
|
|
namespace Robust.Client.UserInterface.Controls
|
|
{
|
|
public class OptionButton : ContainerButton
|
|
{
|
|
public const string StyleClassOptionButton = "optionButton";
|
|
public const string StyleClassOptionTriangle = "optionTriangle";
|
|
|
|
private readonly List<ButtonData> _buttonData = new();
|
|
private readonly Dictionary<int, int> _idMap = new();
|
|
private readonly Popup _popup;
|
|
private readonly BoxContainer _popupVBox;
|
|
private readonly Label _label;
|
|
private readonly TextureRect _triangle;
|
|
|
|
public int ItemCount => _buttonData.Count;
|
|
|
|
/// <summary>
|
|
/// If true, hides the triangle that normally appears to the right of the button label
|
|
/// </summary>
|
|
public bool HideTriangle
|
|
{
|
|
get => _hideTriangle;
|
|
set
|
|
{
|
|
_hideTriangle = value;
|
|
_triangle.Visible = !_hideTriangle;
|
|
}
|
|
}
|
|
private bool _hideTriangle;
|
|
|
|
/// <summary>
|
|
/// StyleClasses to apply to the options that popup when clicking this button.
|
|
/// </summary>
|
|
public ICollection<string> OptionStyleClasses { get; }
|
|
|
|
public event Action<ItemSelectedEventArgs>? OnItemSelected;
|
|
|
|
public string Prefix { get; set; }
|
|
|
|
public OptionButton()
|
|
{
|
|
OptionStyleClasses = new List<string>();
|
|
AddStyleClass(StyleClassButton);
|
|
Prefix = "";
|
|
OnPressed += OnPressedInternal;
|
|
|
|
var hBox = new BoxContainer
|
|
{
|
|
Orientation = LayoutOrientation.Horizontal
|
|
};
|
|
AddChild(hBox);
|
|
|
|
_popup = new Popup();
|
|
_popupVBox = new BoxContainer
|
|
{
|
|
Orientation = LayoutOrientation.Vertical
|
|
};
|
|
_popup.AddChild(_popupVBox);
|
|
_popup.OnPopupHide += OnPopupHide;
|
|
|
|
_label = new Label
|
|
{
|
|
StyleClasses = { StyleClassOptionButton },
|
|
HorizontalExpand = true,
|
|
};
|
|
hBox.AddChild(_label);
|
|
|
|
_triangle = new TextureRect
|
|
{
|
|
StyleClasses = { StyleClassOptionTriangle },
|
|
VerticalAlignment = VAlignment.Center,
|
|
Visible = !HideTriangle
|
|
};
|
|
hBox.AddChild(_triangle);
|
|
}
|
|
|
|
public void AddItem(Texture icon, string label, int? id = null)
|
|
{
|
|
AddItem(label, id);
|
|
}
|
|
|
|
public void AddItem(string label, int? id = null)
|
|
{
|
|
if (id == null)
|
|
{
|
|
id = _buttonData.Count;
|
|
}
|
|
|
|
if (_idMap.ContainsKey(id.Value))
|
|
{
|
|
throw new ArgumentException("An item with the same ID already exists.");
|
|
}
|
|
|
|
var button = new Button
|
|
{
|
|
Text = label,
|
|
ToggleMode = true
|
|
};
|
|
foreach (var styleClass in OptionStyleClasses)
|
|
{
|
|
button.AddStyleClass(styleClass);
|
|
}
|
|
button.OnPressed += ButtonOnPressed;
|
|
var data = new ButtonData(label, button)
|
|
{
|
|
Id = id.Value,
|
|
};
|
|
_idMap.Add(id.Value, _buttonData.Count);
|
|
_buttonData.Add(data);
|
|
_popupVBox.AddChild(button);
|
|
if (_buttonData.Count == 1)
|
|
{
|
|
Select(0);
|
|
}
|
|
}
|
|
|
|
private void TogglePopup(bool show)
|
|
{
|
|
if (show)
|
|
{
|
|
var globalPos = GlobalPosition;
|
|
_popupVBox.Measure(Vector2.Infinity);
|
|
var (minX, minY) = _popupVBox.DesiredSize;
|
|
var box = UIBox2.FromDimensions(globalPos, (Math.Max(minX, Width), minY));
|
|
UserInterfaceManager.ModalRoot.AddChild(_popup);
|
|
_popup.Open(box);
|
|
}
|
|
else
|
|
{
|
|
_popup.Close();
|
|
}
|
|
}
|
|
|
|
private void OnPopupHide()
|
|
{
|
|
UserInterfaceManager.ModalRoot.RemoveChild(_popup);
|
|
}
|
|
|
|
private void ButtonOnPressed(ButtonEventArgs obj)
|
|
{
|
|
obj.Button.Pressed = false;
|
|
TogglePopup(false);
|
|
foreach (var buttonData in _buttonData)
|
|
{
|
|
if (buttonData.Button == obj.Button)
|
|
{
|
|
OnItemSelected?.Invoke(new ItemSelectedEventArgs(buttonData.Id, this));
|
|
return;
|
|
}
|
|
}
|
|
|
|
// Not reachable.
|
|
throw new InvalidOperationException();
|
|
}
|
|
|
|
public void Clear()
|
|
{
|
|
_idMap.Clear();
|
|
foreach (var buttonDatum in _buttonData)
|
|
{
|
|
buttonDatum.Button.OnPressed -= ButtonOnPressed;
|
|
}
|
|
_buttonData.Clear();
|
|
_popupVBox.DisposeAllChildren();
|
|
SelectedId = 0;
|
|
}
|
|
|
|
public int GetItemId(int idx)
|
|
{
|
|
return _buttonData[idx].Id;
|
|
}
|
|
|
|
public object? GetItemMetadata(int idx)
|
|
{
|
|
return _buttonData[idx].Metadata;
|
|
}
|
|
|
|
public int SelectedId { get; private set; }
|
|
|
|
public object? SelectedMetadata => _buttonData[_idMap[SelectedId]].Metadata;
|
|
|
|
public bool IsItemDisabled(int idx)
|
|
{
|
|
return _buttonData[idx].Disabled;
|
|
}
|
|
|
|
public void RemoveItem(int idx)
|
|
{
|
|
var data = _buttonData[idx];
|
|
data.Button.OnPressed -= ButtonOnPressed;
|
|
_idMap.Remove(data.Id);
|
|
_popupVBox.RemoveChild(data.Button);
|
|
_buttonData.RemoveAt(idx);
|
|
var newIdx = 0;
|
|
foreach (var buttonData in _buttonData)
|
|
{
|
|
_idMap[buttonData.Id] = newIdx++;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Select by index rather than id. Throws exception if item with that index
|
|
/// not in this control.
|
|
/// </summary>
|
|
public void Select(int idx)
|
|
{
|
|
if (_idMap.TryGetValue(SelectedId, out var prevIdx))
|
|
{
|
|
_buttonData[prevIdx].Button.Pressed = false;
|
|
}
|
|
var data = _buttonData[idx];
|
|
SelectedId = data.Id;
|
|
_label.Text = Prefix + data.Text;
|
|
data.Button.Pressed = true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Select by index rather than id.
|
|
/// </summary>
|
|
/// <returns>false if item with that index not in this control</returns>
|
|
public bool TrySelect(int idx)
|
|
{
|
|
if (idx < 0 || idx >= _buttonData.Count) return false;
|
|
Select(idx);
|
|
return true;
|
|
}
|
|
|
|
/// throws exception if item with this ID is not in this control
|
|
public void SelectId(int id)
|
|
{
|
|
Select(GetIdx(id));
|
|
}
|
|
|
|
/// <returns>false if item with id not in this control</returns>
|
|
public bool TrySelectId(int id)
|
|
{
|
|
return _idMap.TryGetValue(id, out var idx) && TrySelect(idx);
|
|
}
|
|
|
|
public int GetIdx(int id)
|
|
{
|
|
return _idMap[id];
|
|
}
|
|
|
|
public void SetItemDisabled(int idx, bool disabled)
|
|
{
|
|
var data = _buttonData[idx];
|
|
data.Disabled = disabled;
|
|
data.Button.Disabled = disabled;
|
|
}
|
|
|
|
public void SetItemId(int idx, int id)
|
|
{
|
|
if (_idMap.TryGetValue(id, out var existIdx) && existIdx != idx)
|
|
{
|
|
throw new InvalidOperationException("An item with said ID already exists.");
|
|
}
|
|
|
|
var data = _buttonData[idx];
|
|
_idMap.Remove(data.Id);
|
|
_idMap.Add(id, idx);
|
|
data.Id = id;
|
|
}
|
|
|
|
public void SetItemMetadata(int idx, object metadata)
|
|
{
|
|
_buttonData[idx].Metadata = metadata;
|
|
}
|
|
|
|
public void SetItemText(int idx, string text)
|
|
{
|
|
var data = _buttonData[idx];
|
|
data.Text = text;
|
|
if (SelectedId == data.Id)
|
|
{
|
|
_label.Text = text;
|
|
}
|
|
|
|
data.Button.Text = text;
|
|
}
|
|
|
|
private void OnPressedInternal(ButtonEventArgs args)
|
|
{
|
|
TogglePopup(true);
|
|
}
|
|
|
|
protected override void ExitedTree()
|
|
{
|
|
base.ExitedTree();
|
|
TogglePopup(false);
|
|
}
|
|
|
|
public class ItemSelectedEventArgs : EventArgs
|
|
{
|
|
public OptionButton Button { get; }
|
|
|
|
/// <summary>
|
|
/// The ID of the item that has been selected.
|
|
/// </summary>
|
|
public int Id { get; }
|
|
|
|
public ItemSelectedEventArgs(int id, OptionButton button)
|
|
{
|
|
Id = id;
|
|
Button = button;
|
|
}
|
|
}
|
|
|
|
private sealed class ButtonData
|
|
{
|
|
public string Text;
|
|
public bool Disabled;
|
|
public object? Metadata;
|
|
public int Id;
|
|
public Button Button;
|
|
|
|
public ButtonData(string text, Button button)
|
|
{
|
|
Text = text;
|
|
Button = button;
|
|
}
|
|
}
|
|
}
|
|
}
|