当前位置: 首页>>代码示例>>C++>>正文


C++ ItemPtr::GetCount方法代码示例

本文整理汇总了C++中ItemPtr::GetCount方法的典型用法代码示例。如果您正苦于以下问题:C++ ItemPtr::GetCount方法的具体用法?C++ ItemPtr::GetCount怎么用?C++ ItemPtr::GetCount使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ItemPtr的用法示例。


在下文中一共展示了ItemPtr::GetCount方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: SplitItem

void Container::SplitItem(ItemPtr item)
{
   auto itemLocation = std::find(this->Contents.begin(), this->Contents.end(), item);
   if (itemLocation == this->Contents.end()) {
      return;
   }

   auto newItem = Item::Clone(item);
   auto splitSize = item->GetCount() / 2;
   auto difference = (item->GetCount() - splitSize); // We don't want rounding issues
   item->SetCount(splitSize);
   newItem->SetCount(difference);
   this->Contents.insert(itemLocation + 1, newItem);
}
开发者ID:LunaticEdit,项目名称:harvest-rogue,代码行数:14,代码来源:container.cpp

示例2: CombineItems

void Container::CombineItems(ItemPtr source, ItemPtr dest)
{
   auto destItemLocation = std::find(this->Contents.begin(), this->Contents.end(), dest);
   auto sourceItemLocation = std::find(this->Contents.begin(), this->Contents.end(), source);

   auto movingFromHere = sourceItemLocation != this->Contents.end();
   auto movingToHere = destItemLocation != this->Contents.end();

   if (!movingFromHere && !movingToHere) {
      return;
   }

   if (movingToHere) {
      destItemLocation->get()->SetCount(destItemLocation->get()->GetCount() + source->GetCount());
      source->SetCount(0);
   }

   if (!movingFromHere) {
      return;
   }

   this->Contents.erase(sourceItemLocation);
}
开发者ID:LunaticEdit,项目名称:harvest-rogue,代码行数:23,代码来源:container.cpp


注:本文中的ItemPtr::GetCount方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。