147 lines
3.2 KiB
C#
147 lines
3.2 KiB
C#
using Godot;
|
|
using SupaLidlGame.Characters;
|
|
using Godot.Collections;
|
|
|
|
namespace SupaLidlGame.Items;
|
|
|
|
public partial class Inventory : Node2D
|
|
{
|
|
public Character Character { get; private set; }
|
|
|
|
[Export]
|
|
public Array<Item> Items { get; private set; }
|
|
|
|
[Export]
|
|
public Dictionary<string, int> InventoryMap { get; set; }
|
|
|
|
[Signal]
|
|
public delegate void UsedItemEventHandler(Item item);
|
|
|
|
public const int MaxCapacity = 32;
|
|
|
|
private Item _selectedItem;
|
|
|
|
public Item SelectedItem
|
|
{
|
|
get => _selectedItem;
|
|
set => EquipItem(value, ref _selectedItem);
|
|
}
|
|
|
|
private int _quickSwitchIndex = -1;
|
|
|
|
public const int QUICKSWITCH_SIZE = 3;
|
|
|
|
public int CurrentQuickSwitchIndex
|
|
{
|
|
get => _quickSwitchIndex;
|
|
set
|
|
{
|
|
const int size = QUICKSWITCH_SIZE;
|
|
_quickSwitchIndex = (value % size + size) % size;
|
|
}
|
|
}
|
|
|
|
public bool IsUsingItem => SelectedItem?.IsUsing ?? false;
|
|
|
|
public Inventory()
|
|
{
|
|
//InventoryMap = new Dictionary<string, int>();
|
|
//InventoryMap.Add("equip_1", 0);
|
|
//InventoryMap.Add("equip_2", 1);
|
|
//InventoryMap.Add("equip_3", 2);
|
|
}
|
|
|
|
public override void _Ready()
|
|
{
|
|
if (Items is null)
|
|
{
|
|
// instantiating a new array will prevent characters from
|
|
// sharing inventories
|
|
Items = new Array<Item>();
|
|
}
|
|
Character = GetParent<Character>();
|
|
foreach (Node child in GetChildren())
|
|
{
|
|
if (child is Item item)
|
|
{
|
|
AddItem(item);
|
|
}
|
|
}
|
|
base._Ready();
|
|
}
|
|
|
|
public bool EquipIndex(int index)
|
|
{
|
|
if (index < Items.Count)
|
|
{
|
|
return EquipItem(Items[index], ref _selectedItem);
|
|
}
|
|
|
|
return EquipItem(null, ref _selectedItem);
|
|
}
|
|
|
|
private bool EquipItem(Item item, ref Item slot)
|
|
{
|
|
if (item is not null)
|
|
{
|
|
if (!Items.Contains(item))
|
|
{
|
|
GD.PrintErr("Tried to equip an item not in the inventory.");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (slot is not null)
|
|
{
|
|
slot.Unequip(Character);
|
|
}
|
|
|
|
slot = item;
|
|
|
|
if (item is not null)
|
|
{
|
|
item.Equip(Character);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public Item GetItemByMap(string keymap)
|
|
{
|
|
if (InventoryMap.ContainsKey(keymap))
|
|
{
|
|
int idx = InventoryMap[keymap];
|
|
if (idx < Items.Count)
|
|
{
|
|
return Items[InventoryMap[keymap]];
|
|
}
|
|
}
|
|
else GD.Print(keymap + " does not exist");
|
|
return null;
|
|
}
|
|
|
|
public Item AddItem(Item item)
|
|
{
|
|
if (Items.Count >= MaxCapacity)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
item.CharacterOwner = Character;
|
|
item.Visible = false;
|
|
if (!Items.Contains(item))
|
|
{
|
|
Items.Add(item);
|
|
}
|
|
return item;
|
|
}
|
|
|
|
public Item DropItem(Item item)
|
|
{
|
|
item.CharacterOwner = null;
|
|
item.Visible = true;
|
|
var e = SelectedItem = item;
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|