當前位置: 首頁>>代碼示例>>C#>>正文


C# ItemInfo.CanStackedTo方法代碼示例

本文整理匯總了C#中SqlDataProvider.Data.ItemInfo.CanStackedTo方法的典型用法代碼示例。如果您正苦於以下問題:C# ItemInfo.CanStackedTo方法的具體用法?C# ItemInfo.CanStackedTo怎麽用?C# ItemInfo.CanStackedTo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SqlDataProvider.Data.ItemInfo的用法示例。


在下文中一共展示了ItemInfo.CanStackedTo方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: AddTemplate

        public virtual bool AddTemplate(ItemInfo cloneItem, int count, int minSlot, int maxSlot)
        {
            if (cloneItem == null) return false;
            ItemTemplateInfo template = cloneItem.Template;
            if (template == null) return false;
            if (count <= 0) return false;
            if (minSlot < m_beginSlot || minSlot > m_capalility - 1) return false;
            if (maxSlot < m_beginSlot || maxSlot > m_capalility - 1) return false;
            if (minSlot > maxSlot) return false;


            lock (m_lock)
            {
                List<int> changedSlot = new List<int>();
                int itemcount = count;

                for (int i = minSlot; i <= maxSlot; i++)
                {
                    ItemInfo item = m_items[i];
                    if (item == null)
                    {
                        itemcount -= template.MaxCount;
                        changedSlot.Add(i);
                    }
                    else if (m_autoStack && cloneItem.CanStackedTo(item))
                    {
                        itemcount -= (template.MaxCount - item.Count);
                        changedSlot.Add(i);
                    }
                    if (itemcount <= 0)
                        break;
                }

                if (itemcount <= 0)
                {
                    BeginChanges();
                    try
                    {
                        itemcount = count;
                        foreach (int i in changedSlot)
                        {
                            ItemInfo item = m_items[i];
                            if (item == null)
                            {
                                item = cloneItem.Clone();

                                item.Count = itemcount < template.MaxCount ? itemcount : template.MaxCount;

                                itemcount -= item.Count;

                                AddItemTo(item, i);
                            }
                            else
                            {
                                if (item.TemplateID == template.TemplateID)
                                {
                                    int add = (item.Count + itemcount < template.MaxCount ? itemcount : template.MaxCount - item.Count);
                                    item.Count += add;
                                    itemcount -= add;

                                    OnPlaceChanged(i);
                                }
                                else
                                {
                                    log.Error("Add template erro: select slot's TemplateId not equest templateId");
                                }
                            }
                        }

                        if (itemcount != 0)
                            log.Error("Add template error: last count not equal Zero.");
                    }
                    finally
                    {
                        CommitChanges();
                    }

                    return true;
                }
                else
                {
                    return false;
                }
            }
        }
開發者ID:geniushuai,項目名稱:DDTank-3.0,代碼行數:85,代碼來源:AbstractInventory.cs


注:本文中的SqlDataProvider.Data.ItemInfo.CanStackedTo方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。