Files
RobustToolbox/Robust.Client/UserInterface/Controls/RichTextLabel.cs

237 lines
8.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using JetBrains.Annotations;
using Robust.Client.Graphics;
using Robust.Client.UserInterface.RichText;
using Robust.Shared.IoC;
using Robust.Shared.Maths;
using Robust.Shared.Utility;
using Robust.Shared.ViewVariables;
namespace Robust.Client.UserInterface.Controls
{
[Virtual]
public partial class RichTextLabel : Control
{
[Dependency] private MarkupTagManager _tagManager = default!;
private RichTextEntry? _entry;
private float _lineHeightScale = 1;
private bool _lineHeightOverride;
private readonly MarkupDrawingContext _drawingContext = new();
private Font? _actualFont;
private bool _fontCacheValid;
private float? _outlineThicknessOverride;
private Color? _outlineColorOverride;
private TextOutline? _actualFontOutline;
private bool _fontOutlineCacheValid;
[ViewVariables(VVAccess.ReadWrite)]
public float LineHeightScale
{
get
{
if (!_lineHeightOverride && TryGetStyleProperty(nameof(LineHeightScale), out float value))
return value;
return _lineHeightScale;
}
set
{
_lineHeightScale = value;
_lineHeightOverride = true;
InvalidateMeasure();
}
}
/// <summary>
/// Gets or sets the markup string displayed by this control.
/// </summary>
/// <remarks>
/// <para>
/// This method converts the given string with <see cref="FormattedMessage.FromMarkupPermissive(string)"/>.
/// The original markup string is not kept,
/// so setting and then getting the function may provide a different result.
/// </para>
/// <para>
/// Unlike <see cref="M:SetMessage(FormattedMessage,Color?)"/>,
/// no tag whitelist will be set on the rendered message. Do not pass untrusted user input to this!
/// </para>
/// </remarks>
public string? Text
{
get => _entry?.Message.ToMarkup();
set
{
if (value == null)
Clear();
else
SetMessage(FormattedMessage.FromMarkupPermissive(value), tagsAllowed: null);
}
}
public void Clear()
{
_entry?.RemoveControls();
_entry = null;
InvalidateMeasure();
}
public IEnumerable<Control> Controls => _entry?.Controls?.Values ?? Enumerable.Empty<Control>();
public IReadOnlyList<MarkupNode> Nodes => _entry?.Message.Nodes ?? Array.Empty<MarkupNode>();
public RichTextLabel()
{
IoCManager.InjectDependencies(this);
VerticalAlignment = VAlignment.Center;
}
/// <summary>
/// Sets the formatted message displayed by this control.
/// </summary>
/// <param name="message">The message to display.</param>
/// <param name="defaultColor">If provided, the default color to use for this message rendering.</param>
/// <remarks>
/// This method sets the set of allowed tags to only include a small amount of safe formatting tags.
/// Use <see cref="M:SetMessage(FormattedMessage,Type[],Color?)"/> if this is not desired.
/// </remarks>
public void SetMessage(FormattedMessage message, Color? defaultColor = null)
{
SetMessage(message, RichTextEntry.DefaultTags, defaultColor);
}
/// <summary>
/// Sets the formatted message displayed by this control.
/// </summary>
/// <param name="message">The message to display.</param>
/// <param name="tagsAllowed">
/// The set of allowed markup tags that will be displayed.
/// If <c>null</c>, all tags are allowed.</param>
/// <param name="defaultColor">If provided, the default color to use for this message rendering.</param>
/// <remarks>
/// This method sets the set of allowed tags to only include a small amount of safe formatting tags.
/// Use <see cref="M:SetMessage(FormattedMessage,Type[],Color?)"/> if this is not desired.
/// </remarks>
public void SetMessage(FormattedMessage message, Type[]? tagsAllowed, Color? defaultColor = null)
{
_entry?.RemoveControls();
_entry = new RichTextEntry(message, this, _tagManager, tagsAllowed, defaultColor);
InvalidateMeasure();
}
public void SetMessage(string message, Color? defaultColor = null)
{
SetMessage(message, RichTextEntry.DefaultTags, defaultColor);
}
public void SetMessage(string message, Type[]? tagsAllowed, Color? defaultColor = null)
{
var msg = new FormattedMessage();
msg.AddText(message);
SetMessage(msg, tagsAllowed, defaultColor);
}
public string? GetMessage() => _entry?.Message.ToMarkup();
/// <summary>
/// Returns a copy of the currently used formatted message.
/// </summary>
public FormattedMessage? GetFormattedMessage() => _entry == null ? null : new FormattedMessage(_entry.Value.Message);
public float? OutlineThicknessOverride
{
get => _outlineThicknessOverride;
set
{
if (_outlineThicknessOverride == value)
return;
_outlineThicknessOverride = value;
_fontOutlineCacheValid = false;
}
}
public Color? OutlineColorOverride
{
get => _outlineColorOverride;
set
{
if (_outlineColorOverride == value)
return;
_outlineColorOverride = value;
_fontOutlineCacheValid = false;
}
}
private TextOutline? ActualFontOutline
{
get
{
if (_fontOutlineCacheValid)
return _actualFontOutline;
var thickness = OutlineThicknessOverride;
if (!thickness.HasValue && TryGetStyleProperty<float>(Label.StylePropertyFontOutlineThickness, out var styleThickness))
thickness = styleThickness;
var color = OutlineColorOverride;
if (!color.HasValue && TryGetStyleProperty<Color>(Label.StylePropertyFontOutlineColor, out var styleColor))
color = styleColor;
_actualFontOutline = TextOutline.FromOverrides(thickness, color);
_fontOutlineCacheValid = true;
return _actualFontOutline;
}
}
protected override Vector2 MeasureOverride(Vector2 availableSize)
{
if (_entry == null)
return Vector2.Zero;
var font = _getFont();
// _entry is nullable struct.
// cannot just call _entry.Value.Update() as that doesn't actually update _entry.
_entry = _entry.Value.Update(_tagManager, font, availableSize.X * UIScale, UIScale, LineHeightScale);
return new Vector2(_entry.Value.Width / UIScale, _entry.Value.Height / UIScale);
}
protected internal override void Draw(DrawingHandleScreen handle)
{
base.Draw(handle);
_entry?.Draw(_tagManager, handle, _getFont(), SizeBox, 0, _drawingContext, UIScale, LineHeightScale, ActualFontOutline);
}
protected override void StylePropertiesChanged()
{
_fontOutlineCacheValid = false;
_fontCacheValid = false;
base.StylePropertiesChanged();
}
[Pure]
private Font _getFont()
{
if (_fontCacheValid)
return _actualFont!;
if (TryGetStyleProperty<Font>("font", out var font))
{
_actualFont = font;
_fontCacheValid = true;
return _actualFont;
}
_actualFont = UserInterfaceManager.ThemeDefaults.DefaultFont;
_fontCacheValid = true;
return _actualFont;
}
}
}