Code

fix compile
[inkscape.git] / src / display / nr-svgfonts.cpp
1 #include "config.h"
2 #ifdef ENABLE_SVG_FONTS
3 /*
4  * SVGFonts rendering implementation
5  *
6  * Authors:
7  *    Felipe C. da S. Sanches <felipe.sanches@gmail.com>
8  *
9  * Copyright (C) 2008 Felipe C. da S. Sanches
10  *
11  * Released under GNU GPL version 2 or later.
12  * Read the file 'COPYING' for more information.
13  */
15 #include <libnr/n-art-bpath-2geom.h>
16 #include <2geom/pathvector.h>
17 #include <2geom/transforms.h>
18 #include "../style.h"
19 #include <cairo.h>
20 #include <vector>
21 #include "svg/svg.h"
22 #include "inkscape-cairo.h"
23 #include "nr-svgfonts.h"
25 //***********************************//
26 // SvgFontDrawingArea Implementation //
27 //***********************************//
28 class SvgFontDrawingArea : Gtk::DrawingArea{
29 public:
30 SvgFontDrawingArea(SvgFont* svgfont){
31         this->svgfont = svgfont;
32 }
33 private:
34 SvgFont* svgfont;
36 bool on_expose_event (GdkEventExpose *event){
37   Glib::RefPtr<Gdk::Window> window = get_window();
38   Cairo::RefPtr<Cairo::Context> cr = window->create_cairo_context();
39   cr->set_font_face( Cairo::RefPtr<Cairo::FontFace>(new Cairo::FontFace(this->svgfont->get_font_face(), false /* does not have reference */)) );
40   cr->set_font_size (100);
41   cr->move_to (100, 100);
42   cr->show_text ("A@!A!@A");
44   return TRUE;
45 }
46 };//class SvgFontDrawingArea
48 //*************************//
49 // UserFont Implementation //
50 //*************************//
52 // I wrote this binding code because Cairomm does not yet support userfonts. I have moved this code to cairomm and sent them a patch.
53 // Once Cairomm incorporate the UserFonts binding, this code should be removed from inkscape and Cairomm API should be used.
55 static cairo_user_data_key_t key;
57 static cairo_status_t font_init_cb (cairo_scaled_font_t  *scaled_font,
58                        cairo_font_extents_t *metrics){
59         cairo_font_face_t*  face;
60         face = cairo_scaled_font_get_font_face(scaled_font);
61         SvgFont* instance = (SvgFont*) cairo_font_face_get_user_data(face, &key);
62         return instance->scaled_font_init(scaled_font, metrics);
63 }
65 static cairo_status_t font_text_to_glyphs_cb (cairo_scaled_font_t *scaled_font,
66                                 const char      *utf8,
67                                 cairo_glyph_t   **glyphs,
68                                 int             *num_glyphs){
69         cairo_font_face_t*  face;
70         face = cairo_scaled_font_get_font_face(scaled_font);
71         SvgFont* instance = (SvgFont*) cairo_font_face_get_user_data(face, &key);
72         return instance->scaled_font_text_to_glyphs(scaled_font, utf8, glyphs, num_glyphs);
73 }
75 static cairo_status_t font_render_glyph_cb (cairo_scaled_font_t  *scaled_font,
76                                unsigned long         glyph,
77                                cairo_t              *cr,
78                                cairo_text_extents_t *metrics){
79         cairo_font_face_t*  face;
80         face = cairo_scaled_font_get_font_face(scaled_font);
81         SvgFont* instance = (SvgFont*) cairo_font_face_get_user_data(face, &key);
82         return instance->scaled_font_render_glyph(scaled_font, glyph, cr, metrics);
83 }
85 UserFont::UserFont(SvgFont* instance){
86         this->face = cairo_user_font_face_create ();
87         cairo_user_font_face_set_init_func              (this->face, font_init_cb);
88         cairo_user_font_face_set_render_glyph_func      (this->face, font_render_glyph_cb);
89         cairo_user_font_face_set_text_to_glyphs_func    (this->face, font_text_to_glyphs_cb);
91         cairo_font_face_set_user_data (this->face, &key, (void*)instance, (cairo_destroy_func_t) NULL);
92 }
94 //******************************//
95 // SvgFont class Implementation //
96 //******************************//
97 SvgFont::SvgFont(SPFont* spfont){
98         this->font = spfont;
99         this->missingglyph = NULL;
100         this->userfont = NULL;
102         //This is an auxiliary gtkWindow used only while we do not have proper Pango integration with cairo-user-fonts.
103         Gtk::Window* window;
104         SvgFontDrawingArea* font_da;
106         window = new Gtk::Window();
107         window->set_default_size (1200, 850);
108         font_da = new SvgFontDrawingArea(this);
109         window->add((Gtk::Widget&) *font_da);
110         window->show_all();
113 cairo_status_t
114 SvgFont::scaled_font_init (cairo_scaled_font_t  *scaled_font,
115                        cairo_font_extents_t *metrics)
117 //TODO
118 //  metrics->ascent  = .75;
119 //  metrics->descent = .25;
120   return CAIRO_STATUS_SUCCESS;
123 unsigned int compare_them(char* s1, char* s2){
124         unsigned int p=0;
125         while((s1[p] == s2[p]) && s1[p] != '\0' && s2[p] != '\0') p++;
126         if (s1[p]=='\0') return p;
127         else return 0;
130 cairo_status_t
131 SvgFont::scaled_font_text_to_glyphs (cairo_scaled_font_t *scaled_font,
132                                 const char      *utf8,
133                                 cairo_glyph_t   **glyphs,
134                                 int             *num_glyphs)
136         //This function receives a text string to be rendered. It then defines what is the sequence of glyphs that
137         // is used to properly render this string. It alse defines the respective coordinates of each glyph. Thus, it
138         // has to read the attributes od the SVGFont hkern and vkern nodes in order to adjust the glyph kerning.
139         //It also determines the usage of the missing-glyph in portions of the string that does not match any of the declared glyphs.
141     unsigned long i;
142     int count = 0;
143     char* _utf8 = (char*) utf8;
144     unsigned int len;
146     //First we findout whats the worst case number of glyphs.
147     while(_utf8[0] != '\0'){
148         _utf8++;
149         count++;
150     }
152     //We use that info to allocate memory for the glyphs
153     *glyphs = (cairo_glyph_t*) malloc(count*sizeof(cairo_glyph_t));
155     char* previous_unicode = NULL; //This is used for kerning 
156     count=0;
157     double x=0, y=0;//These vars store the position of the glyph within the rendered string
158     bool is_horizontal_text = true; //TODO
159     _utf8 = (char*) utf8;
160     while(_utf8[0] != '\0'){
161         len = 0;
162         for (i=0; i < (unsigned long) this->glyphs.size(); i++){
163             if ( (len = compare_them(this->glyphs[i]->unicode, _utf8)) ){
164                 //check whether is there a glyph declared on the SVG document
165                 // that matches with the text string in its current position
166                 for(SPObject* node = this->font->children;previous_unicode && node;node=node->next){
167                     //apply glyph kerning if appropriate
168                     if (SP_IS_HKERN(node) && is_horizontal_text){
169                         if ( (((SPHkern*)node)->u1[0] == previous_unicode[0]) && (((SPHkern*)node)->u2[0] == this->glyphs[i]->unicode[0]))//TODO: strings
170                                 x -= (((SPHkern*)node)->k / this->font->horiz_adv_x);
171                     }
172                     if (SP_IS_VKERN(node) && !is_horizontal_text){
173                         if ( (((SPVkern*)node)->u1[0] == previous_unicode[0]) && (((SPVkern*)node)->u2[0] == this->glyphs[i]->unicode[0]))//TODO: strings
174                                 y -= (((SPVkern*)node)->k / this->font->vert_adv_y);
175                     }
176                 }
177                 previous_unicode = this->glyphs[i]->unicode;//used for kerning checking
178                 (*glyphs)[count].index = i;
179                 (*glyphs)[count].x = x;
180                 (*glyphs)[count++].y = y;
181                 //advance glyph coordinates:
182                 if (is_horizontal_text) x++;
183                 else y++;
184                 _utf8+=len; //advance 'len' chars in our string pointer
185                 continue;
186             }
187         }
188         if (!len){
189                 (*glyphs)[count].index = i;
190                 (*glyphs)[count].x = x;
191                 (*glyphs)[count++].y = y;
192                 //advance glyph coordinates:
193                 if (is_horizontal_text) x++;
194                 else y++;
195                 _utf8++; //advance 1 char in our string pointer
196         }
197     }
198     *num_glyphs = count;
199     return CAIRO_STATUS_SUCCESS;
202 cairo_status_t
203 SvgFont::scaled_font_render_glyph (cairo_scaled_font_t  *scaled_font,
204                                unsigned long         glyph,
205                                cairo_t              *cr,
206                                cairo_text_extents_t *metrics)
208     // This method does the actual rendering of glyphs.
210     // We have glyphs.size() glyphs and possibly one missing-glyph declared on this SVG document 
211     // The id of the missing-glyph is always equal to glyphs.size()
212     // All the other glyphs have ids ranging from 0 to glyphs.size()-1
214     if (glyph > this->glyphs.size())     return CAIRO_STATUS_SUCCESS;//TODO: this is an error!
216     SPObject* node;
217     if (glyph == this->glyphs.size()){
218         if (!this->missingglyph) return CAIRO_STATUS_SUCCESS;
219         node = (SPObject*) this->missingglyph;
220         g_warning("RENDER MISSING-GLYPH");
221     } else {
222         node = (SPObject*) this->glyphs[glyph];
223         g_warning("RENDER %s", this->glyphs[glyph]->unicode);
224     }
226     //glyphs can be described by arbitrary SVG declared in the childnodes of a glyph node
227     // or using the d attribute of a glyph node.
228     // pathv stores the path description from the d attribute:
229     Geom::PathVector pathv;
230     if (SP_IS_GLYPH(node) && ((SPGlyph*)node)->d) {
231         pathv = sp_svg_read_pathv(((SPGlyph*)node)->d);
232     } else if (SP_IS_MISSING_GLYPH(node) && ((SPMissingGlyph*)node)->d) {
233         pathv = sp_svg_read_pathv(((SPMissingGlyph*)node)->d);
234     } else {
235         return CAIRO_STATUS_SUCCESS;  // FIXME: is this the right code to return?
236     }
238     if (!pathv.empty()){
239         //This glyph has a path description on its d attribute, so we render it:
240         cairo_new_path(cr);
241         Geom::Scale s(1.0/((SPFont*) node->parent)->horiz_adv_x);
242         NRRect area(0,0,1,1); //I need help here!
243         feed_pathvector_to_cairo (cr, pathv, s, area.upgrade(), false, 0);
244         cairo_fill(cr);
245     }
247     //TODO: render the SVG described on this glyph's child nodes.
248     return CAIRO_STATUS_SUCCESS;
251 cairo_font_face_t*
252 SvgFont::get_font_face(){
253     if (!this->userfont) {
254         for(SPObject* node = this->font->children;node;node=node->next){
255             if (SP_IS_GLYPH(node)){
256                 g_warning("glyphs.push_back((SPGlyph*)node); (node->unicode='%s')", ((SPGlyph*)node)->unicode);
257                 this->glyphs.push_back((SPGlyph*)node);
258             }
259             if (SP_IS_MISSING_GLYPH(node)){
260                 g_warning("missingglyph=(SPMissingGlyph*)node;");
261                 this->missingglyph=(SPMissingGlyph*)node;
262             }
263         }
264         this->userfont = new UserFont(this);
265     }
266     return this->userfont->face;
268 #endif //#ifdef ENABLE_SVG_FONTS