48 #include <boost/algorithm/string.hpp>
56 #define WRN_HP LOG_STREAM(warn, log_help)
57 #define DBG_HP LOG_STREAM(debug, log_help)
103 if (ch < 0x2e80)
return false;
107 (ch >= 0x4e00 && ch < 0x9fcf) ||
108 (ch >= 0x3400 && ch < 0x4dbf) ||
109 (ch >= 0x20000 && ch < 0x2a6df) ||
110 (ch >= 0xf900 && ch < 0xfaff) ||
111 (ch >= 0x3190 && ch < 0x319f) ||
114 (ch >= 0x2e80 && ch < 0x2eff) ||
115 (ch >= 0x2f00 && ch < 0x2fdf) ||
116 (ch >= 0x31c0 && ch < 0x31ef) ||
119 (ch >= 0x3104 && ch < 0x312e) ||
120 (ch >= 0x31a0 && ch < 0x31bb) ||
123 (ch >= 0xa490 && ch < 0xa4c7) ||
124 (ch >= 0xa000 && ch < 0xa48d) ||
127 (ch >= 0x3040 && ch <= 0x309f) ||
128 (ch >= 0x30a0 && ch <= 0x30ff) ||
129 (ch >= 0x1b000 && ch <= 0x1b001) ||
132 (ch >= 0x31f0 && ch <= 0x31ff) ||
135 (ch >= 0xac00 && ch < 0xd7af) ||
136 (ch >= 0x1100 && ch <= 0x11ff) ||
137 (ch >= 0xa960 && ch <= 0xa97c) ||
138 (ch >= 0xd7b0 && ch <= 0xd7fb) ||
141 (ch >= 0x3000 && ch < 0x303f) ||
144 (ch >= 0xff00 && ch < 0xffef);
151 const std::vector<std::string> toplevel_refs
153 if (
std::find(toplevel_refs.begin(), toplevel_refs.end(), section_id)
154 != toplevel_refs.end()) {
161 const std::vector<std::string> sections_refd
163 if (
std::find(sections_refd.begin(), sections_refd.end(), section_id)
164 != sections_refd.end()) {
175 const std::vector<std::string> toplevel_refs
177 if (
std::find(toplevel_refs.begin(), toplevel_refs.end(), topic_id)
178 != toplevel_refs.end()) {
185 const std::vector<std::string> topics_refd
187 if (
std::find(topics_refd.begin(), topics_refd.end(), topic_id)
188 != topics_refd.end()) {
199 PLAIN_LOG <<
"Maximum section depth has been reached. Maybe circular dependency?";
201 else if (section_cfg !=
nullptr) {
203 std::string
id =
level == 0 ?
"toplevel" : (*section_cfg)[
"id"].str();
206 std::stringstream ss;
207 ss <<
"Invalid ID, used for internal purpose: '" <<
id <<
"'";
211 std::string title =
level == 0 ?
"" : (*section_cfg)[
"title"].str();
214 std::vector<std::string>::const_iterator it;
216 for (it = sections.begin(); it != sections.end(); ++it) {
217 if (
auto child_cfg = help_cfg->
find_child(
"section",
"id", *it))
224 std::stringstream ss;
225 ss <<
"Help-section '" << *it <<
"' referenced from '"
226 <<
id <<
"' but could not be found.";
232 if ((*section_cfg)[
"sort_sections"] ==
"yes") {
236 bool sort_topics =
false;
237 bool sort_generated =
true;
239 if ((*section_cfg)[
"sort_topics"] ==
"yes") {
241 sort_generated =
false;
242 }
else if ((*section_cfg)[
"sort_topics"] ==
"no") {
244 sort_generated =
false;
245 }
else if ((*section_cfg)[
"sort_topics"] ==
"generated") {
247 sort_generated =
true;
248 }
else if (!(*section_cfg)[
"sort_topics"].empty()) {
249 std::stringstream ss;
250 ss <<
"Invalid sort option: '" << (*section_cfg)[
"sort_topics"] <<
"'";
254 std::vector<topic> generated_topics =
generate_topics(sort_generated,(*section_cfg)[
"generator"]);
257 std::vector<topic> topics;
260 for (it = topics_id.begin(); it != topics_id.end(); ++it) {
261 if (
auto topic_cfg = help_cfg->
find_child(
"topic",
"id", *it))
263 std::string text = topic_cfg[
"text"];
265 topic child_topic(topic_cfg[
"title"], topic_cfg[
"id"], text);
267 std::stringstream ss;
268 ss <<
"Invalid ID, used for internal purpose: '" <<
id <<
"'";
271 topics.push_back(child_topic);
274 std::stringstream ss;
275 ss <<
"Help-topic '" << *it <<
"' referenced from '" <<
id
276 <<
"' but could not be found." << std::endl;
282 std::sort(topics.begin(),topics.end(),
title_less());
283 std::sort(generated_topics.begin(),
285 std::merge(generated_topics.begin(),
286 generated_topics.end(),topics.begin(),topics.end()
291 topics.begin(), topics.end());
293 generated_topics.begin(), generated_topics.end());
301 if (cfg !=
nullptr) {
310 std::vector<topic> res;
317 }
else if (
generator ==
"weapon_specials") {
319 }
else if (
generator ==
"time_of_days") {
325 if (parts.size() > 1 && parts[0] ==
"units") {
327 }
else if (parts[0] ==
"era" && parts.size()>1) {
330 WRN_HP <<
"Found a topic generator that I didn't recognize: " <<
generator;
344 DBG_HP <<
"Generating eras...";
348 if (parts.size() > 1 && parts[0] ==
"units") {
351 WRN_HP <<
"Found a section generator that I didn't recognize: " <<
generator;
358 std::string empty_string =
"";
363 if (parts.size() > 1 && parts[0] ==
"contents") {
364 if (parts[1] ==
"generated") {
392 return markup::span_color((time_of_day_bonus > 0 ?
"green" : (time_of_day_bonus < 0 ?
"red" :
"white")), time_of_day_bonus);
397 std::vector<topic> topics;
398 std::stringstream toplevel;
401 toplevel <<
_(
"Only available during a scenario.");
402 topics.emplace_back(
_(
"Time of Day Schedule"),
"..schedule", toplevel.str());
409 const std::string
id =
"time_of_day_" + time.id;
411 const std::string image_lawful =
markup::img(
"icons/alignments/alignment_lawful_30.png");
412 const std::string image_neutral =
markup::img(
"icons/alignments/alignment_neutral_30.png");
413 const std::string image_chaotic =
markup::img(
"icons/alignments/alignment_chaotic_30.png");
414 const std::string image_liminal =
markup::img(
"icons/alignments/alignment_liminal_30.png");
415 std::stringstream text, row_ss;
430 text <<
image <<
'\n'
431 << time.description.str() <<
'\n'
438 topics.emplace_back(time.name.str(),
id, text.str());
441 topics.emplace_back(
_(
"Time of Day Schedule"),
"..schedule",
markup::tag(
"table", toplevel.str()));
447 std::vector<topic> topics;
449 std::map<t_string, std::string> special_description;
450 std::map<t_string, std::set<std::string, string_less>> special_units;
452 for (
const unit_type_data::unit_type_map::value_type &type_mapping :
unit_types.
types())
462 std::vector<std::pair<t_string, t_string>> specials = atk.special_tooltips();
463 for ( std::size_t
i = 0;
i != specials.size(); ++
i )
465 special_description.emplace(specials[
i].first, specials[
i].second);
467 if (!
type.hide_help()) {
469 std::string type_name =
type.type_name();
471 const std::string section_prefix =
type.show_variations_in_help() ?
".." :
"";
476 special_units[specials[
i].first].insert(link);
481 for(
config adv :
type.modification_advancements()) {
483 if(effect[
"apply_to"] ==
"new_attack" && effect.has_child(
"specials")) {
484 for(
const auto [key, special] : effect.mandatory_child(
"specials").all_children_view()) {
485 if(!special[
"name"].empty()) {
486 special_description.emplace(special[
"name"].t_str(), special[
"description"].t_str());
487 if(!
type.hide_help()) {
489 std::string type_name =
type.type_name();
491 const std::string section_prefix =
type.show_variations_in_help() ?
".." :
"";
496 special_units[special[
"name"]].insert(link);
500 }
else if(effect[
"apply_to"] ==
"attack" && effect.has_child(
"set_specials")) {
501 for(
const auto [key, special] : effect.mandatory_child(
"set_specials").all_children_view()) {
502 if(!special[
"name"].empty()) {
503 special_description.emplace(special[
"name"].t_str(), special[
"description"].t_str());
504 if(!
type.hide_help()) {
506 std::string type_name =
type.type_name();
508 const std::string section_prefix =
type.show_variations_in_help() ?
".." :
"";
513 special_units[special[
"name"]].insert(link);
523 s != special_description.end(); ++
s) {
525 std::string
id =
"weaponspecial_" +
s->first.base_str();
526 std::stringstream text;
528 text <<
"\n\n" <<
_(
"<header>text='Units with this special attack'</header>") <<
"\n";
529 std::set<std::string, string_less> &units = special_units[
s->first];
534 topics.emplace_back(
s->first,
id, text.str());
538 std::sort(topics.begin(), topics.end(),
title_less());
544 std::vector<topic> topics;
546 std::map<std::string, const unit_type::ability_metadata*> ability_topic_data;
547 std::map<std::string, std::set<std::string, string_less>> ability_units;
554 const std::string topic_ref = ability.id + ability.name.base_str();
556 ability_topic_data.emplace(topic_ref, &ability);
558 if(!
type.hide_help()) {
563 ability_units[topic_ref].insert(link);
578 parse(
type, ability);
582 parse(
type, ability);
586 for(
const auto& a : ability_topic_data) {
587 if (a.second->name.empty()) {
590 std::ostringstream text;
591 text << a.second->description;
592 text <<
"\n\n" <<
_(
"<header>text='Units with this ability'</header>") <<
"\n";
594 for(
const auto& u : ability_units[a.first]) {
598 topics.emplace_back(a.second->name,
ability_prefix + a.first, text.str());
602 std::sort(topics.begin(), topics.end(),
title_less());
610 std::vector<topic> topics;
613 if(era && !era[
"hide_help"].to_bool()) {
616 std::vector<std::string> faction_links;
617 for (
const topic &
t : topics) {
621 std::stringstream text;
622 text <<
markup::tag(
"header",
_(
"Era:"),
" ", era[
"name"]) <<
"\n";
625 if (!description.
empty()) {
626 text << description.
t_str() <<
"\n";
632 std::sort(faction_links.begin(), faction_links.end());
633 for (
const std::string &link : faction_links) {
637 topic era_topic(era[
"name"],
".." +
era_prefix + era[
"id"].str(), text.str());
639 topics.push_back( era_topic );
646 std::vector<topic> topics;
648 const std::string&
id =
f[
"id"];
652 std::stringstream text;
655 if (!description.
empty()) {
656 text << description.
t_str() <<
"\n";
660 const std::vector<std::string> recruit_ids =
utils::split(
f[
"recruit"]);
661 std::set<std::string> races;
662 std::set<std::string> alignments;
664 for (
const std::string & u_id : recruit_ids) {
676 if (!races.empty()) {
678 text <<
_(
"Races: ") << *(it++);
679 while(it != races.end()) {
680 text <<
", " << *(it++);
685 if (!alignments.empty()) {
687 text <<
_(
"Alignments: ") << *(it++);
688 while(it != alignments.end()) {
689 text <<
", " << *(it++);
695 const std::vector<std::string> leaders =
697 for (
const std::string &link : leaders) {
704 const std::vector<std::string> recruit_links =
706 for (
const std::string &link : recruit_links) {
710 const std::string name =
f[
"name"];
712 topics.emplace_back(name, ref_id, text.str());
715 std::sort(topics.begin(), topics.end(),
title_less());
724 std::map<std::string, const config> trait_list;
728 trait_list.emplace(trait[
"id"], trait);
732 std::set<std::string> races;
743 races.insert(
type.race_id());
753 for (
const config& trait :
type.possible_traits()) {
754 trait_list.emplace(trait[
"id"], trait);
764 for(
const auto& race_id : races) {
766 for(
const config & trait : r->additional_traits()) {
767 trait_list.emplace(trait[
"id"], trait);
772 std::vector<topic> topics;
773 for(
auto& a : trait_list) {
774 std::string
id =
"traits_" + a.first;
775 const config& trait = a.second;
777 std::string name = trait[
"male_name"].str();
778 if (name.empty()) name = trait[
"female_name"].str();
779 if (name.empty()) name = trait[
"name"].str();
780 if (name.empty())
continue;
782 std::stringstream text;
783 if (!trait[
"help_text"].empty()) {
784 text << trait[
"help_text"];
785 }
else if (!trait[
"description"].empty()) {
786 text << trait[
"description"];
788 text <<
_(
"No description available.");
792 topics.emplace_back(name,
id, text.str());
796 std::sort(topics.begin(), topics.end(),
title_less());
807 PLAIN_LOG <<
"Unknown unit type : " << type_id;
811 }
else if (!
type->hide_help()) {
812 std::string name =
type->type_name();
815 const std::string section_prefix =
type->show_variations_in_help() ?
".." :
"";
829 std::vector<std::string> links_list;
830 for (
const std::string &type_id : type_id_list) {
832 if (!unit_link.empty())
833 links_list.push_back(unit_link);
837 std::sort(links_list.begin(), links_list.end());
844 std::set<std::string, string_less> races;
845 std::set<std::string, string_less> visible_races;
852 races.insert(
type.race_id());
853 if(!
type.hide_help())
854 visible_races.insert(
type.race_id());
859 std::set<std::string, string_less> last_sweep = visible_races;
860 while(!last_sweep.empty()) {
861 std::set<std::string, string_less> current_sweep;
862 for(
const auto& race_id : last_sweep) {
864 const auto& help_taxonomy = r->help_taxonomy();
865 if(!help_taxonomy.empty() && !visible_races.count(help_taxonomy) &&
unit_types.
find_race(help_taxonomy)) {
866 current_sweep.insert(help_taxonomy);
867 races.insert(help_taxonomy);
868 visible_races.insert(help_taxonomy);
872 last_sweep = std::move(current_sweep);
875 struct taxonomy_queue_type
877 std::string parent_id;
880 std::vector<taxonomy_queue_type> taxonomy_queue;
884 for(
const auto& race_id : races) {
888 bool hidden = (visible_races.count(race_id) == 0);
893 std::string help_taxonomy;
895 title = r->plural_name();
896 help_taxonomy = r->help_taxonomy();
898 title =
_(
"race^Miscellaneous");
901 section_cfg[
"title"] = title;
903 section_cfg[
"sections_generator"] =
"units:" + race_id;
904 section_cfg[
"generator"] =
"units:" + race_id;
908 if(help_taxonomy.empty()) {
911 bool parent_hidden = (visible_races.count(help_taxonomy) == 0);
913 taxonomy_queue.push_back({std::move(parent_id), std::move(race_section)});
918 bool process_queue_again =
true;
919 while(process_queue_again && !taxonomy_queue.empty()) {
920 process_queue_again =
false;
921 std::vector<taxonomy_queue_type> to_process = std::move(taxonomy_queue);
923 for(
auto& x : to_process) {
926 parent->add_section(std::move(x.content));
927 process_queue_again =
true;
929 taxonomy_queue.push_back(std::move(x));
935 for(
auto& x : taxonomy_queue) {
943 if (era[
"hide_help"].to_bool()) {
947 DBG_HP <<
"Adding help section: " << era[
"id"].str();
951 section_cfg[
"id"] =
era_prefix + era[
"id"].str();
952 section_cfg[
"title"] = era[
"name"];
954 section_cfg[
"generator"] =
"era:" + era[
"id"].str();
968 WRN_HP <<
"When building terrain help sections, couldn't acquire terrain types data, aborting.";
972 std::map<std::string, section> base_map;
980 bool hidden =
info.hide_help();
983 ==
prefs::get().encountered_terrains().end() && !
info.is_overlay())
987 terrain_topic.
title =
info.editor_name();
989 terrain_topic.
text = std::make_shared<terrain_topic_generator>(
info);
992 if (
info.has_default_base()) {
993 for (
const auto base : tdata->underlying_union_terrain(
info.default_base())) {
995 base_terrains.emplace_back(base);
1001 const terrain_type& base_info = tdata->get_terrain_info(base);
1006 section& base_section = base_map[base_info.
id()];
1011 if (base_info.
id() ==
info.id())
1013 base_section.
topics.push_back(terrain_topic);
1017 for (
const auto& base : base_map) {
1024 for (
const unit_type_data::unit_type_map::value_type &
i :
unit_types.
types()) {
1027 if (
type.race_id() != race)
1030 if (!
type.show_variations_in_help())
1034 for (
const std::string &variation_id :
type.variations()) {
1036 const unit_type &var_type =
type.get_variation(variation_id);
1040 topic var_topic(topic_name, var_ref,
"");
1041 var_topic.
text = std::make_shared<unit_topic_generator>(var_type, variation_id);
1042 base_unit.
topics.push_back(var_topic);
1045 const std::string type_name =
type.type_name();
1048 base_unit.
id = ref_id;
1049 base_unit.
title = type_name;
1057 std::vector<topic> topics;
1058 std::set<std::string, string_less> race_units;
1059 std::set<std::string, string_less> race_topics;
1060 std::set<std::string> alignments;
1062 for (
const unit_type_data::unit_type_map::value_type &
i :
unit_types.
types())
1066 if (
type.race_id() != race)
1074 const std::string type_name =
type.type_name() + (
type.id() ==
type.type_name().str() ?
"" : debug_suffix);
1075 const std::string real_prefix =
type.show_variations_in_help() ?
".." :
"";
1077 topic unit_topic(type_name, ref_id,
"");
1078 unit_topic.
text = std::make_shared<unit_topic_generator>(
type);
1079 topics.push_back(unit_topic);
1081 if (!
type.hide_help()) {
1085 race_units.insert(link);
1092 std::string race_id =
"..race_"+race;
1093 std::string race_name;
1094 std::string race_description;
1095 std::string race_help_taxonomy;
1097 race_name = r->plural_name();
1098 race_description = r->description();
1099 race_help_taxonomy = r->help_taxonomy();
1101 for (
const config &additional_topic : r->additional_topics())
1103 std::string
id = additional_topic[
"id"];
1104 std::string title = additional_topic[
"title"];
1105 std::string text = additional_topic[
"text"];
1107 topics.emplace_back(title,
id,text);
1109 race_topics.insert(link);
1112 race_name =
_ (
"race^Miscellaneous");
1117 std::map<std::string, t_string> subgroups;
1119 if (r.second.help_taxonomy() == race) {
1120 if (!r.second.plural_name().empty())
1121 subgroups[r.first] = r.second.plural_name();
1123 subgroups[r.first] = r.first;
1127 std::stringstream text;
1129 if (!race_description.empty()) {
1130 text << race_description <<
"\n\n";
1133 if (!alignments.empty()) {
1135 text << (alignments.size() > 1 ?
_(
"Alignments: ") :
_(
"Alignment: ")) << *(it++);
1136 while(it != alignments.end()) {
1137 text <<
", " << *(it++);
1142 if (!race_help_taxonomy.empty()) {
1144 symbols[
"topic_id"] =
"..race_"+race_help_taxonomy;
1146 symbols[
"help_taxonomy"] = r->plural_name();
1150 symbols[
"help_taxonomy"] = race_help_taxonomy;
1154 text <<
VGETTEXT(
"This is a group of units, all of whom are <ref>dst='$topic_id' text='$help_taxonomy'</ref>.", symbols) <<
"\n\n";
1157 if (!subgroups.empty()) {
1158 if (!race_help_taxonomy.empty()) {
1159 text <<
_(
"<header>text='Subgroups of units within this group'</header>") <<
"\n";
1161 text <<
_(
"<header>text='Groups of units within this race'</header>") <<
"\n";
1163 for (
const auto &sg : subgroups) {
1169 if (!race_help_taxonomy.empty()) {
1170 text <<
_(
"<header>text='Units of this group'</header>") <<
"\n";
1172 text <<
_(
"<header>text='Units of this race'</header>") <<
"\n";
1174 for (
const auto &u : race_units) {
1178 topics.emplace_back(race_name, race_id, text.str());
1181 std::sort(topics.begin(), topics.end(),
title_less());
1194 if (encountered_units.find(
type.id()) != encountered_units.end()) {
1199 if (
type.id() ==
"Fog Clearer") {
1208 auto section_cfg = help_cfg->
find_child(
"section",
"id", section_name);
1210 return std::string();
1213 std::ostringstream res;
1218 typedef std::pair<std::string,std::string> link;
1219 std::vector<link> topics_links;
1223 for (
t = topics.begin();
t != topics.end(); ++
t) {
1224 if (
auto topic_cfg = help_cfg->
find_child(
"topic",
"id", *
t)) {
1225 std::string
id = topic_cfg[
"id"];
1227 topics_links.emplace_back(topic_cfg[
"title"],
id);
1231 if (section_cfg[
"sort_topics"] ==
"yes") {
1232 std::sort(topics_links.begin(),topics_links.end());
1236 for (l = topics_links.begin(); l != topics_links.end(); ++l) {
1246 std::stringstream res;
1276 return sec.
id ==
id;
1297 topic_list::const_iterator tit =
1299 if (tit != sec.
topics.end()) {
1318 for (
const auto &subsection : sec.
sections) {
1334 if (text.length() > 0 && text[0] ==
' ') {
1335 return text.substr(1);
1342 std::size_t first_word_start =
s.find_first_not_of(
' ');
1343 if (first_word_start == std::string::npos) {
1346 std::size_t first_word_end =
s.find_first_of(
" \n", first_word_start);
1347 if( first_word_end == first_word_start ) {
1349 first_word_end = first_word_start+1;
1353 std::string re =
s.substr(0, first_word_end);
1359 char32_t firstchar = *ch;
1361 re = unicode_cast<std::string>(firstchar);
1381 std::stringstream ss;
1384 const std::string
id =
section[
"id"];
1390 if (!ss.str().empty()) {
1397 hidden_toplevel[
"sections"] = ss.str();
1401 const std::string
id =
topic[
"id"];
1404 if (!ss.str().empty()) {
1411 hidden_toplevel[
"topics"] = ss.str();
1412 config hidden_cfg = *help_config;
1415 hidden_cfg.
add_child(
"toplevel", std::move(hidden_toplevel));
1419 std::stringstream
msg;
1420 msg <<
"Parse error when parsing help text: '" <<
e.message <<
"'";
1428 return (hidden ?
"." :
"");
1432 return (
id.empty() ||
id[0] !=
'.');
1441 if (
id ==
"toplevel") {
1447 if (
id.
compare(0, 8,
"ability_") == 0) {
1450 if (
id.
compare(0, 14,
"weaponspecial_") == 0) {
1453 if (
id ==
"hidden") {
int generic_combat_modifier(int lawful_bonus, unit_alignments::type alignment, bool is_fearless, int max_liminal_bonus)
Returns the amount that a unit's damage should be multiplied by due to a given lawful_bonus.
Various functions that implement attacks and attack calculations.
Variant for storing WML attributes.
bool empty() const
Tests for an attribute that either was never set or was set to "".
A config object defines a single node in a WML file, with access to child nodes.
optional_config_impl< config > find_child(config_key_type key, const std::string &name, const std::string &value)
Returns the first child of tag key with a name attribute containing value.
void clear_children(T... keys)
child_itors child_range(config_key_type key)
std::string debug() const
optional_config_impl< config > optional_child(config_key_type key, int n=0)
Equivalent to mandatory_child, but returns an empty optional if the nth child was not found.
config & add_child(config_key_type key)
static game_config_manager * get()
const std::shared_ptr< terrain_type_data > & terrain_types() const
A class grating read only view to a vector of config objects, viewed as one config with all children ...
const config & child_or_empty(config_key_type key) const
optional_const_config find_child(config_key_type key, const std::string &name, const std::string &value) const
config_array_view child_range(config_key_type key) const
To be used as a function object to locate sections and topics with a specified ID.
To be used as a function object when sorting section lists on the title.
To be used as a function object when sorting topic lists on the title.
The text displayed in a topic.
std::shared_ptr< topic_generator > generator_
topic_text & operator=(topic_text &&t)=default
const config & parsed_text() const
std::set< std::string > & encountered_units()
bool hide_help() const
For instances created from a [terrain_type] tag, the value in the tag (with default false).
bool is_nonnull() const
True if this object represents some sentinel values.
const std::string & id() const
const t_string & editor_name() const
int get_max_liminal_bonus() const
const std::vector< time_of_day > & times(const map_location &loc=map_location::null_location()) const
static iterator_base end(const string_type &str)
const unit_type * find(const std::string &key, unit_type::BUILD_STATUS status=unit_type::FULL) const
Finds a unit_type by its id() and makes sure it is built to the specified level.
const race_map & races() const
const unit_race * find_race(const std::string &) const
const unit_type_map & types() const
config_array_view traits() const
A single unit type that the player may recruit.
const std::string & id() const
The id for this unit_type.
const t_string & variation_name() const
static std::string _(const char *str)
std::string id
Text to match against addon_info.tags()
static lg::log_domain log_help("help")
Standard logging facilities (interface).
const std::string unicode_bullet
std::string get_first_word(const std::string &s)
Return the first word in s, not removing any spaces in the start of it.
std::vector< topic > generate_unit_topics(const bool sort_generated, const std::string &race)
std::string hidden_symbol(bool hidden)
void generate_unit_sections(const config *, section &sec, int, const bool, const std::string &race)
@ HIDDEN_BUT_SHOW_MACROS
Although the unit itself is hidden, traits reachable via this unit are not hidden.
@ NO_DESCRIPTION
Ignore this unit for documentation purposes.
void generate_races_sections(const config *help_cfg, section &sec, int level)
bool topic_is_referenced(const std::string &topic_id, const config &cfg)
Return true if the topic with id topic_id is referenced from another section in the config,...
std::vector< topic > generate_time_of_day_topics(const bool)
int last_num_encountered_units
void generate_terrain_sections(section &sec, int)
std::string make_unit_link(const std::string &type_id)
return a hyperlink with the unit's name and pointing to the unit page return empty string if this uni...
const std::string open_section_img
const std::string unit_prefix
const std::string variation_prefix
void parse_config_internal(const config *help_cfg, const config *section_cfg, section &sec, int level)
Recursive function used by parse_config.
bool is_visible_id(const std::string &id)
const std::string closed_section_img
std::vector< topic > generate_faction_topics(const config &era, const bool sort_generated)
void generate_sections(const config *help_cfg, const std::string &generator, section &sec, int level)
Dispatch generators to their appropriate functions.
const std::string topic_img
UNIT_DESCRIPTION_TYPE description_type(const unit_type &type)
Return the type of description that should be shown for a unit of the given kind.
const std::string race_prefix
const std::string ability_prefix
std::vector< std::string > make_unit_links_list(const std::vector< std::string > &type_id_list, bool ordered)
return a list of hyperlinks to unit's pages (ordered or not)
std::vector< topic > generate_topics(const bool sort_generated, const std::string &generator)
const section * find_section(const section &sec, const std::string &id)
Search for the section with the specified identifier in the section and its subsections.
static std::string time_of_day_bonus_colored(const int time_of_day_bonus)
const int normal_font_size
void generate_contents()
Generate the help contents from the configurations given to the manager.
const std::string terrain_prefix
std::vector< topic > generate_weapon_special_topics(const bool sort_generated)
std::vector< topic > generate_ability_topics(const bool sort_generated)
std::string remove_first_space(const std::string &text)
const std::string unknown_unit_topic
const int max_section_level
const unsigned max_history
std::vector< std::string > empty_string_vector
bool section_is_referenced(const std::string §ion_id, const config &cfg)
Return true if the section with id section_id is referenced from another section in the config,...
std::shared_ptr< terrain_type_data > load_terrain_types_data()
Load the appropriate terrain types data to use.
bool is_valid_id(const std::string &id)
Return true if the id is valid for user defined topics and sections.
boost::tribool last_debug_state
std::string generate_contents_links(const std::string §ion_name, config const *help_cfg)
std::string generate_topic_text(const std::string &generator, const config *help_cfg, const section &sec)
help::section default_toplevel
const topic * find_topic(const section &sec, const std::string &id)
Search for the topic with the specified identifier in the section and its subsections.
section parse_config(const config *cfg)
Parse a help config, return the top level section.
std::vector< topic > generate_era_topics(const bool sort_generated, const std::string &era_id)
const game_config_view * game_cfg
int last_num_encountered_terrains
help::section hidden_sections
std::vector< topic > generate_trait_topics(const bool sort_generated)
const std::string default_show_topic
void generate_era_sections(const config *help_cfg, section &sec, int level)
static bool is_cjk_char(const char32_t ch)
const std::string era_prefix
const std::string faction_prefix
bool is_scope_active(scope s)
Functions to load and save images from/to disk.
std::string make_link(const std::string &text, const std::string &dst)
std::string img(const std::string &src, const std::string &align, const bool floating)
std::string tag(const std::string &tag_name, Args &&... contents)
std::string span_color(const color_t &color, Args &&... data)
config parse_text(const std::string &text)
Parse a xml style marked up text string.
rng * generator
This generator is automatically synced during synced context.
::tod_manager * tod_manager
std::vector< terrain_code > ter_list
int compare(const std::string &s1, const std::string &s2)
Case-sensitive lexicographical comparison.
@ STRIP_SPACES
REMOVE_EMPTY: remove empty elements.
std::vector< std::string > quoted_split(const std::string &val, char c, int flags, char quote)
This function is identical to split(), except it does not split when it otherwise would if the previo...
bool contains(const Container &container, const Value &value)
Returns true iff value is found in container.
std::map< std::string, t_string > string_map
std::vector< std::string > split(const config_attribute_value &val)
auto * find(Container &container, const Value &value)
Convenience wrapper for using find on a container without needing to comare to end()
std::string::const_iterator iterator
static void msg(const char *act, debug_info &i, const char *to="", const char *result="")
Thrown when the help system fails to parse something.
A section contains topics and sections along with title and ID.
bool operator<(const section &) const
Comparison on the ID.
void add_section(const section &s)
Allocate memory for and add the section.
bool operator==(const section &) const
Two sections are equal if their IDs are equal.
A topic contains a title, an id and some text.
bool operator==(const topic &) const
Two topics are equal if their IDs are equal.
bool operator<(const topic &) const
Comparison on the ID.
A terrain string which is converted to a terrain is a string with 1 or 2 layers the layers are separa...
Object which defines a time of day with associated bonuses, image, sounds etc.
static map_location::direction s
unit_type_data unit_types