137 lines
3.7 KiB
C#
137 lines
3.7 KiB
C#
using Content.Client.GameObjects.Components.Research;
|
|
using Content.Shared.Research;
|
|
using Robust.Client.Graphics;
|
|
using Robust.Client.UserInterface.Controls;
|
|
using Robust.Client.UserInterface.CustomControls;
|
|
using Robust.Client.Utility;
|
|
using Robust.Shared.Maths;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Content.Client.Research
|
|
{
|
|
public class LatheQueueMenu : SS14Window
|
|
{
|
|
protected override Vector2? CustomSize => (300, 450);
|
|
|
|
public LatheBoundUserInterface Owner { get; set; }
|
|
|
|
[ViewVariables]
|
|
private ItemList QueueList;
|
|
private Label NameLabel;
|
|
private Label Description;
|
|
private TextureRect Icon;
|
|
|
|
public LatheQueueMenu()
|
|
{
|
|
Title = "Lathe Queue";
|
|
|
|
var margin = new MarginContainer()
|
|
{
|
|
/*MarginTop = 5f,
|
|
MarginLeft = 5f,
|
|
MarginRight = -5f,
|
|
MarginBottom = -5f,*/
|
|
};
|
|
|
|
// margin.SetAnchorAndMarginPreset(LayoutPreset.Wide);
|
|
|
|
var vBox = new VBoxContainer();
|
|
|
|
// vBox.SetAnchorAndMarginPreset(LayoutPreset.Wide);
|
|
|
|
var descMargin = new MarginContainer()
|
|
{
|
|
/*MarginTop = 5f,
|
|
MarginLeft = 5f,
|
|
MarginRight = -5f,
|
|
MarginBottom = -5f,*/
|
|
SizeFlagsHorizontal = SizeFlags.FillExpand,
|
|
SizeFlagsStretchRatio = 2,
|
|
};
|
|
|
|
var hBox = new HBoxContainer()
|
|
{
|
|
SizeFlagsHorizontal = SizeFlags.FillExpand,
|
|
};
|
|
|
|
Icon = new TextureRect()
|
|
{
|
|
SizeFlagsHorizontal = SizeFlags.FillExpand,
|
|
SizeFlagsStretchRatio = 2,
|
|
};
|
|
|
|
var vBoxInfo = new VBoxContainer()
|
|
{
|
|
SizeFlagsVertical = SizeFlags.FillExpand,
|
|
SizeFlagsStretchRatio = 3,
|
|
};
|
|
|
|
NameLabel = new Label()
|
|
{
|
|
RectClipContent = true,
|
|
SizeFlagsHorizontal = SizeFlags.Fill,
|
|
};
|
|
|
|
Description = new Label()
|
|
{
|
|
RectClipContent = true,
|
|
SizeFlagsVertical = SizeFlags.FillExpand,
|
|
SizeFlagsHorizontal = SizeFlags.Fill,
|
|
|
|
};
|
|
|
|
QueueList = new ItemList()
|
|
{
|
|
SizeFlagsHorizontal = SizeFlags.Fill,
|
|
SizeFlagsVertical = SizeFlags.FillExpand,
|
|
SizeFlagsStretchRatio = 3,
|
|
SelectMode = ItemList.ItemListSelectMode.None
|
|
};
|
|
|
|
vBoxInfo.AddChild(NameLabel);
|
|
vBoxInfo.AddChild(Description);
|
|
|
|
hBox.AddChild(Icon);
|
|
hBox.AddChild(vBoxInfo);
|
|
|
|
descMargin.AddChild(hBox);
|
|
|
|
vBox.AddChild(descMargin);
|
|
vBox.AddChild(QueueList);
|
|
|
|
margin.AddChild(vBox);
|
|
|
|
Contents.AddChild(margin);
|
|
|
|
ClearInfo();
|
|
}
|
|
|
|
public void SetInfo(LatheRecipePrototype recipe)
|
|
{
|
|
Icon.Texture = recipe.Icon.Frame0();
|
|
if (recipe.Name != null)
|
|
NameLabel.Text = recipe.Name;
|
|
if (recipe.Description != null)
|
|
Description.Text = recipe.Description;
|
|
}
|
|
|
|
public void ClearInfo()
|
|
{
|
|
Icon.Texture = Texture.Transparent;
|
|
NameLabel.Text = "-------";
|
|
Description.Text = "Not producing anything.";
|
|
}
|
|
|
|
public void PopulateList()
|
|
{
|
|
QueueList.Clear();
|
|
var idx = 1;
|
|
foreach (var recipe in Owner.QueuedRecipes)
|
|
{
|
|
QueueList.AddItem($"{idx}. {recipe.Name}", recipe.Icon.Frame0());
|
|
idx++;
|
|
}
|
|
}
|
|
}
|
|
}
|