本文整理汇总了C++中item::covers方法的典型用法代码示例。如果您正苦于以下问题:C++ item::covers方法的具体用法?C++ item::covers怎么用?C++ item::covers使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类item
的用法示例。
在下文中一共展示了item::covers方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: conflicts_with_item
bool mutation_branch::conflicts_with_item( const item &it ) const
{
if( allow_soft_gear && it.is_soft() ) {
return false;
}
for( body_part bp : restricts_gear ) {
if( it.covers( bp ) ) {
return true;
}
}
return false;
}
示例2: set_worn
void player_morale::set_worn( const item &it, bool worn )
{
const bool just_fancy = it.has_flag( "FANCY" );
const bool super_fancy = it.has_flag( "SUPER_FANCY" );
if( just_fancy || super_fancy ) {
const int sign = ( worn ) ? 1 : -1;
for( int i = 0; i < num_bp; i++ ) {
const auto bp = static_cast<body_part>( i );
if( it.covers( bp ) ) {
covered[i] = std::max( covered[i] + sign, 0 );
}
}
if( super_fancy ) {
super_fancy_bonus += 2 * sign;
}
update_stylish_bonus();
}
}