31 #include <fontconfig/fontconfig.h>
34 #define DBG_FT LOG_STREAM(debug, log_font)
35 #define LOG_FT LOG_STREAM(info, log_font)
36 #define WRN_FT LOG_STREAM(warn, log_font)
37 #define ERR_FT LOG_STREAM(err, log_font)
47 font_families() =
default;
49 explicit font_families(
const config& cfg)
50 :
sans(cfg[
"family_order"].t_str())
51 ,
mono(cfg[
"family_order_monospace"].t_str())
52 ,
script(cfg[
"family_order_script"].t_str())
55 ERR_FT <<
"No monospace font family defined, falling back to sans serif";
60 ERR_FT <<
"No script font family defined, falling back to sans serif";
70 font_families families;
84 }
catch(
const utils::bad_optional_access&) {
85 ERR_FT <<
"could not resolve path to fonts.cfg, file not found";
89 ERR_FT <<
"could not read fonts.cfg:\n" <<
e.message;
99 return families.script;
101 return families.sans;
112 if (!FcConfigAppFontAddDir(FcConfigGetCurrent(),
113 reinterpret_cast<const FcChar8 *
>(font_path.c_str())))
115 ERR_FT <<
"Could not load the true type fonts";
116 throw font::error(
"font config lib failed to add the font path: '" + font_path +
"'");
119 std::string font_file = font_path +
"/fonts.conf";
127 font_file_contents.insert(font_file_contents.find(
"</fontconfig>"),
"<cachedir>"+
filesystem::get_cache_dir()+
"</cachedir>\n");
130 if(!FcConfigParseAndLoadFromMemory(FcConfigGetCurrent(),
131 reinterpret_cast<const FcChar8*
>(font_file_contents.c_str()),
134 ERR_FT <<
"Could not load local font configuration";
135 throw font::error(
"font config lib failed to find font.conf: '" + font_file +
"'");
139 LOG_FT <<
"Local font configuration loaded";
145 FcConfigAppFontClear(FcConfigGetCurrent());
A config object defines a single node in a WML file, with access to child nodes.
config & mandatory_child(config_key_type key, int n=0)
Returns the nth child with the given key, or throws an error if there is none.
Definitions for the interface to Wesnoth Markup Language (WML).
Declarations for File-IO.
static lg::log_domain log_font("font")
Standard logging facilities (interface).
std::string get_cache_dir()
utils::optional< std::string > get_wml_location(const std::string &path, const utils::optional< std::string > ¤t_dir)
Returns a translated path to the actual file or directory, if it exists.
std::string read_file(const std::string &fname)
Basic disk I/O - read file.
const t_string & get_font_families(family_class fclass)
Returns the currently defined fonts.
config read(std::istream &in, abstract_validator *validator)
filesystem::scoped_istream preprocess_file(const std::string &fname, preproc_map *defines)
Function to use the WML preprocessor on a file.