* it works! kinda * so it works now * minor cleanup * central button now is useful too * more cleanup * minor cleanup * more cleanup * refactor: migrated code from toolbox (as it was rejected as too specific) * feat: moved border drawing for radial menu into RadialMenuTextureButton. Radial menu position setting into was moved to OverrideArrange to not being called on every frame * refactor: major reworks! * renamed DrawBagleSector to DrawAnnulusSector * Remove strange indexing * Regularize math * refactor: re-orienting segment elements to be Y-mirrored * refactor: extracted radial menu radius multiplier property, changed color pallet for radial menu button * refactor: removed icon backgrounds on textures used in current radial menu buttons with sectors, RadialContainer Radius renamed and now actually changed control radius. * refactor: in RadialMenuTextureButtonWithSector all sector colors are converted to and from sRGB in property getter-setters * refactor: renamed srgb to include Srgb suffix so devs gonna see that its srgb clearly * fix: enabled any functional keys pressed when pushing radial menu buttons * fix: radial menu sector now scales with UIScale * fix: accept only one event when clicking on radial menu ContextualButton * fix: now radial menu buttons accepts only click/alt-click, now clicks outside menu closes menu always --------- Co-authored-by: pa.pecherskij <pa.pecherskij@interfax.ru> Co-authored-by: Eoin Mcloughlin <helloworld@eoinrul.es>
112 lines
3.5 KiB
C#
112 lines
3.5 KiB
C#
using System.Numerics;
|
|
using Content.Client.UserInterface.Controls;
|
|
using Content.Shared.Chat.Prototypes;
|
|
using Content.Shared.Speech;
|
|
using Content.Shared.Whitelist;
|
|
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.GameObjects;
|
|
using Robust.Client.UserInterface.Controls;
|
|
using Robust.Client.UserInterface.XAML;
|
|
using Robust.Shared.Player;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Client.Chat.UI;
|
|
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class EmotesMenu : RadialMenu
|
|
{
|
|
[Dependency] private readonly EntityManager _entManager = default!;
|
|
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
|
|
[Dependency] private readonly ISharedPlayerManager _playerManager = default!;
|
|
|
|
public event Action<ProtoId<EmotePrototype>>? OnPlayEmote;
|
|
|
|
public EmotesMenu()
|
|
{
|
|
IoCManager.InjectDependencies(this);
|
|
RobustXamlLoader.Load(this);
|
|
|
|
var spriteSystem = _entManager.System<SpriteSystem>();
|
|
var whitelistSystem = _entManager.System<EntityWhitelistSystem>();
|
|
|
|
var main = FindControl<RadialContainer>("Main");
|
|
|
|
var emotes = _prototypeManager.EnumeratePrototypes<EmotePrototype>();
|
|
foreach (var emote in emotes)
|
|
{
|
|
var player = _playerManager.LocalSession?.AttachedEntity;
|
|
if (emote.Category == EmoteCategory.Invalid ||
|
|
emote.ChatTriggers.Count == 0 ||
|
|
!(player.HasValue && whitelistSystem.IsWhitelistPassOrNull(emote.Whitelist, player.Value)) ||
|
|
whitelistSystem.IsBlacklistPass(emote.Blacklist, player.Value))
|
|
continue;
|
|
|
|
if (!emote.Available &&
|
|
_entManager.TryGetComponent<SpeechComponent>(player.Value, out var speech) &&
|
|
!speech.AllowedEmotes.Contains(emote.ID))
|
|
continue;
|
|
|
|
var parent = FindControl<RadialContainer>(emote.Category.ToString());
|
|
|
|
var button = new EmoteMenuButton
|
|
{
|
|
SetSize = new Vector2(64f, 64f),
|
|
ToolTip = Loc.GetString(emote.Name),
|
|
ProtoId = emote.ID,
|
|
};
|
|
|
|
var tex = new TextureRect
|
|
{
|
|
VerticalAlignment = VAlignment.Center,
|
|
HorizontalAlignment = HAlignment.Center,
|
|
Texture = spriteSystem.Frame0(emote.Icon),
|
|
TextureScale = new Vector2(2f, 2f),
|
|
};
|
|
|
|
button.AddChild(tex);
|
|
parent.AddChild(button);
|
|
foreach (var child in main.Children)
|
|
{
|
|
if (child is not RadialMenuTextureButton castChild)
|
|
continue;
|
|
|
|
if (castChild.TargetLayer == emote.Category.ToString())
|
|
{
|
|
castChild.Visible = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// Set up menu actions
|
|
foreach (var child in Children)
|
|
{
|
|
if (child is not RadialContainer container)
|
|
continue;
|
|
AddEmoteClickAction(container);
|
|
}
|
|
}
|
|
|
|
private void AddEmoteClickAction(RadialContainer container)
|
|
{
|
|
foreach (var child in container.Children)
|
|
{
|
|
if (child is not EmoteMenuButton castChild)
|
|
continue;
|
|
|
|
castChild.OnButtonUp += _ =>
|
|
{
|
|
OnPlayEmote?.Invoke(castChild.ProtoId);
|
|
Close();
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
public sealed class EmoteMenuButton : RadialMenuTextureButtonWithSector
|
|
{
|
|
public ProtoId<EmotePrototype> ProtoId { get; set; }
|
|
}
|