Station beacons (#23136)

* Station beacons

* crate

* remove navmap from warp points

* ack

* oh damn

* okay emisser
This commit is contained in:
Nemanja
2023-12-28 19:02:21 -05:00
committed by GitHub
parent aa8861ab00
commit 99d78c4b97
18 changed files with 899 additions and 103 deletions

View File

@@ -0,0 +1,35 @@
using Content.Shared.Pinpointer;
using JetBrains.Annotations;
namespace Content.Client.Pinpointer.UI;
[UsedImplicitly]
public sealed class NavMapBeaconBoundUserInterface : BoundUserInterface
{
[ViewVariables]
private NavMapBeaconWindow? _window;
public NavMapBeaconBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey)
{
}
protected override void Open()
{
base.Open();
_window = new NavMapBeaconWindow(Owner);
_window.OpenCentered();
_window.OnClose += Close;
_window.OnApplyButtonPressed += (label, enabled, color) =>
{
SendMessage(new NavMapBeaconConfigureBuiMessage(label, enabled, color));
};
}
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
_window?.Dispose();
}
}