Traveller/scripts/inventory/HotBar.cs

177 lines
4.7 KiB
C#
Raw Normal View History

2024-04-28 13:55:19 +00:00
using System.Collections.Generic;
using System.Linq;
using ColdMint.scripts.debug;
2024-04-28 13:55:19 +00:00
using Godot;
namespace ColdMint.scripts.inventory;
public partial class HotBar : HBoxContainer
{
private PackedScene _itemSlotPackedScene;
private List<ItemSlotNode> _itemSlotNodes;
private int selectIndex = 0;
2024-04-28 13:55:19 +00:00
public override void _Ready()
{
base._Ready();
_itemSlotNodes = new List<ItemSlotNode>();
_itemSlotPackedScene = GD.Load<PackedScene>("res://prefab/ui/ItemSlot.tscn");
for (var i = 0; i < Config.HotBarSize; i++)
2024-04-28 13:55:19 +00:00
{
AddItemSlot(i);
2024-04-28 13:55:19 +00:00
}
}
public override void _Process(double delta)
{
base._Process(delta);
if (Input.IsActionJustPressed("hotbar_next"))
{
var count = _itemSlotNodes.Count;
if (count == 0)
{
return;
}
//Mouse wheel down
//鼠标滚轮向下
var oldSelectIndex = selectIndex;
selectIndex++;
if (selectIndex >= count)
{
selectIndex = 0;
}
SelectItemSlot(oldSelectIndex, selectIndex);
}
if (Input.IsActionJustPressed("hotbar_previous"))
{
var count = _itemSlotNodes.Count;
if (count == 0)
{
return;
}
//Mouse wheel up
//鼠标滚轮向上
var oldSelectIndex = selectIndex;
selectIndex--;
if (selectIndex < 0)
{
selectIndex = count - 1;
}
SelectItemSlot(oldSelectIndex, selectIndex);
}
if (Input.IsActionJustPressed("hotbar_1"))
{
SelectItemSlotByHotBarShortcutKey(0);
}
if (Input.IsActionJustPressed("hotbar_2"))
{
SelectItemSlotByHotBarShortcutKey(1);
}
if (Input.IsActionJustPressed("hotbar_3"))
{
SelectItemSlotByHotBarShortcutKey(2);
}
if (Input.IsActionJustPressed("hotbar_4"))
{
SelectItemSlotByHotBarShortcutKey(3);
}
if (Input.IsActionJustPressed("hotbar_5"))
{
SelectItemSlotByHotBarShortcutKey(4);
}
if (Input.IsActionJustPressed("hotbar_6"))
{
SelectItemSlotByHotBarShortcutKey(5);
}
if (Input.IsActionJustPressed("hotbar_7"))
{
SelectItemSlotByHotBarShortcutKey(6);
}
if (Input.IsActionJustPressed("hotbar_8"))
{
SelectItemSlotByHotBarShortcutKey(7);
}
if (Input.IsActionJustPressed("hotbar_9"))
{
SelectItemSlotByHotBarShortcutKey(8);
}
if (Input.IsActionJustPressed("hotbar_10"))
{
SelectItemSlotByHotBarShortcutKey(9);
}
}
/// <summary>
/// <para>Select the HotBar project using the shortcut keys</para>
/// <para>通过快捷键选择HotBar项目</para>
/// </summary>
/// <para>The Pc version of the shortcut key index is 0-9</para>
/// <para>Pc版本的快捷键索引为0-9</para>
/// <param name="shortcutKeyIndex"></param>
private void SelectItemSlotByHotBarShortcutKey(int shortcutKeyIndex)
{
var count = _itemSlotNodes.Count;
if (count == 0)
{
//Prevents the dividend from being 0
//防止被除数为0
return;
}
var newIndex = shortcutKeyIndex % count;
SelectItemSlot(selectIndex, newIndex);
selectIndex = newIndex;
}
/// <summary>
/// <para>Select an item slot</para>
/// <para>选中某个物品槽</para>
/// </summary>
private void SelectItemSlot(int oldSelectIndex, int newSelectIndex)
{
_itemSlotNodes[oldSelectIndex].IsSelect = false;
_itemSlotNodes[newSelectIndex].IsSelect = true;
}
2024-04-28 13:55:19 +00:00
/// <summary>
/// <para>Add an item to the HotBar</para>
/// <para>在HotBar内添加一个物品</para>
/// </summary>
/// <param name="item"></param>
/// <returns></returns>
public bool AddItem(IItem item)
{
return _itemSlotNodes.Count != 0 && _itemSlotNodes.Any(itemSlotNode => itemSlotNode.SetItem(item));
}
/// <summary>
/// <para>Add items tank</para>
/// <para>添加物品槽</para>
/// </summary>
private void AddItemSlot(int index)
2024-04-28 13:55:19 +00:00
{
var itemSlotNode = _itemSlotPackedScene.Instantiate() as ItemSlotNode;
if (itemSlotNode == null)
{
return;
}
AddChild(itemSlotNode);
itemSlotNode.IsSelect = index == selectIndex;
_itemSlotNodes.Add(itemSlotNode);
2024-04-28 13:55:19 +00:00
}
}