Namespaces | |
config_filters | |
Utility functions for implementing [filter], [filter_ability], [filter_weapon], etc. | |
detail | |
Classes | |
class | string_map_variable_set |
struct | hash_error |
class | hash_base |
class | hash_digest |
class | md5 |
class | bcrypt |
struct | res_compare |
class | back_edge_detector |
A helper for boost::depth_first_search (DFS) usage with the purpose of detecting cycles. More... | |
struct | const_clone |
Helper struct to clone the constness of one type to another. More... | |
class | guard_value |
Data-based RAII scope guard. More... | |
class | irdya_date |
Calendar for handling and comparing dates using the common epoches of the storyline. More... | |
struct | optimer |
Reports time elapsed at the end of an object scope. More... | |
class | optional_reference |
A simple wrapper class for optional reference types. More... | |
class | rate_counter |
class | scope_exit |
struct | scope_exit_syntax_support |
class | shared_reference |
struct | wesnoth_epoch_defines |
Reference points for the dates that define the storyline's calendar. More... | |
Typedefs | |
using | byte_string_view = std::basic_string_view< uint8_t > |
using | string_map = std::map< std::string, t_string > |
using | string_map_res = std::map< std::string, t_string, res_compare > |
template<typename D , typename S > | |
using | const_clone_t = typename const_clone< D, S >::type |
template<typename D , typename S > | |
using | const_clone_ref = typename const_clone< D, S >::reference |
template<typename D , typename S > | |
using | const_clone_ptr = typename const_clone< D, S >::pointer |
using | ms_optimer = optimer< std::chrono::milliseconds > |
Time elapsed with millisecond resolution. More... | |
using | wesnoth_epoch = string_enums::enum_base< wesnoth_epoch_defines > |
Enumerations | |
enum | { REMOVE_EMPTY = 0x01 , STRIP_SPACES = 0x02 } |
Functions | |
std::vector< std::string > | split (const config_attribute_value &val) |
std::string | format_time_summary (std::time_t t) |
std::string | interpolate_variables_into_string (const std::string &str, const string_map *const symbols) |
Function which will interpolate variables, starting with '$' in the string 'str' with the equivalent symbols in the given symbol table. More... | |
std::string | interpolate_variables_into_string (const std::string &str, const std::map< std::string, std::string > *const symbols) |
std::string | interpolate_variables_into_string (const std::string &str, const variable_set &variables) |
t_string | interpolate_variables_into_tstring (const t_string &str, const variable_set &variables) |
Function that does the same as the above, for t_stringS. More... | |
std::string | format_conjunct_list (const t_string &empty, const std::vector< t_string > &elems) |
Format a conjunctive list. More... | |
std::string | format_disjunct_list (const t_string &empty, const std::vector< t_string > &elems) |
Format a disjunctive list. More... | |
std::string | format_timespan (std::time_t time, bool detailed=false) |
Formats a timespan into human-readable text for player authentication functions. More... | |
bool | might_contain_variables (const std::string &str) |
Determines if a string might contain variables to interpolate. More... | |
std::string | interpolate_variables_into_string (const std::string &str, const std::map< std::string, t_string > *const symbols) |
Function which will interpolate variables, starting with '$' in the string 'str' with the equivalent symbols in the given symbol table. More... | |
bool | isnewline (const char c) |
bool | portable_isspace (const char c) |
bool | notspace (const char c) |
void | trim (std::string_view &s) |
std::vector< std::string > | split (std::string_view s, const char sep, const int flags) |
Splits a (comma-)separated string into a vector of pieces. More... | |
std::set< std::string > | split_set (std::string_view s, char sep, const int flags) |
std::vector< std::string_view > | split_view (std::string_view s, const char sep, const int flags) |
std::vector< std::string > | square_parenthetical_split (const std::string &val, const char separator=',', const std::string &left="([", const std::string &right=")]", const int flags=REMOVE_EMPTY|STRIP_SPACES) |
Similar to parenthetical_split, but also expands embedded square brackets. More... | |
std::map< std::string, std::string > | map_split (const std::string &val, char major=',', char minor=':', int flags=REMOVE_EMPTY|STRIP_SPACES, const std::string &default_value="") |
Splits a string based on two separators into a map. More... | |
std::vector< std::string > | parenthetical_split (std::string_view val, const char separator=0, std::string_view left="(", std::string_view right=")", const int flags=REMOVE_EMPTY|STRIP_SPACES) |
Splits a string based either on a separator, except then the text appears within specified parenthesis. More... | |
int | apply_modifier (const int number, const std::string &amount, const int minimum) |
std::string | escape (const std::string &str, const char *special_chars) |
Prepends a configurable set of characters with a backslash. More... | |
static void | si_string_impl_stream_write (std::stringstream &ss, double input) |
static bool | is_username_char (char c) |
static bool | is_wildcard_char (char c) |
static bool | is_word_boundary (char c) |
std::string | indent (const std::string &string, std::size_t indent_size=4) |
Indent a block of text. More... | |
std::vector< std::string > | quoted_split (const std::string &val, char c=',', int flags=REMOVE_EMPTY|STRIP_SPACES, char quote='\\') |
This function is identical to split(), except it does not split when it otherwise would if the previous character was identical to the parameter 'quote' (i.e. More... | |
std::pair< int, int > | parse_range (const std::string &str) |
Recognises the following patterns, and returns a {min, max} pair. More... | |
std::pair< double, double > | parse_range_real (const std::string &str) |
Recognises similar patterns to parse_range, and returns a {min, max} pair. More... | |
std::vector< std::pair< int, int > > | parse_ranges_unsigned (const std::string &str) |
Handles a comma-separated list of inputs to parse_range, in a context that does not expect negative values. More... | |
std::vector< std::pair< double, double > > | parse_ranges_real (const std::string &str) |
std::vector< std::pair< int, int > > | parse_ranges_int (const std::string &str) |
Handles a comma-separated list of inputs to parse_range. More... | |
template<typename F > | |
void | split_foreach_impl (std::string_view s, char sep, const F &f) |
template<typename F > | |
void | split_foreach (std::string_view s, char sep, const int flags, const F &f) |
template<typename T > | |
std::string | join (const T &v, const std::string &s=",") |
Generates a new string joining container items in a list. More... | |
template<typename T > | |
std::string | join_map (const T &v, const std::string &major=",", const std::string &minor=":") |
template<typename T > | |
std::string | bullet_list (const T &v, std::size_t indent=4, const std::string &bullet=font::unicode_bullet) |
Generates a new string containing a bullet list. More... | |
std::string | print_modifier (const std::string &mod) |
Add a "+" or replace the "-" par Unicode minus. More... | |
template<typename T > | |
utils::optional< T > | from_chars (std::string_view str, int base=10) |
std::string | get_unknown_exception_type () |
Utility function for finding the type of thing caught with catch(...) . More... | |
template<typename Container , typename Value > | |
bool | contains (const Container &container, const Value &value) |
Returns true iff value is found in container. More... | |
template<typename Container , typename Predicate > | |
void | erase_if (Container &container, const Predicate &predicate) |
Convenience wrapper for using std::remove_if on a container. More... | |
template<typename Container , typename Value > | |
std::size_t | erase (Container &container, const Value &value) |
Convenience wrapper for using std::remove on a container. More... | |
template<typename Container , typename Predicate > | |
void | sort_if (Container &container, const Predicate &predicate) |
Convenience wrapper for using std::sort on a container. More... | |
bool | operator< (const irdya_date &a, const irdya_date &b) |
bool | operator<= (const irdya_date &a, const irdya_date &b) |
bool | operator> (const irdya_date &a, const irdya_date &b) |
bool | operator>= (const irdya_date &a, const irdya_date &b) |
bool | operator== (const irdya_date &a, const irdya_date &b) |
bool | operator!= (const irdya_date &a, const irdya_date &b) |
std::ostream & | operator<< (std::ostream &s, const irdya_date &d) |
template<typename... OpTimerArgs> | |
std::ostream & | operator<< (std::ostream &o, const optimer< OpTimerArgs... > &tm) |
Formats time elapsed for writing to a stream. More... | |
template<typename T > | |
auto | reversed_view (T &container) |
template<typename T , typename... Types> | |
shared_reference< T > | make_shared_reference (Types &&...args) |
template<typename... Types> | |
std::size_t | variant_index (const variant< Types... > &var) |
std::string | unescape (const std::string &str) |
Remove all escape characters (backslash) More... | |
std::string | urlencode (const std::string &str) |
Percent-escape characters in a UTF-8 string intended to be part of a URL. More... | |
bool | string_bool (const std::string &str, bool def=false) |
Convert no, false, off, 0, 0.0 to false, empty to def, and others to true. More... | |
std::string | bool_string (const bool value) |
Converts a bool value to 'true' or 'false'. More... | |
std::string | signed_value (int val) |
Convert into a signed value (using the Unicode "−" and +0 convention. More... | |
std::string | half_signed_value (int val) |
Sign with Unicode "−" if negative. More... | |
std::string | si_string (double input, bool base2, const std::string &unit) |
Convert into a string with an SI-postfix. More... | |
bool | isvalid_username (const std::string &login) |
Check if the username contains only valid characters. More... | |
bool | isvalid_wildcard (const std::string &login) |
Check if the username pattern contains only valid characters. More... | |
bool | word_completion (std::string &text, std::vector< std::string > &wordlist) |
Try to complete the last word of 'text' with the 'wordlist'. More... | |
bool | word_match (const std::string &message, const std::string &word) |
Check if a message contains a word. More... | |
bool | wildcard_string_match (const std::string &str, const std::string &match) |
Match using '*' as any number of characters (including none), '+' as one or more characters, and '?' as any one character. More... | |
void | to_sql_wildcards (std::string &str, bool underscores=true) |
Converts '*' to '' and optionally escapes '_'. More... | |
void | ellipsis_truncate (std::string &str, const std::size_t size) |
Truncates a string to a given utf-8 character count and then appends an ellipsis. More... | |
std::string | escape (const std::string &str) |
Prepend all special characters with a backslash. More... | |
std::string | quote (const std::string &str) |
Surround the string 'str' with double quotes. More... | |
std::string | signed_percent (int val) |
Convert into a percentage (using the Unicode "−" and +0% convention. More... | |
Variables | |
const std::vector< std::string > | res_order = {"blade", "pierce", "impact", "fire", "cold", "arcane"} |
template<typename T1 , typename T2 > | |
constexpr bool | decayed_is_same = std::is_same_v<std::decay_t<T1>, std::decay_t<T2>> |
Equivalent to as std::is_same_v except both types are passed through std::decay first. More... | |
template<typename > | |
constexpr bool | dependent_false_v = false |
Workaround for the fact that static_assert(false) is invalid. More... | |
using utils::byte_string_view = typedef std::basic_string_view<uint8_t> |
Definition at line 25 of file base64.hpp.
using utils::const_clone_ptr = typedef typename const_clone<D, S>::pointer |
Definition at line 66 of file const_clone.hpp.
using utils::const_clone_ref = typedef typename const_clone<D, S>::reference |
Definition at line 63 of file const_clone.hpp.
using utils::const_clone_t = typedef typename const_clone<D, S>::type |
Definition at line 60 of file const_clone.hpp.
using utils::ms_optimer = typedef optimer<std::chrono::milliseconds> |
Time elapsed with millisecond resolution.
Definition at line 119 of file optimer.hpp.
using utils::string_map = typedef std::map<std::string, t_string> |
Definition at line 35 of file string_utils.hpp.
using utils::string_map_res = typedef std::map<std::string, t_string, res_compare> |
Definition at line 52 of file string_utils.hpp.
using utils::wesnoth_epoch = typedef string_enums::enum_base<wesnoth_epoch_defines> |
Definition at line 34 of file wesnoth_epoch.hpp.
anonymous enum |
Enumerator | |
---|---|
REMOVE_EMPTY | |
STRIP_SPACES | REMOVE_EMPTY: remove empty elements. |
Definition at line 58 of file string_utils.hpp.
int utils::apply_modifier | ( | const int | number, |
const std::string & | amount, | ||
const int | minimum | ||
) |
Definition at line 400 of file string_utils.cpp.
References div100rounded().
Referenced by unit::apply_builtin_effect(), attack_type::apply_modification(), and tod_manager::modify_turns().
std::string utils::bool_string | ( | const bool | value | ) |
Converts a bool value to 'true' or 'false'.
Definition at line 486 of file string_utils.cpp.
Referenced by frame_parsed_parameters::debug_strings(), team_builder::init(), ai::lua_aspect_visitor::operator()(), gui2::dialogs::drop_down_menu::pre_show(), and gui2::dialogs::stuff_list_adder::widget().
std::string utils::bullet_list | ( | const T & | v, |
std::size_t | indent = 4 , |
||
const std::string & | bullet = font::unicode_bullet |
||
) |
Generates a new string containing a bullet list.
List items are preceded by the indentation blanks, a bullet string and another blank; all but the last item are followed by a newline.
v | A container with elements. |
indent | Number of indentation blanks. |
bullet | The leading bullet string. |
Definition at line 247 of file string_utils.hpp.
Referenced by addons_client::do_check_before_overwriting_addon(), addons_client::do_resolve_addon_dependencies(), gui2::dialogs::faction_select::on_faction_select(), and gui2::dialogs::terrain_layers::pre_show().
|
inline |
Returns true iff value is found in container.
This should work whenever Container "looks like" an STL container of Values. Normally this uses std::find(), but a simulated partial template specialization exists when Value is Container::key_type. In this case, Container is assumed an associative container, and the member function find() is used.
Definition at line 80 of file general.hpp.
References utils::detail::contains_impl< Container, Value >::eval().
Referenced by ai::readonly_context_impl::applies_to_leader(), unit_type::apply_scenario_fix(), BOOST_AUTO_TEST_CASE(), events::menu_handler::can_recruit(), ng::depcheck::manager::change_era(), ng::depcheck::manager::change_modifications(), ng::depcheck::manager::change_scenario(), play_controller::check_next_scenario_is_known(), actions::check_recruit_location(), ng::depcheck::manager::does_conflict(), ng::depcheck::manager::does_require(), game_display::draw_invalidated(), help::generate_terrain_sections(), gui2::dialogs::addon_manager::get_lang_filter_visibility(), ng::depcheck::manager::get_required_not_enabled(), gui2::dialogs::addon_manager::get_tag_filter_visibility(), gui::scrollarea::handle_event(), editor::palette_manager::handle_event(), controller_base::handle_scroll(), impl_sndsrc_get(), controller_base::long_touch_callback(), display::minimap_location_on(), gui2::dialogs::drop_down_menu::mouse_up_callback(), events::mouse_handler_base::mouse_wheel(), arrow::path_contains(), events::mouse_handler::touch_motion(), unit::update_variables_recursion(), and attack_type::update_variables_recursion().
void utils::ellipsis_truncate | ( | std::string & | str, |
const std::size_t | size | ||
) |
Truncates a string to a given utf-8 character count and then appends an ellipsis.
Definition at line 952 of file string_utils.cpp.
References font::ellipsis, utf8::size(), and utf8::truncate().
Referenced by windows_tray_notification::adjust_length(), gui2::dialogs::game_load::populate_game_list(), and gui2::dialogs::file_dialog::push_fileview_row().
std::size_t utils::erase | ( | Container & | container, |
const Value & | value | ||
) |
Convenience wrapper for using std::remove on a container.
Definition at line 111 of file general.hpp.
References gui2::dialogs::tip::remove().
Referenced by prefs::add_recent_files_entry(), unit::apply_builtin_effect(), hotkey::del_hotkey(), wb::highlighter::find_secondary_highlights(), gui2::dialogs::editor_edit_pbl::pre_show(), wesnothd::game::remove_player(), fake_unit_manager::remove_temporary_unit(), ai::ai_default_rca::get_villages_phase::remove_village(), unit::set_loyal(), gamemap::set_terrain(), terrain_type::terrain_type(), draw_manager::tidy_drawables(), wesnothd::game::transfer_side_control(), wesnothd::game::unban_user(), wesnothd::game::unmute_observer(), and events::pump_monitor::~pump_monitor().
void utils::erase_if | ( | Container & | container, |
const Predicate & | predicate | ||
) |
Convenience wrapper for using std::remove_if on a container.
todoc++20 use C++20's std::erase_if instead. The C++20 function returns the number of elements removed; this one could do that but it seems unnecessary to add it unless something is using it.
Definition at line 100 of file general.hpp.
Referenced by unit::apply_builtin_effect(), game_events::event_handlers::clean_up_expired_handlers(), config::clear_children_impl(), gui2::canvas::clear_shapes(), recall_list_manager::erase_by_underlying_id(), recall_list_manager::erase_if_matches_id(), ai::ai_default_rca::move_to_targets_phase::execute(), unit::get_abilities_weapons(), wesnothd::game::get_replay_filename(), savegame::save_index_class::get_saves_list(), attack_type::get_specials_and_abilities(), attack_type::overwrite_special_overwriter(), filesystem::blacklist_pattern_list::remove_blacklisted_files_and_dirs(), gui2::dialogs::mp_options_helper::remove_nodes_for_type(), display::remove_single_overlay(), unit::resistance_against(), unit::resistance_value(), tod_manager::resolve_random(), lg::rotate_logs(), gui2::tip_of_the_day::shuffle(), config::splice_children(), strip_cr(), ng::flg_manager::update_available_leaders(), saved_game::update_label(), and schema_validation::schema_self_validator::validate().
|
inline |
Prepend all special characters with a backslash.
Special characters are: #}+-,*=
Definition at line 330 of file string_utils.hpp.
References escape().
std::string utils::escape | ( | const std::string & | str, |
const char * | special_chars | ||
) |
Prepends a configurable set of characters with a backslash.
Definition at line 415 of file string_utils.cpp.
Referenced by escape(), and get_file_code().
std::string utils::format_conjunct_list | ( | const t_string & | empty, |
const std::vector< t_string > & | elems | ||
) |
Format a conjunctive list.
empty | The string to return for an empty list |
elems | The list of entries in the list |
Definition at line 260 of file string_utils.cpp.
Referenced by unit::describe_builtin_effect(), attack_type::describe_modification(), format_timespan(), lua_stringx::intf_format_list(), help::terrain_topic_generator::operator()(), events::menu_handler::recruit(), and gui2::multimenu_button::update_label().
std::string utils::format_disjunct_list | ( | const t_string & | empty, |
const std::vector< t_string > & | elems | ||
) |
Format a disjunctive list.
empty | The string to return for an empty list |
elems | The list of entries in the list |
Definition at line 278 of file string_utils.cpp.
Referenced by lua_stringx::intf_format_list().
std::string utils::format_time_summary | ( | std::time_t | t | ) |
Definition at line 24 of file format_time_summary.cpp.
References _(), prefs::get(), translation::strftime(), and t.
Referenced by savegame::save_info::format_time_summary().
std::string utils::format_timespan | ( | std::time_t | time, |
bool | detailed = false |
||
) |
Formats a timespan into human-readable text for player authentication functions.
This is intentionally not a very thorough representation of time intervals. See https://github.com/wesnoth/wesnoth/issues/6036 for more information.
time | The timespan in seconds. |
detailed | Whether to display more specific values such as "3 months, 2 days, 30 minutes, and 1 second". If not specified or set to false, the return value will ONLY include most significant time unit (e.g. "3 months"). |
Definition at line 296 of file string_utils.cpp.
References _(), format_conjunct_list(), N_n, and VNGETTEXT.
Referenced by BOOST_AUTO_TEST_CASE().
utils::optional<T> utils::from_chars | ( | std::string_view | str, |
int | base = 10 |
||
) |
Definition at line 22 of file from_chars.hpp.
References _().
std::string utils::get_unknown_exception_type | ( | ) |
Utility function for finding the type of thing caught with catch(...)
.
Not implemented for other compilers at this time.
Definition at line 23 of file general.cpp.
Referenced by BOOST_AUTO_TEST_CASE(), events::menu_handler::do_ai_formula(), simple_wml::document::document(), draw_manager::expose(), main(), playsingle_controller::play_ai_turn(), play_controller::play_controller(), playmp_controller::play_human_turn(), playmp_controller::play_idle_loop(), playturn_network_adapter::read_from_network(), wfl::variant::serialize_from_string(), gui2::window::show(), wesnothd_connection::wesnothd_connection(), wesnothd::ban_manager::~ban_manager(), wesnothd::game::~game(), game_display::~game_display(), game_launcher::~game_launcher(), prefs::~prefs(), temporary_unit_mover::~temporary_unit_mover(), temporary_unit_placer::~temporary_unit_placer(), temporary_unit_remover::~temporary_unit_remover(), unit::~unit(), and unit_movement_resetter::~unit_movement_resetter().
std::string utils::half_signed_value | ( | int | val | ) |
Sign with Unicode "−" if negative.
Definition at line 501 of file string_utils.cpp.
References font::unicode_minus.
Referenced by carryover_show_gold(), frame_parsed_parameters::debug_strings(), gui2::dialogs::game_stats::pre_show(), and REPORT_GENERATOR().
std::string utils::indent | ( | const std::string & | string, |
std::size_t | indent_size = 4 |
||
) |
Indent a block of text.
Only lines with content are changed; empty lines are left intact. However, if string is an empty string itself, the indentation unit with the specified indent_size will be returned instead.
string | Text to indent. |
indent_size | Number of indentation units to use. |
Definition at line 759 of file string_utils.cpp.
References draw::line(), and split().
Referenced by bullet_list(), and gui2::dialogs::wml_error::wml_error().
std::string utils::interpolate_variables_into_string | ( | const std::string & | str, |
const std::map< std::string, std::string > *const | symbols | ||
) |
Definition at line 238 of file string_utils.cpp.
References do_interpolation(), and cursor::set().
std::string utils::interpolate_variables_into_string | ( | const std::string & | str, |
const std::map< std::string, t_string > *const | symbols | ||
) |
Function which will interpolate variables, starting with '$' in the string 'str' with the equivalent symbols in the given symbol table.
If 'symbols' is nullptr, then game event variables will be used instead.
Definition at line 232 of file string_utils.cpp.
References do_interpolation(), and cursor::set().
Referenced by play_controller::check_next_scenario_is_known(), savegame::loadgame::check_version_compatibility(), gui2::dialogs::describe_status_verbose(), name_generator::generate(), interpolate_variables_into_tstring(), lua_stringx::intf_format(), map_location::map_location(), game_events::event_handler::names(), campaign_controller::play_game(), terrain_label::read(), play_controller::show_objectives(), playsingle_controller::show_turn_dialog(), vgettext_impl(), and vngettext_impl().
std::string utils::interpolate_variables_into_string | ( | const std::string & | str, |
const std::map< std::string, t_string > *const | symbols | ||
) |
Function which will interpolate variables, starting with '$' in the string 'str' with the equivalent symbols in the given symbol table.
If 'symbols' is nullptr, then game event variables will be used instead.
Definition at line 232 of file string_utils.cpp.
References do_interpolation(), and cursor::set().
Referenced by play_controller::check_next_scenario_is_known(), savegame::loadgame::check_version_compatibility(), gui2::dialogs::describe_status_verbose(), name_generator::generate(), interpolate_variables_into_tstring(), lua_stringx::intf_format(), map_location::map_location(), game_events::event_handler::names(), campaign_controller::play_game(), terrain_label::read(), play_controller::show_objectives(), playsingle_controller::show_turn_dialog(), vgettext_impl(), and vngettext_impl().
std::string utils::interpolate_variables_into_string | ( | const std::string & | str, |
const variable_set & | variables | ||
) |
Definition at line 244 of file string_utils.cpp.
References do_interpolation().
t_string utils::interpolate_variables_into_tstring | ( | const t_string & | str, |
const variable_set & | variables | ||
) |
Function that does the same as the above, for t_stringS.
If a change was made, then the t_string's translation is done in this function, rather than at use. This limitation is due to the use of create-time interpolation, rather than use-time.
Definition at line 249 of file string_utils.cpp.
References interpolate_variables_into_string(), and t_string::str().
Referenced by lua_stringx::intf_format(), and terrain_label::read().
|
static |
Definition at line 606 of file string_utils.cpp.
References c.
Referenced by isvalid_username(), and isvalid_wildcard().
|
static |
|
static |
bool utils::isnewline | ( | const char | c | ) |
Definition at line 41 of file string_utils.cpp.
References c.
Referenced by gui::textbox::append_text(), gui::textbox::handle_key_down(), portable_isspace(), t_translation::read_builder_map(), and t_translation::read_game_map().
bool utils::isvalid_username | ( | const std::string & | login | ) |
Check if the username contains only valid characters.
(all alpha-numeric characters plus underscore and hyphen)
Definition at line 614 of file string_utils.cpp.
References is_username_char().
Referenced by wesnothd::server::is_login_allowed(), and wesnothd::server::status_handler().
bool utils::isvalid_wildcard | ( | const std::string & | login | ) |
Check if the username pattern contains only valid characters.
(all alpha-numeric characters plus underscore, hyphen, question mark and asterisk)
Definition at line 626 of file string_utils.cpp.
References is_username_char(), and is_wildcard_char().
Referenced by prefs::add_acquaintance().
std::string utils::join | ( | const T & | v, |
const std::string & | s = "," |
||
) |
Generates a new string joining container items in a list.
v | A container with elements. |
s | List delimiter. |
Definition at line 204 of file string_utils.hpp.
Referenced by schema_validation::schema_validator::active_tag_path(), mp::add_multiplayer_classification(), gui2::dialogs::add_unit_entry(), prefs::aes_decrypt(), prefs::aes_encrypt(), team::allied_human_teams(), attack_info(), BOOST_AUTO_TEST_CASE(), ng::depcheck::manager::change_era(), ng::depcheck::manager::change_scenario(), gui2::chatbox::chat_input_keypress_callback(), gui2::dialogs::file_dialog::check_filename(), addons_client::connect(), gui2::dialogs::editor_edit_pbl::create_cfg(), schema_validation::schema_self_validator::current_path(), gui2::dialogs::depcheck_confirm_change::depcheck_confirm_change(), saved_game::expand_mp_events(), lg::format_timespan(), campaignd::control_line::full(), ai::holder::get_ai_overview(), prefs::get_ignored_delim(), hotkey::get_names(), carryover::get_recruits(), wesnothd::server::handle_join_game(), wesnothd::server::handle_player_in_game(), wesnothd::server::handle_player_in_lobby(), campaignd::server::handle_server_id(), events::map_command_handler< Worker >::help_command(), impl_mp_settings_get(), impl_namedtuple_tostring(), impl_source_set(), game_lua_kernel::intf_add_tile_overlay(), lua_stringx::intf_str_join(), terrain_type_data::lazy_initialization(), game_config_manager::load_addons_cfg(), game_config_manager::load_game_config(), gui2::dialogs::editor_edit_unit::load_unit_type(), wesnothd::server::login_client(), ai::leader_aspects_visitor::operator()(), gui2::dialogs::end_credits::pre_show(), gui2::dialogs::unit_list::pre_show(), read_event_name(), gui2::unit_preview_pane::set_displayed_unit(), prefs::set_modifications(), gui::floating_textbox::tab(), schema_validation::schema_self_validator::tag_path_exists(), editor::map_context::to_config(), ai::default_recruitment::recruit_job::to_config(), ai::default_recruitment::recruit_limit::to_config(), game_classification::to_config(), carryover::transfer_all_recruits_to(), unit_helper::unit_level_tooltip(), gui2::dialogs::end_credits::update(), gui2::dialogs::mp_match_history::update_display(), addons_client::upload_addon(), gui2::dialogs::editor_edit_pbl::validate(), campaignd::server::validate_addon(), ai::config_value_translator< std::vector< std::string > >::value_to_cfg(), addon_info::write(), team::team_info::write(), unit::write(), game_events::manager::write_events(), addon_info::write_minimal(), game_data::write_snapshot(), statistics_record::write_str_int_map(), and prefs::~prefs().
std::string utils::join_map | ( | const T & | v, |
const std::string & | major = "," , |
||
const std::string & | minor = ":" |
||
) |
Definition at line 219 of file string_utils.hpp.
References i.
Referenced by impl_mp_settings_get(), lua_stringx::intf_str_join_map(), ng::connect_engine::save_reserved_sides_information(), and mp_game_settings::to_config().
shared_reference<T> utils::make_shared_reference | ( | Types &&... | args | ) |
Definition at line 84 of file shared_reference.hpp.
std::map< std::string, std::string > utils::map_split | ( | const std::string & | val, |
char | major = ',' , |
||
char | minor = ':' , |
||
int | flags = REMOVE_EMPTY|STRIP_SPACES , |
||
const std::string & | default_value = "" |
||
) |
Splits a string based on two separators into a map.
Major: the separator between elements of the map Minor: the separator between keys and values in one element
For example, the string 'a:b,c:d,e:f' would be parsed into: a => b c => d e => f
Definition at line 279 of file string_utils.cpp.
Referenced by BOOST_AUTO_TEST_CASE(), lua_stringx::intf_str_map_split(), ng::connect_engine::load_previous_sides_users(), and ng::connect_engine::save_reserved_sides_information().
|
inline |
Determines if a string might contain variables to interpolate.
This can allow one to skip future interpolations (plural – if there is only one interpolation, the savings are not worth this check). In this spirit, precision is sacrificed in the name of efficiency; the check is quick and allows false positives, but there are no false negatives. (A false negative would lead to incorrect behavior, whereas a false positive leads to merely inefficient behavior.) In practice, false positives should be uncommon enough to not worry about.
Definition at line 45 of file string_utils.hpp.
Referenced by game_events::event_handlers::finish_adding_event_handler(), and game_events::event_handler::names().
bool utils::notspace | ( | const char | c | ) |
Definition at line 58 of file string_utils.cpp.
References c, and portable_isspace().
bool utils::operator!= | ( | const irdya_date & | a, |
const irdya_date & | b | ||
) |
Definition at line 121 of file irdya_datetime.cpp.
References b.
bool utils::operator< | ( | const irdya_date & | a, |
const irdya_date & | b | ||
) |
Definition at line 75 of file irdya_datetime.cpp.
References b, utils::irdya_date::get_epoch(), utils::irdya_date::get_year(), and utils::irdya_date::is_valid().
|
inline |
Formats time elapsed for writing to a stream.
Definition at line 110 of file optimer.hpp.
References utils::optimer< ResolutionType, ClockType >::elapsed().
std::ostream & utils::operator<< | ( | std::ostream & | s, |
const irdya_date & | d | ||
) |
Definition at line 126 of file irdya_datetime.cpp.
bool utils::operator<= | ( | const irdya_date & | a, |
const irdya_date & | b | ||
) |
Definition at line 106 of file irdya_datetime.cpp.
References b.
bool utils::operator== | ( | const irdya_date & | a, |
const irdya_date & | b | ||
) |
Definition at line 116 of file irdya_datetime.cpp.
References b, utils::irdya_date::get_epoch(), and utils::irdya_date::get_year().
bool utils::operator> | ( | const irdya_date & | a, |
const irdya_date & | b | ||
) |
Definition at line 101 of file irdya_datetime.cpp.
References b.
bool utils::operator>= | ( | const irdya_date & | a, |
const irdya_date & | b | ||
) |
Definition at line 111 of file irdya_datetime.cpp.
References b.
std::vector< std::string > utils::parenthetical_split | ( | std::string_view | val, |
const char | separator = 0 , |
||
std::string_view | left = "(" , |
||
std::string_view | right = ")" , |
||
const int | flags = REMOVE_EMPTY|STRIP_SPACES |
||
) |
Splits a string based either on a separator, except then the text appears within specified parenthesis.
If the separator is "0" (default), it splits a string into an odd number of parts:
Note that one can use the same character for both the left and right parenthesis, which usually makes the most sense for this function.
Note that this will find the first matching char in the left string and match against the corresponding char in the right string. A correctly processed string should return a vector with an odd number of elements. Empty elements are never removed as they are placeholders, hence REMOVE EMPTY only works for the separator split.
INPUT: ("a(b)c{d}e(f{g})h", 0, "({", ")}") RETURNS: {"a", "b", "c", "d", "e", "f{g}", "h"}
Definition at line 310 of file string_utils.cpp.
References ERR_GENERAL, i, portable_isspace(), REMOVE_EMPTY, STRIP_SPACES, and trim().
Referenced by unit::apply_builtin_effect(), BOOST_AUTO_TEST_CASE(), image::modification::decode(), wfl::string_callable::get_value(), unit::init(), ai::manager::internal_evaluate_command(), intf_name_generator(), lua_stringx::intf_str_paren_split(), lua_stringx::intf_str_split(), and image::load_image_sub_file().
std::pair< int, int > utils::parse_range | ( | const std::string & | str | ) |
Recognises the following patterns, and returns a {min, max} pair.
Note that:
Definition at line 859 of file string_utils.cpp.
References b, and ERR_GENERAL.
Referenced by lua_stringx::intf_parse_range(), ai::readonly_context_impl::is_active(), map_location::matches_range(), gamemap_base::parse_location_range(), and parse_ranges_int().
std::pair< double, double > utils::parse_range_real | ( | const std::string & | str | ) |
Recognises similar patterns to parse_range, and returns a {min, max} pair.
For this function, "infinity" results in std::numeric_limits<double>::infinity.
Definition at line 889 of file string_utils.cpp.
References b, and ERR_GENERAL.
Referenced by lua_stringx::intf_parse_range(), and parse_ranges_real().
std::vector< std::pair< int, int > > utils::parse_ranges_int | ( | const std::string & | str | ) |
Handles a comma-separated list of inputs to parse_range.
Definition at line 942 of file string_utils.cpp.
References parse_range(), and split().
Referenced by utils::config_filters::int_matches_if_present(), utils::config_filters::int_matches_if_present_or_negative(), matches_simple_filter(), and parse_ranges_unsigned().
std::vector< std::pair< double, double > > utils::parse_ranges_real | ( | const std::string & | str | ) |
Definition at line 932 of file string_utils.cpp.
References parse_range_real(), and split().
Referenced by utils::config_filters::double_matches_if_present().
std::vector< std::pair< int, int > > utils::parse_ranges_unsigned | ( | const std::string & | str | ) |
Handles a comma-separated list of inputs to parse_range, in a context that does not expect negative values.
Will return an empty list if any of the ranges have a minimum that's below zero.
Definition at line 921 of file string_utils.cpp.
References ERR_GENERAL, and parse_ranges_int().
Referenced by unit::ability_active_impl(), check_side_number(), game_events::builtin_conditions::have_location(), game_events::builtin_conditions::have_unit(), terrain_filter::match_internal(), matches_simple_filter(), and attack_type::special_active_impl().
bool utils::portable_isspace | ( | const char | c | ) |
Definition at line 48 of file string_utils.cpp.
References c, and isnewline().
Referenced by preprocessor_data::get_chunk(), notspace(), parenthetical_split(), preprocessor_data::read_word(), and square_parenthetical_split().
|
inline |
Add a "+" or replace the "-" par Unicode minus.
Definition at line 316 of file string_utils.hpp.
References font::unicode_minus.
Referenced by unit::describe_builtin_effect(), and attack_type::describe_modification().
|
inline |
Surround the string 'str' with double quotes.
Definition at line 342 of file string_utils.hpp.
Referenced by quoted_split().
std::vector< std::string > utils::quoted_split | ( | const std::string & | val, |
char | c = ',' , |
||
int | flags = REMOVE_EMPTY|STRIP_SPACES , |
||
char | quote = '\\' |
||
) |
This function is identical to split(), except it does not split when it otherwise would if the previous character was identical to the parameter 'quote' (i.e.
it does not split quoted commas). This method was added to make it possible to quote user input, particularly so commas in user input would not cause visual problems in menus.
Definition at line 792 of file string_utils.cpp.
References c, quote(), REMOVE_EMPTY, STRIP_SPACES, and trim().
Referenced by BOOST_AUTO_TEST_CASE(), help::generate_contents_links(), preprocessor_data::get_chunk(), preprocessor_streambuf::get_current_file(), get_location(), lua_stringx::intf_str_split(), lineno_string(), help::parse_config_internal(), help::section_is_referenced(), and help::topic_is_referenced().
|
inline |
Definition at line 26 of file ranges.hpp.
Referenced by game_data::activate_scope_variable(), gui2::event::implementation::fire_event(), events::sdl_handler::join_same(), gui2::event::sdl_event_handler::keyboard_dispatcher(), events::sdl_handler::leave(), gui2::event::sdl_event_handler::mouse(), events::sdl_handler::operator=(), wb::mapbuilder::post_visit_team(), quit_confirmation::quit(), ai::composite_aspect< T >::recalculate(), wb::mapbuilder::restore_normal_map(), events::sdl_handler::sdl_handler(), wb::highlighter::set_mouseover_hex(), gui2::event::sdl_event_handler::touch_down(), gui2::event::sdl_event_handler::touch_motion(), gui2::event::sdl_event_handler::touch_multi_gesture(), and gui2::event::sdl_event_handler::touch_up().
std::string utils::si_string | ( | double | input, |
bool | base2, | ||
const std::string & | unit | ||
) |
Convert into a string with an SI-postfix.
If the unit is to be translatable, a t_string should be passed as the third argument. _("unit_byte^B") is suggested as standard.
There are no default values because they would not be translatable.
Definition at line 539 of file string_utils.cpp.
References _(), si_string_impl_stream_write(), and font::unicode_minus.
Referenced by gui2::dialogs::network_transmission::pump_monitor::process(), gui2::dialogs::screenshot_notification::save_screenshot(), size_display_string(), and gui2::dialogs::game_cache_options::update_cache_size_display().
|
static |
Definition at line 510 of file string_utils.cpp.
Referenced by si_string().
|
inline |
Convert into a percentage (using the Unicode "−" and +0% convention.
Definition at line 360 of file string_utils.hpp.
References signed_value().
Referenced by attack_type::accuracy_parry_description(), attack_info(), gui2::get_hp_tooltip(), gui2::dialogs::attack_predictions::set_data(), time_of_day_at(), unit_alignment(), unit_box_at(), and unit_hp().
std::string utils::signed_value | ( | int | val | ) |
Convert into a signed value (using the Unicode "−" and +0 convention.
Definition at line 494 of file string_utils.cpp.
References font::unicode_minus.
Referenced by attack_info(), gui2::dialogs::game_stats::pre_show(), and signed_percent().
void utils::sort_if | ( | Container & | container, |
const Predicate & | predicate | ||
) |
Convenience wrapper for using std::sort on a container.
Definition at line 124 of file general.hpp.
Referenced by attack_type::overwrite_special_overwriter().
std::vector< std::string > utils::split | ( | const config_attribute_value & | val | ) |
Definition at line 412 of file config_attribute_value.cpp.
References config_attribute_value::str().
Referenced by prefs::achievement(), halo::halo_impl::add(), unit_animation::add_anims(), game_config::add_color_info(), terrain_builder::add_images_from_config(), name_generator_factory::add_name_generator_from_config(), terrain_builder::add_rotated_rules(), schema_validation::wml_tag::add_switch(), ng::flg_manager::append_leaders_from_faction(), unit::apply_builtin_effect(), gui2::dialogs::game_load::apply_filter_text(), attack_type::apply_modification(), unit_type::apply_scenario_fix(), BOOST_AUTO_TEST_CASE(), unit_type::build_created(), unit_type::build_help_index(), team::calculate_is_enemy(), ai::config_value_translator< utils::variant< bool, std::vector< std::string > > >::cfg_to_value(), ai::config_value_translator< std::vector< std::string > >::cfg_to_value(), schema_validation::schema_self_validator::check_for_duplicates(), game_events::event_handlers::clean_up_expired_handlers(), game_config::color_info(), campaignd::command_line::command_line(), commandline_options::commandline_options(), addons_client::connect(), savegame::convert_old_saves_1_13_1(), ai::default_recruitment::recruitment_aspect::create_job(), ai::default_recruitment::recruitment_aspect::create_limit(), events::menu_handler::custom_command(), default_map_generator_job::default_generate_map(), events::menu_handler::do_search(), events::console_handler::do_unit(), ng::depcheck::manager::does_conflict(), ng::depcheck::manager::does_require(), gui2::text_shape::draw(), gui2::dialogs::game_load::evaluate_summary_string(), schema_validation::wml_tag::expand(), combatant::fight(), unit_filter_impl::unit_filter_compound::fill(), terrain_filterimpl::filter_special_loc(), gui2::dialogs::campaign_selection::filter_text_changed(), gui2::dialogs::log_settings::filter_text_changed(), gui2::dialogs::unit_create::filter_text_changed(), gui2::dialogs::unit_recall::filter_text_changed(), gui2::dialogs::unit_recruit::filter_text_changed(), unit_creator::find_location(), ng::flg_manager::find_suitable_faction(), gui2::dialogs::mp_lobby::game_filter_init(), cave_map_generator::cave_map_generator_job::generate_chambers(), help::generate_faction_topics(), help::generate_sections(), help::generate_topic_text(), help::generate_topics(), unit::generate_traits(), ai::unit_advancements_aspect::get_advancements(), preprocessor_data::get_chunk(), filesystem::get_localized_path(), terrain_filter::get_locs_impl(), unit::get_modification_advances(), gui2::dialogs::addon_manager::get_name_filter_visibility(), ai::default_recruitment::recruitment::get_random_pattern_type_if_exists(), ng::depcheck::manager::get_required(), wfl::string_callable::get_value(), get_variations(), wesnothd::server::handle_create_game(), campaignd::server::handle_read_from_fifo(), campaignd::server::handle_upload(), gui2::dialogs::preferences_dialog::hotkey_filter_callback(), impl_source_get(), indent(), unit::init(), game_lua_kernel::intf_clear_menu_item(), intf_name_generator(), lua_stringx::intf_str_split(), ai::readonly_context_impl::is_active(), terrain_type_data::lazy_initialization(), ai::default_recruitment::recruitment::leader_matches_job(), ai::default_recruitment::recruitment::limit_ok(), campaignd::server::load_config(), wesnothd::server::load_config(), game_config::load_config(), prefs::load_credentials(), terrain_builder::load_images(), prefs::load_preferences(), map_split(), terrain_filter::match_internal(), side_filter::match_internal(), map_location::matches_range(), matches_simple_filter(), theme::menu::menu(), prefs::modifications(), theme::object::modify_location(), unit_type::musthave_status(), schema_validation::schema_self_validator::name_matches(), game_events::event_handler::names(), ai::formula_ai::on_create(), gui2::dialogs::faction_select::on_faction_select(), help::unit_topic_generator::operator()(), terrain_builder::parse_config(), map_location::parse_directions(), wesnothd::parse_ip(), gamemap_base::parse_location_range(), commandline_options::parse_log_domains_(), parse_ranges_int(), parse_ranges_real(), commandline_options::parse_resolution_(), campaignd::blacklist::parse_str_to_globlist(), commandline_options::parse_to_uint_string_string_tuples_(), commandline_options::parse_to_uint_string_tuples_(), gui2::dialogs::addon_auth::pre_show(), gui2::dialogs::editor_edit_pbl::pre_show(), gui2::dialogs::end_credits::pre_show(), ng::create_engine::prepare_for_campaign(), team_builder::previous_recruits(), playmp_controller::process_oos(), addon_info::read(), team::team_info::read(), gui2::implementation::read_flags(), unit_type_data::read_hide_help(), read_locations(), read_rect(), game_events::manager::read_scenario(), statistics_record::read_str_int_map(), ai::default_recruitment::recruitment::recruit_matches_job(), display::reinit_flags_for_team(), unit_type::remove_scenario_fixes(), unit_type::resistance_filter_matches(), unit::resistance_filter_matches(), sound::music_track::resolve(), ng::flg_manager::resolve_random(), tod_manager::resolve_random(), resolve_rect(), terrain_builder::rule_image_variant::rule_image_variant(), game_lua_kernel::run_filter(), prefs::set_achievement(), gui::button::set_label(), prefs::set_sub_achievement(), editor::terrain_palette::setup(), show_deprecated_warnings(), gui2::dialogs::game_version::show_manual(), square_parenthetical_split(), utils::config_filters::string_matches_if_present(), prefs::sub_achievement(), SYNCED_COMMAND_HANDLER_FUNCTION(), schema_validation::schema_self_validator::tag_path_exists(), game_config::tc_info(), unit_animation::unit_animation(), gui2::dialogs::mp_match_history::update_display(), schema_validation::schema_validator::validate(), campaignd::server::validate_addon(), schema_validation::schema_validator::validate_key(), schema_validation::schema_self_validator::validate_key(), version_info::version_info(), and game_events::WML_HANDLER_FUNCTION().
std::vector< std::string > utils::split | ( | std::string_view | s, |
const char | sep, | ||
const int | flags | ||
) |
Splits a (comma-)separated string into a vector of pieces.
[in] | s | A (comma-)separated string. |
[in] | sep | The separator character (usually a comma). |
[in] | flags | Flags controlling how the split is done. This is a bit field with two settings (both on by default): REMOVE_EMPTY causes empty pieces to be skipped/removed. STRIP_SPACES causes the leading and trailing spaces of each piece to be ignored/stripped. |
Definition at line 83 of file string_utils.cpp.
References s, and split_foreach().
void utils::split_foreach | ( | std::string_view | s, |
char | sep, | ||
const int | flags, | ||
const F & | f | ||
) |
Definition at line 84 of file string_utils.hpp.
References f, REMOVE_EMPTY, s, split_foreach_impl(), STRIP_SPACES, and trim().
Referenced by register_widget_attribute(), split(), split_set(), and split_view().
void utils::split_foreach_impl | ( | std::string_view | s, |
char | sep, | ||
const F & | f | ||
) |
std::set< std::string > utils::split_set | ( | std::string_view | s, |
char | sep, | ||
const int | flags | ||
) |
Definition at line 92 of file string_utils.cpp.
References s, and split_foreach().
Referenced by utils::config_filters::bool_or_empty(), prefs::load_preferences(), editor::map_context::load_scenario(), matches_simple_filter(), utils::config_filters::set_includes_if_present(), and editor::map_context::set_side_setup().
std::vector< std::string_view > utils::split_view | ( | std::string_view | s, |
const char | sep, | ||
const int | flags | ||
) |
Definition at line 101 of file string_utils.cpp.
References s, and split_foreach().
Referenced by display::draw_overlays_at(), color_t::from_rgb_string(), and color_t::from_rgba_string().
std::vector< std::string > utils::square_parenthetical_split | ( | const std::string & | val, |
const char | separator = ',' , |
||
const std::string & | left = "([" , |
||
const std::string & | right = ")]" , |
||
const int | flags = REMOVE_EMPTY|STRIP_SPACES |
||
) |
Similar to parenthetical_split, but also expands embedded square brackets.
Notes:
This is useful for expanding animation WML code.
Examples:
INPUT: ("a[1~3](1,[5,6,7]),b[8,9]", ",") RETURNS: {"a1(1,5)", "a2(1,6)", "a3(1,7)", "b8", "b9"}
INPUT: ("abc[07~10]") RETURNS: {"abc07", "abc08", "abc09", "abc10"}
INPUT: ("a[1,2]b[3~4]:c[5,6]") RETURNS: {"a1b3:c5", "a2b4:c6"}
INPUT: ("abc[3~1].png") RETURNS: {"abc3.png", "abc2.png", "abc1.png"}
INPUT: ("abc[3,1].png") RETURNS: {"abc3.png", "abc1.png"}
INPUT: ("abc[de,xyz]") RETURNS: {"abcde", "abcxyz"}
INPUT: ("abc[1*3]") RETURNS: {"abc1", "abc1", "abc1"}
Definition at line 110 of file string_utils.cpp.
References ERR_GENERAL, i, p, portable_isspace(), REMOVE_EMPTY, split(), STRIP_SPACES, and trim().
Referenced by halo::halo_impl::add(), terrain_builder::add_constraints(), BOOST_AUTO_TEST_CASE(), lua_stringx::intf_str_split(), terrain_builder::load_images(), pick_one(), and display::reinit_flags_for_team().
bool utils::string_bool | ( | const std::string & | str, |
bool | def | ||
) |
Convert no, false, off, 0, 0.0 to false, empty to def, and others to true.
Definition at line 474 of file string_utils.cpp.
Referenced by gui2::typed_formula< T >::convert(), campaignd::server::handle_read_from_fifo(), tod_manager::is_start_ToD(), and gui2::styled_widget::set_members().
void utils::to_sql_wildcards | ( | std::string & | str, |
bool | underscores = true |
||
) |
Converts '*' to '' and optionally escapes '_'.
str | The original string. |
underscores | Whether to escape underscore characters as well. |
Definition at line 745 of file string_utils.cpp.
References n.
Referenced by wesnothd::server::searchlog_handler().
void utils::trim | ( | std::string_view & | s | ) |
Definition at line 63 of file string_utils.cpp.
References s.
Referenced by append_special_note(), wesnothd::server::ban_handler(), wesnothd::server::bans_handler(), context_free_grammar_generator::context_free_grammar_generator(), game_config::dist_channel_id(), display::draw_hex(), wesnothd::server::gban_handler(), events::cmd_arg_parser::get_data(), editor::get_map_location(), lua_stringx::intf_str_trim(), wesnothd::server::kickban_handler(), parenthetical_split(), prefs::password(), wesnothd::server::pm_handler(), wesnothd::server::process_command(), quoted_split(), read_ignore_patterns(), prefs::set_login(), prefs::set_password(), split_foreach(), square_parenthetical_split(), game_events::event_handlers::standardize_name(), t_translation::string_to_number_(), and version_info::version_info().
std::string utils::unescape | ( | const std::string & | str | ) |
Remove all escape characters (backslash)
Definition at line 430 of file string_utils.cpp.
std::string utils::urlencode | ( | const std::string & | str | ) |
Percent-escape characters in a UTF-8 string intended to be part of a URL.
Definition at line 445 of file string_utils.cpp.
References c.
Referenced by campaignd::format_addon_feedback_url().
std::size_t utils::variant_index | ( | const variant< Types... > & | var | ) |
Definition at line 80 of file variant.hpp.
bool utils::wildcard_string_match | ( | const std::string & | str, |
const std::string & | match | ||
) |
Match using '*' as any number of characters (including none), '+' as one or more characters, and '?' as any one character.
Definition at line 704 of file string_utils.cpp.
References i.
Referenced by wesnothd::server::ban_handler(), BOOST_AUTO_TEST_CASE(), game_config::config_cache::delete_cache_files(), schema_validation::wml_tag::find_key(), schema_validation::wml_tag::find_tag(), wesnothd::server::gban_handler(), campaignd::server::ignore_address_stats(), campaignd::blacklist::ip_matches(), campaignd::blacklist::is_in_globlist(), wesnothd::server::is_login_allowed(), wesnothd::server::kick_handler(), wesnothd::server::kickban_handler(), wesnothd::server::login_client(), filesystem::looks_like_pbl(), filesystem::blacklist_pattern_list::match_dir(), filesystem::blacklist_pattern_list::match_file(), config::matches(), schema_validation::schema_self_validator::name_matches(), wesnothd::server::searchlog_handler(), and wesnothd::server::status_handler().
bool utils::word_completion | ( | std::string & | text, |
std::vector< std::string > & | wordlist | ||
) |
Try to complete the last word of 'text' with the 'wordlist'.
[in,out] | text | The parameter's usage is:
|
[in,out] | wordlist | The parameter's usage is:
|
true | iff text is just one word (no spaces) |
Definition at line 641 of file string_utils.cpp.
References b.
Referenced by gui2::chatbox::chat_input_keypress_callback(), gui2::dialogs::lua_interpreter::controller::tab(), and gui::floating_textbox::tab().
bool utils::word_match | ( | const std::string & | message, |
const std::string & | word | ||
) |
Check if a message contains a word.
Definition at line 692 of file string_utils.cpp.
References is_word_boundary().
Referenced by display_chat_manager::add_chat_message(), and gui2::chatbox::add_chat_room_message_received().
|
inlineconstexpr |
Equivalent to as std::is_same_v
except both types are passed through std::decay first.
T1 | The first type to compare. |
T2 | The second type to compare. |
Definition at line 30 of file general.hpp.
Referenced by advance_unit(), ai::readonly_context_impl::applies_to_leader(), wesnothd::server::disconnect_player(), ai::lua_object< T >::from_type(), log_address(), and server_base::serve().
|
inlineconstexpr |
Workaround for the fact that static_assert(false) is invalid.
See https://devblogs.microsoft.com/oldnewthing/20200311-00/?p=103553
Definition at line 37 of file general.hpp.
Referenced by gui2::event::dispatcher::get_signal_queue().
const std::vector<std::string> utils::res_order = {"blade", "pierce", "impact", "fire", "cold", "arcane"} |
Definition at line 37 of file string_utils.hpp.
Referenced by utils::res_compare::operator()().