| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- using System.Linq;
- using Content.Shared.Crayon;
- using Content.Shared.Decals;
- using Robust.Client.GameObjects;
- using Robust.Client.UserInterface;
- using Robust.Shared.Prototypes;
- namespace Content.Client.Crayon.UI
- {
- public sealed class CrayonBoundUserInterface : BoundUserInterface
- {
- [Dependency] private readonly IPrototypeManager _protoManager = default!;
- [ViewVariables]
- private CrayonWindow? _menu;
- public CrayonBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey)
- {
- }
- protected override void Open()
- {
- base.Open();
- _menu = this.CreateWindowCenteredLeft<CrayonWindow>();
- _menu.OnColorSelected += SelectColor;
- _menu.OnSelected += Select;
- PopulateCrayons();
- }
- private void PopulateCrayons()
- {
- var crayonDecals = _protoManager.EnumeratePrototypes<DecalPrototype>().Where(x => x.Tags.Contains("crayon"));
- _menu?.Populate(crayonDecals.ToList());
- }
- public override void OnProtoReload(PrototypesReloadedEventArgs args)
- {
- base.OnProtoReload(args);
- if (!args.WasModified<DecalPrototype>())
- return;
- PopulateCrayons();
- }
- protected override void ReceiveMessage(BoundUserInterfaceMessage message)
- {
- base.ReceiveMessage(message);
- if (_menu is null || message is not CrayonUsedMessage crayonMessage)
- return;
- _menu.AdvanceState(crayonMessage.DrawnDecal);
- }
- protected override void UpdateState(BoundUserInterfaceState state)
- {
- base.UpdateState(state);
- _menu?.UpdateState((CrayonBoundUserInterfaceState) state);
- }
- public void Select(string state)
- {
- SendMessage(new CrayonSelectMessage(state));
- }
- public void SelectColor(Color color)
- {
- SendMessage(new CrayonColorMessage(color));
- }
- }
- }
|