moved clockwise checker to gfxfillToSVP()
[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     if (svp->n_segs > 500)
149     {
150         int lineParts = 0;
151         gfxline_t* lineCursor = line;
152         while(lineCursor != NULL)
153         {
154             if(lineCursor->type != gfx_moveTo) ++lineParts;
155             lineCursor = lineCursor->next;
156         }
157         fprintf(stderr, "arts_fill abandonning shape with %d segments (%d line parts)\n", svp->n_segs, lineParts);
158         art_svp_free(svp);
159         return;
160     }
161
162     svp = art_svp_rewind_uncrossed(art_svp_uncross(svp),ART_WIND_RULE_ODDEVEN); /*FIXME*/
163
164     if(i->clip) {
165         ArtSVP*old = svp;
166         svp = art_svp_intersect(svp, i->clip->svp);
167         art_svp_free(old);
168     }
169     addtounion(dev,svp);
170     gfxline_t*gfxline = SVPtogfxline(svp);
171     if(i->out) i->out->fill(i->out, gfxline, color);
172     free(gfxline);
173     art_svp_free(svp);
174 }
175
176 void arts_fillbitmap(struct _gfxdevice*dev, gfxline_t*line, gfximage_t*img, gfxmatrix_t*matrix, gfxcxform_t*cxform)
177 {
178     dbg("arts_fillbitmap");
179     internal_t*i = (internal_t*)dev->internal;
180     ArtSVP* svp = gfxfillToSVP(line, 1);
181
182     if(i->clip) {
183         ArtSVP*old = svp;
184         svp = art_svp_intersect(svp, i->clip->svp);
185         art_svp_free(old);
186     }
187     addtounion(dev,svp);
188     gfxline_t*gfxline = SVPtogfxline(svp);
189     if(i->out) i->out->fillbitmap(i->out, gfxline, img, matrix, cxform);
190     free(gfxline);
191     art_svp_free(svp);
192 }
193
194 void arts_fillgradient(struct _gfxdevice*dev, gfxline_t*line, gfxgradient_t*gradient, gfxgradienttype_t type, gfxmatrix_t*matrix)
195 {
196     dbg("arts_fillgradient");
197     internal_t*i = (internal_t*)dev->internal;
198     ArtSVP* svp = gfxfillToSVP(line, 1);
199     if(i->clip) {
200         ArtSVP*old = svp;
201         svp = art_svp_intersect(svp, i->clip->svp);
202         art_svp_free(old);
203     }
204     addtounion(dev,svp);
205     gfxline_t*gfxline = SVPtogfxline(svp);
206     if(i->out) i->out->fillgradient(i->out, gfxline, gradient, type, matrix);
207     free(gfxline);
208     art_svp_free(svp);
209 }
210
211 void arts_addfont(struct _gfxdevice*dev, gfxfont_t*font)
212 {
213     dbg("arts_addfont");
214     internal_t*i = (internal_t*)dev->internal;
215     if(i->out) i->out->addfont(i->out, font);
216 }
217
218 void arts_drawchar(struct _gfxdevice*dev, gfxfont_t*font, int glyphnr, gfxcolor_t*color, gfxmatrix_t*matrix)
219 {
220     dbg("arts_drawchar");
221     internal_t*i = (internal_t*)dev->internal;
222     gfxline_t*glyph = gfxline_clone(font->glyphs[glyphnr].line);
223     gfxline_transform(glyph, matrix);
224
225     if(i->clip) {
226         gfxbbox_t bbox = gfxline_getbbox(glyph);
227         ArtSVP*dummybox = boxToSVP(bbox.xmin,bbox.ymin,bbox.xmax,bbox.ymax);
228         ArtSVP*svp = art_svp_intersect(dummybox, i->clip->svp);
229         gfxline_t*gfxline = SVPtogfxline(svp);
230         gfxbbox_t bbox2 = gfxline_getbbox(gfxline);
231         double w = bbox2.xmax - bbox2.xmin;
232         double h = bbox2.ymax - bbox2.ymin;
233         
234         addtounion(dev, svp); // TODO: use the whole char, not just the bbox
235
236         if(w < 0.001 || h < 0.001) /* character was clipped completely */ {
237         } else if(fabs((bbox.xmax - bbox.xmin) - w) > 0.05 ||
238                   fabs((bbox.ymax - bbox.ymin) - h) > 0.05) {
239             /* notable change in character size: character was clipped 
240                TODO: handle diagonal cuts
241              */
242             arts_fill(dev, glyph, color);
243         } else {
244             if(i->out) i->out->drawchar(i->out, font, glyphnr, color, matrix);
245         }
246     } else {
247         if(i->out) i->out->drawchar(i->out, font, glyphnr, color, matrix);
248     }
249     
250     gfxline_free(glyph);
251 }
252
253 void arts_drawlink(struct _gfxdevice*dev, gfxline_t*line, char*action)
254 {
255     dbg("arts_drawlink");
256     internal_t*i = (internal_t*)dev->internal;
257     if(i->out) i->out->drawlink(i->out, line, action);
258 }
259
260 void arts_endpage(struct _gfxdevice*dev)
261 {
262     dbg("arts_endpage");
263     internal_t*i = (internal_t*)dev->internal;
264     if(i->out) i->out->endpage(i->out);
265 }
266
267 gfxresult_t* arts_finish(struct _gfxdevice*dev)
268 {
269     dbg("arts_finish");
270     internal_t*i = (internal_t*)dev->internal;
271     if(i->out) {
272         return i->out->finish(i->out);
273     } else {
274         return 0;
275     }
276 }
277
278 gfxline_t*gfxdevice_union_getunion(struct _gfxdevice*dev)
279 {
280     internal_t*i = (internal_t*)dev->internal;
281     return SVPtogfxline(i->svpunion);
282 }
283
284 void gfxdevice_removeclippings_init(gfxdevice_t*dev, gfxdevice_t*out)
285 {
286     dbg("gfxdevice_removeclippings_init");
287     internal_t*i = (internal_t*)rfx_calloc(sizeof(internal_t));
288     memset(dev, 0, sizeof(gfxdevice_t));
289     
290     dev->name = "removeclippings";
291
292     dev->internal = i;
293
294     dev->setparameter = arts_setparameter;
295     dev->startpage = arts_startpage;
296     dev->startclip = arts_startclip;
297     dev->endclip = arts_endclip;
298     dev->stroke = arts_stroke;
299     dev->fill = arts_fill;
300     dev->fillbitmap = arts_fillbitmap;
301     dev->fillgradient = arts_fillgradient;
302     dev->addfont = arts_addfont;
303     dev->drawchar = arts_drawchar;
304     dev->drawlink = arts_drawlink;
305     dev->endpage = arts_endpage;
306     dev->finish = arts_finish;
307
308     i->out = out;
309     i->svpunion = 0;
310 }
311
312 void gfxdevice_union_init(gfxdevice_t*dev,gfxdevice_t*out)
313 {
314     dbg("gfxdevice_getunion_init");
315     internal_t*i = (internal_t*)rfx_calloc(sizeof(internal_t));
316     memset(dev, 0, sizeof(gfxdevice_t));
317     
318     dev->name = "union";
319
320     dev->internal = i;
321
322     dev->setparameter = arts_setparameter;
323     dev->startpage = arts_startpage;
324     dev->startclip = arts_startclip;
325     dev->endclip = arts_endclip;
326     dev->stroke = arts_stroke;
327     dev->fill = arts_fill;
328     dev->fillbitmap = arts_fillbitmap;
329     dev->fillgradient = arts_fillgradient;
330     dev->addfont = arts_addfont;
331     dev->drawchar = arts_drawchar;
332     dev->drawlink = arts_drawlink;
333     dev->endpage = arts_endpage;
334     dev->finish = arts_finish;
335
336     i->out = out;
337     i->svpunion = gfxstrokeToSVP(0, 0, 0, 0, 0);
338 }
339