本文整理汇总了C++中unit_type::hide_help方法的典型用法代码示例。如果您正苦于以下问题:C++ unit_type::hide_help方法的具体用法?C++ unit_type::hide_help怎么用?C++ unit_type::hide_help使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类unit_type
的用法示例。
在下文中一共展示了unit_type::hide_help方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: show_unit_description
void show_unit_description(CVideo& video, const unit_type &t)
{
std::string var_id = t.get_cfg()["variation_id"].str();
if (var_id.empty())
var_id = t.get_cfg()["variation_name"].str();
bool hide_help = t.hide_help();
bool use_variation = false;
if (!var_id.empty()) {
const unit_type *parent = unit_types.find(t.id());
assert(parent);
if (hide_help) {
hide_help = parent->hide_help();
} else {
use_variation = true;
}
}
if (use_variation)
help::show_variation_help(video, t.id(), var_id, hide_help);
else
help::show_unit_help(video, t.id(), t.show_variations_in_help(), hide_help);
}
示例2: show_unit_description
void show_unit_description(const unit_type &t)
{
help::show_unit_help(*resources::screen, t.id(), t.hide_help());
}