16 #define GETTEXT_DOMAIN "wesnoth-lib"
29 : text(cfg[
"text"].t_str())
30 , source(cfg[
"source"].t_str())
35 namespace tip_of_the_day
40 return { range.begin(), range.end() };
43 std::vector<game_tip>
shuffle(
const std::vector<game_tip>&
tips)
45 std::vector<game_tip> result =
tips;
50 const auto& must_have_seen =
tip.unit_filter;
53 if(must_have_seen.empty()) {
58 return std::none_of(must_have_seen.begin(), must_have_seen.end(),
59 [&units](
const std::string& u) { return utils::contains(units, u); });
A config object defines a single node in a WML file, with access to child nodes.
child_itors child_range(config_key_type key)
std::set< std::string > & encountered_units()
static rng & default_instance()
Definitions for the interface to Wesnoth Markup Language (WML).
static std::unique_ptr< tooltip > tip
std::vector< game_tip > tips
std::vector< game_tip > load(const config &cfg)
Loads the tips from a config.
std::vector< game_tip > shuffle(const std::vector< game_tip > &tips)
Shuffles the tips.
void erase_if(Container &container, const Predicate &predicate)
Convenience wrapper for using std::remove_if on a container.
std::vector< std::string > split(const config_attribute_value &val)
game_tip(const config &cfg)