2019-09-01 22:15:34 +02:00
|
|
|
using Robust.Client.GameObjects.Components.UserInterface;
|
|
|
|
|
using Robust.Shared.GameObjects.Components.UserInterface;
|
|
|
|
|
using static Content.Shared.GameObjects.Components.SharedWiresComponent;
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.GameObjects.Components.Wires
|
|
|
|
|
{
|
|
|
|
|
public class WiresBoundUserInterface : BoundUserInterface
|
|
|
|
|
{
|
|
|
|
|
public WiresBoundUserInterface(ClientUserInterfaceComponent owner, object uiKey) : base(owner, uiKey)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private WiresMenu _menu;
|
|
|
|
|
|
|
|
|
|
protected override void Open()
|
|
|
|
|
{
|
|
|
|
|
base.Open();
|
2020-05-27 15:09:22 +02:00
|
|
|
_menu = new WiresMenu(this);
|
2019-09-01 22:15:34 +02:00
|
|
|
|
|
|
|
|
_menu.OnClose += Close;
|
|
|
|
|
_menu.OpenCentered();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void UpdateState(BoundUserInterfaceState state)
|
|
|
|
|
{
|
|
|
|
|
base.UpdateState(state);
|
2019-09-06 10:05:02 +02:00
|
|
|
_menu.Populate((WiresBoundUserInterfaceState) state);
|
2019-09-01 22:15:34 +02:00
|
|
|
}
|
|
|
|
|
|
2020-05-27 15:09:22 +02:00
|
|
|
public void PerformAction(int id, WiresAction action)
|
2019-09-01 22:15:34 +02:00
|
|
|
{
|
2020-05-27 15:09:22 +02:00
|
|
|
SendMessage(new WiresActionMessage(id, action));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(disposing);
|
|
|
|
|
|
|
|
|
|
_menu.Close();
|
2019-09-01 22:15:34 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|