* Basic emote radial menu * Move out from corvax * Move to UI controller & add to top menu bar and key bind * Make emote play * Add name localization for emotes * Localize chat messages * Fix emote menu * Add categories localization * Fixes * Fix * Add emotes entity blacklist * Fix entity whitelist required all logic * Remove unused wagging emote * Revert sprite * Set default texture for emote icon * Update Resources/keybinds.yml --------- Co-authored-by: Kara <lunarautomaton6@gmail.com>
113 lines
3.5 KiB
C#
113 lines
3.5 KiB
C#
using System.Numerics;
|
|
using Content.Client.UserInterface.Controls;
|
|
using Content.Shared.Chat.Prototypes;
|
|
using Content.Shared.Speech;
|
|
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!;
|
|
|
|
private readonly SpriteSystem _spriteSystem;
|
|
|
|
public event Action<ProtoId<EmotePrototype>>? OnPlayEmote;
|
|
|
|
public EmotesMenu()
|
|
{
|
|
IoCManager.InjectDependencies(this);
|
|
RobustXamlLoader.Load(this);
|
|
|
|
_spriteSystem = _entManager.System<SpriteSystem>();
|
|
|
|
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 && (emote.Whitelist?.IsValid(player.Value, _entManager) ?? true)) ||
|
|
(emote.Blacklist?.IsValid(player.Value, _entManager) ?? false))
|
|
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
|
|
{
|
|
StyleClasses = { "RadialMenuButton" },
|
|
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 : RadialMenuTextureButton
|
|
{
|
|
public ProtoId<EmotePrototype> ProtoId { get; set; }
|
|
}
|