implemented two levels of font cache
[swftools.git] / pdf2swf / swfoutput.cc
1 /* swfoutput.cc
2    Implements generation of swf files using the rfxswf lib. The routines
3    in this file are called from pdf2swf.
4
5    This file is part of swftools.
6
7    Swftools 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    Swftools 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 swftools; if not, write to the Free Software
19    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
20
21 #include <string.h>
22 #include <fcntl.h>
23 #include <unistd.h>
24 #include "swfoutput.h"
25 #include "spline.h"
26 extern "C" {
27 #include "../lib/log.h"
28 #include "../lib/rfxswf.h"
29 }
30
31 typedef unsigned char u8;
32 typedef unsigned short int u16;
33 typedef unsigned long int u32;
34
35 static int fi;
36 static int flag_protected;
37 static SWF swf;
38 static TAG *tag;
39 static int shapeid = -1;
40 static int shapecount = 0;
41 static SHAPE* shape;
42 static int fillstyleid;
43 static int linestyleid;
44 static int swflastx=0;
45 static int swflasty=0;
46 static int lastwasfill = 0;
47 static char* filename = 0;
48 static int sizex;
49 static int sizey;
50 static char fill = 0;
51 static int depth = 1;
52 static int startdepth = 1;
53 TAG* cliptags[128];
54 int clipshapes[128];
55 u32 clipdepths[128];
56 int clippos = 0;
57
58 void startshape(struct swfoutput* obj);
59
60 // matrix multiplication. changes p0
61 void transform (plotxy*p0,struct swfmatrix*m)
62 {
63     double x,y;
64     x = m->m11*p0->x+m->m12*p0->y;
65     y = m->m21*p0->x+m->m22*p0->y;
66     p0->x = x + m->m13;
67     p0->y = y + m->m23;
68 }
69
70 // write a move-to command into the swf
71 void moveto(plotxy p0)
72 {
73     int rx = (int)(p0.x*20);
74     int ry = (int)(p0.y*20);
75     if(rx!=swflastx || ry!=swflasty) {
76       ShapeSetMove (tag, shape, rx,ry);
77     }
78     swflastx=rx;
79     swflasty=ry;
80 }
81
82 // write a line-to command into the swf
83 void lineto(plotxy p0)
84 {
85     int rx = ((int)(p0.x*20)-swflastx);
86     int ry = ((int)(p0.y*20)-swflasty);
87     /* we can't skip this for rx=0,ry=0, those
88        are plots */
89     ShapeSetLine (tag, shape, rx,ry);
90     swflastx+=rx;
91     swflasty+=ry;
92 }
93
94 // write a spline-to command into the swf
95 void splineto(plotxy control,plotxy end)
96 {
97     int cx = ((int)(control.x*20)-swflastx);
98     int cy = ((int)(control.y*20)-swflasty);
99     swflastx += cx;
100     swflasty += cy;
101     int ex = ((int)(end.x*20)-swflastx);
102     int ey = ((int)(end.y*20)-swflasty);
103     swflastx += ex;
104     swflasty += ey;
105     ShapeSetCurve(tag, shape, cx,cy,ex,ey);
106 }
107
108 /* write a line, given two points and the transformation
109    matrix. */
110 void line(plotxy p0, plotxy p1, struct swfmatrix*m)
111 {
112     transform(&p0,m);
113     transform(&p1,m);
114     moveto(p0);
115     lineto(p1);
116 }
117
118 /* write a cubic (!) spline. This involves calling the approximate()
119    function out of spline.cc to convert it to a quadratic spline.  */
120 void spline(plotxy p0,plotxy p1,plotxy p2,plotxy p3,struct swfmatrix*m)
121 {
122     double d;
123     struct qspline q[16];
124     int num;
125     int t;
126     transform(&p0,m);
127     transform(&p1,m);
128     transform(&p2,m);
129     transform(&p3,m);
130
131     num = approximate(p0,p1,p2,p3,q);
132     for(t=0;t<num;t++) {
133         moveto(q[t].start);
134         splineto(q[t].control, q[t].end);
135     }
136 }
137
138 /* Adds an outline to a font. Applies only the 2x2 component of the transformation matrix. 
139  */
140 void addtofont(T1_OUTLINE*outline, struct swfmatrix*m, char*namehint)
141 {
142 }
143
144 /* draw a T1 outline. These are generated by pdf2swf and by t1lib.
145    (representing characters) */
146 void drawpath(T1_OUTLINE*outline, struct swfmatrix*m, char*namehint)
147 {
148     double x=0,y=0;
149     double lastx=0,lasty=0;
150
151     while (outline)
152     {
153         logf("<debug> Pathtype:%s",outline->type == T1_PATHTYPE_MOVE?"MOVE":
154                                                     (outline->type == T1_PATHTYPE_LINE?"LINE"
155                                                                                       :"BEZIER"));
156         logf("<debug> relative coordinates: %08x,%08x", outline->dest.x, outline->dest.y);
157         x += (outline->dest.x/(float)0xffff);
158         y += (outline->dest.y/(float)0xffff);
159         logf("<debug> coordinates: %f,%f", x, y);
160         if(outline->type == T1_PATHTYPE_MOVE)
161         {
162         }
163         else if(outline->type == T1_PATHTYPE_LINE) 
164         {
165             plotxy p0;
166             plotxy p1;
167             p0.x=lastx;
168             p0.y=lasty;
169             p1.x=x;
170             p1.y=y;
171             line(p0,p1,m);
172         }
173         else if(outline->type == T1_PATHTYPE_BEZIER)
174         {
175             plotxy p0;
176             plotxy p1;
177             plotxy p2;
178             plotxy p3;
179             T1_BEZIERSEGMENT*o2 = (T1_BEZIERSEGMENT*)outline;
180             p0.x=x; 
181             p0.y=y;
182             p1.x=o2->C.x/(float)0xffff+lastx;
183             p1.y=o2->C.y/(float)0xffff+lasty;
184             p2.x=o2->B.x/(float)0xffff+lastx;
185             p2.y=o2->B.y/(float)0xffff+lasty;
186             p3.x=lastx;
187             p3.y=lasty;
188             spline(p0,p1,p2,p3,m);
189         } 
190         else {
191          logf("<error> drawpath: unknown outline type:%d\n", outline->type);
192         }
193         lastx=x;
194         lasty=y;
195         outline = outline->link;
196     }
197 }
198     //logf("<debug> Font name is %s", T1_GetFontFileName(t1fontindex));
199     //logf("<debug> char 0x%02x is named %s\n",character,charname);
200     //logf("<debug> bbox: %d %d %d %d\n",bbox.llx,bbox.lly,bbox.urx,bbox.ury);
201     //char*charname = T1_GetCharName(t1fontindex, character);
202
203 /* process a character. */
204 void drawchar(struct swfoutput*obj, SWFFont*font, char character, swfmatrix*m)
205 {
206     T1_OUTLINE*outline = font->getOutline(character);
207     char* charname = font->getCharName(character);
208
209     if(!outline)
210     {
211      /* for newline, we don't print an error. FIXME: We shouldn't get newlines here
212         in the first place
213       */
214      if(character != '\n') {
215          logf("<error> Char to set is not defined!");
216          logf("<error> -  font file is %s\n", font->getName());
217          logf("<error> -  char 0x%02x is named %s\n",character, charname);
218      }
219      return;
220     }
221     swfmatrix m2=*m;    
222     m2.m11/=100;
223     m2.m21/=100;
224     m2.m12/=100;
225     m2.m22/=100;
226
227     if(shapeid<0)
228         startshape(obj);
229
230     if(!lastwasfill)
231      ShapeSetStyle(tag,shape,0x8000,fillstyleid,0);
232     lastwasfill = 1;
233
234     drawpath(outline, &m2, charname);
235 }
236
237 /* draw a curved polygon. */
238 void swfoutput_drawpath(swfoutput*output, T1_OUTLINE*outline, struct swfmatrix*m)
239 {
240     if(shapeid<0)
241         startshape(output);
242
243     if(lastwasfill && !fill)
244     {
245      ShapeSetStyle(tag,shape,linestyleid,0x8000,0);
246      lastwasfill = 0;
247     }
248     if(!lastwasfill && fill)
249     {
250      ShapeSetStyle(tag,shape,0x8000,fillstyleid,0);
251      lastwasfill = 1;
252     }
253
254     drawpath(outline,m, 0); 
255 }
256
257 SWFFont::SWFFont(int t1fontindex)
258 {
259     int t;
260     for(t=0;t<256;t++)
261     {
262         int width = T1_GetCharWidth(t1fontindex, t);
263         BBox bbox = T1_GetCharBBox(t1fontindex, t);
264         T1_OUTLINE*outline = T1_GetCharOutline(t1fontindex,t,100.0,0);
265
266         char*name;
267         this->outline[t] =  T1_CopyOutline(outline);
268
269         name = T1_GetCharName(t1fontindex, t);
270         if(!name || name[0]=='.')
271         {
272             this->charname[t] = 0;
273             this->outline[t] = 0;
274         }
275         else
276             this->charname[t] = strdup(name);
277     }
278     this->name = strdup(T1_GetFontFileName(t1fontindex));
279 }
280
281 T1_OUTLINE*SWFFont::getOutline(unsigned char nr)
282 {
283     return outline[nr];
284 }
285
286 char*SWFFont::getCharName(int t)
287 {
288     return this->charname[t];
289 }
290
291 char*SWFFont::getName()
292 {
293     return this->name;
294 }
295
296 struct fontlist_t 
297 {
298     SWFFont * font;
299     fontlist_t*next;
300 } *fontlist = 0;
301
302 /* set's the t1 font index of the font to use for swfoutput_drawchar(). */
303 void swfoutput_setfont(struct swfoutput*obj, int fontid, int t1id)
304 {
305     fontlist_t*last=0,*iterator;
306     if(obj->font && obj->font->id == fontid)
307         return;
308
309     iterator = fontlist;
310     while(iterator) {
311         if(iterator->font->id == fontid)
312             break;
313         last = iterator;
314         iterator = iterator->next;
315     }
316     if(iterator) 
317     {
318         obj->font = iterator->font;
319         return ;
320     }
321
322     if(t1id<0) {
323         logf("<error> internal error: t1id:%d, fontid:%d\n", t1id,fontid);
324     }
325     
326     SWFFont*font = new SWFFont(t1id);
327     iterator = new fontlist_t;
328     iterator->font = font;
329     iterator->next = 0;
330
331     if(last) 
332         last->next = iterator;
333     else 
334         fontlist = iterator;
335     obj->font = font;
336 }
337
338 int swfoutput_queryfont(struct swfoutput*obj, int fontid)
339 {
340     fontlist_t *iterator = fontlist;
341     while(iterator) {
342         if(iterator->font->id == fontid)
343             return 1;
344         iterator = iterator->next;
345     }
346     return 0;
347 }
348
349 /* set's the matrix which is to be applied to characters drawn by
350    swfoutput_drawchar() */
351 void swfoutput_setfontmatrix(struct swfoutput*obj,double m11,double m12,
352                                                   double m21,double m22)
353 {
354     obj->fontm11 = m11;
355     obj->fontm12 = m12;
356     obj->fontm21 = m21;
357     obj->fontm22 = m22;
358 }
359
360 /* draws a character at x,y. */
361 void swfoutput_drawchar(struct swfoutput* obj,double x,double y,char character) 
362 {
363     swfmatrix m;
364     m.m11 = obj->fontm11;
365     m.m12 = obj->fontm12;
366     m.m21 = obj->fontm21;
367     m.m22 = obj->fontm22;
368     m.m13 = x;
369     m.m23 = y;
370     drawchar(obj, obj->font, character, &m);
371 }
372
373 /* initialize the swf writer */
374 void swfoutput_init(struct swfoutput* obj, char*_filename, int _sizex, int _sizey) 
375 {
376   GLYPH *glyph;
377   RGBA rgb;
378   SRECT r;
379   memset(obj, 0, sizeof(struct swfoutput));
380   filename = _filename;
381   sizex = _sizex;
382   sizey = _sizey;
383
384   logf("<verbose> initializing swf output for size %d*%d\n", sizex,sizey);
385
386   obj->font = 0;
387   
388   memset(&swf,0x00,sizeof(SWF));
389
390   swf.FileVersion    = 4;
391 //  swf.FrameRate      = 0x1900;
392   swf.FrameRate      = 0x0040; // 1 frame per 4 seconds
393   swf.MovieSize.xmax = 20*sizex;
394   swf.MovieSize.ymax = 20*sizey;
395   
396   swf.FirstTag = InsertTag(NULL,ST_SETBACKGROUNDCOLOR);
397   tag = swf.FirstTag;
398   rgb.r = 0xff;
399   rgb.g = 0xff;
400   rgb.b = 0xff;
401   SetRGB(tag,&rgb);
402   if(flag_protected)
403     tag = InsertTag(tag, ST_PROTECT);
404   depth = 1;
405   startdepth = depth;
406 }
407
408 void swfoutput_setprotected() //write PROTECT tag
409 {
410   flag_protected = 1;
411 }
412
413 void startshape(struct swfoutput*obj)
414 {
415   RGBA rgb;
416   SRECT r;
417   tag = InsertTag(tag,ST_DEFINESHAPE);
418
419   NewShape(&shape);
420   linestyleid = ShapeAddLineStyle(shape,obj->linewidth,&obj->strokergb);
421   rgb.r = obj->fillrgb.r;
422   rgb.g = obj->fillrgb.g;
423   rgb.b = obj->fillrgb.b;
424   fillstyleid = ShapeAddSolidFillStyle(shape,&obj->fillrgb);
425
426   shapeid = ++shapecount;
427   SetU16(tag,shapeid);  // ID
428
429   r.xmin = 0;
430   r.ymin = 0;
431   r.xmax = 20*sizex;
432   r.ymax = 20*sizey;
433   
434   SetRect(tag,&r);
435
436   SetShapeStyles(tag,shape);
437   ShapeCountBits(shape,NULL,NULL);
438   SetShapeBits(tag,shape);
439
440   ShapeSetAll(tag,shape,/*x*/0,/*y*/0,linestyleid,0,0);
441   swflastx=swflasty=0;
442   lastwasfill = 0;
443 }
444
445 void endshape()
446 {
447     if(shapeid<0) 
448         return;
449     ShapeSetEnd(tag);
450     tag = InsertTag(tag,ST_PLACEOBJECT2);
451     ObjectPlace(tag,shapeid,/*depth*/depth++,NULL,NULL,NULL);
452     shapeid = -1;
453 }
454
455 void endpage(struct swfoutput*obj)
456 {
457     if(shapeid>=0)
458       endshape();
459     while(clippos)
460         swfoutput_endclip(obj);
461     tag = InsertTag(tag,ST_SHOWFRAME);
462 }
463
464 void swfoutput_newpage(struct swfoutput*obj)
465 {
466     endpage(obj);
467
468     for(depth--;depth>=startdepth;depth--) {
469         tag = InsertTag(tag,ST_REMOVEOBJECT2);
470         SetU16(tag,depth);
471     }
472
473     depth = 1;
474     startdepth = depth;
475 }
476
477 /* "destroy" like in (oo-terminology) "destructor". Perform cleaning
478    up, complete the swf, and write it out. */
479 void swfoutput_destroy(struct swfoutput* obj) 
480 {
481     endpage(obj);
482
483     T1_CloseLib();
484     if(!filename) 
485         return;
486     if(filename)
487      fi = open(filename, O_CREAT|O_TRUNC|O_WRONLY, 0777);
488     else
489      fi = 1; // stdout
490     
491     if(fi<=0) {
492      logf("<fatal> Could not create \"%s\". ", filename);
493      exit(1);
494     }
495  
496     tag = InsertTag(tag,ST_END);
497
498     if FAILED(WriteSWF(fi,&swf)) 
499      logf("<error> WriteSWF() failed.\n");
500     if(filename)
501      close(fi);
502     printf("SWF written\n");
503 }
504
505 void swfoutput_setdrawmode(swfoutput* obj, int mode)
506 {
507     if(mode == DRAWMODE_FILL)
508      fill = 1;
509     else if(mode == DRAWMODE_EOFILL)
510      fill = 1;
511     else if(mode == DRAWMODE_STROKE)
512      fill = 0;
513     else if(mode == DRAWMODE_CLIP)
514      fill = 1;
515     else if(mode == DRAWMODE_EOCLIP)
516      fill = 1;
517 }
518
519 void swfoutput_setfillcolor(swfoutput* obj, u8 r, u8 g, u8 b, u8 a)
520 {
521     if(obj->fillrgb.r == r &&
522        obj->fillrgb.g == g &&
523        obj->fillrgb.b == b &&
524        obj->fillrgb.a == a) return;
525
526     if(shape>=0)
527      endshape();
528     obj->fillrgb.r = r;
529     obj->fillrgb.g = g;
530     obj->fillrgb.b = b;
531     obj->fillrgb.a = a;
532 }
533
534 void swfoutput_setstrokecolor(swfoutput* obj, u8 r, u8 g, u8 b, u8 a)
535 {
536     if(obj->strokergb.r == r &&
537        obj->strokergb.g == g &&
538        obj->strokergb.b == b &&
539        obj->strokergb.a == a) return;
540
541     if(shape>=0)
542      endshape();
543     obj->strokergb.r = r;
544     obj->strokergb.g = g;
545     obj->strokergb.b = b;
546     obj->strokergb.a = a;
547 }
548
549 void swfoutput_setlinewidth(struct swfoutput*obj, double linewidth)
550 {
551     if(obj->linewidth == (u16)(linewidth*20))
552         return;
553
554     if(shape>=0)
555      endshape();
556     obj->linewidth = (u16)(linewidth*20);
557 }
558
559
560 void swfoutput_startclip(swfoutput*obj, T1_OUTLINE*outline, struct swfmatrix*m)
561 {
562     if(shape>=0)
563      endshape();
564
565     if(clippos >= 127)
566     {
567         logf("<warning> Too many clip levels.");
568         clippos --;
569     } 
570
571     startshape(obj);
572
573     swfoutput_setdrawmode(obj, DRAWMODE_CLIP);
574     swfoutput_drawpath(obj, outline, m);
575
576     ShapeSetEnd(tag);
577     tag = InsertTag(tag,ST_PLACEOBJECT2);
578     cliptags[clippos] = tag;
579     clipshapes[clippos] = shapeid;
580     clipdepths[clippos] = depth++;
581     clippos++;
582     shapeid = -1;
583 }
584
585 void swfoutput_endclip(swfoutput*obj)
586 {
587     if(shape>=0)
588      endshape();
589
590     if(!clippos) {
591         logf("<error> Invalid end of clipping region");
592         return;
593     }
594     clippos--;
595     PlaceObject(cliptags[clippos],clipshapes[clippos],clipdepths[clippos],NULL,NULL,NULL,depth++);
596 }
597
598 void swfoutput_drawimagefile(struct swfoutput*, char*filename, int sizex,int sizey, 
599         double x1,double y1,
600         double x2,double y2,
601         double x3,double y3,
602         double x4,double y4)
603 {
604     RGBA rgb;
605     SRECT r;
606     int lsid=0;
607     int fsid;
608     int bitid;
609     struct plotxy p1,p2,p3,p4;
610     int myshapeid;
611     double xmax=x1,ymax=y1,xmin=x1,ymin=y1;
612     if(x2>xmax) xmax=x2;
613     if(y2>ymax) ymax=y2;
614     if(x2<xmin) xmin=x2;
615     if(y2<ymin) ymin=y2;
616     if(x3>xmax) xmax=x3;
617     if(y3>ymax) ymax=y3;
618     if(x3<xmin) xmin=x3;
619     if(y3<ymin) ymin=y3;
620     if(x4>xmax) xmax=x4;
621     if(y4>ymax) ymax=y4;
622     if(x4<xmin) xmin=x4;
623     if(y4<ymin) ymin=y4;
624     p1.x=x1;
625     p1.y=y1;
626     p2.x=x2;
627     p2.y=y2;
628     p3.x=x3;
629     p3.y=y3;
630     p4.x=x4;
631     p4.y=y4;
632     
633     MATRIX m;
634     m.sx = (int)(65536*20*(x4-x1))/sizex;
635     m.r1 = -(int)(65536*20*(y4-y1))/sizex;
636     m.r0 = (int)(65536*20*(x1-x2))/sizey;
637     m.sy = -(int)(65536*20*(y1-y2))/sizey;
638
639     m.tx = (int)(x1*20);
640     m.ty = (int)(y1*20);
641     
642     if(shape>=0)
643      endshape();
644
645     bitid = ++shapecount;
646   
647     /* bitmap */
648     tag = InsertTag(tag,ST_DEFINEBITSJPEG2);
649     SetU16(tag, bitid);
650     SetJPEGBits(tag, filename, 85);
651
652     /* shape */
653     myshapeid = ++shapecount;
654     tag = InsertTag(tag,ST_DEFINESHAPE);
655     NewShape(&shape);
656     //lsid = ShapeAddLineStyle(shape,obj->linewidth,&obj->strokergb);
657     //fsid = ShapeAddSolidFillStyle(shape,&obj->fillrgb);
658     fsid = ShapeAddBitmapFillStyle(shape,&m,bitid,0);
659     SetU16(tag, myshapeid);
660     r.xmin = (int)(xmin*20);
661     r.ymin = (int)(ymin*20);
662     r.xmax = (int)(xmax*20);
663     r.ymax = (int)(ymax*20);
664     SetRect(tag,&r);
665     SetShapeStyles(tag,shape);
666     ShapeCountBits(shape,NULL,NULL);
667     SetShapeBits(tag,shape);
668     ShapeSetAll(tag,shape,/*x*/0,/*y*/0,lsid,fsid,0);
669     swflastx = swflasty = 0;
670     moveto(p1);
671     lineto(p2);
672     lineto(p3);
673     lineto(p4);
674     lineto(p1);
675     /*
676     ShapeMoveTo  (tag, shape, (int)(x1*20),(int)(y1*20));
677     ShapeSetLine (tag, shape, (int)(x1*20);
678     ShapeSetLine (tag, shape, x*20,0);
679     ShapeSetLine (tag, shape, 0,-y*20);
680     ShapeSetLine (tag, shape, -x*20,0);*/
681     ShapeSetEnd(tag);
682
683     /* instance */
684     tag = InsertTag(tag,ST_PLACEOBJECT2);
685     ObjectPlace(tag,myshapeid,/*depth*/depth++,NULL,NULL,NULL);
686 }
687