本文整理汇总了C++中itemstack_vector::end方法的典型用法代码示例。如果您正苦于以下问题:C++ itemstack_vector::end方法的具体用法?C++ itemstack_vector::end怎么用?C++ itemstack_vector::end使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类itemstack_vector
的用法示例。
在下文中一共展示了itemstack_vector::end方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: make_item_list
void inventory_selector::make_item_list(const indexed_invslice &slice, const item_category *def_cat)
{
for( const auto &scit : slice ) {
// That entry represents the item stack
const itemstack_or_category item_entry(scit);
const item_category *category = def_cat;
if (category == NULL) {
category = item_entry.category;
}
// Entry that represents the category header
const itemstack_or_category cat_entry(category);
itemstack_vector::iterator cat_iter = std::find(items.begin(), items.end(), cat_entry);
if (cat_iter == items.end()) {
// Category is not yet contained in the list, add it to the end
items.push_back(cat_entry);
cat_iter = items.end();
} else {
// Category is already contained, skip all the items that belong to the
// category to insert the current item behind them (but before the next category)
do {
++cat_iter;
} while(cat_iter != items.end() && cat_iter->it != NULL);
}
items.insert(cat_iter, item_entry);
}
}