2016-05-29 16:37:26 +02:00
|
|
|
#ifndef DYNAMIC_FONT_H
|
|
|
|
#define DYNAMIC_FONT_H
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
#ifdef FREETYPE_ENABLED
|
|
|
|
#include "scene/resources/font.h"
|
|
|
|
#include "os/thread_safe.h"
|
2016-05-02 04:12:30 +02:00
|
|
|
#include "io/resource_loader.h"
|
|
|
|
|
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 {
|
|
|
|
|
|
|
|
OBJ_TYPE(DynamicFontData,Resource);
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
const uint8_t *font_mem;
|
|
|
|
int font_mem_size;
|
|
|
|
bool force_autohinter;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
String font_path;
|
2016-05-02 04:12:30 +02:00
|
|
|
Map<int,DynamicFontAtSize*> size_cache;
|
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
friend class DynamicFontAtSize;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
|
|
|
friend class DynamicFont;
|
|
|
|
|
|
|
|
|
|
|
|
Ref<DynamicFontAtSize> _get_dynamic_font_at_size(int p_size);
|
|
|
|
public:
|
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
void set_font_ptr(const uint8_t* p_font_mem,int p_font_mem_size);
|
|
|
|
void set_font_path(const String& p_path);
|
|
|
|
void set_force_autohinter(bool p_force);
|
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
DynamicFontData();
|
|
|
|
~DynamicFontData();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class DynamicFontAtSize : public Reference {
|
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
OBJ_TYPE(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
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
FT_Library library; /* handle to library */
|
|
|
|
FT_Face face; /* handle to face object */
|
|
|
|
FT_StreamRec stream;
|
|
|
|
|
|
|
|
int ascent;
|
|
|
|
int descent;
|
|
|
|
int linegap;
|
2016-05-02 04:12:30 +02:00
|
|
|
int rect_margin;
|
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
bool valid;
|
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
struct CharTexture {
|
|
|
|
|
|
|
|
DVector<uint8_t> imgdata;
|
|
|
|
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;
|
|
|
|
float v_align;
|
|
|
|
float h_align;
|
|
|
|
float advance;
|
|
|
|
|
|
|
|
Character() { texture_idx=0; v_align=0; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
static unsigned long _ft_stream_io(FT_Stream stream, unsigned long offset, unsigned char* buffer, unsigned long count );
|
|
|
|
static void _ft_stream_close(FT_Stream stream);
|
2016-05-02 04:12:30 +02:00
|
|
|
|
|
|
|
HashMap< CharType, Character > char_map;
|
|
|
|
|
|
|
|
_FORCE_INLINE_ void _update_char(CharType p_char);
|
|
|
|
|
|
|
|
friend class DynamicFontData;
|
|
|
|
Ref<DynamicFontData> font;
|
|
|
|
int size;
|
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
Error _load();
|
2016-05-02 04:12:30 +02:00
|
|
|
protected:
|
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
|
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
public:
|
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
float get_height() const;
|
|
|
|
|
|
|
|
float get_ascent() const;
|
|
|
|
float get_descent() const;
|
|
|
|
|
2016-05-31 00:41:32 +02:00
|
|
|
Size2 get_char_size(CharType p_char,CharType p_next,const Vector<Ref<DynamicFontAtSize> >& p_fallbacks) const;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2016-05-31 00:41:32 +02:00
|
|
|
float draw_char(RID p_canvas_item, const Point2& p_pos, const CharType& p_char,const CharType& p_next,const Color& p_modulate,const Vector<Ref<DynamicFontAtSize> >& p_fallbacks) const;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DynamicFontAtSize();
|
|
|
|
~DynamicFontAtSize();
|
|
|
|
};
|
|
|
|
|
|
|
|
///////////////
|
|
|
|
|
|
|
|
class DynamicFont : public Font {
|
|
|
|
|
|
|
|
OBJ_TYPE( DynamicFont, Font );
|
|
|
|
|
2016-05-31 00:41:32 +02:00
|
|
|
Ref<DynamicFontData> data;
|
2016-05-02 04:12:30 +02:00
|
|
|
Ref<DynamicFontAtSize> data_at_size;
|
2016-05-31 00:41:32 +02:00
|
|
|
|
|
|
|
Vector< Ref<DynamicFontData> > fallbacks;
|
|
|
|
Vector< Ref<DynamicFontAtSize> > fallback_data_at_size;
|
|
|
|
|
|
|
|
|
2016-05-02 04:12:30 +02:00
|
|
|
int size;
|
2016-05-29 16:37:26 +02:00
|
|
|
bool valid;
|
2016-05-02 04:12:30 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2016-05-31 00:41:32 +02: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-02 04:12:30 +02:00
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
void set_font_data(const Ref<DynamicFontData>& p_data);
|
|
|
|
Ref<DynamicFontData> get_font_data() const;
|
|
|
|
|
|
|
|
void set_size(int p_size);
|
|
|
|
int get_size() const;
|
|
|
|
|
2016-05-31 00:41:32 +02:00
|
|
|
|
|
|
|
void add_fallback(const Ref<DynamicFontData>& p_data);
|
|
|
|
void set_fallback(int p_idx,const Ref<DynamicFontData>& p_data);
|
|
|
|
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;
|
|
|
|
|
|
|
|
virtual Size2 get_char_size(CharType p_char,CharType p_next=0) const;
|
|
|
|
|
|
|
|
virtual bool is_distance_field_hint() const;
|
|
|
|
|
|
|
|
virtual float draw_char(RID p_canvas_item, const Point2& p_pos, const CharType& p_char,const CharType& p_next=0,const Color& p_modulate=Color(1,1,1)) const;
|
|
|
|
|
|
|
|
DynamicFont();
|
|
|
|
~DynamicFont();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/////////////
|
|
|
|
|
|
|
|
class ResourceFormatLoaderDynamicFont : 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;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
#endif
|
2016-05-02 04:12:30 +02:00
|
|
|
|
2016-05-29 16:37:26 +02:00
|
|
|
#endif
|