2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2020-10-25 19:28:06 +01:00
|
|
|
#include <AK/NonnullRefPtrVector.h>
|
2019-08-29 19:30:48 +02:00
|
|
|
#include <AK/QuickSort.h>
|
2020-02-06 15:04:03 +01:00
|
|
|
#include <LibCore/DirIterator.h>
|
2020-09-18 09:49:51 +02:00
|
|
|
#include <LibGfx/Font.h>
|
2020-10-31 10:18:49 +01:00
|
|
|
#include <LibGfx/FontDatabase.h>
|
2021-01-02 14:49:20 +01:00
|
|
|
#include <LibGfx/Typeface.h>
|
|
|
|
#include <LibTTF/Font.h>
|
2019-02-12 14:35:33 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2020-10-31 10:18:49 +01:00
|
|
|
namespace Gfx {
|
2019-04-05 05:10:18 +02:00
|
|
|
|
2020-03-07 12:02:21 +13:00
|
|
|
static FontDatabase* s_the;
|
|
|
|
|
|
|
|
FontDatabase& FontDatabase::the()
|
2019-02-12 14:35:33 +01:00
|
|
|
{
|
2019-04-05 05:10:18 +02:00
|
|
|
if (!s_the)
|
2020-03-07 12:02:21 +13:00
|
|
|
s_the = new FontDatabase;
|
2019-04-05 05:10:18 +02:00
|
|
|
return *s_the;
|
2019-02-12 14:35:33 +01:00
|
|
|
}
|
|
|
|
|
2021-05-21 18:10:23 +02:00
|
|
|
static RefPtr<Font> s_default_font;
|
|
|
|
static String s_default_font_query;
|
|
|
|
static RefPtr<Font> s_fixed_width_font;
|
|
|
|
static String s_fixed_width_font_query;
|
|
|
|
|
|
|
|
void FontDatabase::set_default_font_query(String query)
|
|
|
|
{
|
|
|
|
if (s_default_font_query == query)
|
|
|
|
return;
|
|
|
|
s_default_font_query = move(query);
|
|
|
|
s_default_font = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
String FontDatabase::default_font_query()
|
|
|
|
{
|
|
|
|
return s_default_font_query;
|
|
|
|
}
|
|
|
|
|
2020-12-29 18:25:13 +01:00
|
|
|
Font& FontDatabase::default_font()
|
|
|
|
{
|
2021-05-21 18:10:23 +02:00
|
|
|
if (!s_default_font) {
|
|
|
|
VERIFY(!s_default_font_query.is_empty());
|
|
|
|
s_default_font = FontDatabase::the().get_by_name(s_default_font_query);
|
|
|
|
VERIFY(s_default_font);
|
2020-12-29 18:25:13 +01:00
|
|
|
}
|
2021-05-21 18:10:23 +02:00
|
|
|
return *s_default_font;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FontDatabase::set_fixed_width_font_query(String query)
|
|
|
|
{
|
|
|
|
if (s_fixed_width_font_query == query)
|
|
|
|
return;
|
|
|
|
s_fixed_width_font_query = move(query);
|
|
|
|
s_fixed_width_font = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
String FontDatabase::fixed_width_font_query()
|
|
|
|
{
|
|
|
|
return s_fixed_width_font_query;
|
2020-12-29 18:25:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Font& FontDatabase::default_fixed_width_font()
|
|
|
|
{
|
2021-05-21 18:10:23 +02:00
|
|
|
if (!s_fixed_width_font) {
|
|
|
|
VERIFY(!s_fixed_width_font_query.is_empty());
|
|
|
|
s_fixed_width_font = FontDatabase::the().get_by_name(s_fixed_width_font_query);
|
|
|
|
VERIFY(s_fixed_width_font);
|
2020-12-29 18:25:13 +01:00
|
|
|
}
|
2021-05-21 18:10:23 +02:00
|
|
|
return *s_fixed_width_font;
|
2020-12-29 18:25:13 +01:00
|
|
|
}
|
|
|
|
|
2020-10-25 19:28:06 +01:00
|
|
|
struct FontDatabase::Private {
|
|
|
|
HashMap<String, RefPtr<Gfx::Font>> full_name_to_font_map;
|
2021-01-02 14:49:20 +01:00
|
|
|
Vector<RefPtr<Typeface>> typefaces;
|
2020-10-25 19:28:06 +01:00
|
|
|
};
|
|
|
|
|
2020-03-07 12:02:21 +13:00
|
|
|
FontDatabase::FontDatabase()
|
2020-10-25 19:28:06 +01:00
|
|
|
: m_private(make<Private>())
|
2019-02-12 14:35:33 +01:00
|
|
|
{
|
2021-04-21 20:16:33 +02:00
|
|
|
Core::DirIterator dir_iterator("/res/fonts", Core::DirIterator::SkipDots);
|
|
|
|
if (dir_iterator.has_error()) {
|
|
|
|
warnln("DirIterator: {}", dir_iterator.error_string());
|
2019-02-12 14:35:33 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
2021-04-21 20:16:33 +02:00
|
|
|
while (dir_iterator.has_next()) {
|
|
|
|
auto path = dir_iterator.next_full_path();
|
2020-03-11 18:13:46 +01:00
|
|
|
|
2021-04-21 20:16:33 +02:00
|
|
|
if (path.ends_with(".font"sv)) {
|
2021-01-03 17:36:04 +01:00
|
|
|
if (auto font = Gfx::BitmapFont::load_from_file(path)) {
|
2021-01-02 14:49:20 +01:00
|
|
|
m_private->full_name_to_font_map.set(font->qualified_name(), font);
|
|
|
|
auto typeface = get_or_create_typeface(font->family(), font->variant());
|
|
|
|
typeface->add_bitmap_font(font);
|
|
|
|
}
|
2021-04-21 20:16:33 +02:00
|
|
|
} else if (path.ends_with(".ttf"sv)) {
|
2021-01-02 14:49:20 +01:00
|
|
|
// FIXME: What about .otf and .woff
|
2021-07-04 19:06:39 +02:00
|
|
|
if (auto font_or_error = TTF::Font::try_load_from_file(path); !font_or_error.is_error()) {
|
|
|
|
auto font = font_or_error.release_value();
|
2021-01-02 14:49:20 +01:00
|
|
|
auto typeface = get_or_create_typeface(font->family(), font->variant());
|
2021-07-04 19:06:39 +02:00
|
|
|
typeface->set_ttf_font(move(font));
|
2021-01-02 14:49:20 +01:00
|
|
|
}
|
2019-03-06 14:06:40 +01:00
|
|
|
}
|
2019-02-12 14:35:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-07 12:02:21 +13:00
|
|
|
FontDatabase::~FontDatabase()
|
2019-02-12 14:35:33 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-10-25 19:28:06 +01:00
|
|
|
void FontDatabase::for_each_font(Function<void(const Gfx::Font&)> callback)
|
2019-02-12 14:35:33 +01:00
|
|
|
{
|
2020-10-25 19:28:06 +01:00
|
|
|
Vector<RefPtr<Gfx::Font>> fonts;
|
|
|
|
fonts.ensure_capacity(m_private->full_name_to_font_map.size());
|
|
|
|
for (auto& it : m_private->full_name_to_font_map)
|
|
|
|
fonts.append(it.value);
|
|
|
|
quick_sort(fonts, [](auto& a, auto& b) { return a->qualified_name() < b->qualified_name(); });
|
|
|
|
for (auto& font : fonts)
|
|
|
|
callback(*font);
|
2019-02-12 14:35:33 +01:00
|
|
|
}
|
|
|
|
|
2020-10-25 19:28:06 +01:00
|
|
|
void FontDatabase::for_each_fixed_width_font(Function<void(const Gfx::Font&)> callback)
|
2019-03-06 14:06:40 +01:00
|
|
|
{
|
2020-10-25 19:28:06 +01:00
|
|
|
Vector<RefPtr<Gfx::Font>> fonts;
|
|
|
|
fonts.ensure_capacity(m_private->full_name_to_font_map.size());
|
|
|
|
for (auto& it : m_private->full_name_to_font_map) {
|
|
|
|
if (it.value->is_fixed_width())
|
|
|
|
fonts.append(it.value);
|
2019-03-06 14:06:40 +01:00
|
|
|
}
|
2020-10-25 19:28:06 +01:00
|
|
|
quick_sort(fonts, [](auto& a, auto& b) { return a->qualified_name() < b->qualified_name(); });
|
|
|
|
for (auto& font : fonts)
|
|
|
|
callback(*font);
|
2019-03-06 14:06:40 +01:00
|
|
|
}
|
|
|
|
|
2020-03-07 12:02:21 +13:00
|
|
|
RefPtr<Gfx::Font> FontDatabase::get_by_name(const StringView& name)
|
2019-02-12 14:35:33 +01:00
|
|
|
{
|
2020-10-25 19:28:06 +01:00
|
|
|
auto it = m_private->full_name_to_font_map.find(name);
|
|
|
|
if (it == m_private->full_name_to_font_map.end()) {
|
2021-07-11 00:06:13 +02:00
|
|
|
auto parts = name.split_view(" "sv);
|
|
|
|
if (parts.size() >= 3) {
|
|
|
|
auto weight = parts.take_last().to_int().value_or(0);
|
|
|
|
auto size = parts.take_last().to_int().value_or(0);
|
|
|
|
auto family = String::join(' ', parts);
|
|
|
|
return get(family, size, weight);
|
|
|
|
}
|
2020-10-25 19:28:06 +01:00
|
|
|
dbgln("Font lookup failed: '{}'", name);
|
2019-02-12 14:35:33 +01:00
|
|
|
return nullptr;
|
2020-10-25 19:28:06 +01:00
|
|
|
}
|
|
|
|
return it->value;
|
2019-02-12 14:35:33 +01:00
|
|
|
}
|
2020-03-07 12:02:21 +13:00
|
|
|
|
2020-12-28 15:47:21 +01:00
|
|
|
RefPtr<Gfx::Font> FontDatabase::get(const String& family, unsigned size, unsigned weight)
|
|
|
|
{
|
2021-01-02 18:20:10 +01:00
|
|
|
for (auto typeface : m_private->typefaces) {
|
|
|
|
if (typeface->family() == family && typeface->weight() == weight)
|
|
|
|
return typeface->get_font(size);
|
|
|
|
}
|
2021-07-11 00:06:13 +02:00
|
|
|
dbgln("Failed to get font: '{} {} {}'", family, size, weight);
|
2021-01-02 18:20:10 +01:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<Gfx::Font> FontDatabase::get(const String& family, const String& variant, unsigned size)
|
|
|
|
{
|
|
|
|
for (auto typeface : m_private->typefaces) {
|
|
|
|
if (typeface->family() == family && typeface->variant() == variant)
|
|
|
|
return typeface->get_font(size);
|
2020-12-28 15:47:21 +01:00
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-01-02 14:49:20 +01:00
|
|
|
RefPtr<Typeface> FontDatabase::get_or_create_typeface(const String& family, const String& variant)
|
|
|
|
{
|
|
|
|
for (auto typeface : m_private->typefaces) {
|
|
|
|
if (typeface->family() == family && typeface->variant() == variant)
|
|
|
|
return typeface;
|
|
|
|
}
|
2021-04-23 16:46:57 +02:00
|
|
|
auto typeface = adopt_ref(*new Typeface(family, variant));
|
2021-01-02 14:49:20 +01:00
|
|
|
m_private->typefaces.append(typeface);
|
|
|
|
return typeface;
|
|
|
|
}
|
|
|
|
|
2021-01-02 18:20:10 +01:00
|
|
|
void FontDatabase::for_each_typeface(Function<void(const Typeface&)> callback)
|
|
|
|
{
|
|
|
|
for (auto typeface : m_private->typefaces) {
|
|
|
|
callback(*typeface);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-07 12:02:21 +13:00
|
|
|
}
|