2014-11-23 13:40:43 +01:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2010-2014 sapier <sapier at gmx dot net>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser 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.
|
|
|
|
*/
|
2017-06-26 20:11:17 +02:00
|
|
|
|
2014-11-23 13:40:43 +01:00
|
|
|
#include "fontengine.h"
|
2018-04-04 07:42:40 +02:00
|
|
|
#include <cmath>
|
2017-06-26 20:11:17 +02:00
|
|
|
#include "client/renderingengine.h"
|
2014-11-23 13:40:43 +01:00
|
|
|
#include "config.h"
|
|
|
|
#include "porting.h"
|
|
|
|
#include "filesys.h"
|
2019-08-24 18:54:51 +02:00
|
|
|
#include "gettext.h"
|
2017-06-20 17:18:34 +02:00
|
|
|
#include "irrlicht_changes/CGUITTFont.h"
|
2022-07-09 22:32:08 +02:00
|
|
|
#include "util/numeric.h" // rangelim
|
2014-11-23 13:40:43 +01:00
|
|
|
|
|
|
|
/** maximum size distance for getting a "similar" font size */
|
|
|
|
#define MAX_FONT_SIZE_OFFSET 10
|
|
|
|
|
|
|
|
/** reference to access font engine, has to be initialized by main */
|
2014-11-28 20:06:34 +01:00
|
|
|
FontEngine* g_fontengine = NULL;
|
2014-11-23 13:40:43 +01:00
|
|
|
|
|
|
|
/** callback to be used on change of font size setting */
|
2015-07-09 08:23:08 +02:00
|
|
|
static void font_setting_changed(const std::string &name, void *userdata)
|
|
|
|
{
|
2014-11-28 20:06:34 +01:00
|
|
|
g_fontengine->readSettings();
|
2014-11-23 13:40:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2020-11-29 17:56:25 +01:00
|
|
|
FontEngine::FontEngine(gui::IGUIEnvironment* env) :
|
2017-06-16 11:25:52 +02:00
|
|
|
m_env(env)
|
2014-11-23 13:40:43 +01:00
|
|
|
{
|
2017-08-20 19:37:29 +02:00
|
|
|
for (u32 &i : m_default_size) {
|
2022-01-08 14:53:25 +01:00
|
|
|
i = FONT_SIZE_UNSPECIFIED;
|
2014-11-23 13:40:43 +01:00
|
|
|
}
|
|
|
|
|
2020-11-29 17:56:25 +01:00
|
|
|
assert(g_settings != NULL); // pre-condition
|
2015-03-06 11:21:51 +01:00
|
|
|
assert(m_env != NULL); // pre-condition
|
|
|
|
assert(m_env->getSkin() != NULL); // pre-condition
|
2014-11-23 13:40:43 +01:00
|
|
|
|
2019-08-06 21:33:13 +02:00
|
|
|
readSettings();
|
2014-11-23 13:40:43 +01:00
|
|
|
|
2022-01-08 14:53:25 +01:00
|
|
|
const char *settings[] = {
|
|
|
|
"font_size", "font_bold", "font_italic", "font_size_divisible_by",
|
|
|
|
"mono_font_size", "mono_font_size_divisible_by",
|
|
|
|
"font_shadow", "font_shadow_alpha",
|
|
|
|
"font_path", "font_path_bold", "font_path_italic", "font_path_bold_italic",
|
|
|
|
"mono_font_path", "mono_font_path_bold", "mono_font_path_italic",
|
|
|
|
"mono_font_path_bold_italic",
|
|
|
|
"fallback_font_path",
|
|
|
|
"screen_dpi", "gui_scaling",
|
|
|
|
};
|
2014-11-23 13:40:43 +01:00
|
|
|
|
2022-01-08 14:53:25 +01:00
|
|
|
for (auto name : settings)
|
|
|
|
g_settings->registerChangedCallback(name, font_setting_changed, NULL);
|
2014-11-23 13:40:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
FontEngine::~FontEngine()
|
|
|
|
{
|
|
|
|
cleanCache();
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
void FontEngine::cleanCache()
|
|
|
|
{
|
2021-12-17 23:49:47 +01:00
|
|
|
RecursiveMutexAutoLock l(m_font_mutex);
|
|
|
|
|
2017-08-20 19:37:29 +02:00
|
|
|
for (auto &font_cache_it : m_font_cache) {
|
2014-11-23 13:40:43 +01:00
|
|
|
|
2017-08-20 19:37:29 +02:00
|
|
|
for (auto &font_it : font_cache_it) {
|
|
|
|
font_it.second->drop();
|
2021-12-17 23:49:47 +01:00
|
|
|
font_it.second = nullptr;
|
2014-11-23 13:40:43 +01:00
|
|
|
}
|
2017-08-20 19:37:29 +02:00
|
|
|
font_cache_it.clear();
|
2014-11-23 13:40:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2019-10-17 20:40:50 +02:00
|
|
|
irr::gui::IGUIFont *FontEngine::getFont(FontSpec spec)
|
2021-03-29 19:55:24 +02:00
|
|
|
{
|
|
|
|
return getFont(spec, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
irr::gui::IGUIFont *FontEngine::getFont(FontSpec spec, bool may_fail)
|
2014-11-23 13:40:43 +01:00
|
|
|
{
|
2019-10-17 20:40:50 +02:00
|
|
|
if (spec.mode == FM_Unspecified) {
|
|
|
|
spec.mode = m_currentMode;
|
2021-03-29 19:55:24 +02:00
|
|
|
} else if (spec.mode == _FM_Fallback) {
|
2022-01-08 14:53:25 +01:00
|
|
|
// Fallback font doesn't support these
|
2021-03-29 19:55:24 +02:00
|
|
|
spec.bold = false;
|
|
|
|
spec.italic = false;
|
2014-11-23 13:40:43 +01:00
|
|
|
}
|
|
|
|
|
2019-08-06 21:33:13 +02:00
|
|
|
// Fallback to default size
|
2019-10-17 20:40:50 +02:00
|
|
|
if (spec.size == FONT_SIZE_UNSPECIFIED)
|
|
|
|
spec.size = m_default_size[spec.mode];
|
|
|
|
|
2021-12-17 23:49:47 +01:00
|
|
|
RecursiveMutexAutoLock l(m_font_mutex);
|
|
|
|
|
2019-10-17 20:40:50 +02:00
|
|
|
const auto &cache = m_font_cache[spec.getHash()];
|
|
|
|
auto it = cache.find(spec.size);
|
|
|
|
if (it != cache.end())
|
|
|
|
return it->second;
|
|
|
|
|
|
|
|
// Font does not yet exist
|
2022-01-08 14:53:25 +01:00
|
|
|
gui::IGUIFont *font = initFont(spec);
|
2014-11-23 13:40:43 +01:00
|
|
|
|
2021-03-29 19:55:24 +02:00
|
|
|
if (!font && !may_fail) {
|
|
|
|
errorstream << "Minetest cannot continue without a valid font. "
|
|
|
|
"Please correct the 'font_path' setting or install the font "
|
|
|
|
"file in the proper location." << std::endl;
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2019-10-17 20:40:50 +02:00
|
|
|
m_font_cache[spec.getHash()][spec.size] = font;
|
2019-09-10 15:11:26 +02:00
|
|
|
|
2019-10-17 20:40:50 +02:00
|
|
|
return font;
|
2014-11-23 13:40:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2019-10-17 20:40:50 +02:00
|
|
|
unsigned int FontEngine::getTextHeight(const FontSpec &spec)
|
2014-11-23 13:40:43 +01:00
|
|
|
{
|
2021-12-17 23:49:47 +01:00
|
|
|
gui::IGUIFont *font = getFont(spec);
|
2014-11-23 13:40:43 +01:00
|
|
|
|
|
|
|
return font->getDimension(L"Some unimportant example String").Height;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2019-10-17 20:40:50 +02:00
|
|
|
unsigned int FontEngine::getTextWidth(const std::wstring &text, const FontSpec &spec)
|
2014-11-23 13:40:43 +01:00
|
|
|
{
|
2021-12-17 23:49:47 +01:00
|
|
|
gui::IGUIFont *font = getFont(spec);
|
2014-11-23 13:40:43 +01:00
|
|
|
|
|
|
|
return font->getDimension(text.c_str()).Width;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** get line height for a specific font (including empty room between lines) */
|
2019-10-17 20:40:50 +02:00
|
|
|
unsigned int FontEngine::getLineHeight(const FontSpec &spec)
|
2014-11-23 13:40:43 +01:00
|
|
|
{
|
2021-12-17 23:49:47 +01:00
|
|
|
gui::IGUIFont *font = getFont(spec);
|
2014-11-23 13:40:43 +01:00
|
|
|
|
|
|
|
return font->getDimension(L"Some unimportant example String").Height
|
|
|
|
+ font->getKerningHeight();
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
unsigned int FontEngine::getDefaultFontSize()
|
|
|
|
{
|
|
|
|
return m_default_size[m_currentMode];
|
|
|
|
}
|
|
|
|
|
2020-07-12 09:48:50 +02:00
|
|
|
unsigned int FontEngine::getFontSize(FontMode mode)
|
|
|
|
{
|
|
|
|
if (mode == FM_Unspecified)
|
|
|
|
return m_default_size[FM_Standard];
|
|
|
|
|
|
|
|
return m_default_size[mode];
|
|
|
|
}
|
|
|
|
|
2014-11-23 13:40:43 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
void FontEngine::readSettings()
|
|
|
|
{
|
2022-07-09 22:32:08 +02:00
|
|
|
m_default_size[FM_Standard] = rangelim(g_settings->getU16("font_size"), 5, 72);
|
|
|
|
m_default_size[_FM_Fallback] = m_default_size[FM_Standard];
|
|
|
|
m_default_size[FM_Mono] = rangelim(g_settings->getU16("mono_font_size"), 5, 72);
|
2019-09-10 15:11:26 +02:00
|
|
|
|
2022-01-08 14:53:25 +01:00
|
|
|
m_default_bold = g_settings->getBool("font_bold");
|
|
|
|
m_default_italic = g_settings->getBool("font_italic");
|
2014-11-23 13:40:43 +01:00
|
|
|
|
|
|
|
cleanCache();
|
|
|
|
updateFontCache();
|
|
|
|
updateSkin();
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
void FontEngine::updateSkin()
|
|
|
|
{
|
|
|
|
gui::IGUIFont *font = getFont();
|
2021-12-17 23:49:47 +01:00
|
|
|
assert(font);
|
2014-11-23 13:40:43 +01:00
|
|
|
|
2021-12-17 23:49:47 +01:00
|
|
|
m_env->getSkin()->setFont(font);
|
2014-11-23 13:40:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
void FontEngine::updateFontCache()
|
|
|
|
{
|
|
|
|
/* the only font to be initialized is default one,
|
|
|
|
* all others are re-initialized on demand */
|
2019-08-06 21:33:13 +02:00
|
|
|
getFont(FONT_SIZE_UNSPECIFIED, FM_Unspecified);
|
2014-11-23 13:40:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2019-10-17 20:40:50 +02:00
|
|
|
gui::IGUIFont *FontEngine::initFont(const FontSpec &spec)
|
2014-11-23 13:40:43 +01:00
|
|
|
{
|
2019-10-17 20:40:50 +02:00
|
|
|
assert(spec.mode != FM_Unspecified);
|
|
|
|
assert(spec.size != FONT_SIZE_UNSPECIFIED);
|
2014-11-23 13:40:43 +01:00
|
|
|
|
2019-08-06 21:33:13 +02:00
|
|
|
std::string setting_prefix = "";
|
2021-03-29 19:55:24 +02:00
|
|
|
if (spec.mode == FM_Mono)
|
|
|
|
setting_prefix = "mono_";
|
2014-11-23 13:40:43 +01:00
|
|
|
|
2019-10-17 20:40:50 +02:00
|
|
|
std::string setting_suffix = "";
|
|
|
|
if (spec.bold)
|
|
|
|
setting_suffix.append("_bold");
|
|
|
|
if (spec.italic)
|
|
|
|
setting_suffix.append("_italic");
|
2019-09-10 15:11:26 +02:00
|
|
|
|
2022-07-09 22:32:08 +02:00
|
|
|
// Font size in pixels for FreeType
|
|
|
|
u32 size = rangelim(spec.size * RenderingEngine::getDisplayDensity() *
|
|
|
|
g_settings->getFloat("gui_scaling"), 1U, 500U);
|
2019-09-10 15:11:26 +02:00
|
|
|
|
2021-12-30 21:54:21 +01:00
|
|
|
// Constrain the font size to a certain multiple, if necessary
|
|
|
|
u16 divisible_by = g_settings->getU16(setting_prefix + "font_size_divisible_by");
|
|
|
|
if (divisible_by > 1) {
|
|
|
|
size = std::max<u32>(
|
|
|
|
std::round((double)size / divisible_by) * divisible_by, divisible_by);
|
2014-11-23 13:40:43 +01:00
|
|
|
}
|
|
|
|
|
2021-12-30 21:54:21 +01:00
|
|
|
sanity_check(size != 0);
|
|
|
|
|
2019-08-06 21:33:13 +02:00
|
|
|
u16 font_shadow = 0;
|
|
|
|
u16 font_shadow_alpha = 0;
|
|
|
|
g_settings->getU16NoEx(setting_prefix + "font_shadow", font_shadow);
|
2019-09-10 15:11:26 +02:00
|
|
|
g_settings->getU16NoEx(setting_prefix + "font_shadow_alpha",
|
|
|
|
font_shadow_alpha);
|
|
|
|
|
2021-03-29 19:55:24 +02:00
|
|
|
std::string path_setting;
|
|
|
|
if (spec.mode == _FM_Fallback)
|
|
|
|
path_setting = "fallback_font_path";
|
|
|
|
else
|
|
|
|
path_setting = setting_prefix + "font_path" + setting_suffix;
|
2014-11-23 13:40:43 +01:00
|
|
|
|
2019-08-06 21:33:13 +02:00
|
|
|
std::string fallback_settings[] = {
|
2021-03-29 19:55:24 +02:00
|
|
|
g_settings->get(path_setting),
|
|
|
|
Settings::getLayer(SL_DEFAULTS)->get(path_setting)
|
2019-08-06 21:33:13 +02:00
|
|
|
};
|
2014-11-23 13:40:43 +01:00
|
|
|
|
2019-08-06 21:33:13 +02:00
|
|
|
for (const std::string &font_path : fallback_settings) {
|
2021-03-29 19:55:24 +02:00
|
|
|
gui::CGUITTFont *font = gui::CGUITTFont::createTTFont(m_env,
|
2014-11-23 13:40:43 +01:00
|
|
|
font_path.c_str(), size, true, true, font_shadow,
|
|
|
|
font_shadow_alpha);
|
|
|
|
|
2021-03-29 19:55:24 +02:00
|
|
|
if (!font) {
|
|
|
|
errorstream << "FontEngine: Cannot load '" << font_path <<
|
2019-08-06 21:33:13 +02:00
|
|
|
"'. Trying to fall back to another path." << std::endl;
|
2021-03-29 19:55:24 +02:00
|
|
|
continue;
|
|
|
|
}
|
2017-02-18 20:40:37 +01:00
|
|
|
|
2021-03-29 19:55:24 +02:00
|
|
|
if (spec.mode != _FM_Fallback) {
|
|
|
|
FontSpec spec2(spec);
|
|
|
|
spec2.mode = _FM_Fallback;
|
|
|
|
font->setFallback(getFont(spec2, true));
|
|
|
|
}
|
|
|
|
return font;
|
|
|
|
}
|
|
|
|
return nullptr;
|
2014-11-23 13:40:43 +01:00
|
|
|
}
|