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)
215 eDebug("FTC_Manager_Lookup_Size failed!");
218 int linegap=current_face->size->metrics.height-(current_face->size->metrics.ascender+current_face->size->metrics.descender);
219 float height=(current_face->size->metrics.ascender+current_face->size->metrics.descender+linegap)/64.0;
223 fontRenderClass::~fontRenderClass()
225 singleLock s(ftlock);
228 fontListEntry *f=font;
232 // auskommentiert weil freetype und enigma die kritische masse des suckens ueberschreiten.
233 // FTC_Manager_Done(cacheManager);
234 // FT_Done_FreeType(library);
237 int fontRenderClass::getFont(ePtr<Font> &font, const std::string &face, int size, int tabwidth)
239 FTC_FaceID id=getFaceID(face);
245 font = new Font(this, id, size * ((fontListEntry*)id)->scale / 100, tabwidth);
249 void addFont(const char *filename, const char *alias, int scale_factor, int is_replacement)
251 fontRenderClass::getInstance()->AddFont(filename, alias, scale_factor);
253 eTextPara::setReplacementFont(alias);
258 Font::Font(fontRenderClass *render, FTC_FaceID faceid, int isize, int tw): tabwidth(tw)
261 #ifdef HAVE_FREETYPE2
262 font.face_id = faceid;
265 font.flags = FT_LOAD_DEFAULT;
266 scaler.face_id = faceid;
267 scaler.width = isize;
268 scaler.height = isize;
271 font.font.face_id=faceid;
272 font.font.pix_width = isize;
273 font.font.pix_height = isize;
274 font.image_type = ftc_image_grays;
279 // font.image_type |= ftc_image_flag_autohinted;
282 FT_Error Font::getGlyphBitmap(FT_ULong glyph_index, FTC_SBit *sbit)
284 return renderer->getGlyphBitmap(&font, glyph_index, sbit);
291 DEFINE_REF(eTextPara);
293 int eTextPara::appendGlyph(Font *current_font, FT_Face current_face, FT_UInt glyphIndex, int flags, int rflags)
296 if (current_font->getGlyphBitmap(glyphIndex, &glyph))
309 glyphString::reverse_iterator i(glyphs.rbegin());
310 /* find first possibility (from end to begin) to break */
311 while (i != glyphs.rend())
313 if (i->flags&(GS_CANBREAK|GS_ISFIRST)) /* stop on either space/hyphen/shy or start of line (giving up) */
320 if (i != glyphs.rend() /* ... we found anything */
321 && (i->flags&GS_CANBREAK) /* ...and this is a space/hyphen/soft-hyphen */
322 && (!(i->flags & GS_ISFIRST)) /* ...and this is not an start of line (line with just a single space/hyphen) */
323 && cnt ) /* ... and there are actual non-space characters after this */
325 /* if we have a soft-hyphen, and used that for breaking, turn it into a real hyphen */
326 if (i->flags & GS_SOFTHYPHEN)
328 i->flags &= ~GS_SOFTHYPHEN;
329 i->flags |= GS_HYPHEN;
331 --i; /* skip the space/hypen/softhyphen */
332 int linelength=cursor.x()-i->x;
333 i->flags|=GS_ISFIRST; /* make this a line start */
334 ePoint offset=ePoint(i->x, i->y);
338 /* and move everything to the end into the next line. */
343 i->bbox.moveBy(-offset.x(), -offset.y());
344 } while (i-- != glyphs.rbegin()); // rearrange them into the next line
345 cursor+=ePoint(linelength, 0); // put the cursor after that line
356 int xadvance=glyph->xadvance, kern=0;
358 if (previous && use_kerning)
361 FT_Get_Kerning(current_face, previous, glyphIndex, ft_kerning_default, &delta);
366 ng.bbox.setLeft( (flags&GS_ISFIRST|cursor.x()-1)+glyph->left );
367 ng.bbox.setTop( cursor.y() - glyph->top );
368 ng.bbox.setWidth( glyph->width );
369 ng.bbox.setHeight( glyph->height );
372 ng.bbox.setWidth(xadvance);
374 ng.x = cursor.x()+kern;
377 ng.font = current_font;
378 ng.glyph_index = glyphIndex;
380 glyphs.push_back(ng);
382 /* when we have a SHY, don't xadvance. It will either be the last in the line (when used for breaking), or not displayed. */
383 if (!(flags & GS_SOFTHYPHEN))
384 cursor += ePoint(xadvance, 0);
385 previous = glyphIndex;
389 void eTextPara::calc_bbox()
400 glyphString::iterator i(glyphs.begin());
405 for (; i != glyphs.end(); ++i)
407 if (i->flags & (GS_ISSPACE|GS_SOFTHYPHEN))
409 if ( i->bbox.left() < boundBox.left() )
410 boundBox.setLeft( i->bbox.left() );
411 if ( i->bbox.top() < boundBox.top() )
412 boundBox.setTop( i->bbox.top() );
413 if ( i->bbox.right() > boundBox.right() )
414 boundBox.setRight( i->bbox.right() );
415 if ( i->bbox.bottom() > boundBox.bottom() )
416 boundBox.setBottom( i->bbox.bottom() );
418 // eDebug("boundBox left = %i, top = %i, right = %i, bottom = %i", boundBox.left(), boundBox.top(), boundBox.right(), boundBox.bottom() );
421 void eTextPara::newLine(int flags)
423 if (maximum.width()<cursor.x())
424 maximum.setWidth(cursor.x());
427 int linegap=current_face->size->metrics.height-(current_face->size->metrics.ascender+current_face->size->metrics.descender);
428 cursor+=ePoint(0, (current_face->size->metrics.ascender+current_face->size->metrics.descender+linegap)>>6);
429 if (maximum.height()<cursor.y())
430 maximum.setHeight(cursor.y());
434 eTextPara::~eTextPara()
439 void eTextPara::setFont(const gFont *font)
441 ePtr<Font> fnt, replacement;
442 fontRenderClass::getInstance()->getFont(fnt, font->family.c_str(), font->pointSize);
444 eWarning("FONT '%s' MISSING!", font->family.c_str());
445 fontRenderClass::getInstance()->getFont(replacement, replacement_facename.c_str(), font->pointSize);
446 setFont(fnt, replacement);
449 std::string eTextPara::replacement_facename;
450 std::set<int> eTextPara::forced_replaces;
452 void eTextPara::setFont(Font *fnt, Font *replacement)
457 replacement_font=replacement;
458 singleLock s(ftlock);
460 // we ask for replacment_font first becauseof the cache
461 if (replacement_font)
463 #ifdef HAVE_FREETYPE2
464 if ((FTC_Manager_LookupFace(fontRenderClass::instance->cacheManager,
465 replacement_font->scaler.face_id,
466 &replacement_face) < 0) ||
467 (FTC_Manager_LookupSize(fontRenderClass::instance->cacheManager,
468 &replacement_font->scaler,
469 &replacement_font->size) < 0))
471 if (FTC_Manager_Lookup_Size(fontRenderClass::instance->cacheManager,
472 &replacement_font->font.font, &replacement_face,
473 &replacement_font->size)<0)
476 eDebug("FTC_Manager_Lookup_Size failed!");
482 #ifdef HAVE_FREETYPE2
483 if ((FTC_Manager_LookupFace(fontRenderClass::instance->cacheManager,
484 current_font->scaler.face_id,
485 ¤t_face) < 0) ||
486 (FTC_Manager_LookupSize(fontRenderClass::instance->cacheManager,
487 ¤t_font->scaler,
488 ¤t_font->size) < 0))
490 if (FTC_Manager_Lookup_Size(fontRenderClass::instance->cacheManager, ¤t_font->font.font, ¤t_face, ¤t_font->size)<0)
493 eDebug("FTC_Manager_Lookup_Size failed!");
497 #ifndef HAVE_FREETYPE2
498 cache_current_font=¤t_font->font.font;
501 use_kerning=FT_HAS_KERNING(current_face);
505 shape (std::vector<unsigned long> &string, const std::vector<unsigned long> &text);
507 int eTextPara::renderString(const char *string, int rflags)
509 singleLock s(ftlock);
516 cursor=ePoint(area.x(), area.y()+(current_face->size->metrics.ascender>>6));
520 #ifdef HAVE_FREETYPE2
521 if ((FTC_Manager_LookupFace(fontRenderClass::instance->cacheManager,
522 current_font->scaler.face_id,
523 ¤t_face) < 0) ||
524 (FTC_Manager_LookupSize(fontRenderClass::instance->cacheManager,
525 ¤t_font->scaler,
526 ¤t_font->size) < 0))
528 eDebug("FTC_Manager_Lookup_Size failed!");
532 if (¤t_font->font.font != cache_current_font)
534 if (FTC_Manager_Lookup_Size(fontRenderClass::instance->cacheManager, ¤t_font->font.font, ¤t_face, ¤t_font->size)<0)
536 eDebug("FTC_Manager_Lookup_Size failed!");
539 cache_current_font=¤t_font->font.font;
543 std::vector<unsigned long> uc_string, uc_visual;
545 uc_string.reserve(strlen(string));
547 const char *p = string ? string : "";
551 unsigned int unicode=(unsigned char)*p++;
553 if (unicode & 0x80) // we have (hopefully) UTF8 here, and we assume that the encoding is VALID
555 if ((unicode & 0xE0)==0xC0) // two bytes
560 unicode|=(*p++)&0x3F;
561 } else if ((unicode & 0xF0)==0xE0) // three bytes
566 unicode|=(*p++)&0x3F;
569 unicode|=(*p++)&0x3F;
570 } else if ((unicode & 0xF8)==0xF0) // four bytes
575 unicode|=(*p++)&0x3F;
578 unicode|=(*p++)&0x3F;
581 unicode|=(*p++)&0x3F;
584 uc_string.push_back(unicode);
587 std::vector<unsigned long> uc_shape;
589 // character -> glyph conversion
590 shape(uc_shape, uc_string);
592 // now do the usual logical->visual reordering
594 FriBidiCharType dir=FRIBIDI_TYPE_ON;
596 int size=uc_shape.size();
597 uc_visual.resize(size);
598 // gaaanz lahm, aber anders geht das leider nicht, sorry.
599 FriBidiChar array[size], target[size];
600 std::copy(uc_shape.begin(), uc_shape.end(), array);
601 fribidi_log2vis(array, size, &dir, target, 0, 0, 0);
602 uc_visual.assign(target, target+size);
608 glyphs.reserve(uc_visual.size());
612 for (std::vector<unsigned long>::const_iterator i(uc_visual.begin());
613 i != uc_visual.end(); ++i)
616 int flags = nextflags;
618 unsigned long chr = *i;
620 if (!(rflags&RS_DIRECT))
626 unsigned long c = *(i+1);
645 cursor+=ePoint(current_font->tabwidth, 0);
646 cursor-=ePoint(cursor.x()%current_font->tabwidth, 0);
651 newline:isprintable=0;
653 nextflags|=GS_ISFIRST;
656 case 0x86: case 0xE086:
657 case 0x87: case 0xE087:
658 nprint: isprintable=0;
660 case 0xAD: // soft-hyphen
661 flags |= GS_SOFTHYPHEN;
662 chr = 0x2010; /* hyphen */
678 /* FIXME: our font doesn't seem to have a hyphen, so use hyphen-minus for it. */
682 if (forced_replaces.find(chr) == forced_replaces.end())
683 index=(rflags&RS_DIRECT)? chr : FT_Get_Char_Index(current_face, chr);
687 if (replacement_face)
688 index=(rflags&RS_DIRECT)? chr : FT_Get_Char_Index(replacement_face, chr);
691 eDebug("unicode U+%4lx not present", chr);
693 appendGlyph(replacement_font, replacement_face, index, flags, rflags);
695 appendGlyph(current_font, current_face, index, flags, rflags);
701 if (dir & FRIBIDI_MASK_RTL)
707 void eTextPara::blit(gDC &dc, const ePoint &offset, const gRGB &background, const gRGB &foreground)
709 singleLock s(ftlock);
714 #ifdef HAVE_FREETYPE2
715 if ((FTC_Manager_LookupFace(fontRenderClass::instance->cacheManager,
716 current_font->scaler.face_id,
717 ¤t_face) < 0) ||
718 (FTC_Manager_LookupSize(fontRenderClass::instance->cacheManager,
719 ¤t_font->scaler,
720 ¤t_font->size) < 0))
722 eDebug("FTC_Manager_Lookup_Size failed!");
726 if (¤t_font->font.font != cache_current_font)
728 if (FTC_Manager_Lookup_Size(fontRenderClass::instance->cacheManager, ¤t_font->font.font, ¤t_face, ¤t_font->size)<0)
730 eDebug("FTC_Manager_Lookup_Size failed!");
733 cache_current_font=¤t_font->font.font;
737 ePtr<gPixmap> target;
738 dc.getPixmap(target);
739 gSurface *surface = target->surface;
743 gColor *lookup8, lookup8_invert[16];
744 gColor *lookup8_normal=0;
746 __u32 lookup32_normal[16], lookup32_invert[16], *lookup32;
748 if (surface->bpp == 8)
750 if (surface->clut.data)
752 lookup8_normal=getColor(surface->clut, background, foreground).lookup;
756 lookup8_invert[i] = lookup8_normal[i^0xF];
761 } else if (surface->bpp == 32)
765 for (int i=0; i<16; ++i)
767 #define BLEND(y, x, a) (y + (((x-y) * a)>>8))
769 unsigned char da = background.a, dr = background.r, dg = background.g, db = background.b;
773 da = BLEND(background.a, foreground.a, sa) & 0xFF;
774 dr = BLEND(background.r, foreground.r, sa) & 0xFF;
775 dg = BLEND(background.g, foreground.g, sa) & 0xFF;
776 db = BLEND(background.b, foreground.b, sa) & 0xFF;
780 lookup32_normal[i]=db | (dg << 8) | (dr << 16) | (da << 24);;
782 for (int i=0; i<16; ++i)
783 lookup32_invert[i]=lookup32_normal[i^0xF];
786 eWarning("can't render to %dbpp", surface->bpp);
790 gRegion area(eRect(0, 0, surface->x, surface->y));
791 gRegion clip = dc.getClip() & area;
793 int buffer_stride=surface->stride;
795 for (unsigned int c = 0; c < clip.rects.size(); ++c)
797 for (glyphString::iterator i(glyphs.begin()); i != glyphs.end(); ++i)
799 if (i->flags & GS_SOFTHYPHEN)
802 if (!(i->flags & GS_INVERT))
804 lookup8 = lookup8_normal;
805 lookup32 = lookup32_normal;
808 lookup8 = lookup8_invert;
809 lookup32 = lookup32_invert;
812 static FTC_SBit glyph_bitmap;
813 if (fontRenderClass::instance->getGlyphBitmap(&i->font->font, i->glyph_index, &glyph_bitmap))
815 int rx=i->x+glyph_bitmap->left + offset.x();
816 int ry=i->y-glyph_bitmap->top + offset.y();
818 __u8 *d=(__u8*)(surface->data)+buffer_stride*ry+rx*surface->bypp;
819 __u8 *s=glyph_bitmap->buffer;
820 register int sx=glyph_bitmap->width;
821 int sy=glyph_bitmap->height;
822 if ((sy+ry) >= clip.rects[c].bottom())
823 sy=clip.rects[c].bottom()-ry;
824 if ((sx+rx) >= clip.rects[c].right())
825 sx=clip.rects[c].right()-rx;
826 if (rx < clip.rects[c].left())
828 int diff=clip.rects[c].left()-rx;
832 d+=diff*surface->bypp;
834 if (ry < clip.rects[c].top())
836 int diff=clip.rects[c].top()-ry;
837 s+=diff*glyph_bitmap->pitch;
840 d+=diff*buffer_stride;
843 for (int ay=0; ay<sy; ay++)
845 if (!opcode) // 4bit lookup to 8bit
850 for (ax=0; ax<sx; ax++)
852 register int b=(*s++)>>4;
858 } else if (opcode == 1) // 8bit direct
862 for (ax=0; ax<sx; ax++)
869 register __u32 *td=(__u32*)d;
871 for (ax=0; ax<sx; ax++)
873 register int b=(*s++)>>4;
880 s+=glyph_bitmap->pitch-sx;
887 void eTextPara::realign(int dir) // der code hier ist ein wenig merkwuerdig.
889 glyphString::iterator begin(glyphs.begin()), c(glyphs.begin()), end(glyphs.begin()), last;
892 while (c != glyphs.end())
895 int numspaces=0, num=0;
898 ASSERT( end != glyphs.end());
904 } while ((end != glyphs.end()) && (!(end->flags&GS_ISFIRST)));
905 // end zeigt jetzt auf begin der naechsten zeile
907 for (c=begin; c!=end; ++c)
909 // space am zeilenende skippen
910 if ((c==last) && (c->flags&GS_ISSPACE))
913 if (c->flags&GS_ISSPACE)
924 int offset=area.width()-linelength;
930 begin->bbox.moveBy(offset-begin->x,0);
939 if (end == glyphs.end()) // letzte zeile linksbuendig lassen
946 if ((!spacemode) && (num<2))
948 int off=(area.width()-linelength)*256/(spacemode?numspaces:(num-1));
953 if ((!spacemode) || (begin->flags&GS_ISSPACE))
956 begin->bbox.moveBy(curoff>>8,0);
969 void eTextPara::clear()
971 singleLock s(ftlock);
974 replacement_font = 0;
979 eAutoInitP0<fontRenderClass> init_fontRenderClass(eAutoInitNumbers::graphic-1, "Font Render Class");