2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* font.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2020-01-01 11:16:22 +01:00
|
|
|
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 02:10:30 +01: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
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#ifndef FONT_H
|
|
|
|
#define FONT_H
|
|
|
|
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/map.h"
|
|
|
|
#include "core/resource.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "scene/resources/texture.h"
|
2016-04-29 03:21:18 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
class Font : public Resource {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(Font, Resource);
|
2016-04-29 03:21:18 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual float get_height() const = 0;
|
2016-04-29 03:21:18 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual float get_ascent() const = 0;
|
|
|
|
virtual float get_descent() const = 0;
|
2016-04-29 03:21:18 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual Size2 get_char_size(CharType p_char, CharType p_next = 0) const = 0;
|
|
|
|
Size2 get_string_size(const String &p_string) const;
|
2019-03-13 19:14:50 +01:00
|
|
|
Size2 get_wordwrap_string_size(const String &p_string, float p_width) const;
|
2016-04-29 03:21:18 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual bool is_distance_field_hint() const = 0;
|
2016-04-29 03:21:18 +02:00
|
|
|
|
2018-03-17 09:44:34 +01:00
|
|
|
void draw(RID p_canvas_item, const Point2 &p_pos, const String &p_text, const Color &p_modulate = Color(1, 1, 1), int p_clip_w = -1, const Color &p_outline_modulate = Color(1, 1, 1)) const;
|
|
|
|
void draw_halign(RID p_canvas_item, const Point2 &p_pos, HAlign p_align, float p_width, const String &p_text, const Color &p_modulate = Color(1, 1, 1), const Color &p_outline_modulate = Color(1, 1, 1)) const;
|
|
|
|
|
|
|
|
virtual bool has_outline() const { return false; }
|
|
|
|
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 = 0;
|
2016-04-29 03:21:18 +02:00
|
|
|
|
2016-07-18 14:59:31 +02:00
|
|
|
void update_changes();
|
2016-04-29 03:21:18 +02:00
|
|
|
Font();
|
|
|
|
};
|
|
|
|
|
2018-03-17 09:44:34 +01:00
|
|
|
// Helper class to that draws outlines immediately and draws characters in its destructor.
|
|
|
|
class FontDrawer {
|
|
|
|
const Ref<Font> &font;
|
|
|
|
Color outline_color;
|
|
|
|
bool has_outline;
|
|
|
|
|
|
|
|
struct PendingDraw {
|
|
|
|
RID canvas_item;
|
|
|
|
Point2 pos;
|
|
|
|
CharType chr;
|
|
|
|
CharType next;
|
|
|
|
Color modulate;
|
|
|
|
};
|
|
|
|
|
|
|
|
Vector<PendingDraw> pending_draws;
|
|
|
|
|
|
|
|
public:
|
|
|
|
FontDrawer(const Ref<Font> &p_font, const Color &p_outline_color) :
|
|
|
|
font(p_font),
|
|
|
|
outline_color(p_outline_color) {
|
|
|
|
has_outline = p_font->has_outline();
|
|
|
|
}
|
|
|
|
|
|
|
|
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)) {
|
|
|
|
if (has_outline) {
|
|
|
|
PendingDraw draw = { p_canvas_item, p_pos, p_char, p_next, p_modulate };
|
|
|
|
pending_draws.push_back(draw);
|
|
|
|
}
|
|
|
|
return font->draw_char(p_canvas_item, p_pos, p_char, p_next, has_outline ? outline_color : p_modulate, has_outline);
|
|
|
|
}
|
|
|
|
|
|
|
|
~FontDrawer() {
|
|
|
|
for (int i = 0; i < pending_draws.size(); ++i) {
|
|
|
|
const PendingDraw &draw = pending_draws[i];
|
|
|
|
font->draw_char(draw.canvas_item, draw.pos, draw.chr, draw.next, draw.modulate, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-04-29 03:21:18 +02:00
|
|
|
class BitmapFont : public Font {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(BitmapFont, Font);
|
2017-06-16 00:44:11 +02:00
|
|
|
RES_BASE_EXTENSION("font");
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector<Ref<Texture> > textures;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
struct Character {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
int texture_idx;
|
|
|
|
Rect2 rect;
|
|
|
|
float v_align;
|
|
|
|
float h_align;
|
|
|
|
float advance;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Character() {
|
|
|
|
texture_idx = 0;
|
|
|
|
v_align = 0;
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct KerningPairKey {
|
|
|
|
|
|
|
|
union {
|
|
|
|
struct {
|
2017-03-05 16:44:50 +01:00
|
|
|
uint32_t A, B;
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
uint64_t pair;
|
|
|
|
};
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
_FORCE_INLINE_ bool operator<(const KerningPairKey &p_r) const { return pair < p_r.pair; }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2017-03-05 16:44:50 +01:00
|
|
|
HashMap<CharType, Character> char_map;
|
|
|
|
Map<KerningPairKey, int> kerning_map;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
float height;
|
|
|
|
float ascent;
|
2015-03-21 04:43:33 +01:00
|
|
|
bool distance_field_hint;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _set_chars(const PoolVector<int> &p_chars);
|
2017-01-07 22:25:37 +01:00
|
|
|
PoolVector<int> _get_chars() const;
|
2017-03-05 16:44:50 +01:00
|
|
|
void _set_kernings(const PoolVector<int> &p_kernings);
|
2017-01-07 22:25:37 +01:00
|
|
|
PoolVector<int> _get_kernings() const;
|
2017-03-05 16:44:50 +01:00
|
|
|
void _set_textures(const Vector<Variant> &p_textures);
|
2014-02-10 02:10:30 +01:00
|
|
|
Vector<Variant> _get_textures() const;
|
|
|
|
|
2016-04-29 03:21:18 +02:00
|
|
|
Ref<BitmapFont> fallback;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
protected:
|
2014-02-10 02:10:30 +01:00
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
2017-03-05 16:44:50 +01:00
|
|
|
Error create_from_fnt(const String &p_file);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void set_height(float p_height);
|
|
|
|
float get_height() const;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void set_ascent(float p_ascent);
|
2016-03-09 00:00:52 +01:00
|
|
|
float get_ascent() const;
|
2014-02-10 02:10:30 +01:00
|
|
|
float get_descent() const;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void add_texture(const Ref<Texture> &p_texture);
|
|
|
|
void add_char(CharType p_char, int p_texture_idx, const Rect2 &p_rect, const Size2 &p_align, float p_advance = -1);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
int get_character_count() const;
|
|
|
|
Vector<CharType> get_char_keys() const;
|
|
|
|
Character get_character(CharType p_char) const;
|
|
|
|
|
|
|
|
int get_texture_count() const;
|
|
|
|
Ref<Texture> get_texture(int p_idx) const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void add_kerning_pair(CharType p_A, CharType p_B, int p_kerning);
|
|
|
|
int get_kerning_pair(CharType p_A, CharType p_B) const;
|
2014-02-10 02:10:30 +01:00
|
|
|
Vector<KerningPairKey> get_kerning_pair_keys() const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Size2 get_char_size(CharType p_char, CharType p_next = 0) const;
|
2015-12-11 03:02:40 +01:00
|
|
|
|
2016-04-29 03:21:18 +02:00
|
|
|
void set_fallback(const Ref<BitmapFont> &p_fallback);
|
|
|
|
Ref<BitmapFont> get_fallback() const;
|
2015-12-11 03:02:40 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void clear();
|
2015-03-21 04:43:33 +01:00
|
|
|
|
|
|
|
void set_distance_field_hint(bool p_distance_field);
|
|
|
|
bool is_distance_field_hint() const;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2018-03-17 09:44:34 +01:00
|
|
|
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-03-09 00:00:52 +01:00
|
|
|
|
2016-04-29 03:21:18 +02:00
|
|
|
BitmapFont();
|
|
|
|
~BitmapFont();
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2018-01-16 21:57:36 +01:00
|
|
|
class ResourceFormatLoaderBMFont : public ResourceFormatLoader {
|
|
|
|
public:
|
|
|
|
virtual RES load(const String &p_path, const String &p_original_path = "", Error *r_error = NULL);
|
|
|
|
virtual void get_recognized_extensions(List<String> *p_extensions) const;
|
|
|
|
virtual bool handles_type(const String &p_type) const;
|
|
|
|
virtual String get_resource_type(const String &p_path) const;
|
|
|
|
};
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#endif
|