68593c60797b73a1bf272999e8c0c989a4de9b50
[swftools.git] / lib / devices / arts.c
1 /* arts.c
2
3    Part of the swftools package.
4
5    Copyright (c) 2005 Matthias Kramm <kramm@quiss.org> 
6  
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
20
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include <stdarg.h>
24 #include <unistd.h>
25 #include <memory.h>
26 #include "../mem.h"
27 #include "../gfxdevice.h"
28 #include "../gfxtools.h"
29 #include "../art/libart.h"
30 #include "artsutils.c"
31
32 typedef struct _clip {
33     ArtSVP*svp;
34     struct _clip*next;
35 } clip_t;
36
37 typedef struct _internal {
38     gfxdevice_t*out;
39     clip_t*clip;
40     ArtSVP*svpunion;
41 } internal_t;
42
43 static int verbose = 0;
44 static void dbg(char*format, ...)
45 {
46     if(!verbose)
47         return;
48     char buf[1024];
49     int l;
50     va_list arglist;
51     va_start(arglist, format);
52     vsprintf(buf, format, arglist);
53     va_end(arglist);
54     l = strlen(buf);
55     while(l && buf[l-1]=='\n') {
56         buf[l-1] = 0;
57         l--;
58     }
59     printf("(device-arts) %s\n", buf);
60     fflush(stdout);
61 }
62
63 int arts_setparameter(struct _gfxdevice*dev, const char*key, const char*value)
64 {
65     dbg("arts_setparameter");
66     internal_t*i = (internal_t*)dev->internal;
67     if(i->out) return i->out->setparameter(i->out,key,value);
68     else return 0;
69 }
70
71 void arts_startpage(struct _gfxdevice*dev, int width, int height)
72 {
73     dbg("arts_startpage");
74     internal_t*i = (internal_t*)dev->internal;
75     if(i->out) i->out->startpage(i->out,width,height);
76 }
77
78 void arts_startclip(struct _gfxdevice*dev, gfxline_t*line)
79 {
80     dbg("arts_startclip");
81     internal_t*i = (internal_t*)dev->internal;
82     ArtSVP* svp = gfxfillToSVP(line, 1);
83
84     svp = art_svp_rewind_uncrossed(art_svp_uncross(svp),ART_WIND_RULE_ODDEVEN); /*FIXME*/
85
86     if(i->clip) {
87         ArtSVP*old = i->clip->svp;
88         clip_t*n = i->clip;
89         i->clip = (clip_t*)rfx_calloc(sizeof(clip_t));
90         i->clip->next = n;
91         i->clip->svp = art_svp_intersect(svp, old);
92         art_svp_free(svp);
93     } else {
94         i->clip = (clip_t*)rfx_calloc(sizeof(clip_t));
95         i->clip->svp = svp;
96     }
97 }
98
99 void arts_endclip(struct _gfxdevice*dev)
100 {
101     dbg("arts_endclip");
102     internal_t*i = (internal_t*)dev->internal;
103
104     if(i->clip) {
105         clip_t*old = i->clip;
106         i->clip = i->clip->next;
107         art_svp_free(old->svp);old->svp = 0;
108         old->next = 0;free(old);
109     } else {
110         fprintf(stderr, "Error: endclip without startclip\n");
111     }
112 }
113
114 void addtounion(struct _gfxdevice*dev, ArtSVP*svp)
115 {
116     internal_t*i = (internal_t*)dev->internal;
117     if(i->svpunion) {
118         ArtSVP*old = i->svpunion;
119         i->svpunion = art_svp_union(svp,i->svpunion);
120         art_svp_free(old);
121     }
122 }
123
124 void arts_stroke(struct _gfxdevice*dev, gfxline_t*line, gfxcoord_t width, gfxcolor_t*color, gfx_capType cap_style, gfx_joinType joint_style, gfxcoord_t miterLimit)
125 {
126     dbg("arts_stroke");
127     internal_t*i = (internal_t*)dev->internal;
128     //i->out->stroke(i->out, line, width, color, cap_style, joint_style, miterLimit);
129     ArtSVP* svp = gfxstrokeToSVP(line, width, cap_style, joint_style, miterLimit);
130     if(i->clip) {
131         ArtSVP*old = svp;
132         svp = art_svp_intersect(svp, i->clip->svp);
133         art_svp_free(old);
134     }
135     addtounion(dev,svp);
136     gfxline_t*gfxline = SVPtogfxline(svp);
137     if(i->out) i->out->fill(i->out, gfxline, color);
138     free(gfxline);
139     art_svp_free(svp);
140 }
141
142 void arts_fill(struct _gfxdevice*dev, gfxline_t*line, gfxcolor_t*color)
143 {
144     dbg("arts_fill");
145     internal_t*i = (internal_t*)dev->internal;
146     ArtSVP* svp = gfxfillToSVP(line, 1);
147     
148     svp = art_svp_rewind_uncrossed(art_svp_uncross(svp),ART_WIND_RULE_ODDEVEN); /*FIXME*/
149
150     if(i->clip) {
151         ArtSVP*old = svp;
152         svp = art_svp_intersect(svp, i->clip->svp);
153         art_svp_free(old);
154     }
155     addtounion(dev,svp);
156     gfxline_t*gfxline = SVPtogfxline(svp);
157     if(i->out) i->out->fill(i->out, gfxline, color);
158     free(gfxline);
159     art_svp_free(svp);
160 }
161
162 void arts_fillbitmap(struct _gfxdevice*dev, gfxline_t*line, gfximage_t*img, gfxmatrix_t*matrix, gfxcxform_t*cxform)
163 {
164     dbg("arts_fillbitmap");
165     internal_t*i = (internal_t*)dev->internal;
166     ArtSVP* svp = gfxfillToSVP(line, 1);
167     if(i->clip) {
168         ArtSVP*old = svp;
169         svp = art_svp_intersect(svp, i->clip->svp);
170         art_svp_free(old);
171     }
172     addtounion(dev,svp);
173     gfxline_t*gfxline = SVPtogfxline(svp);
174     if(i->out) i->out->fillbitmap(i->out, gfxline, img, matrix, cxform);
175     free(gfxline);
176     art_svp_free(svp);
177 }
178
179 void arts_fillgradient(struct _gfxdevice*dev, gfxline_t*line, gfxgradient_t*gradient, gfxgradienttype_t type, gfxmatrix_t*matrix)
180 {
181     dbg("arts_fillgradient");
182     internal_t*i = (internal_t*)dev->internal;
183     ArtSVP* svp = gfxfillToSVP(line, 1);
184     if(i->clip) {
185         ArtSVP*old = svp;
186         svp = art_svp_intersect(svp, i->clip->svp);
187         art_svp_free(old);
188     }
189     addtounion(dev,svp);
190     gfxline_t*gfxline = SVPtogfxline(svp);
191     if(i->out) i->out->fillgradient(i->out, gfxline, gradient, type, matrix);
192     free(gfxline);
193     art_svp_free(svp);
194 }
195
196 void arts_addfont(struct _gfxdevice*dev, gfxfont_t*font)
197 {
198     dbg("arts_addfont");
199     internal_t*i = (internal_t*)dev->internal;
200     if(i->out) i->out->addfont(i->out, font);
201 }
202
203 void arts_drawchar(struct _gfxdevice*dev, gfxfont_t*font, int glyphnr, gfxcolor_t*color, gfxmatrix_t*matrix)
204 {
205     dbg("arts_drawchar");
206     internal_t*i = (internal_t*)dev->internal;
207     gfxline_t*glyph = gfxline_clone(font->glyphs[glyphnr].line);
208     gfxline_transform(glyph, matrix);
209
210     if(i->clip) {
211         gfxbbox_t bbox = gfxline_getbbox(glyph);
212         ArtSVP*dummybox = boxToSVP(bbox.xmin,bbox.ymin,bbox.xmax,bbox.ymax);
213         ArtSVP*svp = art_svp_intersect(dummybox, i->clip->svp);
214         gfxline_t*gfxline = SVPtogfxline(svp);
215         gfxbbox_t bbox2 = gfxline_getbbox(gfxline);
216         double w = bbox2.xmax - bbox2.xmin;
217         double h = bbox2.ymax - bbox2.ymin;
218         
219         addtounion(dev, svp); // TODO: use the whole char, not just the bbox
220
221         if(w < 0.001 || h < 0.001) /* character was clipped completely */ {
222         } else if(fabs((bbox.xmax - bbox.xmin) - w) > 0.05 ||
223                   fabs((bbox.ymax - bbox.ymin) - h) > 0.05) {
224             /* notable change in character size: character was clipped 
225                TODO: handle diagonal cuts
226              */
227             arts_fill(dev, glyph, color);
228         } else {
229             if(i->out) i->out->drawchar(i->out, font, glyphnr, color, matrix);
230         }
231     } else {
232         if(i->out) i->out->drawchar(i->out, font, glyphnr, color, matrix);
233     }
234     
235     gfxline_free(glyph);
236 }
237
238 void arts_drawlink(struct _gfxdevice*dev, gfxline_t*line, char*action)
239 {
240     dbg("arts_drawlink");
241     internal_t*i = (internal_t*)dev->internal;
242     if(i->out) i->out->drawlink(i->out, line, action);
243 }
244
245 void arts_endpage(struct _gfxdevice*dev)
246 {
247     dbg("arts_endpage");
248     internal_t*i = (internal_t*)dev->internal;
249     if(i->out) i->out->endpage(i->out);
250 }
251
252 gfxresult_t* arts_finish(struct _gfxdevice*dev)
253 {
254     dbg("arts_finish");
255     internal_t*i = (internal_t*)dev->internal;
256     if(i->out) {
257         return i->out->finish(i->out);
258     } else {
259         return 0;
260     }
261 }
262
263 gfxline_t*gfxdevice_union_getunion(struct _gfxdevice*dev)
264 {
265     internal_t*i = (internal_t*)dev->internal;
266     return SVPtogfxline(i->svpunion);
267 }
268
269 void gfxdevice_removeclippings_init(gfxdevice_t*dev, gfxdevice_t*out)
270 {
271     dbg("gfxdevice_removeclippings_init");
272     internal_t*i = (internal_t*)rfx_calloc(sizeof(internal_t));
273     memset(dev, 0, sizeof(gfxdevice_t));
274     
275     dev->name = "removeclippings";
276
277     dev->internal = i;
278
279     dev->setparameter = arts_setparameter;
280     dev->startpage = arts_startpage;
281     dev->startclip = arts_startclip;
282     dev->endclip = arts_endclip;
283     dev->stroke = arts_stroke;
284     dev->fill = arts_fill;
285     dev->fillbitmap = arts_fillbitmap;
286     dev->fillgradient = arts_fillgradient;
287     dev->addfont = arts_addfont;
288     dev->drawchar = arts_drawchar;
289     dev->drawlink = arts_drawlink;
290     dev->endpage = arts_endpage;
291     dev->finish = arts_finish;
292
293     i->out = out;
294     i->svpunion = 0;
295 }
296
297 void gfxdevice_union_init(gfxdevice_t*dev,gfxdevice_t*out)
298 {
299     dbg("gfxdevice_getunion_init");
300     internal_t*i = (internal_t*)rfx_calloc(sizeof(internal_t));
301     memset(dev, 0, sizeof(gfxdevice_t));
302     
303     dev->name = "union";
304
305     dev->internal = i;
306
307     dev->setparameter = arts_setparameter;
308     dev->startpage = arts_startpage;
309     dev->startclip = arts_startclip;
310     dev->endclip = arts_endclip;
311     dev->stroke = arts_stroke;
312     dev->fill = arts_fill;
313     dev->fillbitmap = arts_fillbitmap;
314     dev->fillgradient = arts_fillgradient;
315     dev->addfont = arts_addfont;
316     dev->drawchar = arts_drawchar;
317     dev->drawlink = arts_drawlink;
318     dev->endpage = arts_endpage;
319     dev->finish = arts_finish;
320
321     i->out = out;
322     i->svpunion = gfxstrokeToSVP(0, 0, 0, 0, 0);
323 }
324