scummvm/graphics/macgui/macfontmanager.cpp

715 lines
22 KiB
C++
Raw Normal View History

/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program 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; either version 2
* of the License, or (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "common/archive.h"
#include "common/stream.h"
#include "common/unzip.h"
#include "common/macresman.h"
#include "graphics/fonts/bdf.h"
#include "graphics/fonts/macfont.h"
#include "graphics/fonts/ttf.h"
#include "graphics/macgui/macwindowmanager.h"
#include "graphics/macgui/macfontmanager.h"
namespace Graphics {
// Source: Apple IIGS Technical Note #41, "Font Family Numbers"
// http://apple2.boldt.ca/?page=til/tn.iigs.041
static struct FontProto {
int id;
Common::Language lang;
Common::CodePage encoding;
int fallbackId;
const char *name;
} defaultFonts[] = {
// Latin
{ 0, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Chicago" }, // system font
{ 1, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Geneva" }, // application font
{ 2, Common::UNK_LANG, Common::kMacCentralEurope, -1, "New York" },
{ 3, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Geneva" },
{ 4, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Monaco" },
{ 5, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Venice" },
{ 6, Common::UNK_LANG, Common::kMacCentralEurope, -1, "London" },
{ 7, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Athens" },
{ 8, Common::UNK_LANG, Common::kMacCentralEurope, -1, "San Francisco" },
{ 9, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Toronto" },
{ 11, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Cairo" },
{ 12, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Los Angeles" },
{ 13, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Zapf Dingbats" },
{ 14, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Bookman" },
{ 15, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Helvetica Narrow" },
{ 16, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Palatino" },
{ 18, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Zapf Chancery" },
{ 20, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Times" }, // 20
{ 21, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Helvetica" },
{ 22, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Courier" },
{ 23, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Symbol" },
{ 24, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Taliesin" }, // mobile?
{ 33, Common::UNK_LANG, Common::kMacCentralEurope, -1, "Avant Garde" },
{ 34, Common::UNK_LANG, Common::kMacCentralEurope, -1, "New Century Schoolbook" },
// Japanese (names are Shift JIS encoded)
{ 16384, Common::JA_JPN, Common::kUtf8, -1, "Osaka" },
{ 16396, Common::JA_JPN, Common::kUtf8, 16384, "\x96\x7B\x96\xBE\x92\xA9\x81\x7C\x82\x6C" }, // Book Mincho - M
{ 16433, Common::JA_JPN, Common::kUtf8, 16436, "\x93\x99\x95\x9D\x83\x53\x83\x56\x83\x62\x83\x4E" }, // Mono Gothic
{ 16435, Common::JA_JPN, Common::kUtf8, 16436, "\x93\x99\x95\x9D\x96\xBE\x92\xA9" }, // Mono Ming
{ 16436, Common::JA_JPN, Common::kUtf8, -1, "Osaka\x81\x7C\x93\x99\x95\x9D" }, // Osaka Mono
{ 16436, Common::JA_JPN, Common::kUtf8, -1, "OsakaMono" }, // redundant entry is to register English name
{ 16640, Common::JA_JPN, Common::kUtf8, 16384, "\x92\x86\x83\x53\x83\x56\x83\x62\x83\x4E\x91\xCC" }, // Medium Gothic
{ 16641, Common::JA_JPN, Common::kUtf8, 16384, "\x8D\xD7\x96\xBE\x92\xA9\x91\xCC" }, // Ming
{ 16700, Common::JA_JPN, Common::kUtf8, 16384, "\x95\xBD\x90\xAC\x96\xBE\x92\xA9" }, // Heisi Mincho
{ 16701, Common::JA_JPN, Common::kUtf8, 16384, "\x95\xBD\x90\xAC\x8A\x70\x83\x53\x83\x56\x83\x62\x83\x4E" }, // Heisei Kaku Gothic
{ -1, Common::UNK_LANG, Common::kCodePageInvalid, -1, NULL }
};
static const char *const fontStyleSuffixes[] = {
"",
"Bold",
"Italic",
"Underline",
"Outline",
"Shadow",
"Condense",
"Extend"
};
int parseSlant(const Common::String fontname) {
int res = 0;
for (int i = 1; i < 7; i++)
if (fontname.contains(fontStyleSuffixes[i]))
res |= (1 << (i - 1));
return res;
}
Common::String cleanFontName(const Common::String fontname) {
const char *pos;
Common::String f = fontname;
for (int i = 1; i < 7; i++) {
if ((pos = strstr(f.c_str(), fontStyleSuffixes[i])))
f = Common::String(f.c_str(), pos);
}
f.trim();
return f;
}
MacFontManager::MacFontManager(uint32 mode) : _mode(mode) {
for (FontProto *font = defaultFonts; font->name; font++) {
if (!_fontInfo.contains(font->id)) {
FontInfo *info = new FontInfo;
info->lang = font->lang;
info->encoding = font->encoding;
info->fallbackId = font->fallbackId;
info->name = font->name;
_fontInfo[font->id] = info;
}
if (!_fontIds.contains(font->name)) {
_fontIds[font->name] = font->id;
}
}
if (_mode & MacGUIConstants::kWMModeForceBuiltinFonts) {
_builtInFonts = true;
} else {
loadFonts();
}
_japaneseFontsLoaded = false;
}
MacFontManager::~MacFontManager() {
for (Common::HashMap<int, FontInfo *>::iterator it = _fontInfo.begin(); it != _fontInfo.end(); it++)
delete it->_value;
2020-06-29 22:10:11 -04:00
for (Common::HashMap<int, const Graphics::Font *>::iterator it = _uniFonts.begin(); it != _uniFonts.end(); it++)
delete it->_value;
2020-06-29 22:10:11 -04:00
for (Common::HashMap<int, Common::SeekableReadStream *>::iterator it = _ttfData.begin(); it != _ttfData.end(); it++)
delete it->_value;
}
void MacFontManager::loadFontsBDF() {
Common::Archive *dat;
dat = Common::makeZipArchive("classicmacfonts.dat");
if (!dat) {
warning("Could not find classicmacfonts.dat. Falling back to built-in fonts");
_builtInFonts = true;
return;
}
Common::ArchiveMemberList list;
dat->listMembers(list);
for (Common::ArchiveMemberList::iterator it = list.begin(); it != list.end(); ++it) {
Common::SeekableReadStream *stream = dat->createReadStreamForMember((*it)->getName());
Graphics::BdfFont *font = Graphics::BdfFont::loadFont(*stream);
delete stream;
Common::String fontName;
MacFont *macfont;
if (font->getFamilyName() && *font->getFamilyName()) {
fontName = Common::String::format("%s-%s-%d", font->getFamilyName(), font->getFontSlant(), font->getFontSize());
2020-10-19 19:21:42 +02:00
macfont = new MacFont(_fontIds.getValOrDefault(font->getFamilyName(), kMacFontNonStandard), font->getFontSize(), parseFontSlant(font->getFontSlant()));
} else { // Get it from the file name
fontName = (*it)->getName();
// Trim the .bdf extension
for (int i = fontName.size() - 1; i >= 0; --i) {
if (fontName[i] == '.') {
while ((uint)i < fontName.size()) {
fontName.deleteLastChar();
}
break;
}
}
macfont = new MacFont(kMacFontNonStandard);
macfont->setName(fontName);
}
FontMan.assignFontToName(fontName, font);
2017-01-24 23:33:59 +01:00
//macfont->setFont(font);
_fontRegistry.setVal(fontName, macfont);
debug(2, " %s", fontName.c_str());
}
_builtInFonts = false;
delete dat;
}
void MacFontManager::loadFonts() {
Common::Archive *dat;
dat = Common::makeZipArchive("classicmacfonts.dat");
if (!dat) {
warning("Could not find classicmacfonts.dat. Falling back to built-in fonts");
_builtInFonts = true;
return;
}
Common::ArchiveMemberList list;
dat->listMembers(list);
for (Common::ArchiveMemberList::iterator it = list.begin(); it != list.end(); ++it) {
Common::SeekableReadStream *stream = dat->createReadStreamForMember((*it)->getName());
loadFonts(stream);
}
_builtInFonts = false;
delete dat;
}
void MacFontManager::loadJapaneseFonts() {
if (_japaneseFontsLoaded)
return;
#ifdef USE_FREETYPE2
Common::Archive *dat;
dat = Common::makeZipArchive("japanesemacfonts.dat");
if (!dat) {
warning("Could not find japanesemacfonts.dat");
return;
}
Common::ArchiveMemberList list;
dat->listMembers(list);
for (Common::ArchiveMemberList::iterator it = list.begin(); it != list.end(); ++it) {
Common::SeekableReadStream *stream = dat->createReadStreamForMember((*it)->getName());
Common::String fontName = (*it)->getName();
// Trim the .ttf extension
for (int i = fontName.size() - 1; i >= 0; --i) {
if (fontName[i] == '.') {
while ((uint)i < fontName.size()) {
fontName.deleteLastChar();
}
break;
}
}
_ttfData[_fontIds.getValOrDefault(fontName, kMacFontNonStandard)] = stream;
}
delete dat;
#else
warning("Japanese fonts require FreeType");
#endif
// Set this to true even if we don't have FreeType so we don't spam warnings.
_japaneseFontsLoaded = true;
}
void MacFontManager::loadFonts(Common::SeekableReadStream *stream) {
Common::MacResManager fontFile;
if (!fontFile.loadFromMacBinary(*stream))
return;
loadFonts(&fontFile);
}
void MacFontManager::loadFonts(const Common::String &fileName) {
Common::MacResManager fontFile;
if (!fontFile.open(fileName))
return;
loadFonts(&fontFile);
}
void MacFontManager::loadFonts(Common::MacResManager *fontFile) {
Common::MacResIDArray fonds = fontFile->getResIDArray(MKTAG('F','O','N','D'));
if (fonds.size() > 0) {
for (Common::Array<uint16>::iterator iterator = fonds.begin(); iterator != fonds.end(); ++iterator) {
Common::SeekableReadStream *fond = fontFile->getResource(MKTAG('F', 'O', 'N', 'D'), *iterator);
Common::String familyName = fontFile->getResName(MKTAG('F', 'O', 'N', 'D'), *iterator);
int familySlant = parseSlant(familyName);
if (familySlant) {
familyName = cleanFontName(familyName);
}
Graphics::MacFontFamily *fontFamily = new MacFontFamily();
fontFamily->load(*fond);
Common::Array<Graphics::MacFontFamily::AsscEntry> *assoc = fontFamily->getAssocTable();
bool fontFamilyUsed = false;
for (uint i = 0; i < assoc->size(); i++) {
debug(8, "size: %d style: %d id: %d", (*assoc)[i]._fontSize, (*assoc)[i]._fontStyle | familySlant,
(*assoc)[i]._fontID);
Common::SeekableReadStream *fontstream;
MacFont *macfont;
Graphics::MacFONTFont *font;
fontstream = fontFile->getResource(MKTAG('N', 'F', 'N', 'T'), (*assoc)[i]._fontID);
if (!fontstream)
fontstream = fontFile->getResource(MKTAG('F', 'O', 'N', 'T'), (*assoc)[i]._fontID);
2020-06-29 22:10:11 -04:00
#ifdef USE_FREETYPE2
if (!fontstream) {
2020-06-29 22:10:11 -04:00
// The sfnt resource should be just a copy of a TTF
fontstream = fontFile->getResource(MKTAG('s', 'f', 'n', 't'), (*assoc)[i]._fontID);
2020-10-19 19:21:42 +02:00
_ttfData[_fontIds.getValOrDefault(familyName, kMacFontNonStandard)] = fontstream;
continue;
2020-06-29 22:10:11 -04:00
}
#endif
2020-06-29 22:10:11 -04:00
if (!fontstream) {
if ((*assoc)[i]._fontSize == 0) {
warning("MacFontManager: Detected possible TrueType FontID %d, but no TrueType support detected", (*assoc)[i]._fontID);
} else {
warning("MacFontManager: Unknown FontId: %d", (*assoc)[i]._fontID);
}
continue;
}
fontFamilyUsed = true;
font = new Graphics::MacFONTFont;
font->loadFont(*fontstream, fontFamily, (*assoc)[i]._fontSize, (*assoc)[i]._fontStyle | familySlant);
delete fontstream;
Common::String fontName = Common::String::format("%s-%d-%d", familyName.c_str(), (*assoc)[i]._fontStyle | familySlant, (*assoc)[i]._fontSize);
2020-10-19 19:21:42 +02:00
macfont = new MacFont(_fontIds.getValOrDefault(familyName, kMacFontNonStandard), (*assoc)[i]._fontSize, (*assoc)[i]._fontStyle | familySlant);
FontMan.assignFontToName(fontName, font);
2020-06-29 22:10:11 -04:00
macfont->setFont(font, false);
_fontRegistry.setVal(fontName, macfont);
debug(2, " %s", fontName.c_str());
}
delete fond;
if (!fontFamilyUsed)
delete fontFamily;
}
}
}
const Font *MacFontManager::getFont(MacFont macFont) {
Common::String name;
const Font *font = 0;
2021-07-09 14:04:59 -04:00
int fallbackId = getFontFallbackId(macFont.getId());
if (fallbackId > -1) {
macFont.setId(fallbackId);
}
if (!_builtInFonts) {
2021-07-09 14:04:59 -04:00
Common::Language lang = getFontLanguage(macFont.getId());
if (lang == Common::JA_JPN && !_japaneseFontsLoaded) {
loadJapaneseFonts();
}
if (macFont.getName().empty()) {
name = getFontName(macFont.getId(), macFont.getSize(), macFont.getSlant());
macFont.setName(name);
}
if (!_fontRegistry.contains(macFont.getName())) {
// Let's try to generate name
if (macFont.getSlant() != kMacFontRegular) {
name = getFontName(macFont.getId(), macFont.getSize(), macFont.getSlant(), true);
macFont.setName(name);
}
if (!_fontRegistry.contains(macFont.getName()))
generateFontSubstitute(macFont);
}
font = FontMan.getFontByName(macFont.getName());
if (!font) {
debug(1, "Cannot load font '%s'", macFont.getName().c_str());
font = FontMan.getFontByName(MacFont(kMacFontChicago, 12).getName());
}
}
#ifdef USE_FREETYPE2
if (!font) {
if (_mode & kWMModeUnicode) {
if (macFont.getSize() <= 0) {
debug(1, "MacFontManager::getFont() - Font size <= 0!");
}
Common::HashMap<int, const Graphics::Font *>::iterator pFont = _uniFonts.find(macFont.getSize());
if (pFont != _uniFonts.end()) {
font = pFont->_value;
} else {
font = Graphics::loadTTFFontFromArchive("FreeSans.ttf", macFont.getSize(), Graphics::kTTFSizeModeCharacter, 0, Graphics::kTTFRenderModeMonochrome);
_uniFonts[macFont.getSize()] = font;
}
}
}
#endif
if (!font)
font = FontMan.getFontByUsage(macFont.getFallback());
return font;
}
int MacFontManager::parseFontSlant(Common::String slant) {
slant.toUppercase();
int slantVal = 0;
if (slant == "I")
slantVal |= kMacFontItalic;
if (slant == "B")
slantVal |= kMacFontBold;
if (slant == "R")
slantVal |= kMacFontRegular;
return slantVal;
}
int MacFontManager::parseSlantFromName(const Common::String &name) {
int slantVal = 0;
if (name.contains(" Bold"))
slantVal |= kMacFontBold;
if (name.contains(" Italic"))
slantVal |= kMacFontItalic;
if (name.contains(" Regular"))
slantVal |= kMacFontRegular;
if (name.contains(" Underline"))
slantVal |= kMacFontUnderline;
if (name.contains(" Shadow"))
slantVal |= kMacFontShadow;
if (name.contains(" Outline"))
slantVal |= kMacFontOutline;
if (name.contains(" Condense"))
slantVal |= kMacFontCondense;
if (name.contains(" Extend"))
slantVal |= kMacFontExtend;
return slantVal;
}
int MacFontManager::registerFontName(Common::String name, int preferredId) {
// Don't register an empty font name, just return Geneva's ID.
if (name.empty())
return 1;
if (_fontIds.contains(name))
return _fontIds[name];
int id;
if (preferredId > -1 && !_fontInfo.contains(id)) {
id = preferredId;
} else {
// Preferred ID is already registered, find an unused one.
id = 100;
while (_fontInfo.contains(id))
id++;
}
FontInfo *info = new FontInfo;
info->name = name;
if (preferredId >= 16000) {
info->lang = Common::JA_JPN;
info->encoding = Common::kWindows932; // default to Shift JIS
} else {
info->encoding = Common::kMacCentralEurope;
}
_fontInfo[id] = info;
_fontIds[name] = id;
return id;
}
2021-07-09 14:04:59 -04:00
void MacFont::setName(const char *name) {
_name = name;
}
const Common::String MacFontManager::getFontName(uint16 id, int size, int slant, bool tryGen) {
Common::String rawName = getFontName(id);
Common::String n = cleanFontName(rawName);
int extraSlant = parseFontSlant(rawName);
// let's try parse slant from name
if (!extraSlant)
extraSlant = parseSlantFromName(rawName);
if (n.empty()) {
warning("MacFontManager: Requested font ID %d not found. Falling back to Geneva", id);
n = "Geneva";
2017-01-28 11:40:45 +01:00
}
return Common::String::format("%s-%d-%d", n.c_str(), slant | extraSlant, size);
}
const Common::String MacFontManager::getFontName(MacFont &font) {
return getFontName(font.getId(), font.getSize(), font.getSlant());
}
int MacFontManager::getFontIdByName(Common::String name) {
if (_fontIds.contains(name))
return _fontIds[name];
return 1;
}
2021-07-09 14:04:59 -04:00
Common::Language MacFontManager::getFontLanguage(uint16 id) {
if (!_fontInfo.contains(id)) {
warning("MacFontManager::getFontLanguage: No _fontInfo entry for font %d", id);
return Common::UNK_LANG;
}
return _fontInfo[id]->lang;
}
Common::CodePage MacFontManager::getFontEncoding(uint16 id) {
if (!_fontInfo.contains(id)) {
warning("MacFontManager::getFontEncoding: No _fontInfo entry for font %d", id);
return Common::kCodePageInvalid;
}
return _fontInfo[id]->encoding;
}
int MacFontManager::getFontFallbackId(uint16 id) {
if (!_fontInfo.contains(id)) {
warning("MacFontManager::getFontFallbackId: No _fontInfo entry for font %d", id);
return -1;
}
return _fontInfo[id]->fallbackId;
}
Common::String MacFontManager::getFontName(uint16 id) {
if (!_fontInfo.contains(id)) {
warning("MacFontManager::getFontFallbackId: No _fontInfo entry for font %d", id);
return "";
}
return _fontInfo[id]->name;
}
void MacFontManager::generateFontSubstitute(MacFont &macFont) {
Common::String name;
// Try to see if we have regular font
if (macFont.getSlant() != kMacFontRegular) {
name = getFontName(macFont.getId(), macFont.getSize(), kMacFontRegular);
if (_fontRegistry.contains(name) && !_fontRegistry[name]->isGenerated()) {
generateFONTFont(macFont, *_fontRegistry[name]);
return;
}
}
2020-06-29 22:10:11 -04:00
#ifdef USE_FREETYPE2
// Checking if it's a TTF font. Restrict it only to regular fonts now
if (_ttfData.contains(macFont.getId()) && macFont.getSlant() == kMacFontRegular) {
2020-06-29 22:10:11 -04:00
generateTTFFont(macFont, _ttfData[macFont.getId()]);
return;
}
#endif
// Now try twice size
name = getFontName(macFont.getId(), macFont.getSize() * 2, macFont.getSlant());
if (_fontRegistry.contains(name) && !_fontRegistry[name]->isGenerated()) {
2020-06-29 22:10:11 -04:00
generateFONTFont(macFont, *_fontRegistry[name]);
return;
}
// Now half size
name = getFontName(macFont.getId(), macFont.getSize() / 2, macFont.getSlant());
if (_fontRegistry.contains(name) && !_fontRegistry[name]->isGenerated()) {
2020-06-29 22:10:11 -04:00
generateFONTFont(macFont, *_fontRegistry[name]);
return;
}
// No simple substitute was found. Looking for neighborhood fonts
// First we gather all font sizes for this font
Common::Array<MacFont *> sizes;
for (Common::HashMap<Common::String, MacFont *>::iterator i = _fontRegistry.begin(); i != _fontRegistry.end(); ++i) {
if (i->_value->getId() == macFont.getId() && i->_value->getSlant() == macFont.getSlant() && !i->_value->isGenerated())
sizes.push_back(i->_value);
}
if (sizes.empty()) {
if (macFont.getSlant() == kMacFontRegular) {
debug(1, "No viable substitute found (1) for font %s", getFontName(macFont).c_str());
return;
}
// Now let's try to find a regular font
for (Common::HashMap<Common::String, MacFont *>::iterator i = _fontRegistry.begin(); i != _fontRegistry.end(); ++i) {
if (i->_value->getId() == macFont.getId() && i->_value->getSlant() == kMacFontRegular && !i->_value->isGenerated())
sizes.push_back(i->_value);
}
if (sizes.empty()) {
debug(1, "No viable substitute found (2) for font %s", getFontName(macFont).c_str());
return;
}
}
// Now looking for the next larger font, and store the largest one for next check
MacFont *candidate = nullptr;
MacFont *maxSize = sizes[0];
for (uint i = 0; i < sizes.size(); i++) {
if (sizes[i]->getSize() == macFont.getSize()) { // Same size but regular slant
candidate = sizes[i];
break;
}
if ((!candidate && sizes[i]->getSize() > macFont.getSize())
|| (candidate && sizes[i]->getSize() < candidate->getSize()))
candidate = sizes[i];
if (sizes[i]->getSize() > maxSize->getSize())
maxSize = sizes[i];
}
if (candidate) {
2020-06-29 22:10:11 -04:00
generateFONTFont(macFont, *candidate);
return;
}
// Now next smaller font, which is the biggest we have
2020-06-29 22:10:11 -04:00
generateFONTFont(macFont, *maxSize);
}
#ifdef USE_FREETYPE2
void MacFontManager::generateTTFFont(MacFont &toFont, Common::SeekableReadStream *stream) {
debug("Generating TTF font '%s'", getFontName(toFont).c_str());
// TODO: Handle getSlant() flags
stream->seek(0);
Font *font = Graphics::loadTTFFont(*stream, toFont.getSize());
if (!font) {
warning("Failed to generate font '%s'", getFontName(toFont).c_str());
}
toFont.setGenerated(true);
toFont.setFont(font, true);
FontMan.assignFontToName(getFontName(toFont), font);
_fontRegistry.setVal(getFontName(toFont), new MacFont(toFont));
debug("Generated font '%s'", getFontName(toFont).c_str());
}
2020-06-29 22:10:11 -04:00
#endif
void MacFontManager::generateFONTFont(MacFont &toFont, MacFont &fromFont) {
if (fromFont.isTrueType()) {
warning("Cannot generate FONT font '%s' from TTF font '%s'", getFontName(toFont).c_str(), getFontName(fromFont).c_str());
return;
}
debugN("Found font substitute for font '%s' ", getFontName(toFont).c_str());
debug("as '%s'", getFontName(fromFont).c_str());
bool bold = false, italic = false, outline = false;
if (fromFont.getSlant() == kMacFontRegular) {
bold = toFont.getSlant() & kMacFontBold;
italic = toFont.getSlant() & kMacFontItalic;
outline = toFont.getSlant() & kMacFontOutline;
}
2020-06-29 22:10:11 -04:00
MacFONTFont *fromFONTFont = static_cast<MacFONTFont *>(fromFont.getFont());
MacFONTFont *font = Graphics::MacFONTFont::scaleFont(fromFONTFont, toFont.getSize(), bold, italic, outline);
if (!font) {
warning("Failed to generate font '%s'", getFontName(toFont).c_str());
}
toFont.setGenerated(true);
2020-06-29 22:10:11 -04:00
toFont.setFont(font, false);
FontMan.assignFontToName(getFontName(toFont), font);
_fontRegistry.setVal(getFontName(toFont), new MacFont(toFont));
debug("Generated font '%s'", getFontName(toFont).c_str());
}
} // End of namespace Graphics