2013-06-23 15:20:23 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file fontdetection.cpp Detection of the right font. */
|
|
|
|
|
2018-11-25 01:00:42 +00:00
|
|
|
#if defined(WITH_FREETYPE) || defined(_WIN32)
|
2013-06-23 18:32:02 +00:00
|
|
|
|
2013-06-23 15:20:23 +00:00
|
|
|
#include "stdafx.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "fontdetection.h"
|
|
|
|
#include "string_func.h"
|
|
|
|
#include "strings_func.h"
|
|
|
|
|
2018-11-25 01:00:42 +00:00
|
|
|
#ifdef WITH_FREETYPE
|
2013-06-23 15:20:23 +00:00
|
|
|
extern FT_Library _library;
|
2018-11-25 01:00:42 +00:00
|
|
|
#endif /* WITH_FREETYPE */
|
2013-06-23 15:20:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the font loaded into a Freetype face by using a font-name.
|
|
|
|
* If no appropriate font is found, the function returns an error
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* ========================================================================================
|
|
|
|
* Windows support
|
|
|
|
* ======================================================================================== */
|
|
|
|
|
2018-12-09 01:28:14 +00:00
|
|
|
#ifdef _WIN32
|
2013-06-23 15:27:55 +00:00
|
|
|
#include "core/alloc_func.hpp"
|
|
|
|
#include "core/math_func.hpp"
|
2013-06-23 15:20:23 +00:00
|
|
|
#include <windows.h>
|
|
|
|
#include <shlobj.h> /* SHGetFolderPath */
|
|
|
|
#include "os/windows/win32.h"
|
|
|
|
|
2014-04-23 20:13:33 +00:00
|
|
|
#include "safeguards.h"
|
|
|
|
|
2018-11-25 01:00:42 +00:00
|
|
|
#ifdef WITH_FREETYPE
|
2013-06-23 15:20:23 +00:00
|
|
|
/**
|
|
|
|
* Get the short DOS 8.3 format for paths.
|
|
|
|
* FreeType doesn't support Unicode filenames and Windows' fopen (as used
|
|
|
|
* by FreeType) doesn't support UTF-8 filenames. So we have to convert the
|
|
|
|
* filename into something that isn't UTF-8 but represents the Unicode file
|
|
|
|
* name. This is the short DOS 8.3 format. This does not contain any
|
|
|
|
* characters that fopen doesn't support.
|
2013-08-05 20:36:55 +00:00
|
|
|
* @param long_path the path in system encoding.
|
2013-06-23 15:20:23 +00:00
|
|
|
* @return the short path in ANSI (ASCII).
|
|
|
|
*/
|
2013-08-05 20:36:55 +00:00
|
|
|
const char *GetShortPath(const TCHAR *long_path)
|
2013-06-23 15:20:23 +00:00
|
|
|
{
|
|
|
|
static char short_path[MAX_PATH];
|
|
|
|
#ifdef UNICODE
|
2013-08-05 20:36:55 +00:00
|
|
|
WCHAR short_path_w[MAX_PATH];
|
|
|
|
GetShortPathName(long_path, short_path_w, lengthof(short_path_w));
|
2019-04-10 21:07:06 +00:00
|
|
|
WideCharToMultiByte(CP_ACP, 0, short_path_w, -1, short_path, lengthof(short_path), nullptr, nullptr);
|
2013-06-23 15:20:23 +00:00
|
|
|
#else
|
|
|
|
/* Technically not needed, but do it for consistency. */
|
2013-08-05 20:36:55 +00:00
|
|
|
GetShortPathName(long_path, short_path, lengthof(short_path));
|
2013-06-23 15:20:23 +00:00
|
|
|
#endif
|
|
|
|
return short_path;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the font file to be loaded into Freetype by looping the registry
|
|
|
|
* location where windows lists all installed fonts. Not very nice, will
|
|
|
|
* surely break if the registry path changes, but it works. Much better
|
|
|
|
* solution would be to use CreateFont, and extract the font data from it
|
|
|
|
* by GetFontData. The problem with this is that the font file needs to be
|
|
|
|
* kept in memory then until the font is no longer needed. This could mean
|
|
|
|
* an additional memory usage of 30MB (just for fonts!) when using an eastern
|
|
|
|
* font for all font sizes */
|
|
|
|
#define FONT_DIR_NT "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Fonts"
|
|
|
|
#define FONT_DIR_9X "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Fonts"
|
|
|
|
FT_Error GetFontByFaceName(const char *font_name, FT_Face *face)
|
|
|
|
{
|
|
|
|
FT_Error err = FT_Err_Cannot_Open_Resource;
|
|
|
|
HKEY hKey;
|
|
|
|
LONG ret;
|
|
|
|
TCHAR vbuffer[MAX_PATH], dbuffer[256];
|
2013-08-05 20:36:55 +00:00
|
|
|
TCHAR *pathbuf;
|
|
|
|
const char *font_path;
|
2013-06-23 15:20:23 +00:00
|
|
|
uint index;
|
2013-08-05 20:36:55 +00:00
|
|
|
size_t path_len;
|
2013-06-23 15:20:23 +00:00
|
|
|
|
|
|
|
/* On windows NT (2000, NT3.5, XP, etc.) the fonts are stored in the
|
|
|
|
* "Windows NT" key, on Windows 9x in the Windows key. To save us having
|
|
|
|
* to retrieve the windows version, we'll just query both */
|
|
|
|
ret = RegOpenKeyEx(HKEY_LOCAL_MACHINE, _T(FONT_DIR_NT), 0, KEY_READ, &hKey);
|
|
|
|
if (ret != ERROR_SUCCESS) ret = RegOpenKeyEx(HKEY_LOCAL_MACHINE, _T(FONT_DIR_9X), 0, KEY_READ, &hKey);
|
|
|
|
|
|
|
|
if (ret != ERROR_SUCCESS) {
|
|
|
|
DEBUG(freetype, 0, "Cannot open registry key HKLM\\SOFTWARE\\Microsoft\\Windows (NT)\\CurrentVersion\\Fonts");
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2013-08-05 20:36:55 +00:00
|
|
|
/* Convert font name to file system encoding. */
|
|
|
|
TCHAR *font_namep = _tcsdup(OTTD2FS(font_name));
|
2013-06-23 15:20:23 +00:00
|
|
|
|
|
|
|
for (index = 0;; index++) {
|
|
|
|
TCHAR *s;
|
|
|
|
DWORD vbuflen = lengthof(vbuffer);
|
|
|
|
DWORD dbuflen = lengthof(dbuffer);
|
|
|
|
|
2019-04-10 21:07:06 +00:00
|
|
|
ret = RegEnumValue(hKey, index, vbuffer, &vbuflen, nullptr, nullptr, (byte*)dbuffer, &dbuflen);
|
2013-06-23 15:20:23 +00:00
|
|
|
if (ret != ERROR_SUCCESS) goto registry_no_font_found;
|
|
|
|
|
|
|
|
/* The font names in the registry are of the following 3 forms:
|
|
|
|
* - ADMUI3.fon
|
|
|
|
* - Book Antiqua Bold (TrueType)
|
|
|
|
* - Batang & BatangChe & Gungsuh & GungsuhChe (TrueType)
|
|
|
|
* We will strip the font-type '()' if any and work with the font name
|
|
|
|
* itself, which must match exactly; if...
|
|
|
|
* TTC files, font files which contain more than one font are separated
|
|
|
|
* by '&'. Our best bet will be to do substr match for the fontname
|
|
|
|
* and then let FreeType figure out which index to load */
|
|
|
|
s = _tcschr(vbuffer, _T('('));
|
2019-04-10 21:07:06 +00:00
|
|
|
if (s != nullptr) s[-1] = '\0';
|
2013-06-23 15:20:23 +00:00
|
|
|
|
2019-04-10 21:07:06 +00:00
|
|
|
if (_tcschr(vbuffer, _T('&')) == nullptr) {
|
2013-06-23 15:20:23 +00:00
|
|
|
if (_tcsicmp(vbuffer, font_namep) == 0) break;
|
|
|
|
} else {
|
2019-04-10 21:07:06 +00:00
|
|
|
if (_tcsstr(vbuffer, font_namep) != nullptr) break;
|
2013-06-23 15:20:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-10 21:07:06 +00:00
|
|
|
if (!SUCCEEDED(OTTDSHGetFolderPath(nullptr, CSIDL_FONTS, nullptr, SHGFP_TYPE_CURRENT, vbuffer))) {
|
2013-06-23 15:20:23 +00:00
|
|
|
DEBUG(freetype, 0, "SHGetFolderPath cannot return fonts directory");
|
|
|
|
goto folder_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Some fonts are contained in .ttc files, TrueType Collection fonts. These
|
|
|
|
* contain multiple fonts inside this single file. GetFontData however
|
|
|
|
* returns the whole file, so we need to check each font inside to get the
|
2013-08-05 20:36:55 +00:00
|
|
|
* proper font. */
|
|
|
|
path_len = _tcslen(vbuffer) + _tcslen(dbuffer) + 2; // '\' and terminating nul.
|
|
|
|
pathbuf = AllocaM(TCHAR, path_len);
|
|
|
|
_sntprintf(pathbuf, path_len, _T("%s\\%s"), vbuffer, dbuffer);
|
2013-06-23 15:20:23 +00:00
|
|
|
|
2013-08-05 20:36:55 +00:00
|
|
|
/* Convert the path into something that FreeType understands. */
|
|
|
|
font_path = GetShortPath(pathbuf);
|
2013-06-23 15:20:23 +00:00
|
|
|
|
|
|
|
index = 0;
|
|
|
|
do {
|
|
|
|
err = FT_New_Face(_library, font_path, index, face);
|
|
|
|
if (err != FT_Err_Ok) break;
|
|
|
|
|
|
|
|
if (strncasecmp(font_name, (*face)->family_name, strlen((*face)->family_name)) == 0) break;
|
|
|
|
/* Try english name if font name failed */
|
|
|
|
if (strncasecmp(font_name + strlen(font_name) + 1, (*face)->family_name, strlen((*face)->family_name)) == 0) break;
|
|
|
|
err = FT_Err_Cannot_Open_Resource;
|
|
|
|
|
|
|
|
} while ((FT_Long)++index != (*face)->num_faces);
|
|
|
|
|
|
|
|
|
|
|
|
folder_error:
|
|
|
|
registry_no_font_found:
|
|
|
|
free(font_namep);
|
|
|
|
RegCloseKey(hKey);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fonts can have localised names and when the system locale is the same as
|
|
|
|
* one of those localised names Windows will always return that localised name
|
|
|
|
* instead of allowing to get the non-localised (English US) name of the font.
|
|
|
|
* This will later on give problems as freetype uses the non-localised name of
|
|
|
|
* the font and we need to compare based on that name.
|
|
|
|
* Windows furthermore DOES NOT have an API to get the non-localised name nor
|
|
|
|
* can we override the system locale. This means that we have to actually read
|
|
|
|
* the font itself to gather the font name we want.
|
|
|
|
* Based on: http://blogs.msdn.com/michkap/archive/2006/02/13/530814.aspx
|
|
|
|
* @param logfont the font information to get the english name of.
|
|
|
|
* @return the English name (if it could be found).
|
|
|
|
*/
|
|
|
|
static const char *GetEnglishFontName(const ENUMLOGFONTEX *logfont)
|
|
|
|
{
|
|
|
|
static char font_name[MAX_PATH];
|
2019-04-10 21:07:06 +00:00
|
|
|
const char *ret_font_name = nullptr;
|
2013-06-23 15:20:23 +00:00
|
|
|
uint pos = 0;
|
|
|
|
HDC dc;
|
|
|
|
HGDIOBJ oldfont;
|
|
|
|
byte *buf;
|
|
|
|
DWORD dw;
|
|
|
|
uint16 format, count, stringOffset, platformId, encodingId, languageId, nameId, length, offset;
|
|
|
|
|
|
|
|
HFONT font = CreateFontIndirect(&logfont->elfLogFont);
|
2019-04-10 21:07:06 +00:00
|
|
|
if (font == nullptr) goto err1;
|
2013-06-23 15:20:23 +00:00
|
|
|
|
2019-04-10 21:07:06 +00:00
|
|
|
dc = GetDC(nullptr);
|
2013-06-23 15:20:23 +00:00
|
|
|
oldfont = SelectObject(dc, font);
|
2019-04-10 21:07:06 +00:00
|
|
|
dw = GetFontData(dc, 'eman', 0, nullptr, 0);
|
2013-06-23 15:20:23 +00:00
|
|
|
if (dw == GDI_ERROR) goto err2;
|
|
|
|
|
|
|
|
buf = MallocT<byte>(dw);
|
|
|
|
dw = GetFontData(dc, 'eman', 0, buf, dw);
|
|
|
|
if (dw == GDI_ERROR) goto err3;
|
|
|
|
|
|
|
|
format = buf[pos++] << 8;
|
|
|
|
format += buf[pos++];
|
|
|
|
assert(format == 0);
|
|
|
|
count = buf[pos++] << 8;
|
|
|
|
count += buf[pos++];
|
|
|
|
stringOffset = buf[pos++] << 8;
|
|
|
|
stringOffset += buf[pos++];
|
|
|
|
for (uint i = 0; i < count; i++) {
|
|
|
|
platformId = buf[pos++] << 8;
|
|
|
|
platformId += buf[pos++];
|
|
|
|
encodingId = buf[pos++] << 8;
|
|
|
|
encodingId += buf[pos++];
|
|
|
|
languageId = buf[pos++] << 8;
|
|
|
|
languageId += buf[pos++];
|
|
|
|
nameId = buf[pos++] << 8;
|
|
|
|
nameId += buf[pos++];
|
|
|
|
if (nameId != 1) {
|
|
|
|
pos += 4; // skip length and offset
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
length = buf[pos++] << 8;
|
|
|
|
length += buf[pos++];
|
|
|
|
offset = buf[pos++] << 8;
|
|
|
|
offset += buf[pos++];
|
|
|
|
|
|
|
|
/* Don't buffer overflow */
|
|
|
|
length = min(length, MAX_PATH - 1);
|
|
|
|
for (uint j = 0; j < length; j++) font_name[j] = buf[stringOffset + offset + j];
|
|
|
|
font_name[length] = '\0';
|
|
|
|
|
|
|
|
if ((platformId == 1 && languageId == 0) || // Macintosh English
|
|
|
|
(platformId == 3 && languageId == 0x0409)) { // Microsoft English (US)
|
|
|
|
ret_font_name = font_name;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
err3:
|
|
|
|
free(buf);
|
|
|
|
err2:
|
|
|
|
SelectObject(dc, oldfont);
|
2019-04-10 21:07:06 +00:00
|
|
|
ReleaseDC(nullptr, dc);
|
2013-06-23 15:20:23 +00:00
|
|
|
DeleteObject(font);
|
|
|
|
err1:
|
2019-04-10 21:07:06 +00:00
|
|
|
return ret_font_name == nullptr ? WIDE_TO_MB((const TCHAR*)logfont->elfFullName) : ret_font_name;
|
2013-06-23 15:20:23 +00:00
|
|
|
}
|
2018-11-25 01:00:42 +00:00
|
|
|
#endif /* WITH_FREETYPE */
|
2013-06-23 15:20:23 +00:00
|
|
|
|
|
|
|
class FontList {
|
|
|
|
protected:
|
|
|
|
TCHAR **fonts;
|
|
|
|
uint items;
|
|
|
|
uint capacity;
|
|
|
|
|
|
|
|
public:
|
2019-04-10 21:07:06 +00:00
|
|
|
FontList() : fonts(nullptr), items(0), capacity(0) { };
|
2013-06-23 15:20:23 +00:00
|
|
|
|
|
|
|
~FontList() {
|
2019-04-10 21:07:06 +00:00
|
|
|
if (this->fonts == nullptr) return;
|
2013-06-23 15:20:23 +00:00
|
|
|
|
|
|
|
for (uint i = 0; i < this->items; i++) {
|
|
|
|
free(this->fonts[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(this->fonts);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Add(const TCHAR *font) {
|
|
|
|
for (uint i = 0; i < this->items; i++) {
|
|
|
|
if (_tcscmp(this->fonts[i], font) == 0) return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this->items == this->capacity) {
|
|
|
|
this->capacity += 10;
|
|
|
|
this->fonts = ReallocT(this->fonts, this->capacity);
|
|
|
|
}
|
|
|
|
|
|
|
|
this->fonts[this->items++] = _tcsdup(font);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct EFCParam {
|
|
|
|
FreeTypeSettings *settings;
|
|
|
|
LOCALESIGNATURE locale;
|
|
|
|
MissingGlyphSearcher *callback;
|
|
|
|
FontList fonts;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int CALLBACK EnumFontCallback(const ENUMLOGFONTEX *logfont, const NEWTEXTMETRICEX *metric, DWORD type, LPARAM lParam)
|
|
|
|
{
|
|
|
|
EFCParam *info = (EFCParam *)lParam;
|
|
|
|
|
|
|
|
/* Skip duplicates */
|
|
|
|
if (!info->fonts.Add((const TCHAR*)logfont->elfFullName)) return 1;
|
|
|
|
/* Only use TrueType fonts */
|
|
|
|
if (!(type & TRUETYPE_FONTTYPE)) return 1;
|
|
|
|
/* Don't use SYMBOL fonts */
|
|
|
|
if (logfont->elfLogFont.lfCharSet == SYMBOL_CHARSET) return 1;
|
|
|
|
/* Use monospaced fonts when asked for it. */
|
|
|
|
if (info->callback->Monospace() && (logfont->elfLogFont.lfPitchAndFamily & (FF_MODERN | FIXED_PITCH)) != (FF_MODERN | FIXED_PITCH)) return 1;
|
|
|
|
|
|
|
|
/* The font has to have at least one of the supported locales to be usable. */
|
|
|
|
if ((metric->ntmFontSig.fsCsb[0] & info->locale.lsCsbSupported[0]) == 0 && (metric->ntmFontSig.fsCsb[1] & info->locale.lsCsbSupported[1]) == 0) {
|
|
|
|
/* On win9x metric->ntmFontSig seems to contain garbage. */
|
|
|
|
FONTSIGNATURE fs;
|
|
|
|
memset(&fs, 0, sizeof(fs));
|
|
|
|
HFONT font = CreateFontIndirect(&logfont->elfLogFont);
|
2019-04-10 21:07:06 +00:00
|
|
|
if (font != nullptr) {
|
|
|
|
HDC dc = GetDC(nullptr);
|
2013-06-23 15:20:23 +00:00
|
|
|
HGDIOBJ oldfont = SelectObject(dc, font);
|
|
|
|
GetTextCharsetInfo(dc, &fs, 0);
|
|
|
|
SelectObject(dc, oldfont);
|
2019-04-10 21:07:06 +00:00
|
|
|
ReleaseDC(nullptr, dc);
|
2013-06-23 15:20:23 +00:00
|
|
|
DeleteObject(font);
|
|
|
|
}
|
|
|
|
if ((fs.fsCsb[0] & info->locale.lsCsbSupported[0]) == 0 && (fs.fsCsb[1] & info->locale.lsCsbSupported[1]) == 0) return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
char font_name[MAX_PATH];
|
2013-08-05 20:36:55 +00:00
|
|
|
convert_from_fs((const TCHAR *)logfont->elfFullName, font_name, lengthof(font_name));
|
2013-06-23 15:20:23 +00:00
|
|
|
|
2018-11-25 01:00:42 +00:00
|
|
|
#ifdef WITH_FREETYPE
|
2013-06-23 15:20:23 +00:00
|
|
|
/* Add english name after font name */
|
|
|
|
const char *english_name = GetEnglishFontName(logfont);
|
|
|
|
strecpy(font_name + strlen(font_name) + 1, english_name, lastof(font_name));
|
|
|
|
|
|
|
|
/* Check whether we can actually load the font. */
|
2019-04-10 21:07:06 +00:00
|
|
|
bool ft_init = _library != nullptr;
|
2013-06-23 15:20:23 +00:00
|
|
|
bool found = false;
|
|
|
|
FT_Face face;
|
|
|
|
/* Init FreeType if needed. */
|
|
|
|
if ((ft_init || FT_Init_FreeType(&_library) == FT_Err_Ok) && GetFontByFaceName(font_name, &face) == FT_Err_Ok) {
|
|
|
|
FT_Done_Face(face);
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
if (!ft_init) {
|
|
|
|
/* Uninit FreeType if we did the init. */
|
|
|
|
FT_Done_FreeType(_library);
|
2019-04-10 21:07:06 +00:00
|
|
|
_library = nullptr;
|
2013-06-23 15:20:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!found) return 1;
|
2018-11-25 01:00:42 +00:00
|
|
|
#else
|
|
|
|
const char *english_name = font_name;
|
|
|
|
#endif /* WITH_FREETYPE */
|
2013-06-23 15:20:23 +00:00
|
|
|
|
2018-11-25 01:02:20 +00:00
|
|
|
PLOGFONT os_data = MallocT<LOGFONT>(1);
|
|
|
|
*os_data = logfont->elfLogFont;
|
|
|
|
info->callback->SetFontNames(info->settings, font_name, os_data);
|
2019-04-10 21:07:06 +00:00
|
|
|
if (info->callback->FindMissingGlyphs(nullptr)) return 1;
|
2013-06-23 15:20:23 +00:00
|
|
|
DEBUG(freetype, 1, "Fallback font: %s (%s)", font_name, english_name);
|
|
|
|
return 0; // stop enumerating
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SetFallbackFont(FreeTypeSettings *settings, const char *language_isocode, int winlangid, MissingGlyphSearcher *callback)
|
|
|
|
{
|
|
|
|
DEBUG(freetype, 1, "Trying fallback fonts");
|
|
|
|
EFCParam langInfo;
|
|
|
|
if (GetLocaleInfo(MAKELCID(winlangid, SORT_DEFAULT), LOCALE_FONTSIGNATURE, (LPTSTR)&langInfo.locale, sizeof(langInfo.locale) / sizeof(TCHAR)) == 0) {
|
|
|
|
/* Invalid langid or some other mysterious error, can't determine fallback font. */
|
|
|
|
DEBUG(freetype, 1, "Can't get locale info for fallback font (langid=0x%x)", winlangid);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
langInfo.settings = settings;
|
|
|
|
langInfo.callback = callback;
|
|
|
|
|
|
|
|
LOGFONT font;
|
|
|
|
/* Enumerate all fonts. */
|
|
|
|
font.lfCharSet = DEFAULT_CHARSET;
|
|
|
|
font.lfFaceName[0] = '\0';
|
|
|
|
font.lfPitchAndFamily = 0;
|
|
|
|
|
2019-04-10 21:07:06 +00:00
|
|
|
HDC dc = GetDC(nullptr);
|
2013-06-23 15:20:23 +00:00
|
|
|
int ret = EnumFontFamiliesEx(dc, &font, (FONTENUMPROC)&EnumFontCallback, (LPARAM)&langInfo, 0);
|
2019-04-10 21:07:06 +00:00
|
|
|
ReleaseDC(nullptr, dc);
|
2013-06-23 15:20:23 +00:00
|
|
|
return ret == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(__APPLE__) /* end ifdef Win32 */
|
|
|
|
/* ========================================================================================
|
|
|
|
* OSX support
|
|
|
|
* ======================================================================================== */
|
|
|
|
|
|
|
|
#include "os/macosx/macos.h"
|
|
|
|
|
2014-04-23 20:13:33 +00:00
|
|
|
#include "safeguards.h"
|
|
|
|
|
2013-06-23 15:20:23 +00:00
|
|
|
FT_Error GetFontByFaceName(const char *font_name, FT_Face *face)
|
|
|
|
{
|
|
|
|
FT_Error err = FT_Err_Cannot_Open_Resource;
|
|
|
|
|
|
|
|
/* Get font reference from name. */
|
2018-04-10 19:26:39 +00:00
|
|
|
UInt8 file_path[PATH_MAX];
|
|
|
|
OSStatus os_err = -1;
|
2019-09-01 13:27:39 +00:00
|
|
|
CFAutoRelease<CFStringRef> name(CFStringCreateWithCString(kCFAllocatorDefault, font_name, kCFStringEncodingUTF8));
|
2013-06-23 15:20:23 +00:00
|
|
|
|
2018-04-10 19:26:39 +00:00
|
|
|
#if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6)
|
|
|
|
if (MacOSVersionIsAtLeast(10, 6, 0)) {
|
|
|
|
/* Simply creating the font using CTFontCreateWithNameAndSize will *always* return
|
2019-09-29 20:27:32 +00:00
|
|
|
* something, no matter the name. As such, we can't use it to check for existence.
|
2018-04-10 19:26:39 +00:00
|
|
|
* We instead query the list of all font descriptors that match the given name which
|
|
|
|
* does not do this stupid name fallback. */
|
2019-09-01 13:27:39 +00:00
|
|
|
CFAutoRelease<CTFontDescriptorRef> name_desc(CTFontDescriptorCreateWithNameAndSize(name.get(), 0.0));
|
|
|
|
CFAutoRelease<CFSetRef> mandatory_attribs(CFSetCreate(kCFAllocatorDefault, (const void **)&kCTFontNameAttribute, 1, &kCFTypeSetCallBacks));
|
|
|
|
CFAutoRelease<CFArrayRef> descs(CTFontDescriptorCreateMatchingFontDescriptors(name_desc.get(), mandatory_attribs.get()));
|
2018-04-10 19:26:39 +00:00
|
|
|
|
|
|
|
/* Loop over all matches until we can get a path for one of them. */
|
2019-09-01 13:27:39 +00:00
|
|
|
for (CFIndex i = 0; descs.get() != nullptr && i < CFArrayGetCount(descs.get()) && os_err != noErr; i++) {
|
|
|
|
CFAutoRelease<CTFontRef> font(CTFontCreateWithFontDescriptor((CTFontDescriptorRef)CFArrayGetValueAtIndex(descs.get(), i), 0.0, nullptr));
|
|
|
|
CFAutoRelease<CFURLRef> fontURL((CFURLRef)CTFontCopyAttribute(font.get(), kCTFontURLAttribute));
|
|
|
|
if (CFURLGetFileSystemRepresentation(fontURL.get(), true, file_path, lengthof(file_path))) os_err = noErr;
|
2018-04-10 19:26:39 +00:00
|
|
|
}
|
2013-06-23 15:20:23 +00:00
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
2018-04-10 19:26:39 +00:00
|
|
|
#if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_6)
|
2019-09-01 13:27:39 +00:00
|
|
|
ATSFontRef font = ATSFontFindFromName(name.get(), kATSOptionFlagsDefault);
|
2018-04-10 19:26:39 +00:00
|
|
|
if (font == kInvalidFont) return err;
|
|
|
|
|
|
|
|
/* Get a file system reference for the font. */
|
|
|
|
FSRef ref;
|
|
|
|
#if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)
|
|
|
|
if (MacOSVersionIsAtLeast(10, 5, 0)) {
|
|
|
|
os_err = ATSFontGetFileReference(font, &ref);
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
2014-07-30 20:19:29 +00:00
|
|
|
#if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5) && !defined(__LP64__)
|
2018-04-10 19:26:39 +00:00
|
|
|
/* This type was introduced with the 10.5 SDK. */
|
2013-06-23 15:20:23 +00:00
|
|
|
#if (MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5)
|
2018-04-10 19:26:39 +00:00
|
|
|
#define ATSFSSpec FSSpec
|
|
|
|
#endif
|
|
|
|
FSSpec spec;
|
|
|
|
os_err = ATSFontGetFileSpecification(font, (ATSFSSpec *)&spec);
|
|
|
|
if (os_err == noErr) os_err = FSpMakeFSRef(&spec, &ref);
|
2013-06-23 15:20:23 +00:00
|
|
|
#endif
|
2018-04-10 19:26:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get unix path for file. */
|
|
|
|
if (os_err == noErr) os_err = FSRefMakePath(&ref, file_path, sizeof(file_path));
|
2013-06-23 15:20:23 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (os_err == noErr) {
|
2018-04-10 19:26:39 +00:00
|
|
|
DEBUG(freetype, 3, "Font path for %s: %s", font_name, file_path);
|
|
|
|
err = FT_New_Face(_library, (const char *)file_path, 0, face);
|
2013-06-23 15:20:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SetFallbackFont(FreeTypeSettings *settings, const char *language_isocode, int winlangid, MissingGlyphSearcher *callback)
|
|
|
|
{
|
|
|
|
bool result = false;
|
|
|
|
|
|
|
|
#if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)
|
|
|
|
if (MacOSVersionIsAtLeast(10, 5, 0)) {
|
|
|
|
/* Determine fallback font using CoreText. This uses the language isocode
|
|
|
|
* to find a suitable font. CoreText is available from 10.5 onwards. */
|
|
|
|
char lang[16];
|
|
|
|
if (strcmp(language_isocode, "zh_TW") == 0) {
|
|
|
|
/* Traditional Chinese */
|
|
|
|
strecpy(lang, "zh-Hant", lastof(lang));
|
|
|
|
} else if (strcmp(language_isocode, "zh_CN") == 0) {
|
|
|
|
/* Simplified Chinese */
|
|
|
|
strecpy(lang, "zh-Hans", lastof(lang));
|
|
|
|
} else {
|
|
|
|
/* Just copy the first part of the isocode. */
|
|
|
|
strecpy(lang, language_isocode, lastof(lang));
|
|
|
|
char *sep = strchr(lang, '_');
|
2019-04-10 21:07:06 +00:00
|
|
|
if (sep != nullptr) *sep = '\0';
|
2013-06-23 15:20:23 +00:00
|
|
|
}
|
|
|
|
|
2019-09-01 13:27:39 +00:00
|
|
|
/* Create a font descriptor matching the wanted language and latin (english) glyphs.
|
|
|
|
* Can't use CFAutoRelease here for everything due to the way the dictionary has to be created. */
|
2013-08-05 20:35:59 +00:00
|
|
|
CFStringRef lang_codes[2];
|
|
|
|
lang_codes[0] = CFStringCreateWithCString(kCFAllocatorDefault, lang, kCFStringEncodingUTF8);
|
|
|
|
lang_codes[1] = CFSTR("en");
|
|
|
|
CFArrayRef lang_arr = CFArrayCreate(kCFAllocatorDefault, (const void **)lang_codes, lengthof(lang_codes), &kCFTypeArrayCallBacks);
|
2019-09-01 13:27:39 +00:00
|
|
|
CFAutoRelease<CFDictionaryRef> lang_attribs(CFDictionaryCreate(kCFAllocatorDefault, (const void**)&kCTFontLanguagesAttribute, (const void **)&lang_arr, 1, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
|
|
|
|
CFAutoRelease<CTFontDescriptorRef> lang_desc(CTFontDescriptorCreateWithAttributes(lang_attribs.get()));
|
2013-08-05 20:35:59 +00:00
|
|
|
CFRelease(lang_arr);
|
|
|
|
CFRelease(lang_codes[0]);
|
|
|
|
|
|
|
|
/* Get array of all font descriptors for the wanted language. */
|
2019-09-01 13:27:39 +00:00
|
|
|
CFAutoRelease<CFSetRef> mandatory_attribs(CFSetCreate(kCFAllocatorDefault, (const void **)&kCTFontLanguagesAttribute, 1, &kCFTypeSetCallBacks));
|
|
|
|
CFAutoRelease<CFArrayRef> descs(CTFontDescriptorCreateMatchingFontDescriptors(lang_desc.get(), mandatory_attribs.get()));
|
2013-08-05 20:35:59 +00:00
|
|
|
|
2019-09-01 13:27:39 +00:00
|
|
|
for (CFIndex i = 0; descs.get() != nullptr && i < CFArrayGetCount(descs.get()); i++) {
|
|
|
|
CTFontDescriptorRef font = (CTFontDescriptorRef)CFArrayGetValueAtIndex(descs.get(), i);
|
2013-08-05 20:35:59 +00:00
|
|
|
|
2013-08-05 20:36:03 +00:00
|
|
|
/* Get font traits. */
|
2019-09-01 13:27:39 +00:00
|
|
|
CFAutoRelease<CFDictionaryRef> traits((CFDictionaryRef)CTFontDescriptorCopyAttribute(font, kCTFontTraitsAttribute));
|
2013-08-05 20:36:03 +00:00
|
|
|
CTFontSymbolicTraits symbolic_traits;
|
2019-09-01 13:27:39 +00:00
|
|
|
CFNumberGetValue((CFNumberRef)CFDictionaryGetValue(traits.get(), kCTFontSymbolicTrait), kCFNumberIntType, &symbolic_traits);
|
2013-08-05 20:36:03 +00:00
|
|
|
|
|
|
|
/* Skip symbol fonts and vertical fonts. */
|
|
|
|
if ((symbolic_traits & kCTFontClassMaskTrait) == (CTFontStylisticClass)kCTFontSymbolicClass || (symbolic_traits & kCTFontVerticalTrait)) continue;
|
|
|
|
/* Skip bold fonts (especially Arial Bold, which looks worse than regular Arial). */
|
|
|
|
if (symbolic_traits & kCTFontBoldTrait) continue;
|
2013-08-05 20:36:06 +00:00
|
|
|
/* Select monospaced fonts if asked for. */
|
|
|
|
if (((symbolic_traits & kCTFontMonoSpaceTrait) == kCTFontMonoSpaceTrait) != callback->Monospace()) continue;
|
2013-08-05 20:36:03 +00:00
|
|
|
|
2013-08-05 20:35:59 +00:00
|
|
|
/* Get font name. */
|
|
|
|
char name[128];
|
2019-09-01 13:27:39 +00:00
|
|
|
CFAutoRelease<CFStringRef> font_name((CFStringRef)CTFontDescriptorCopyAttribute(font, kCTFontDisplayNameAttribute));
|
|
|
|
CFStringGetCString(font_name.get(), name, lengthof(name), kCFStringEncodingUTF8);
|
2013-06-23 15:20:23 +00:00
|
|
|
|
2013-08-05 20:36:03 +00:00
|
|
|
/* There are some special fonts starting with an '.' and the last
|
|
|
|
* resort font that aren't usable. Skip them. */
|
|
|
|
if (name[0] == '.' || strncmp(name, "LastResort", 10) == 0) continue;
|
2013-08-05 20:35:59 +00:00
|
|
|
|
|
|
|
/* Save result. */
|
|
|
|
callback->SetFontNames(settings, name);
|
2019-04-10 21:07:06 +00:00
|
|
|
if (!callback->FindMissingGlyphs(nullptr)) {
|
2013-08-05 20:35:59 +00:00
|
|
|
DEBUG(freetype, 2, "CT-Font for %s: %s", language_isocode, name);
|
|
|
|
result = true;
|
|
|
|
break;
|
2013-06-23 15:20:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
2018-04-10 19:26:39 +00:00
|
|
|
#if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_6)
|
2013-08-05 20:35:59 +00:00
|
|
|
/* Create a font iterator and iterate over all fonts that
|
|
|
|
* are available to the application. */
|
|
|
|
ATSFontIterator itr;
|
|
|
|
ATSFontRef font;
|
2019-04-10 21:07:06 +00:00
|
|
|
ATSFontIteratorCreate(kATSFontContextLocal, nullptr, nullptr, kATSOptionFlagsDefaultScope, &itr);
|
2013-08-05 20:35:59 +00:00
|
|
|
while (!result && ATSFontIteratorNext(itr, &font) == noErr) {
|
|
|
|
/* Get font name. */
|
2013-06-23 15:20:23 +00:00
|
|
|
char name[128];
|
2013-08-05 20:35:59 +00:00
|
|
|
CFStringRef font_name;
|
|
|
|
ATSFontGetName(font, kATSOptionFlagsDefault, &font_name);
|
|
|
|
CFStringGetCString(font_name, name, lengthof(name), kCFStringEncodingUTF8);
|
2013-08-05 20:36:06 +00:00
|
|
|
|
|
|
|
bool monospace = IsMonospaceFont(font_name);
|
2013-08-05 20:35:59 +00:00
|
|
|
CFRelease(font_name);
|
2013-06-23 15:20:23 +00:00
|
|
|
|
2013-08-05 20:36:06 +00:00
|
|
|
/* Select monospaced fonts if asked for. */
|
|
|
|
if (monospace != callback->Monospace()) continue;
|
|
|
|
|
2013-08-05 20:35:59 +00:00
|
|
|
/* We only want the base font and not bold or italic variants. */
|
2019-04-10 21:07:06 +00:00
|
|
|
if (strstr(name, "Italic") != nullptr || strstr(name, "Bold")) continue;
|
2013-08-05 20:35:59 +00:00
|
|
|
|
|
|
|
/* Skip some inappropriate or ugly looking fonts that have better alternatives. */
|
2013-08-05 20:36:03 +00:00
|
|
|
if (name[0] == '.' || strncmp(name, "Apple Symbols", 13) == 0 || strncmp(name, "LastResort", 10) == 0) continue;
|
2013-08-05 20:35:59 +00:00
|
|
|
|
|
|
|
/* Save result. */
|
2013-06-23 15:20:23 +00:00
|
|
|
callback->SetFontNames(settings, name);
|
2019-04-10 21:07:06 +00:00
|
|
|
if (!callback->FindMissingGlyphs(nullptr)) {
|
2013-08-05 20:35:59 +00:00
|
|
|
DEBUG(freetype, 2, "ATS-Font for %s: %s", language_isocode, name);
|
|
|
|
result = true;
|
|
|
|
break;
|
|
|
|
}
|
2013-06-23 15:20:23 +00:00
|
|
|
}
|
2013-08-05 20:35:59 +00:00
|
|
|
ATSFontIteratorRelease(&itr);
|
2018-04-10 19:26:39 +00:00
|
|
|
#endif
|
2013-06-23 15:20:23 +00:00
|
|
|
}
|
|
|
|
|
2013-08-05 20:35:59 +00:00
|
|
|
if (!result) {
|
|
|
|
/* For some OS versions, the font 'Arial Unicode MS' does not report all languages it
|
|
|
|
* supports. If we didn't find any other font, just try it, maybe we get lucky. */
|
|
|
|
callback->SetFontNames(settings, "Arial Unicode MS");
|
2019-04-10 21:07:06 +00:00
|
|
|
result = !callback->FindMissingGlyphs(nullptr);
|
2013-08-05 20:35:59 +00:00
|
|
|
}
|
2013-06-23 15:20:23 +00:00
|
|
|
|
2019-04-10 21:07:06 +00:00
|
|
|
callback->FindMissingGlyphs(nullptr);
|
2013-06-23 15:20:23 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(WITH_FONTCONFIG) /* end ifdef __APPLE__ */
|
|
|
|
|
|
|
|
#include <fontconfig/fontconfig.h>
|
|
|
|
|
2014-04-23 20:13:33 +00:00
|
|
|
#include "safeguards.h"
|
|
|
|
|
2013-06-23 15:20:23 +00:00
|
|
|
/* ========================================================================================
|
|
|
|
* FontConfig (unix) support
|
|
|
|
* ======================================================================================== */
|
|
|
|
FT_Error GetFontByFaceName(const char *font_name, FT_Face *face)
|
|
|
|
{
|
|
|
|
FT_Error err = FT_Err_Cannot_Open_Resource;
|
|
|
|
|
|
|
|
if (!FcInit()) {
|
|
|
|
ShowInfoF("Unable to load font configuration");
|
|
|
|
} else {
|
|
|
|
FcPattern *match;
|
|
|
|
FcPattern *pat;
|
|
|
|
FcFontSet *fs;
|
|
|
|
FcResult result;
|
|
|
|
char *font_style;
|
|
|
|
char *font_family;
|
|
|
|
|
|
|
|
/* Split & strip the font's style */
|
2014-04-25 15:40:32 +00:00
|
|
|
font_family = stredup(font_name);
|
2013-06-23 15:20:23 +00:00
|
|
|
font_style = strchr(font_family, ',');
|
2019-04-10 21:07:06 +00:00
|
|
|
if (font_style != nullptr) {
|
2013-06-23 15:20:23 +00:00
|
|
|
font_style[0] = '\0';
|
|
|
|
font_style++;
|
|
|
|
while (*font_style == ' ' || *font_style == '\t') font_style++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Resolve the name and populate the information structure */
|
|
|
|
pat = FcNameParse((FcChar8*)font_family);
|
2019-04-10 21:07:06 +00:00
|
|
|
if (font_style != nullptr) FcPatternAddString(pat, FC_STYLE, (FcChar8*)font_style);
|
2013-06-23 15:20:23 +00:00
|
|
|
FcConfigSubstitute(0, pat, FcMatchPattern);
|
|
|
|
FcDefaultSubstitute(pat);
|
|
|
|
fs = FcFontSetCreate();
|
|
|
|
match = FcFontMatch(0, pat, &result);
|
|
|
|
|
2019-04-10 21:07:06 +00:00
|
|
|
if (fs != nullptr && match != nullptr) {
|
2013-06-23 15:20:23 +00:00
|
|
|
int i;
|
|
|
|
FcChar8 *family;
|
|
|
|
FcChar8 *style;
|
|
|
|
FcChar8 *file;
|
|
|
|
FcFontSetAdd(fs, match);
|
|
|
|
|
|
|
|
for (i = 0; err != FT_Err_Ok && i < fs->nfont; i++) {
|
|
|
|
/* Try the new filename */
|
|
|
|
if (FcPatternGetString(fs->fonts[i], FC_FILE, 0, &file) == FcResultMatch &&
|
|
|
|
FcPatternGetString(fs->fonts[i], FC_FAMILY, 0, &family) == FcResultMatch &&
|
|
|
|
FcPatternGetString(fs->fonts[i], FC_STYLE, 0, &style) == FcResultMatch) {
|
|
|
|
|
|
|
|
/* The correct style? */
|
2019-04-10 21:07:06 +00:00
|
|
|
if (font_style != nullptr && strcasecmp(font_style, (char*)style) != 0) continue;
|
2013-06-23 15:20:23 +00:00
|
|
|
|
|
|
|
/* Font config takes the best shot, which, if the family name is spelled
|
|
|
|
* wrongly a 'random' font, so check whether the family name is the
|
|
|
|
* same as the supplied name */
|
|
|
|
if (strcasecmp(font_family, (char*)family) == 0) {
|
|
|
|
err = FT_New_Face(_library, (char *)file, 0, face);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(font_family);
|
|
|
|
FcPatternDestroy(pat);
|
|
|
|
FcFontSetDestroy(fs);
|
|
|
|
FcFini();
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SetFallbackFont(FreeTypeSettings *settings, const char *language_isocode, int winlangid, MissingGlyphSearcher *callback)
|
|
|
|
{
|
|
|
|
if (!FcInit()) return false;
|
|
|
|
|
|
|
|
bool ret = false;
|
|
|
|
|
|
|
|
/* Fontconfig doesn't handle full language isocodes, only the part
|
|
|
|
* before the _ of e.g. en_GB is used, so "remove" everything after
|
|
|
|
* the _. */
|
|
|
|
char lang[16];
|
|
|
|
seprintf(lang, lastof(lang), ":lang=%s", language_isocode);
|
|
|
|
char *split = strchr(lang, '_');
|
2019-04-10 21:07:06 +00:00
|
|
|
if (split != nullptr) *split = '\0';
|
2013-06-23 15:20:23 +00:00
|
|
|
|
|
|
|
/* First create a pattern to match the wanted language. */
|
|
|
|
FcPattern *pat = FcNameParse((FcChar8*)lang);
|
|
|
|
/* We only want to know the filename. */
|
2019-04-10 21:07:06 +00:00
|
|
|
FcObjectSet *os = FcObjectSetBuild(FC_FILE, FC_SPACING, FC_SLANT, FC_WEIGHT, nullptr);
|
2013-06-23 15:20:23 +00:00
|
|
|
/* Get the list of filenames matching the wanted language. */
|
2019-04-10 21:07:06 +00:00
|
|
|
FcFontSet *fs = FcFontList(nullptr, pat, os);
|
2013-06-23 15:20:23 +00:00
|
|
|
|
|
|
|
/* We don't need these anymore. */
|
|
|
|
FcObjectSetDestroy(os);
|
|
|
|
FcPatternDestroy(pat);
|
|
|
|
|
2019-04-10 21:07:06 +00:00
|
|
|
if (fs != nullptr) {
|
2013-06-23 15:20:23 +00:00
|
|
|
int best_weight = -1;
|
2019-04-10 21:07:06 +00:00
|
|
|
const char *best_font = nullptr;
|
2013-06-23 15:20:23 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < fs->nfont; i++) {
|
|
|
|
FcPattern *font = fs->fonts[i];
|
|
|
|
|
2019-04-10 21:07:06 +00:00
|
|
|
FcChar8 *file = nullptr;
|
2013-06-23 15:20:23 +00:00
|
|
|
FcResult res = FcPatternGetString(font, FC_FILE, 0, &file);
|
2019-04-10 21:07:06 +00:00
|
|
|
if (res != FcResultMatch || file == nullptr) {
|
2013-06-23 15:20:23 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get a font with the right spacing .*/
|
|
|
|
int value = 0;
|
|
|
|
FcPatternGetInteger(font, FC_SPACING, 0, &value);
|
|
|
|
if (callback->Monospace() != (value == FC_MONO) && value != FC_DUAL) continue;
|
|
|
|
|
|
|
|
/* Do not use those that explicitly say they're slanted. */
|
|
|
|
FcPatternGetInteger(font, FC_SLANT, 0, &value);
|
|
|
|
if (value != 0) continue;
|
|
|
|
|
|
|
|
/* We want the fatter font as they look better at small sizes. */
|
|
|
|
FcPatternGetInteger(font, FC_WEIGHT, 0, &value);
|
|
|
|
if (value <= best_weight) continue;
|
|
|
|
|
|
|
|
callback->SetFontNames(settings, (const char*)file);
|
|
|
|
|
2019-04-10 21:07:06 +00:00
|
|
|
bool missing = callback->FindMissingGlyphs(nullptr);
|
2013-06-23 15:20:23 +00:00
|
|
|
DEBUG(freetype, 1, "Font \"%s\" misses%s glyphs", file, missing ? "" : " no");
|
|
|
|
|
|
|
|
if (!missing) {
|
|
|
|
best_weight = value;
|
|
|
|
best_font = (const char *)file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-10 21:07:06 +00:00
|
|
|
if (best_font != nullptr) {
|
2013-06-23 15:20:23 +00:00
|
|
|
ret = true;
|
|
|
|
callback->SetFontNames(settings, best_font);
|
|
|
|
InitFreeType(callback->Monospace());
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clean up the list of filenames. */
|
|
|
|
FcFontSetDestroy(fs);
|
|
|
|
}
|
|
|
|
|
|
|
|
FcFini();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* without WITH_FONTCONFIG */
|
|
|
|
FT_Error GetFontByFaceName(const char *font_name, FT_Face *face) {return FT_Err_Cannot_Open_Resource;}
|
|
|
|
bool SetFallbackFont(FreeTypeSettings *settings, const char *language_isocode, int winlangid, MissingGlyphSearcher *callback) { return false; }
|
|
|
|
#endif /* WITH_FONTCONFIG */
|
2013-06-23 18:32:02 +00:00
|
|
|
|
|
|
|
#endif /* WITH_FREETYPE */
|