2024-05-30 22:07:37 -07:00
|
|
|
using Godot;
|
2024-06-01 14:21:34 -07:00
|
|
|
using System.Collections.Generic;
|
2024-05-30 22:07:37 -07:00
|
|
|
|
|
|
|
namespace SupaLidlGame.UI.Inventory;
|
|
|
|
|
|
|
|
public partial class ShopMenu : Control, IModal
|
|
|
|
{
|
|
|
|
private Items.IItemCollection<Items.ShopEntry> _source;
|
|
|
|
|
|
|
|
public Items.IItemCollection<Items.ShopEntry> Source
|
|
|
|
{
|
|
|
|
get => _source;
|
|
|
|
set
|
|
|
|
{
|
|
|
|
GD.Print("Set ShopMenu source");
|
|
|
|
_source = value;
|
|
|
|
_inventoryGrid.Source = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[Export]
|
|
|
|
private InventoryGrid _inventoryGrid;
|
|
|
|
|
2024-06-01 14:21:34 -07:00
|
|
|
private InventorySlot _selected;
|
|
|
|
|
2024-05-30 22:07:37 -07:00
|
|
|
public void HideModal()
|
|
|
|
{
|
|
|
|
Hide();
|
|
|
|
_source = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void _Ready()
|
|
|
|
{
|
|
|
|
Events.EventBus.Instance.EnterShop += (string path) =>
|
|
|
|
{
|
|
|
|
var shop = ResourceLoader.Load<Items.Shop>(path);
|
|
|
|
GD.Print("Loaded shop");
|
|
|
|
Source = shop;
|
|
|
|
};
|
2024-06-01 14:21:34 -07:00
|
|
|
|
|
|
|
_inventoryGrid.SlotFocused += (InventorySlot slot) =>
|
|
|
|
{
|
|
|
|
GD.Print("SlotFocused " + slot.Name);
|
|
|
|
if (slot.Item is not null)
|
|
|
|
{
|
|
|
|
SetTooltipItem(slot);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
_inventoryGrid.SlotUnfocused += (InventorySlot slot) =>
|
|
|
|
{
|
|
|
|
SetTooltipItem(_selected);
|
|
|
|
};
|
|
|
|
|
|
|
|
_inventoryGrid.SlotSelected += (InventorySlot slot) =>
|
|
|
|
{
|
|
|
|
_selected = slot;
|
|
|
|
SetTooltipItem(slot);
|
|
|
|
GetNode<Button>("%BuyButton").GrabFocus();
|
|
|
|
};
|
|
|
|
|
|
|
|
GetNode<Button>("%BuyButton").GuiInput += (Godot.InputEvent @event) =>
|
|
|
|
{
|
|
|
|
if (@event.IsAction("ui_cancel"))
|
|
|
|
{
|
|
|
|
_selected?.GrabFocus();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
private void SetTooltipItem(InventorySlot slot)
|
|
|
|
{
|
|
|
|
GetNode<ItemTooltip>("%ItemTooltip").Item = slot?.Item;
|
|
|
|
|
|
|
|
if (slot == _selected)
|
|
|
|
{
|
|
|
|
GetNode<Button>("%BuyButton").Disabled = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GetNode<Button>("%BuyButton").Disabled = true;
|
|
|
|
}
|
2024-05-30 22:07:37 -07:00
|
|
|
}
|
|
|
|
}
|