1 #include <lib/gdi/font.h>
10 // use this for init Freetype...
12 #include FT_FREETYPE_H
14 #define FTC_Image_Cache_New(a,b) FTC_ImageCache_New(a,b)
15 #define FTC_Image_Cache_Lookup(a,b,c,d) FTC_ImageCache_Lookup(a,b,c,d,NULL)
16 #define FTC_SBit_Cache_New(a,b) FTC_SBitCache_New(a,b)
17 #define FTC_SBit_Cache_Lookup(a,b,c,d) FTC_SBitCache_Lookup(a,b,c,d,NULL)
20 #include <lib/base/eerror.h>
21 #include <lib/gdi/lcd.h>
22 #include <lib/gdi/grc.h>
23 #include <lib/base/elock.h>
24 #include <lib/base/init.h>
25 #include <lib/base/init_num.h>
28 // until we have it in the cdk
31 #include <fribidi/fribidi.h>
36 fontRenderClass *fontRenderClass::instance;
38 static pthread_mutex_t ftlock=PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP;
40 #ifndef HAVE_FREETYPE2
41 static FTC_Font cache_current_font=0;
44 struct fntColorCacheKey
47 fntColorCacheKey(const gRGB &start, const gRGB &end)
48 : start(start), end(end)
51 bool operator <(const fntColorCacheKey &c) const
55 else if (start == c.start)
61 std::map<fntColorCacheKey,gLookup> colorcache;
63 static gLookup &getColor(const gPalette &pal, const gRGB &start, const gRGB &end)
65 fntColorCacheKey key(start, end);
66 std::map<fntColorCacheKey,gLookup>::iterator i=colorcache.find(key);
67 if (i != colorcache.end())
69 gLookup &n=colorcache.insert(std::pair<fntColorCacheKey,gLookup>(key,gLookup())).first->second;
70 // eDebug("[FONT] creating new font color cache entry %02x%02x%02x%02x .. %02x%02x%02x%02x", start.a, start.r, start.g, start.b,
71 // end.a, end.r, end.g, end.b);
72 n.build(16, pal, start, end);
73 // for (int i=0; i<16; i++)
74 // eDebugNoNewLine("%02x|%02x%02x%02x%02x ", (int)n.lookup[i], pal.data[n.lookup[i]].a, pal.data[n.lookup[i]].r, pal.data[n.lookup[i]].g, pal.data[n.lookup[i]].b);
79 fontRenderClass *fontRenderClass::getInstance()
84 FT_Error myFTC_Face_Requester(FTC_FaceID face_id,
86 FT_Pointer request_data,
89 return ((fontRenderClass*)request_data)->FTC_Face_Requester(face_id, aface);
93 FT_Error fontRenderClass::FTC_Face_Requester(FTC_FaceID face_id, FT_Face* aface)
95 fontListEntry *font=(fontListEntry *)face_id;
99 // eDebug("[FONT] FTC_Face_Requester (%s)", font->face.c_str());
102 if ((error=FT_New_Face(library, font->filename.c_str(), 0, aface)))
104 eDebug(" failed: %s", strerror(error));
107 FT_Select_Charmap(*aface, ft_encoding_unicode);
111 FTC_FaceID fontRenderClass::getFaceID(const std::string &face)
113 for (fontListEntry *f=font; f; f=f->next)
116 return (FTC_FaceID)f;
121 FT_Error fontRenderClass::getGlyphBitmap(FTC_Image_Desc *font, FT_ULong glyph_index, FTC_SBit *sbit)
123 FT_Error res=FTC_SBit_Cache_Lookup(sbitsCache, font, glyph_index, sbit);
127 std::string fontRenderClass::AddFont(const std::string &filename, const std::string &name, int scale)
129 eDebugNoNewLine("[FONT] adding font %s...", filename.c_str());
132 fontListEntry *n=new fontListEntry;
136 singleLock s(ftlock);
138 if ((error=FT_New_Face(library, filename.c_str(), 0, &face)))
139 eFatal(" failed: %s", strerror(error));
141 n->filename=filename;
146 eDebug("OK (%s)", n->face.c_str());
152 fontRenderClass::fontListEntry::~fontListEntry()
156 fontRenderClass::fontRenderClass(): fb(fbClass::getInstance())
159 eDebug("[FONT] initializing lib...");
161 if (FT_Init_FreeType(&library))
163 eDebug("[FONT] initializing failed.");
167 eDebug("[FONT] loading fonts...");
171 int maxbytes=4*1024*1024;
172 eDebug("[FONT] Intializing font cache, using max. %dMB...", maxbytes/1024/1024);
175 if (FTC_Manager_New(library, 8, 8, maxbytes, myFTC_Face_Requester, this, &cacheManager))
177 eDebug("[FONT] initializing font cache failed!");
182 eDebug("[FONT] initializing font cache manager error.");
185 if (FTC_SBit_Cache_New(cacheManager, &sbitsCache))
187 eDebug("[FONT] initializing font cache sbit failed!");
190 if (FTC_Image_Cache_New(cacheManager, &imageCache))
192 eDebug("[FONT] initializing font cache imagecache failed!");
198 float fontRenderClass::getLineHeight(const gFont& font)
203 getFont(fnt, font.family.c_str(), font.pointSize);
206 singleLock s(ftlock);
207 FT_Face current_face;
208 #ifdef HAVE_FREETYPE2
209 if ((FTC_Manager_LookupFace(cacheManager, fnt->scaler.face_id, ¤t_face) < 0) ||
210 (FTC_Manager_LookupSize(cacheManager, &fnt->scaler, &fnt->size) < 0))
212 if (FTC_Manager_Lookup_Size(cacheManager, &fnt->font.font, ¤t_face, &fnt->size)<0)
216 eDebug("FTC_Manager_Lookup_Size failed!");
219 int linegap=current_face->size->metrics.height-(current_face->size->metrics.ascender+current_face->size->metrics.descender);
220 float height=(current_face->size->metrics.ascender+current_face->size->metrics.descender+linegap)/64.0;
224 fontRenderClass::~fontRenderClass()
226 singleLock s(ftlock);
229 fontListEntry *f=font;
233 // auskommentiert weil freetype und enigma die kritische masse des suckens ueberschreiten.
234 // FTC_Manager_Done(cacheManager);
235 // FT_Done_FreeType(library);
238 int fontRenderClass::getFont(ePtr<Font> &font, const std::string &face, int size, int tabwidth)
240 FTC_FaceID id=getFaceID(face);
246 font = new Font(this, id, size * ((fontListEntry*)id)->scale / 100, tabwidth);
250 void addFont(const char *filename, const char *alias, int scale_factor, int is_replacement)
252 fontRenderClass::getInstance()->AddFont(filename, alias, scale_factor);
254 eTextPara::setReplacementFont(alias);
259 Font::Font(fontRenderClass *render, FTC_FaceID faceid, int isize, int tw): tabwidth(tw)
262 #ifdef HAVE_FREETYPE2
263 font.face_id = faceid;
266 font.flags = FT_LOAD_DEFAULT;
267 scaler.face_id = faceid;
268 scaler.width = isize;
269 scaler.height = isize;
272 font.font.face_id=faceid;
273 font.font.pix_width = isize;
274 font.font.pix_height = isize;
275 font.image_type = ftc_image_grays;
280 // font.image_type |= ftc_image_flag_autohinted;
283 FT_Error Font::getGlyphBitmap(FT_ULong glyph_index, FTC_SBit *sbit)
285 return renderer->getGlyphBitmap(&font, glyph_index, sbit);
292 DEFINE_REF(eTextPara);
294 int eTextPara::appendGlyph(Font *current_font, FT_Face current_face, FT_UInt glyphIndex, int flags, int rflags)
297 if (current_font->getGlyphBitmap(glyphIndex, &glyph))
310 glyphString::reverse_iterator i(glyphs.rbegin());
311 /* find first possibility (from end to begin) to break */
312 while (i != glyphs.rend())
314 if (i->flags&(GS_CANBREAK|GS_ISFIRST)) /* stop on either space/hyphen/shy or start of line (giving up) */
321 if (i != glyphs.rend() /* ... we found anything */
322 && (i->flags&GS_CANBREAK) /* ...and this is a space/hyphen/soft-hyphen */
323 && (!(i->flags & GS_ISFIRST)) /* ...and this is not an start of line (line with just a single space/hyphen) */
324 && cnt ) /* ... and there are actual non-space characters after this */
326 /* if we have a soft-hyphen, and used that for breaking, turn it into a real hyphen */
327 if (i->flags & GS_SOFTHYPHEN)
329 i->flags &= ~GS_SOFTHYPHEN;
330 i->flags |= GS_HYPHEN;
332 --i; /* skip the space/hypen/softhyphen */
333 int linelength=cursor.x()-i->x;
334 i->flags|=GS_ISFIRST; /* make this a line start */
335 ePoint offset=ePoint(i->x, i->y);
339 /* and move everything to the end into the next line. */
344 i->bbox.moveBy(-offset.x(), -offset.y());
345 } while (i-- != glyphs.rbegin()); // rearrange them into the next line
346 cursor+=ePoint(linelength, 0); // put the cursor after that line
357 int xadvance=glyph->xadvance, kern=0;
359 if (previous && use_kerning)
362 FT_Get_Kerning(current_face, previous, glyphIndex, ft_kerning_default, &delta);
367 ng.bbox.setLeft( (flags&GS_ISFIRST|cursor.x()-1)+glyph->left );
368 ng.bbox.setTop( cursor.y() - glyph->top );
369 ng.bbox.setWidth( glyph->width );
370 ng.bbox.setHeight( glyph->height );
373 ng.bbox.setWidth(xadvance);
375 ng.x = cursor.x()+kern;
378 ng.font = current_font;
379 ng.glyph_index = glyphIndex;
381 glyphs.push_back(ng);
383 /* when we have a SHY, don't xadvance. It will either be the last in the line (when used for breaking), or not displayed. */
384 if (!(flags & GS_SOFTHYPHEN))
385 cursor += ePoint(xadvance, 0);
386 previous = glyphIndex;
390 void eTextPara::calc_bbox()
401 glyphString::iterator i(glyphs.begin());
406 for (; i != glyphs.end(); ++i)
408 if (i->flags & (GS_ISSPACE|GS_SOFTHYPHEN))
410 if ( i->bbox.left() < boundBox.left() )
411 boundBox.setLeft( i->bbox.left() );
412 if ( i->bbox.top() < boundBox.top() )
413 boundBox.setTop( i->bbox.top() );
414 if ( i->bbox.right() > boundBox.right() )
415 boundBox.setRight( i->bbox.right() );
416 if ( i->bbox.bottom() > boundBox.bottom() )
417 boundBox.setBottom( i->bbox.bottom() );
419 // eDebug("boundBox left = %i, top = %i, right = %i, bottom = %i", boundBox.left(), boundBox.top(), boundBox.right(), boundBox.bottom() );
422 void eTextPara::newLine(int flags)
424 if (maximum.width()<cursor.x())
425 maximum.setWidth(cursor.x());
428 int linegap=current_face->size->metrics.height-(current_face->size->metrics.ascender+current_face->size->metrics.descender);
429 cursor+=ePoint(0, (current_face->size->metrics.ascender+current_face->size->metrics.descender+linegap)>>6);
430 if (maximum.height()<cursor.y())
431 maximum.setHeight(cursor.y());
435 eTextPara::~eTextPara()
440 void eTextPara::setFont(const gFont *font)
442 ePtr<Font> fnt, replacement;
443 fontRenderClass::getInstance()->getFont(fnt, font->family.c_str(), font->pointSize);
445 eWarning("FONT '%s' MISSING!", font->family.c_str());
446 fontRenderClass::getInstance()->getFont(replacement, replacement_facename.c_str(), font->pointSize);
447 setFont(fnt, replacement);
450 std::string eTextPara::replacement_facename;
451 std::set<int> eTextPara::forced_replaces;
453 void eTextPara::setFont(Font *fnt, Font *replacement)
458 replacement_font=replacement;
459 singleLock s(ftlock);
461 // we ask for replacment_font first becauseof the cache
462 if (replacement_font)
464 #ifdef HAVE_FREETYPE2
465 if ((FTC_Manager_LookupFace(fontRenderClass::instance->cacheManager,
466 replacement_font->scaler.face_id,
467 &replacement_face) < 0) ||
468 (FTC_Manager_LookupSize(fontRenderClass::instance->cacheManager,
469 &replacement_font->scaler,
470 &replacement_font->size) < 0))
472 if (FTC_Manager_Lookup_Size(fontRenderClass::instance->cacheManager,
473 &replacement_font->font.font, &replacement_face,
474 &replacement_font->size)<0)
477 eDebug("FTC_Manager_Lookup_Size failed!");
483 #ifdef HAVE_FREETYPE2
484 if ((FTC_Manager_LookupFace(fontRenderClass::instance->cacheManager,
485 current_font->scaler.face_id,
486 ¤t_face) < 0) ||
487 (FTC_Manager_LookupSize(fontRenderClass::instance->cacheManager,
488 ¤t_font->scaler,
489 ¤t_font->size) < 0))
491 if (FTC_Manager_Lookup_Size(fontRenderClass::instance->cacheManager, ¤t_font->font.font, ¤t_face, ¤t_font->size)<0)
494 eDebug("FTC_Manager_Lookup_Size failed!");
498 #ifndef HAVE_FREETYPE2
499 cache_current_font=¤t_font->font.font;
502 use_kerning=FT_HAS_KERNING(current_face);
506 shape (std::vector<unsigned long> &string, const std::vector<unsigned long> &text);
508 int eTextPara::renderString(const char *string, int rflags)
510 singleLock s(ftlock);
517 cursor=ePoint(area.x(), area.y()+(current_face->size->metrics.ascender>>6));
521 #ifdef HAVE_FREETYPE2
522 if ((FTC_Manager_LookupFace(fontRenderClass::instance->cacheManager,
523 current_font->scaler.face_id,
524 ¤t_face) < 0) ||
525 (FTC_Manager_LookupSize(fontRenderClass::instance->cacheManager,
526 ¤t_font->scaler,
527 ¤t_font->size) < 0))
529 eDebug("FTC_Manager_Lookup_Size failed!");
533 if (¤t_font->font.font != cache_current_font)
535 if (FTC_Manager_Lookup_Size(fontRenderClass::instance->cacheManager, ¤t_font->font.font, ¤t_face, ¤t_font->size)<0)
537 eDebug("FTC_Manager_Lookup_Size failed!");
540 cache_current_font=¤t_font->font.font;
544 std::vector<unsigned long> uc_string, uc_visual;
546 uc_string.reserve(strlen(string));
548 const char *p = string ? string : "";
552 unsigned int unicode=(unsigned char)*p++;
554 if (unicode & 0x80) // we have (hopefully) UTF8 here, and we assume that the encoding is VALID
556 if ((unicode & 0xE0)==0xC0) // two bytes
561 unicode|=(*p++)&0x3F;
562 } else if ((unicode & 0xF0)==0xE0) // three bytes
567 unicode|=(*p++)&0x3F;
570 unicode|=(*p++)&0x3F;
571 } else if ((unicode & 0xF8)==0xF0) // four bytes
576 unicode|=(*p++)&0x3F;
579 unicode|=(*p++)&0x3F;
582 unicode|=(*p++)&0x3F;
585 uc_string.push_back(unicode);
588 std::vector<unsigned long> uc_shape;
590 // character -> glyph conversion
591 shape(uc_shape, uc_string);
593 // now do the usual logical->visual reordering
595 FriBidiCharType dir=FRIBIDI_TYPE_ON;
597 int size=uc_shape.size();
598 uc_visual.resize(size);
599 // gaaanz lahm, aber anders geht das leider nicht, sorry.
600 FriBidiChar array[size], target[size];
601 std::copy(uc_shape.begin(), uc_shape.end(), array);
602 fribidi_log2vis(array, size, &dir, target, 0, 0, 0);
603 uc_visual.assign(target, target+size);
609 glyphs.reserve(uc_visual.size());
613 for (std::vector<unsigned long>::const_iterator i(uc_visual.begin());
614 i != uc_visual.end(); ++i)
617 int flags = nextflags;
619 unsigned long chr = *i;
621 if (!(rflags&RS_DIRECT))
627 unsigned long c = *(i+1);
646 cursor+=ePoint(current_font->tabwidth, 0);
647 cursor-=ePoint(cursor.x()%current_font->tabwidth, 0);
652 newline:isprintable=0;
654 nextflags|=GS_ISFIRST;
657 case 0x86: case 0xE086:
658 case 0x87: case 0xE087:
659 nprint: isprintable=0;
661 case 0xAD: // soft-hyphen
662 flags |= GS_SOFTHYPHEN;
663 chr = 0x2010; /* hyphen */
679 /* FIXME: our font doesn't seem to have a hyphen, so use hyphen-minus for it. */
683 if (forced_replaces.find(chr) == forced_replaces.end())
684 index=(rflags&RS_DIRECT)? chr : FT_Get_Char_Index(current_face, chr);
688 if (replacement_face)
689 index=(rflags&RS_DIRECT)? chr : FT_Get_Char_Index(replacement_face, chr);
692 eDebug("unicode U+%4lx not present", chr);
694 appendGlyph(replacement_font, replacement_face, index, flags, rflags);
696 appendGlyph(current_font, current_face, index, flags, rflags);
702 if (dir & FRIBIDI_MASK_RTL)
708 void eTextPara::blit(gDC &dc, const ePoint &offset, const gRGB &background, const gRGB &foreground)
710 singleLock s(ftlock);
715 #ifdef HAVE_FREETYPE2
716 if ((FTC_Manager_LookupFace(fontRenderClass::instance->cacheManager,
717 current_font->scaler.face_id,
718 ¤t_face) < 0) ||
719 (FTC_Manager_LookupSize(fontRenderClass::instance->cacheManager,
720 ¤t_font->scaler,
721 ¤t_font->size) < 0))
723 eDebug("FTC_Manager_Lookup_Size failed!");
727 if (¤t_font->font.font != cache_current_font)
729 if (FTC_Manager_Lookup_Size(fontRenderClass::instance->cacheManager, ¤t_font->font.font, ¤t_face, ¤t_font->size)<0)
731 eDebug("FTC_Manager_Lookup_Size failed!");
734 cache_current_font=¤t_font->font.font;
738 ePtr<gPixmap> target;
739 dc.getPixmap(target);
740 gSurface *surface = target->surface;
744 gColor *lookup8, lookup8_invert[16];
745 gColor *lookup8_normal=0;
747 __u32 lookup32_normal[16], lookup32_invert[16], *lookup32;
749 if (surface->bpp == 8)
751 if (surface->clut.data)
753 lookup8_normal=getColor(surface->clut, background, foreground).lookup;
757 lookup8_invert[i] = lookup8_normal[i^0xF];
762 } else if (surface->bpp == 32)
766 for (int i=0; i<16; ++i)
768 #define BLEND(y, x, a) (y + (((x-y) * a)>>8))
770 unsigned char da = background.a, dr = background.r, dg = background.g, db = background.b;
774 da = BLEND(background.a, foreground.a, sa) & 0xFF;
775 dr = BLEND(background.r, foreground.r, sa) & 0xFF;
776 dg = BLEND(background.g, foreground.g, sa) & 0xFF;
777 db = BLEND(background.b, foreground.b, sa) & 0xFF;
781 lookup32_normal[i]=db | (dg << 8) | (dr << 16) | (da << 24);;
783 for (int i=0; i<16; ++i)
784 lookup32_invert[i]=lookup32_normal[i^0xF];
787 eWarning("can't render to %dbpp", surface->bpp);
791 gRegion area(eRect(0, 0, surface->x, surface->y));
792 gRegion clip = dc.getClip() & area;
794 int buffer_stride=surface->stride;
796 for (unsigned int c = 0; c < clip.rects.size(); ++c)
798 for (glyphString::iterator i(glyphs.begin()); i != glyphs.end(); ++i)
800 if (i->flags & GS_SOFTHYPHEN)
803 if (!(i->flags & GS_INVERT))
805 lookup8 = lookup8_normal;
806 lookup32 = lookup32_normal;
809 lookup8 = lookup8_invert;
810 lookup32 = lookup32_invert;
813 static FTC_SBit glyph_bitmap;
814 if (fontRenderClass::instance->getGlyphBitmap(&i->font->font, i->glyph_index, &glyph_bitmap))
816 int rx=i->x+glyph_bitmap->left + offset.x();
817 int ry=i->y-glyph_bitmap->top + offset.y();
819 __u8 *d=(__u8*)(surface->data)+buffer_stride*ry+rx*surface->bypp;
820 __u8 *s=glyph_bitmap->buffer;
821 register int sx=glyph_bitmap->width;
822 int sy=glyph_bitmap->height;
823 if ((sy+ry) >= clip.rects[c].bottom())
824 sy=clip.rects[c].bottom()-ry;
825 if ((sx+rx) >= clip.rects[c].right())
826 sx=clip.rects[c].right()-rx;
827 if (rx < clip.rects[c].left())
829 int diff=clip.rects[c].left()-rx;
833 d+=diff*surface->bypp;
835 if (ry < clip.rects[c].top())
837 int diff=clip.rects[c].top()-ry;
838 s+=diff*glyph_bitmap->pitch;
841 d+=diff*buffer_stride;
844 for (int ay=0; ay<sy; ay++)
846 if (!opcode) // 4bit lookup to 8bit
851 for (ax=0; ax<sx; ax++)
853 register int b=(*s++)>>4;
859 } else if (opcode == 1) // 8bit direct
863 for (ax=0; ax<sx; ax++)
870 register __u32 *td=(__u32*)d;
872 for (ax=0; ax<sx; ax++)
874 register int b=(*s++)>>4;
881 s+=glyph_bitmap->pitch-sx;
888 void eTextPara::realign(int dir) // der code hier ist ein wenig merkwuerdig.
890 glyphString::iterator begin(glyphs.begin()), c(glyphs.begin()), end(glyphs.begin()), last;
893 while (c != glyphs.end())
896 int numspaces=0, num=0;
899 ASSERT( end != glyphs.end());
905 } while ((end != glyphs.end()) && (!(end->flags&GS_ISFIRST)));
906 // end zeigt jetzt auf begin der naechsten zeile
908 for (c=begin; c!=end; ++c)
910 // space am zeilenende skippen
911 if ((c==last) && (c->flags&GS_ISSPACE))
914 if (c->flags&GS_ISSPACE)
925 int offset=area.width()-linelength;
931 begin->bbox.moveBy(offset-begin->x,0);
940 if (end == glyphs.end()) // letzte zeile linksbuendig lassen
947 if ((!spacemode) && (num<2))
949 int off=(area.width()-linelength)*256/(spacemode?numspaces:(num-1));
954 if ((!spacemode) || (begin->flags&GS_ISSPACE))
957 begin->bbox.moveBy(curoff>>8,0);
970 void eTextPara::clear()
972 singleLock s(ftlock);
975 replacement_font = 0;
980 eAutoInitP0<fontRenderClass> init_fontRenderClass(eAutoInitNumbers::graphic-1, "Font Render Class");