Unity - 在方法中添加多个数组参数(用于添加多个项目)

Unity - Adding multiple array parameters in method (for adding multiple items)

我正在尝试实现一种可以调用以创建多个项目的方法

这是我试图让它发挥作用的方法

public void AddMultipleItems(string[] itemKey, int[] amount)
{

    for (int i = 0; i < itemKey.Length; i++)
    {
        Item item;
        item = ItemCollection[itemKey[i]];

        for (int x = 0; x < amount.Length; x++)
        {
            if (inventory.CanAddItem(item, amount[x]) == true)
            {
                inventory.AddItem(item.GetCopy());
            }
            else if (inventory.CanAddItem(item, amount[x]) == false)
            {
                Debug.Log("Inventory Full");
                break;
            }

        }
    }

}

然后将调用此方法添加如下项目:

itemDB.AddMultipleItems(new string[] { "Boots", "Gold Coin", "Apple" }, new int[] {1, 2, 3 });

结果:我得到了3个靴子,3个金币和3个苹果。当我应该得到 1 个靴子、2 个金币和 3 个苹果时,

我已经完成了类似的方法,除了它不需要数组参数而且它完美地工作:

 public void AddItems(string itemKey, int amount)
{
    //First check if entered itemKey parameter exists in ItemCollection Dictionary
    if (ItemCollection.ContainsKey(itemKey))
    {
        Item item;
        item = ItemCollection[itemKey];
        if (item != null)
        {
            //check if we can add the item and the amount of it
            if (inventory.CanAddItem(item, amount))
            {
                //loop through the total amount
                for (int i = 0; i < amount; i++)
                {
                    //add the item
                    inventory.AddItem(item.GetCopy());
                }
                Debug.Log(itemKey + " Added Successfully!");
            }
            else
            {
                Debug.Log("Not enough space in Inventory");
            }
        }
        else
        {
            Debug.Log("Null Item");
        }
    }
    else
    {
        Debug.Log(itemKey + " does not exist in ItemDatabase's Dictionary");
    }
}

所以基本上另一种看待它的方式是我怎样才能把 AddItems(string itemKey, int amount) 变成 AddItems(string[] itemKey,整数 [] 数量)。它的 for 循环、foreach 循环和数组有点让我绊倒,因为我不太擅长这些。

感谢任何帮助,谢谢!

对于每个 item,您将遍历整个 amount 数组,该数组包含 3 个条目。我实际上希望每件商品都能添加 1+2+3 = 6 件商品。

您是否只想从 one 中的 amount 条目中获取与给定 itemKey 具有相同索引的条目添加的数量:amount[i]

public void AddMultipleItems(string[] itemKey, int[] amount)
{
    for (int i = 0; i < itemKey.Length; i++)
    {
        Item item;
        item = ItemCollection[itemKey[i]];

        if (inventory.CanAddItem(item, amount[i]))
        {
            inventory.AddItem(item.GetCopy());
        }
        else // your if condition here was redundant
        {
            Debug.Log("Inventory Full");
        }
    }
}

一般来说,您已经有了添加单个项目的方法,因此我不会为多个项目重新实现该方法,而是从循环中调用它,例如

public void AddMultipleItems(string[] itemKey, int[] amount)
{
    for (int i = 0; i < itemKey.Length; i++)
    {
        // Instead of re-implement rather call your existing method
        // and treat each value pair as if ti was a single add call
        AddItems(itemKey[i], amount[i]);
    }
}

然后传入两个单独的数组非常容易出错且难以维护。我可能宁愿传递一个 Dictionary<string, int>,例如

public void AddMultipleItems(Dictionary<string, int> itemsToAdd)
{
    foreach (var kvp in itemsToAdd)
    {
        AddItems(kvp.Key, kvp.Value);
    }
}

然后像这样称呼它

 itemDB.AddMultipleItems(new Dictionary<string, int>{ {"Boots", 1}, {"Gold Coin", 2}, {"Apple", 3}});