DynamicFont caches now accounts for texture flags
CacheID added for future-proofing
This commit is contained in:
parent
af6ef01c69
commit
0de7860511
2 changed files with 69 additions and 67 deletions
|
@ -30,13 +30,22 @@
|
||||||
#include "dynamic_font.h"
|
#include "dynamic_font.h"
|
||||||
#include "os/file_access.h"
|
#include "os/file_access.h"
|
||||||
|
|
||||||
|
bool DynamicFontData::CacheID::operator< (CacheID right) const{
|
||||||
|
|
||||||
|
if (size<right.size)
|
||||||
|
return true;
|
||||||
|
if (mipmaps != right.mipmaps)
|
||||||
|
return right.mipmaps;
|
||||||
|
if (filter != right.filter)
|
||||||
|
return right.filter;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ref<DynamicFontAtSize> DynamicFontData::_get_dynamic_font_at_size(CacheID p_id){
|
||||||
|
|
||||||
|
|
||||||
Ref<DynamicFontAtSize> DynamicFontData::_get_dynamic_font_at_size(int p_size, uint32_t p_texture_flags) {
|
if (size_cache.has(p_id)) {
|
||||||
|
return Ref<DynamicFontAtSize>( size_cache[p_id] );
|
||||||
|
|
||||||
if (size_cache.has(p_size)) {
|
|
||||||
return Ref<DynamicFontAtSize>( size_cache[p_size] );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -46,10 +55,8 @@ Ref<DynamicFontAtSize> DynamicFontData::_get_dynamic_font_at_size(int p_size, ui
|
||||||
|
|
||||||
dfas->font=Ref<DynamicFontData>( this );
|
dfas->font=Ref<DynamicFontData>( this );
|
||||||
|
|
||||||
size_cache[p_size]=dfas.ptr();
|
size_cache[p_id]=dfas.ptr();
|
||||||
|
dfas->id=p_id;
|
||||||
dfas->texture_flags=p_texture_flags;
|
|
||||||
dfas->size=p_size;
|
|
||||||
dfas->_load();
|
dfas->_load();
|
||||||
|
|
||||||
return dfas;
|
return dfas;
|
||||||
|
@ -170,11 +177,16 @@ Error DynamicFontAtSize::_load() {
|
||||||
ERR_FAIL_COND_V( error, ERR_INVALID_PARAMETER );
|
ERR_FAIL_COND_V( error, ERR_INVALID_PARAMETER );
|
||||||
}*/
|
}*/
|
||||||
|
|
||||||
error = FT_Set_Pixel_Sizes(face,0,size);
|
error = FT_Set_Pixel_Sizes(face,0,id.size);
|
||||||
|
|
||||||
ascent=face->size->metrics.ascender>>6;
|
ascent=face->size->metrics.ascender>>6;
|
||||||
descent=-face->size->metrics.descender>>6;
|
descent=-face->size->metrics.descender>>6;
|
||||||
linegap=0;
|
linegap=0;
|
||||||
|
texture_flags=0;
|
||||||
|
if (id.mipmaps)
|
||||||
|
texture_flags|=Texture::FLAG_MIPMAPS;
|
||||||
|
if (id.filter)
|
||||||
|
texture_flags|=Texture::FLAG_FILTER;
|
||||||
|
|
||||||
//print_line("ASCENT: "+itos(ascent)+" descent "+itos(descent)+" hinted: "+itos(face->face_flags&FT_FACE_FLAG_HINTER));
|
//print_line("ASCENT: "+itos(ascent)+" descent "+itos(descent)+" hinted: "+itos(face->face_flags&FT_FACE_FLAG_HINTER));
|
||||||
|
|
||||||
|
@ -506,7 +518,7 @@ void DynamicFontAtSize::_update_char(CharType p_char) {
|
||||||
tex_x = 0;
|
tex_x = 0;
|
||||||
tex_y = 0;
|
tex_y = 0;
|
||||||
|
|
||||||
int texsize = MAX(size*8,256);
|
int texsize = MAX(id.size*8,256);
|
||||||
if (mw>texsize)
|
if (mw>texsize)
|
||||||
texsize=mw; //special case, adapt to it?
|
texsize=mw; //special case, adapt to it?
|
||||||
if (mh>texsize)
|
if (mh>texsize)
|
||||||
|
@ -612,19 +624,32 @@ DynamicFontAtSize::~DynamicFontAtSize(){
|
||||||
|
|
||||||
if (valid) {
|
if (valid) {
|
||||||
FT_Done_FreeType( library );
|
FT_Done_FreeType( library );
|
||||||
font->size_cache.erase(size);
|
font->size_cache.erase(id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/////////////////////////
|
/////////////////////////
|
||||||
|
|
||||||
|
|
||||||
|
void DynamicFont::_reload_cache(){
|
||||||
|
|
||||||
|
ERR_FAIL_COND(cache_id.size<1);
|
||||||
|
if (!data.is_valid())
|
||||||
|
return;
|
||||||
|
data_at_size=data->_get_dynamic_font_at_size(cache_id);
|
||||||
|
for (int i=0;i<fallbacks.size();i++){
|
||||||
|
fallback_data_at_size[i]=fallbacks[i]->_get_dynamic_font_at_size(cache_id);
|
||||||
|
}
|
||||||
|
|
||||||
|
emit_changed();
|
||||||
|
_change_notify();
|
||||||
|
}
|
||||||
|
|
||||||
void DynamicFont::set_font_data(const Ref<DynamicFontData>& p_data) {
|
void DynamicFont::set_font_data(const Ref<DynamicFontData>& p_data) {
|
||||||
|
|
||||||
data=p_data;
|
data=p_data;
|
||||||
if (data.is_valid())
|
if (data.is_valid())
|
||||||
data_at_size=data->_get_dynamic_font_at_size(size,texture_flags);
|
data_at_size=data->_get_dynamic_font_at_size(cache_id);
|
||||||
else
|
else
|
||||||
data_at_size=Ref<DynamicFontAtSize>();
|
data_at_size=Ref<DynamicFontAtSize>();
|
||||||
|
|
||||||
|
@ -639,68 +664,41 @@ Ref<DynamicFontData> DynamicFont::get_font_data() const{
|
||||||
|
|
||||||
void DynamicFont::set_size(int p_size){
|
void DynamicFont::set_size(int p_size){
|
||||||
|
|
||||||
if (size==p_size)
|
if (cache_id.size==p_size)
|
||||||
return;
|
return;
|
||||||
size=p_size;
|
cache_id.size=p_size;
|
||||||
ERR_FAIL_COND(p_size<1);
|
_reload_cache();
|
||||||
if (!data.is_valid())
|
|
||||||
return;
|
|
||||||
data_at_size=data->_get_dynamic_font_at_size(size,texture_flags);
|
|
||||||
for(int i=0;i<fallbacks.size();i++) {
|
|
||||||
fallback_data_at_size[i]=fallbacks[i]->_get_dynamic_font_at_size(size,texture_flags);
|
|
||||||
}
|
|
||||||
|
|
||||||
emit_changed();
|
|
||||||
_change_notify();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int DynamicFont::get_size() const{
|
int DynamicFont::get_size() const{
|
||||||
|
|
||||||
return size;
|
return cache_id.size;
|
||||||
}
|
|
||||||
|
|
||||||
void DynamicFont::_update_texture_flags(){
|
|
||||||
|
|
||||||
texture_flags = 0;
|
|
||||||
if (use_mipmaps)
|
|
||||||
texture_flags|=Texture::FLAG_MIPMAPS;
|
|
||||||
if (use_filter)
|
|
||||||
texture_flags|=Texture::FLAG_FILTER;
|
|
||||||
if (!data.is_valid())
|
|
||||||
return;
|
|
||||||
data_at_size->set_texture_flags(texture_flags);
|
|
||||||
for(int i=0;i<fallbacks.size();i++) {
|
|
||||||
fallback_data_at_size[i]->set_texture_flags(texture_flags);
|
|
||||||
}
|
|
||||||
|
|
||||||
emit_changed();
|
|
||||||
_change_notify();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool DynamicFont::get_use_mipmaps() const{
|
bool DynamicFont::get_use_mipmaps() const{
|
||||||
|
|
||||||
return use_mipmaps;
|
return cache_id.mipmaps;
|
||||||
}
|
}
|
||||||
|
|
||||||
void DynamicFont::set_use_mipmaps(bool p_enable){
|
void DynamicFont::set_use_mipmaps(bool p_enable){
|
||||||
|
|
||||||
if (use_mipmaps==p_enable)
|
if (cache_id.mipmaps==p_enable)
|
||||||
return;
|
return;
|
||||||
use_mipmaps=p_enable;
|
cache_id.mipmaps=p_enable;
|
||||||
_update_texture_flags();
|
_reload_cache();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool DynamicFont::get_use_filter() const{
|
bool DynamicFont::get_use_filter() const{
|
||||||
|
|
||||||
return use_filter;
|
return cache_id.filter;
|
||||||
}
|
}
|
||||||
|
|
||||||
void DynamicFont::set_use_filter(bool p_enable){
|
void DynamicFont::set_use_filter(bool p_enable){
|
||||||
|
|
||||||
if (use_filter==p_enable)
|
if (cache_id.filter==p_enable)
|
||||||
return;
|
return;
|
||||||
use_filter=p_enable;
|
cache_id.filter=p_enable;
|
||||||
_update_texture_flags();
|
_reload_cache();
|
||||||
}
|
}
|
||||||
|
|
||||||
int DynamicFont::get_spacing(int p_type) const{
|
int DynamicFont::get_spacing(int p_type) const{
|
||||||
|
@ -792,7 +790,7 @@ void DynamicFont::set_fallback(int p_idx,const Ref<DynamicFontData>& p_data) {
|
||||||
ERR_FAIL_COND(p_data.is_null());
|
ERR_FAIL_COND(p_data.is_null());
|
||||||
ERR_FAIL_INDEX(p_idx,fallbacks.size());
|
ERR_FAIL_INDEX(p_idx,fallbacks.size());
|
||||||
fallbacks[p_idx]=p_data;
|
fallbacks[p_idx]=p_data;
|
||||||
fallback_data_at_size[p_idx]=fallbacks[p_idx]->_get_dynamic_font_at_size(size,texture_flags);
|
fallback_data_at_size[p_idx]=fallbacks[p_idx]->_get_dynamic_font_at_size(cache_id);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -800,7 +798,7 @@ void DynamicFont::add_fallback(const Ref<DynamicFontData>& p_data) {
|
||||||
|
|
||||||
ERR_FAIL_COND(p_data.is_null());
|
ERR_FAIL_COND(p_data.is_null());
|
||||||
fallbacks.push_back(p_data);
|
fallbacks.push_back(p_data);
|
||||||
fallback_data_at_size.push_back(fallbacks[fallbacks.size()-1]->_get_dynamic_font_at_size(size,texture_flags)); //const..
|
fallback_data_at_size.push_back(fallbacks[fallbacks.size()-1]->_get_dynamic_font_at_size(cache_id)); //const..
|
||||||
|
|
||||||
_change_notify();
|
_change_notify();
|
||||||
emit_changed();
|
emit_changed();
|
||||||
|
@ -918,14 +916,10 @@ void DynamicFont::_bind_methods() {
|
||||||
|
|
||||||
DynamicFont::DynamicFont() {
|
DynamicFont::DynamicFont() {
|
||||||
|
|
||||||
size=16;
|
|
||||||
spacing_top=0;
|
spacing_top=0;
|
||||||
spacing_bottom=0;
|
spacing_bottom=0;
|
||||||
spacing_char=0;
|
spacing_char=0;
|
||||||
spacing_space=0;
|
spacing_space=0;
|
||||||
use_mipmaps=false;
|
|
||||||
use_filter=false;
|
|
||||||
texture_flags=0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
DynamicFont::~DynamicFont() {
|
DynamicFont::~DynamicFont() {
|
||||||
|
|
|
@ -45,21 +45,32 @@ class DynamicFontData : public Resource {
|
||||||
|
|
||||||
OBJ_TYPE(DynamicFontData,Resource);
|
OBJ_TYPE(DynamicFontData,Resource);
|
||||||
|
|
||||||
|
public:
|
||||||
|
|
||||||
|
struct CacheID{
|
||||||
|
|
||||||
|
int size;
|
||||||
|
bool mipmaps;
|
||||||
|
bool filter;
|
||||||
|
|
||||||
|
bool operator< (CacheID right) const;
|
||||||
|
CacheID() { size=16; mipmaps=false; filter=false; }
|
||||||
|
};
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
const uint8_t *font_mem;
|
const uint8_t *font_mem;
|
||||||
int font_mem_size;
|
int font_mem_size;
|
||||||
bool force_autohinter;
|
bool force_autohinter;
|
||||||
|
|
||||||
String font_path;
|
String font_path;
|
||||||
Map<int,DynamicFontAtSize*> size_cache;
|
Map<CacheID,DynamicFontAtSize*> size_cache;
|
||||||
|
|
||||||
friend class DynamicFontAtSize;
|
friend class DynamicFontAtSize;
|
||||||
|
|
||||||
friend class DynamicFont;
|
friend class DynamicFont;
|
||||||
|
|
||||||
|
Ref<DynamicFontAtSize> _get_dynamic_font_at_size(CacheID p_cache);
|
||||||
Ref<DynamicFontAtSize> _get_dynamic_font_at_size(int p_size, uint32_t p_texture_flags=0);
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
static void _bind_methods();
|
static void _bind_methods();
|
||||||
|
@ -126,7 +137,7 @@ class DynamicFontAtSize : public Reference {
|
||||||
|
|
||||||
friend class DynamicFontData;
|
friend class DynamicFontData;
|
||||||
Ref<DynamicFontData> font;
|
Ref<DynamicFontData> font;
|
||||||
int size;
|
DynamicFontData::CacheID id;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -177,19 +188,16 @@ private:
|
||||||
Vector< Ref<DynamicFontAtSize> > fallback_data_at_size;
|
Vector< Ref<DynamicFontAtSize> > fallback_data_at_size;
|
||||||
|
|
||||||
|
|
||||||
int size;
|
DynamicFontData::CacheID cache_id;
|
||||||
bool valid;
|
bool valid;
|
||||||
int spacing_top;
|
int spacing_top;
|
||||||
int spacing_bottom;
|
int spacing_bottom;
|
||||||
int spacing_char;
|
int spacing_char;
|
||||||
int spacing_space;
|
int spacing_space;
|
||||||
bool use_mipmaps;
|
|
||||||
bool use_filter;
|
|
||||||
uint32_t texture_flags;
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
void _update_texture_flags();
|
void _reload_cache();
|
||||||
|
|
||||||
bool _set(const StringName& p_name, const Variant& p_value);
|
bool _set(const StringName& p_name, const Variant& p_value);
|
||||||
bool _get(const StringName& p_name,Variant &r_ret) const;
|
bool _get(const StringName& p_name,Variant &r_ret) const;
|
||||||
|
|
Loading…
Reference in a new issue