2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* dynamic_font.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
2022-01-13 09:45:09 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2016-06-18 14:46:12 +02:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
#ifndef DYNAMIC_FONT_H
|
|
|
|
#define DYNAMIC_FONT_H
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2021-11-12 13:34:25 +01:00
|
|
|
#include "modules/modules_enabled.gen.h" // For freetype.
|
2020-02-06 21:51:36 +01:00
|
|
|
#ifdef MODULE_FREETYPE_ENABLED
|
|
|
|
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/io/resource_loader.h"
|
|
|
|
#include "core/os/mutex.h"
|
|
|
|
#include "core/os/thread_safe.h"
|
|
|
|
#include "core/pair.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "scene/resources/font.h"
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_FREETYPE_H
|
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
class DynamicFontAtSize;
|
|
|
|
class DynamicFont;
|
|
|
|
|
|
|
|
class DynamicFontData : public Resource {
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(DynamicFontData, Resource);
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2016-08-02 16:00:32 +02:00
|
|
|
public:
|
2017-03-05 16:44:50 +01:00
|
|
|
struct CacheID {
|
2018-01-21 20:18:52 +01:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
uint32_t size : 16;
|
2018-03-17 09:44:34 +01:00
|
|
|
uint32_t outline_size : 8;
|
2019-02-08 22:44:52 +01:00
|
|
|
uint32_t mipmaps : 1;
|
|
|
|
uint32_t filter : 1;
|
|
|
|
uint32_t unused : 6;
|
2018-01-21 20:18:52 +01:00
|
|
|
};
|
|
|
|
uint32_t key;
|
|
|
|
};
|
2017-03-05 16:44:50 +01:00
|
|
|
bool operator<(CacheID right) const;
|
|
|
|
CacheID() {
|
2018-01-21 20:18:52 +01:00
|
|
|
key = 0;
|
2017-03-05 16:44:50 +01:00
|
|
|
}
|
2016-08-02 16:00:32 +02:00
|
|
|
};
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2018-02-27 15:04:08 +01:00
|
|
|
enum Hinting {
|
|
|
|
HINTING_NONE,
|
|
|
|
HINTING_LIGHT,
|
|
|
|
HINTING_NORMAL
|
|
|
|
};
|
|
|
|
|
2018-11-10 22:07:32 +01:00
|
|
|
bool is_antialiased() const;
|
|
|
|
void set_antialiased(bool p_antialiased);
|
2018-02-27 15:04:08 +01:00
|
|
|
Hinting get_hinting() const;
|
|
|
|
void set_hinting(Hinting p_hinting);
|
|
|
|
|
2016-08-02 16:00:32 +02:00
|
|
|
private:
|
2016-05-29 16:37:26 +02:00
|
|
|
const uint8_t *font_mem;
|
|
|
|
int font_mem_size;
|
2018-11-10 22:07:32 +01:00
|
|
|
bool antialiased;
|
2016-05-29 16:37:26 +02:00
|
|
|
bool force_autohinter;
|
2018-02-27 15:04:08 +01:00
|
|
|
Hinting hinting;
|
2020-12-07 09:24:30 +01:00
|
|
|
Vector<uint8_t> _fontdata;
|
2021-12-08 10:19:31 +01:00
|
|
|
float override_oversampling;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
String font_path;
|
2017-03-05 16:44:50 +01:00
|
|
|
Map<CacheID, DynamicFontAtSize *> size_cache;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
friend class DynamicFontAtSize;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
friend class DynamicFont;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2017-08-11 21:10:05 +02:00
|
|
|
Ref<DynamicFontAtSize> _get_dynamic_font_at_size(CacheID p_cache_id);
|
2016-06-19 00:03:53 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
protected:
|
2016-06-19 00:03:53 +02:00
|
|
|
static void _bind_methods();
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
|
|
|
void set_font_ptr(const uint8_t *p_font_mem, int p_font_mem_size);
|
|
|
|
void set_font_path(const String &p_path);
|
2016-06-19 00:03:53 +02:00
|
|
|
String get_font_path() const;
|
2016-05-29 16:37:26 +02:00
|
|
|
void set_force_autohinter(bool p_force);
|
|
|
|
|
2021-12-08 10:19:31 +01:00
|
|
|
float get_override_oversampling() const;
|
|
|
|
void set_override_oversampling(float p_oversampling);
|
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
DynamicFontData();
|
|
|
|
~DynamicFontData();
|
|
|
|
};
|
|
|
|
|
2018-02-27 15:04:08 +01:00
|
|
|
VARIANT_ENUM_CAST(DynamicFontData::Hinting);
|
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
class DynamicFontAtSize : public Reference {
|
2019-03-19 19:35:57 +01:00
|
|
|
GDCLASS(DynamicFontAtSize, Reference);
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
_THREAD_SAFE_CLASS_
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
FT_Library library; /* handle to library */
|
|
|
|
FT_Face face; /* handle to face object */
|
2016-05-29 16:37:26 +02:00
|
|
|
FT_StreamRec stream;
|
|
|
|
|
2017-12-19 22:48:30 +01:00
|
|
|
float ascent;
|
|
|
|
float descent;
|
|
|
|
float linegap;
|
|
|
|
float rect_margin;
|
|
|
|
float oversampling;
|
2018-01-16 14:22:59 +01:00
|
|
|
float scale_color_font;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2016-08-02 09:01:51 +02:00
|
|
|
uint32_t texture_flags;
|
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
bool valid;
|
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
struct CharTexture {
|
2017-01-07 22:25:37 +01:00
|
|
|
PoolVector<uint8_t> imgdata;
|
2016-05-02 04:12:30 +02:00
|
|
|
int texture_size;
|
|
|
|
Vector<int> offsets;
|
|
|
|
Ref<ImageTexture> texture;
|
|
|
|
};
|
|
|
|
|
|
|
|
Vector<CharTexture> textures;
|
|
|
|
|
|
|
|
struct Character {
|
2016-05-31 00:41:32 +02:00
|
|
|
bool found;
|
2016-05-02 04:12:30 +02:00
|
|
|
int texture_idx;
|
|
|
|
Rect2 rect;
|
2017-12-19 22:48:30 +01:00
|
|
|
Rect2 rect_uv;
|
2016-05-02 04:12:30 +02:00
|
|
|
float v_align;
|
|
|
|
float h_align;
|
|
|
|
float advance;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Character() {
|
|
|
|
texture_idx = 0;
|
|
|
|
v_align = 0;
|
|
|
|
}
|
2018-03-17 09:44:34 +01:00
|
|
|
|
|
|
|
static Character not_found();
|
2016-05-02 04:12:30 +02:00
|
|
|
};
|
|
|
|
|
2018-03-17 09:44:34 +01:00
|
|
|
struct TexturePosition {
|
|
|
|
int index;
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
};
|
|
|
|
|
2021-11-05 11:45:47 +01:00
|
|
|
const Pair<const Character *, DynamicFontAtSize *> _find_char_with_font(int32_t p_char, const Vector<Ref<DynamicFontAtSize>> &p_fallbacks) const;
|
|
|
|
Character _make_outline_char(int32_t p_char);
|
|
|
|
float _get_kerning_advance(const DynamicFontAtSize *font, int32_t p_char, int32_t p_next) const;
|
2018-03-17 09:44:34 +01:00
|
|
|
TexturePosition _find_texture_pos_for_glyph(int p_color_size, Image::Format p_image_format, int p_width, int p_height);
|
|
|
|
Character _bitmap_to_character(FT_Bitmap bitmap, int yofs, int xofs, float advance);
|
|
|
|
|
2021-11-05 11:45:47 +01:00
|
|
|
HashMap<int32_t, Character> char_map;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2021-11-05 11:45:47 +01:00
|
|
|
_FORCE_INLINE_ void _update_char(int32_t p_char);
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
friend class DynamicFontData;
|
2016-05-02 04:12:30 +02:00
|
|
|
Ref<DynamicFontData> font;
|
2016-08-02 16:00:32 +02:00
|
|
|
DynamicFontData::CacheID id;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
Error _load();
|
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
public:
|
2017-12-19 22:48:30 +01:00
|
|
|
static float font_oversampling;
|
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
float get_height() const;
|
|
|
|
|
|
|
|
float get_ascent() const;
|
|
|
|
float get_descent() const;
|
|
|
|
|
2021-05-04 14:20:36 +02:00
|
|
|
Size2 get_char_size(CharType p_char, CharType p_next, const Vector<Ref<DynamicFontAtSize>> &p_fallbacks) const;
|
2020-07-18 14:53:37 +02:00
|
|
|
String get_available_chars() const;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2021-05-04 14:20:36 +02:00
|
|
|
float draw_char(RID p_canvas_item, const Point2 &p_pos, CharType p_char, CharType p_next, const Color &p_modulate, const Vector<Ref<DynamicFontAtSize>> &p_fallbacks, bool p_advance_only = false, bool p_outline = false) const;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2022-05-21 19:12:12 +02:00
|
|
|
RID get_char_texture(CharType p_char, CharType p_next, const Vector<Ref<DynamicFontAtSize>> &p_fallbacks) const;
|
|
|
|
Size2 get_char_texture_size(CharType p_char, CharType p_next, const Vector<Ref<DynamicFontAtSize>> &p_fallbacks) const;
|
|
|
|
|
|
|
|
Vector2 get_char_tx_offset(CharType p_char, CharType p_next, const Vector<Ref<DynamicFontAtSize>> &p_fallbacks) const;
|
|
|
|
Size2 get_char_tx_size(CharType p_char, CharType p_next, const Vector<Ref<DynamicFontAtSize>> &p_fallbacks) const;
|
|
|
|
Rect2 get_char_tx_uv_rect(CharType p_char, CharType p_next, const Vector<Ref<DynamicFontAtSize>> &p_fallbacks) const;
|
|
|
|
|
2016-08-02 09:01:51 +02:00
|
|
|
void set_texture_flags(uint32_t p_flags);
|
2018-03-19 14:48:43 +01:00
|
|
|
void update_oversampling();
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2022-05-22 13:57:57 +02:00
|
|
|
Dictionary get_char_contours(CharType p_char, CharType p_next, const Vector<Ref<DynamicFontAtSize>> &p_fallbacks) const;
|
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
DynamicFontAtSize();
|
|
|
|
~DynamicFontAtSize();
|
|
|
|
};
|
|
|
|
|
|
|
|
///////////////
|
|
|
|
|
|
|
|
class DynamicFont : public Font {
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(DynamicFont, Font);
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2016-08-02 12:05:20 +02:00
|
|
|
public:
|
2017-03-05 16:44:50 +01:00
|
|
|
enum SpacingType {
|
2016-08-02 12:05:20 +02:00
|
|
|
SPACING_TOP,
|
|
|
|
SPACING_BOTTOM,
|
|
|
|
SPACING_CHAR,
|
|
|
|
SPACING_SPACE
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2016-08-02 09:01:51 +02:00
|
|
|
Ref<DynamicFontData> data;
|
2016-05-02 04:12:30 +02:00
|
|
|
Ref<DynamicFontAtSize> data_at_size;
|
2018-03-17 09:44:34 +01:00
|
|
|
Ref<DynamicFontAtSize> outline_data_at_size;
|
2016-05-31 00:41:32 +02:00
|
|
|
|
2021-05-04 14:20:36 +02:00
|
|
|
Vector<Ref<DynamicFontData>> fallbacks;
|
|
|
|
Vector<Ref<DynamicFontAtSize>> fallback_data_at_size;
|
|
|
|
Vector<Ref<DynamicFontAtSize>> fallback_outline_data_at_size;
|
2016-05-31 00:41:32 +02:00
|
|
|
|
2016-08-02 16:00:32 +02:00
|
|
|
DynamicFontData::CacheID cache_id;
|
2018-03-17 09:44:34 +01:00
|
|
|
DynamicFontData::CacheID outline_cache_id;
|
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
bool valid;
|
2016-08-02 12:05:20 +02:00
|
|
|
int spacing_top;
|
|
|
|
int spacing_bottom;
|
|
|
|
int spacing_char;
|
|
|
|
int spacing_space;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2018-03-17 09:44:34 +01:00
|
|
|
Color outline_color;
|
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
protected:
|
2020-07-25 21:42:01 +02:00
|
|
|
void _reload_cache(const char *p_triggering_property = "");
|
2016-08-02 09:01:51 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool _set(const StringName &p_name, const Variant &p_value);
|
|
|
|
bool _get(const StringName &p_name, Variant &r_ret) const;
|
|
|
|
void _get_property_list(List<PropertyInfo> *p_list) const;
|
2016-05-31 00:41:32 +02:00
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_font_data(const Ref<DynamicFontData> &p_data);
|
2016-05-02 04:12:30 +02:00
|
|
|
Ref<DynamicFontData> get_font_data() const;
|
|
|
|
|
|
|
|
void set_size(int p_size);
|
|
|
|
int get_size() const;
|
|
|
|
|
2018-03-17 09:44:34 +01:00
|
|
|
void set_outline_size(int p_size);
|
|
|
|
int get_outline_size() const;
|
|
|
|
|
|
|
|
void set_outline_color(Color p_color);
|
|
|
|
Color get_outline_color() const;
|
|
|
|
|
2016-08-02 09:01:51 +02:00
|
|
|
bool get_use_mipmaps() const;
|
|
|
|
void set_use_mipmaps(bool p_enable);
|
|
|
|
|
|
|
|
bool get_use_filter() const;
|
|
|
|
void set_use_filter(bool p_enable);
|
2016-05-31 00:41:32 +02:00
|
|
|
|
2016-08-02 12:05:20 +02:00
|
|
|
int get_spacing(int p_type) const;
|
|
|
|
void set_spacing(int p_type, int p_value);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void add_fallback(const Ref<DynamicFontData> &p_data);
|
|
|
|
void set_fallback(int p_idx, const Ref<DynamicFontData> &p_data);
|
2016-05-31 00:41:32 +02:00
|
|
|
int get_fallback_count() const;
|
|
|
|
Ref<DynamicFontData> get_fallback(int p_idx) const;
|
|
|
|
void remove_fallback(int p_idx);
|
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
virtual float get_height() const;
|
|
|
|
|
|
|
|
virtual float get_ascent() const;
|
|
|
|
virtual float get_descent() const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual Size2 get_char_size(CharType p_char, CharType p_next = 0) const;
|
2020-07-18 14:53:37 +02:00
|
|
|
String get_available_chars() const;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
|
|
|
virtual bool is_distance_field_hint() const;
|
|
|
|
|
2018-03-17 09:44:34 +01:00
|
|
|
virtual bool has_outline() const;
|
|
|
|
|
|
|
|
virtual float draw_char(RID p_canvas_item, const Point2 &p_pos, CharType p_char, CharType p_next = 0, const Color &p_modulate = Color(1, 1, 1), bool p_outline = false) const;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2022-05-21 19:12:12 +02:00
|
|
|
RID get_char_texture(CharType p_char, CharType p_next, bool p_outline) const;
|
|
|
|
Size2 get_char_texture_size(CharType p_char, CharType p_next, bool p_outline) const;
|
|
|
|
|
|
|
|
Vector2 get_char_tx_offset(CharType p_char, CharType p_next, bool p_outline) const;
|
|
|
|
Size2 get_char_tx_size(CharType p_char, CharType p_next, bool p_outline) const;
|
|
|
|
Rect2 get_char_tx_uv_rect(CharType p_char, CharType p_next, bool p_outline) const;
|
|
|
|
|
2022-05-22 13:57:57 +02:00
|
|
|
Dictionary get_char_contours(CharType p_char, CharType p_next) const;
|
|
|
|
|
2017-12-20 01:58:06 +01:00
|
|
|
SelfList<DynamicFont> font_list;
|
|
|
|
|
2021-01-27 10:43:02 +01:00
|
|
|
static Mutex dynamic_font_mutex;
|
2018-10-20 11:13:06 +02:00
|
|
|
static SelfList<DynamicFont>::List *dynamic_fonts;
|
2017-12-20 01:58:06 +01:00
|
|
|
|
|
|
|
static void initialize_dynamic_fonts();
|
|
|
|
static void finish_dynamic_fonts();
|
|
|
|
static void update_oversampling();
|
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
DynamicFont();
|
|
|
|
~DynamicFont();
|
|
|
|
};
|
|
|
|
|
2017-08-20 17:45:01 +02:00
|
|
|
VARIANT_ENUM_CAST(DynamicFont::SpacingType);
|
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
/////////////
|
|
|
|
|
|
|
|
class ResourceFormatLoaderDynamicFont : public ResourceFormatLoader {
|
|
|
|
public:
|
2022-06-25 21:51:37 +02:00
|
|
|
virtual RES load(const String &p_path, const String &p_original_path = "", Error *r_error = nullptr, bool p_no_subresource_cache = false);
|
2016-05-02 04:12:30 +02:00
|
|
|
virtual void get_recognized_extensions(List<String> *p_extensions) const;
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual bool handles_type(const String &p_type) const;
|
2016-05-02 04:12:30 +02:00
|
|
|
virtual String get_resource_type(const String &p_path) const;
|
|
|
|
};
|
|
|
|
|
2021-07-30 04:47:16 +02:00
|
|
|
#endif // MODULE_FREETYPE_ENABLED
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2021-07-30 04:47:16 +02:00
|
|
|
#endif // DYNAMIC_FONT_H
|