294 lines
8.9 KiB
C#
294 lines
8.9 KiB
C#
using ColdMint.scripts.utils;
|
||
using Godot;
|
||
|
||
namespace ColdMint.scripts.inventory;
|
||
|
||
/// <summary>
|
||
/// <para>A slot in the inventory</para>
|
||
/// <para>物品栏内的一个插槽</para>
|
||
/// </summary>
|
||
public partial class ItemSlotNode : MarginContainer, IItemDisplay
|
||
{
|
||
private TextureRect? _backgroundTextureRect;
|
||
private TextureRect? _iconTextureRect;
|
||
private Label? _quantityLabel;
|
||
private Control? _control;
|
||
private Texture2D? _backgroundTexture;
|
||
private Texture2D? _backgroundTextureWhenSelect;
|
||
public IItem? Item { get; private set; }
|
||
|
||
|
||
public override void _Ready()
|
||
{
|
||
_backgroundTexture = GD.Load<Texture2D>("res://sprites/ui/ItemBarEmpty.png");
|
||
_backgroundTextureWhenSelect = GD.Load<Texture2D>("res://sprites/ui/ItemBarFocus.png");
|
||
_backgroundTextureRect =
|
||
GetNode<TextureRect>("BackgroundTexture");
|
||
_iconTextureRect = GetNode<TextureRect>("BackgroundTexture/IconTextureRect");
|
||
_quantityLabel = GetNode<Label>("Control/QuantityLabel");
|
||
_control = GetNode<Control>("Control");
|
||
_quantityLabel.Hide();
|
||
}
|
||
|
||
public override Variant _GetDragData(Vector2 atPosition)
|
||
{
|
||
switch (Item)
|
||
{
|
||
case null:
|
||
return Config.EmptyVariant;
|
||
case PlaceholderItem:
|
||
return Config.EmptyVariant;
|
||
}
|
||
|
||
if (_iconTextureRect == null)
|
||
{
|
||
return Config.EmptyVariant;
|
||
}
|
||
|
||
var textureRect = new TextureRect();
|
||
textureRect.ExpandMode = _iconTextureRect.ExpandMode;
|
||
textureRect.Size = _iconTextureRect.Size;
|
||
textureRect.Texture = _iconTextureRect.Texture;
|
||
textureRect.ZIndex = Config.ZIndexManager.FloatingIcon;
|
||
SetDragPreview(textureRect);
|
||
return Variant.CreateFrom(this);
|
||
}
|
||
|
||
public override bool _CanDropData(Vector2 atPosition, Variant data)
|
||
{
|
||
var type = data.VariantType;
|
||
if (type == Variant.Type.Nil)
|
||
{
|
||
return false;
|
||
}
|
||
var itemSlotNode = data.As<ItemSlotNode>();
|
||
var sourceItem = itemSlotNode.Item;
|
||
if (sourceItem == null)
|
||
{
|
||
return false;
|
||
}
|
||
switch (Item)
|
||
{
|
||
case null:
|
||
return true;
|
||
case PlaceholderItem placeholderItem:
|
||
var placeholderItemContainer = placeholderItem.ItemContainer;
|
||
if (placeholderItemContainer == null)
|
||
{
|
||
return true;
|
||
}
|
||
return placeholderItemContainer.CanReplaceItem(placeholderItem.Index, sourceItem);
|
||
default:
|
||
var sourceItemSelfContainer = sourceItem.SelfItemContainer;
|
||
if (sourceItemSelfContainer != null)
|
||
{
|
||
//Place the container on the item.
|
||
//将容器放在物品上。
|
||
return sourceItemSelfContainer.CanAddItem(Item);
|
||
}
|
||
var itemSelfContainer = Item.SelfItemContainer;
|
||
if (itemSelfContainer != null)
|
||
{
|
||
//Drag the item onto the container.
|
||
//将物品拖到容器上。
|
||
return itemSelfContainer.CanAddItem(sourceItem);
|
||
}
|
||
return Item.MergeableItemCount(sourceItem, sourceItem.Quantity) > 0;
|
||
}
|
||
}
|
||
|
||
public override void _DropData(Vector2 atPosition, Variant data)
|
||
{
|
||
//The item is empty and the corresponding item container cannot be retrieved.
|
||
//物品为空,无法获取对应的物品容器。
|
||
if (Item is null)
|
||
{
|
||
return;
|
||
}
|
||
var type = data.VariantType;
|
||
if (type == Variant.Type.Nil)
|
||
{
|
||
return;
|
||
}
|
||
var itemSlotNode = data.As<ItemSlotNode>();
|
||
var sourceItem = itemSlotNode.Item;
|
||
if (sourceItem == null)
|
||
{
|
||
return;
|
||
}
|
||
|
||
if (Item.SelfItemContainer != null && Item.SelfItemContainer.CanAddItem(sourceItem))
|
||
{
|
||
//Use items and place them on the container.
|
||
//用物品,在物品容器上放置。
|
||
var oldIndex = sourceItem.Index;
|
||
var oldItemContainer = sourceItem.ItemContainer;
|
||
var addNumber = Item.SelfItemContainer.AddItem(sourceItem);
|
||
if (addNumber >= 0)
|
||
{
|
||
if (addNumber == sourceItem.Quantity)
|
||
{
|
||
oldItemContainer?.ClearItem(oldIndex);
|
||
}
|
||
else
|
||
{
|
||
oldItemContainer?.RemoveItem(oldIndex, addNumber);
|
||
}
|
||
}
|
||
return;
|
||
}
|
||
|
||
if (sourceItem.SelfItemContainer != null && sourceItem.SelfItemContainer.CanAddItem(Item))
|
||
{
|
||
//Use containers and place on top of items.
|
||
//用容器物品,在物品上放置。
|
||
var oldIndex = Item.Index;
|
||
var oldItemContainer = Item.ItemContainer;
|
||
var addNumber = sourceItem.SelfItemContainer.AddItem(Item);
|
||
if (addNumber >= 0)
|
||
{
|
||
if (addNumber == Item.Quantity)
|
||
{
|
||
oldItemContainer?.ClearItem(oldIndex);
|
||
}
|
||
else
|
||
{
|
||
oldItemContainer?.RemoveItem(oldIndex, addNumber);
|
||
}
|
||
}
|
||
return;
|
||
}
|
||
|
||
if (Item is PlaceholderItem placeholderItem)
|
||
{
|
||
var placeholderItemContainer = placeholderItem.ItemContainer;
|
||
var sourceItemContainer = sourceItem.ItemContainer;
|
||
var sourceItemIndex = sourceItem.Index;
|
||
var replaceResult = false;
|
||
if (placeholderItemContainer != null)
|
||
{
|
||
replaceResult = placeholderItemContainer.ReplaceItem(placeholderItem.Index, sourceItem);
|
||
}
|
||
if (replaceResult && sourceItemContainer != null)
|
||
{
|
||
sourceItemContainer.ClearItem(sourceItemIndex);
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
private void UpdateBackground(bool isSelect)
|
||
{
|
||
if (_backgroundTextureRect == null)
|
||
{
|
||
return;
|
||
}
|
||
|
||
_backgroundTextureRect.Texture = isSelect ? _backgroundTextureWhenSelect : _backgroundTexture;
|
||
}
|
||
|
||
public TextureRect? BackgroundTextureRect => _backgroundTextureRect;
|
||
|
||
|
||
/// <summary>
|
||
/// <para>Update all displays of this slot</para>
|
||
/// <para>更新该槽位的一切显示信息</para>
|
||
/// </summary>
|
||
private void UpdateAllDisplay()
|
||
{
|
||
UpdateIconTexture();
|
||
UpdateQuantityLabel();
|
||
UpdateTooltipText();
|
||
}
|
||
|
||
/// <summary>
|
||
/// <para>Update item tips</para>
|
||
/// <para>更新物品的提示内容</para>
|
||
/// </summary>
|
||
private void UpdateTooltipText()
|
||
{
|
||
if (Item is PlaceholderItem or null)
|
||
{
|
||
TooltipText = null;
|
||
return;
|
||
}
|
||
|
||
if (Config.IsDebug())
|
||
{
|
||
var debugText = TranslationServerUtils.Translate("item_prompt_debug");
|
||
if (debugText != null)
|
||
{
|
||
TooltipText = string.Format(debugText, Item.Id,
|
||
TranslationServerUtils.Translate(Item.Name),
|
||
Item.Quantity, Item.MaxQuantity, Item.GetType().Name,
|
||
TranslationServerUtils.Translate(Item.Description));
|
||
}
|
||
}
|
||
else
|
||
{
|
||
TooltipText = TranslationServerUtils.Translate(Item.Name) + "\n" +
|
||
TranslationServerUtils.Translate(Item.Description);
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// <para>Update quantity label</para>
|
||
/// <para>更新数量标签</para>
|
||
/// </summary>
|
||
private void UpdateQuantityLabel()
|
||
{
|
||
if (_quantityLabel == null)
|
||
{
|
||
return;
|
||
}
|
||
|
||
if (Item is PlaceholderItem or null)
|
||
{
|
||
_quantityLabel.Hide();
|
||
return;
|
||
}
|
||
|
||
switch (Item?.Quantity)
|
||
{
|
||
case null or 1:
|
||
_quantityLabel.Hide();
|
||
return;
|
||
default:
|
||
//When the quantity is not null or 1, we display the quantity.
|
||
//当数量不为null或1时,我们显示数量
|
||
_quantityLabel.Text = Item?.Quantity.ToString();
|
||
_quantityLabel.Show();
|
||
break;
|
||
}
|
||
}
|
||
|
||
|
||
/// <summary>
|
||
/// <para>Update texture of the icon rect</para>
|
||
/// <para>更新显示的物品图标</para>
|
||
/// </summary>
|
||
private void UpdateIconTexture()
|
||
{
|
||
if (_iconTextureRect != null)
|
||
{
|
||
_iconTextureRect.Texture = Item?.Icon;
|
||
}
|
||
}
|
||
|
||
public void Update(IItem? item)
|
||
{
|
||
Item = item;
|
||
UpdateAllDisplay();
|
||
UpdateBackground(item is { IsSelect: true });
|
||
}
|
||
|
||
public void ShowSelf()
|
||
{
|
||
Show();
|
||
}
|
||
|
||
public void HideSelf()
|
||
{
|
||
Hide();
|
||
}
|
||
} |