using System.Collections.Generic; using Content.Client.GameObjects.Components.Research; using Content.Shared.Materials; using Content.Shared.Research; using Robust.Client.Interfaces.Graphics; using Robust.Client.Interfaces.ResourceManagement; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.Utility; using Robust.Shared.IoC; using Robust.Shared.Maths; using Robust.Shared.Prototypes; using Robust.Shared.Timers; using Robust.Shared.Utility; namespace Content.Client.Research { public class LatheMenu : SS14Window { #pragma warning disable CS0649 [Dependency] private IPrototypeManager PrototypeManager; #pragma warning restore private ItemList Items; private ItemList Materials; private LineEdit AmountLineEdit; private LineEdit SearchBar; public Button QueueButton; protected override Vector2? CustomSize => (300, 450); public LatheBoundUserInterface Owner { get; set; } private List _recipes = new List(); private List _shownRecipes = new List(); public LatheMenu(IDisplayManager displayMan) : base(displayMan) { } public LatheMenu(IDisplayManager displayMan, string name) : base(displayMan, name) { } protected override void Initialize() { base.Initialize(); IoCManager.InjectDependencies(this); HideOnClose = true; Title = "Lathe Menu"; Visible = false; var margin = new MarginContainer() { SizeFlagsVertical = SizeFlags.FillExpand, SizeFlagsHorizontal = SizeFlags.FillExpand, MarginTop = 5f, MarginLeft = 5f, MarginRight = -5f, MarginBottom = -5f, }; margin.SetAnchorAndMarginPreset(LayoutPreset.Wide); var vbox = new VBoxContainer() { SizeFlagsVertical = SizeFlags.FillExpand, SeparationOverride = 5, }; vbox.SetAnchorAndMarginPreset(LayoutPreset.Wide); var hboxButtons = new HBoxContainer() { SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsVertical = SizeFlags.FillExpand, SizeFlagsStretchRatio = 1, }; QueueButton = new Button() { Text = "Queue", TextAlign = Button.AlignMode.Center, SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsStretchRatio = 1, }; var spacer = new Control() { SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsStretchRatio = 3, }; spacer.SetAnchorAndMarginPreset(LayoutPreset.Wide); var hboxFilter = new HBoxContainer() { SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsVertical = SizeFlags.FillExpand, SizeFlagsStretchRatio = 1 }; SearchBar = new LineEdit() { PlaceHolder = "Search Designs", SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsStretchRatio = 3 }; SearchBar.OnTextChanged += Populate; var filterButton = new Button() { Text = "Filter", TextAlign = Button.AlignMode.Center, SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsStretchRatio = 1, Disabled = true, }; Items = new ItemList() { SizeFlagsStretchRatio = 8, SizeFlagsVertical = SizeFlags.FillExpand, }; Items.OnItemSelected += ItemSelected; AmountLineEdit = new LineEdit() { PlaceHolder = "Amount", Text = "1", SizeFlagsHorizontal = SizeFlags.FillExpand, }; AmountLineEdit.OnTextChanged += PopulateDisabled; Materials = new ItemList() { SizeFlagsVertical = SizeFlags.FillExpand, SizeFlagsStretchRatio = 3 }; hboxButtons.AddChild(spacer); hboxButtons.AddChild(QueueButton); hboxFilter.AddChild(SearchBar); hboxFilter.AddChild(filterButton); vbox.AddChild(hboxButtons); vbox.AddChild(hboxFilter); vbox.AddChild(Items); vbox.AddChild(AmountLineEdit); vbox.AddChild(Materials); margin.AddChild(vbox); Contents.AddChild(margin); } public void ItemSelected(ItemList.ItemListSelectedEventArgs args) { int.TryParse(AmountLineEdit.Text, out var quantity); if (quantity <= 0) quantity = 1; Owner.Queue(_shownRecipes[args.ItemIndex], quantity); Items.SelectMode = ItemList.ItemListSelectMode.None; Timer.Spawn(100, () => { Items.Unselect(args.ItemIndex); Items.SelectMode = ItemList.ItemListSelectMode.Single; }); } public void PopulateMaterials() { Materials.Clear(); foreach (var (id, amount) in Owner.Storage) { if (!PrototypeManager.TryIndex(id, out MaterialPrototype materialPrototype)) continue; var material = materialPrototype.Material; Materials.AddItem($"{material.Name} {amount} cm³", material.Icon.Frame0(), false); } } /// /// Disables or enables shown recipes depending on whether there are enough materials for it or not. /// public void PopulateDisabled() { int.TryParse(AmountLineEdit.Text, out var quantity); if (quantity <= 0) quantity = 1; for (var i = 0; i < _shownRecipes.Count; i++) { var prototype = _shownRecipes[i]; Items.SetItemDisabled(i, !Owner.Lathe.CanProduce(prototype, quantity)); } } /// public void PopulateDisabled(LineEdit.LineEditEventArgs args) { PopulateDisabled(); } /// /// Adds shown recipes to the ItemList control. /// public void PopulateList() { Items.Clear(); for (var i = 0; i < _shownRecipes.Count; i++) { var prototype = _shownRecipes[i]; Items.AddItem(prototype.Name, prototype.Icon.Frame0()); } PopulateDisabled(); } /// /// Populates the list of recipes that will actually be shown, using the current filters. /// public void Populate() { _shownRecipes.Clear(); foreach (var prototype in Owner.Database) { if (SearchBar.Text.Trim().Length != 0) { if (prototype.Name.ToLowerInvariant().Contains(SearchBar.Text.Trim().ToLowerInvariant())) _shownRecipes.Add(prototype); continue; } _shownRecipes.Add(prototype); } PopulateList(); } /// public void Populate(LineEdit.LineEditEventArgs args) { Populate(); } } }