5 Extension module for the rfxswf library.
6 Part of the swftools package.
8 Copyright (c) 2001 Rainer Böhme <rfxswf@reflex-studio.de>
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
24 #define SF_MOVETO 0x01
28 #define SF_NEWSTYLE 0x10
30 void swf_ShapeFree(SHAPE * s)
34 if (s->linestyle.data) rfx_free(s->linestyle.data);
35 s->linestyle.data = NULL;
37 if (s->fillstyle.data) rfx_free(s->fillstyle.data);
38 s->fillstyle.data = NULL;
40 if (s->data) rfx_free(s->data);
45 int swf_ShapeNew(SHAPE * * s)
49 sh = (SHAPE *)rfx_calloc(sizeof(SHAPE));
54 int swf_GetSimpleShape(TAG * t,SHAPE * * s) // without Linestyle/Fillstyle Record
60 if (FAILED(swf_ShapeNew(s))) return -1;
64 sh->bits.fill = (U16)swf_GetBits(t,4);
65 sh->bits.line = (U16)swf_GetBits(t,4);
66 bitl = 0; end = 0; pos = swf_GetTagPos(t);
69 { int edge = swf_GetBits(t,1); bitl+=1;
72 if (swf_GetBits(t,1)) // Line
73 { U16 nbits = swf_GetBits(t,4)+2;
76 if (swf_GetBits(t,1)) // x/y Line
77 { swf_GetBits(t,nbits);
82 { swf_GetBits(t,nbits+1);
87 { U16 nbits = swf_GetBits(t,4)+2;
99 { U16 flags = swf_GetBits(t,5); bitl+=5;
103 { U16 nbits = swf_GetBits(t,5); bitl+=5;
104 swf_GetBits(t,nbits);
105 swf_GetBits(t,nbits);
110 { swf_GetBits(t,sh->bits.fill);
115 { swf_GetBits(t,sh->bits.fill);
120 { swf_GetBits(t,sh->bits.line);
124 if (flags&SF_NEWSTYLE)
125 { fprintf(stderr,"RFXSWF: Can't process extended styles in shape.\n");
131 swf_SetTagPos(t,pos);
134 if (sh->data) rfx_free(sh->data);
135 sh->data = (U8*)rfx_alloc(len);
139 swf_GetBlock(t,sh->data,len);
146 int swf_SetSimpleShape(TAG * t,SHAPE * s) // without Linestyle/Fillstyle Record
153 { swf_ResetWriteBits(t);
155 swf_SetBits(t,s->bits.fill,4);
156 swf_SetBits(t,s->bits.line,4);
157 swf_SetBlock(t,s->data,l);
159 swf_ResetWriteBits(t);
164 int swf_SetFillStyle(TAG * t,FILLSTYLE * f)
165 { if ((!t)||(!f)) return -1;
166 swf_SetU8(t,f->type);
170 if (swf_GetTagID(t)!=ST_DEFINESHAPE3) swf_SetRGB(t,&f->color);
171 else swf_SetRGBA(t,&f->color);
176 swf_SetU16(t,f->id_bitmap);
177 swf_SetMatrix(t,&f->m);
181 swf_SetMatrix(t,&f->m);
182 swf_SetGradient(t,&f->gradient,/*alpha?*/t->id==ST_DEFINESHAPE3?1:0);
189 int swf_SetLineStyle(TAG * t,LINESTYLE * l)
190 { if ((!l)||(!t)) return -1;
191 swf_SetU16(t,l->width);
193 if (swf_GetTagID(t)!=ST_DEFINESHAPE3) swf_SetRGB(t,&l->color);
194 else swf_SetRGBA(t,&l->color);
199 int swf_SetShapeStyleCount(TAG * t,U16 n)
211 int swf_SetShapeStyles(TAG * t,SHAPE * s)
216 l += swf_SetShapeStyleCount(t,s->fillstyle.n);
218 for (i=0;i<s->fillstyle.n;i++)
219 l+=swf_SetFillStyle(t,&s->fillstyle.data[i]);
221 l += swf_SetShapeStyleCount(t,s->linestyle.n);
223 for (i=0;i<s->linestyle.n;i++)
224 l+=swf_SetLineStyle(t,&s->linestyle.data[i]);
229 int swf_ShapeCountBits(SHAPE * s,U8 * fbits,U8 * lbits)
231 s->bits.fill = swf_CountUBits(s->fillstyle.n, 0);
232 s->bits.line = swf_CountUBits(s->linestyle.n, 0);
233 if (fbits) fbits[0] = s->bits.fill;
234 if (lbits) lbits[0] = s->bits.line;
238 int swf_SetShapeBits(TAG * t,SHAPE * s)
239 { if ((!t)||(!s)) return -1;
240 swf_ResetWriteBits(t);
241 swf_SetBits(t,s->bits.fill,4);
242 swf_SetBits(t,s->bits.line,4);
246 int swf_SetShapeHeader(TAG * t,SHAPE * s)
248 res = swf_SetShapeStyles(t,s);
249 if (res>=0) res = swf_ShapeCountBits(s,NULL,NULL);
250 if (res>=0) res = swf_SetShapeBits(t,s);
254 int swf_ShapeAddFillStyle(SHAPE * s,U8 type,MATRIX * m,RGBA * color,U16 id_bitmap, GRADIENT*gradient)
265 def_c.r = def_c.g = def_c.b = 0;
269 swf_GetMatrix(NULL,m);
274 swf_GetGradient(NULL, gradient, 1);
279 if (s->fillstyle.data)
280 { FILLSTYLE * new = (FILLSTYLE *)rfx_realloc(s->fillstyle.data,(s->fillstyle.n+1)*sizeof(FILLSTYLE));
282 s->fillstyle.data = new;
285 { s->fillstyle.data = (FILLSTYLE *)rfx_alloc(sizeof(FILLSTYLE));
287 if (!s->fillstyle.data) return -1;
292 s->fillstyle.data[s->fillstyle.n].type = type;
293 s->fillstyle.data[s->fillstyle.n].id_bitmap = id_bitmap;
294 memcpy(&s->fillstyle.data[s->fillstyle.n].m,m,sizeof(MATRIX));
295 memcpy(&s->fillstyle.data[s->fillstyle.n].color,color,sizeof(RGBA));
296 memcpy(&s->fillstyle.data[s->fillstyle.n].gradient,gradient,sizeof(GRADIENT));
298 return (++s->fillstyle.n);
300 int swf_ShapeAddFillStyle2(SHAPE * s,FILLSTYLE*fs)
302 return swf_ShapeAddFillStyle(s, fs->type, &fs->m, &fs->color, fs->id_bitmap, &fs->gradient);
305 int swf_ShapeAddSolidFillStyle(SHAPE * s,RGBA * color)
306 { return swf_ShapeAddFillStyle(s,FILL_SOLID,NULL,color,0,0);
309 int swf_ShapeAddBitmapFillStyle(SHAPE * s,MATRIX * m,U16 id_bitmap,int clip)
310 { return swf_ShapeAddFillStyle(s,clip?FILL_CLIPPED:FILL_TILED,m,NULL,id_bitmap,0);
313 int swf_ShapeAddGradientFillStyle(SHAPE * s,MATRIX * m,GRADIENT* gradient,int radial)
314 { return swf_ShapeAddFillStyle(s,radial?FILL_RADIAL:FILL_LINEAR,m,NULL,0,gradient);
317 int swf_ShapeAddLineStyle(SHAPE * s,U16 width,RGBA * color)
323 def.r = def.g = def.b = 0;
325 if (s->linestyle.data)
326 { LINESTYLE * new = (LINESTYLE *)rfx_realloc(s->linestyle.data,(s->linestyle.n+1)*sizeof(LINESTYLE));
328 s->linestyle.data = new;
331 { s->linestyle.data = (LINESTYLE *)rfx_alloc(sizeof(LINESTYLE));
333 if (!s->linestyle.data) return -1;
336 s->linestyle.data[s->linestyle.n].width = width;
337 memcpy(&s->linestyle.data[s->linestyle.n].color,color,sizeof(RGBA));
339 return (++s->linestyle.n);
342 int swf_ShapeSetMove(TAG * t,SHAPE * s,S32 x,S32 y)
346 swf_SetBits(t,SF_MOVETO,5);
348 b = swf_CountBits(x,0);
349 b = swf_CountBits(y,b);
358 int swf_ShapeSetStyle(TAG * t,SHAPE * s,int line,int fill0,int fill1)
359 { if ((!t)||(!s)) return -1;
362 swf_SetBits(t,(line?SF_LINE:0)|(fill0?SF_FILL0:0)|(fill1?SF_FILL1:0),5);
364 if (fill0) swf_SetBits(t,fill0,s->bits.fill);
365 if (fill1) swf_SetBits(t,fill1,s->bits.fill);
366 if (line) swf_SetBits(t,line ,s->bits.line);
371 /* TODO: sometimes we want to set fillstyle 0, as that's the empty fill
372 used for line drawings. At the moment, we can't, as 0 fill be considered
373 nonexistent and therefore not set.
374 these defines are a workaround (they also reduce the maximal number of
375 fill styles to 32768)
377 #define UNDEFINED_COORD 0x7fffffff
379 int swf_ShapeSetAll(TAG * t,SHAPE * s,S32 x,S32 y,int line,int fill0,int fill1)
382 if ((!t)||(!s)) return -1;
384 if(x!=UNDEFINED_COORD || y!=UNDEFINED_COORD)
388 swf_SetBits(t,(hasmove?SF_MOVETO:0)|(line?SF_LINE:0)|(fill0?SF_FILL0:0)|(fill1?SF_FILL1:0),5);
391 b = swf_CountBits(x,0);
392 b = swf_CountBits(y,b);
398 if (fill0) swf_SetBits(t,fill0,s->bits.fill);
399 if (fill1) swf_SetBits(t,fill1,s->bits.fill);
400 if (line) swf_SetBits(t,line ,s->bits.line);
405 int swf_ShapeSetEnd(TAG * t)
408 swf_ResetWriteBits(t);
412 int swf_ShapeSetLine(TAG * t,SHAPE * s,S32 x,S32 y)
417 b = swf_CountBits(x,2);
418 b = swf_CountBits(y,b);
422 /* do not split into more than 64 segments. If the line is *that* long, something's broken */
423 fprintf(stderr, "Warning: Line to %.2f,%.2f is too long\n", (double)x,(double)y);
428 if(x>=0) { x1 = x/2;x2 = (x+1)/2;}
429 else { x1 = x/2;x2 = (x-1)/2;}
430 if(y>=0) { y1 = y/2;y2 = (y+1)/2;}
431 else { y1 = y/2;y2 = (y-1)/2;}
432 swf_ShapeSetLine(t, s, x1,y1);
433 swf_ShapeSetLine(t, s, x2,y2);
438 if(x!=0 && y!=0) { //(!s)||((x!=0)&&(y!=0)))
439 swf_SetBits(t,3,2); // Straight Edge
440 swf_SetBits(t, b-2, 4); //Number of Bits in x/y
441 swf_SetBits(t,1,1); // Diagonal
445 swf_SetBits(t,3,2); // Straight Edge
446 swf_SetBits(t, b-2, 4); //Number of Bits in y
447 swf_SetBits(t,1,2); // Vertical
450 swf_SetBits(t,3,2); // Straight Edge
451 swf_SetBits(t, b-2, 4); //Number of Bits in x
452 swf_SetBits(t,0,2); // Horizontal
458 int swf_ShapeSetCurve(TAG * t,SHAPE * s,S32 x,S32 y,S32 ax,S32 ay)
463 b = swf_CountBits(ax,2);
464 b = swf_CountBits(ay,b);
465 b = swf_CountBits(x,b);
466 b = swf_CountBits(y,b);
469 fprintf(stderr, "Bit overflow in swf_ShapeSetCurve- %d (%d,%d,%d,%d)\n", b, ax,ay,x,y);
474 swf_SetBits(t,b-2,4);
482 int swf_ShapeSetCircle(TAG * t,SHAPE * s,S32 x,S32 y,S32 rx,S32 ry)
483 { double C1 = 0.2930;
485 double begin = 0.7070;
489 swf_ShapeSetMove(t,s,x+begin*rx,y+begin*ry);
490 swf_ShapeSetCurve(t,s, -C1*rx, C1*ry, -C2*rx, 0);
491 swf_ShapeSetCurve(t,s, -C2*rx, 0, -C1*rx, -C1*ry);
492 swf_ShapeSetCurve(t,s, -C1*rx, -C1*ry, 0, -C2*ry);
493 swf_ShapeSetCurve(t,s, 0, -C2*ry, C1*rx, -C1*ry);
494 swf_ShapeSetCurve(t,s, C1*rx, -C1*ry, C2*rx, 0);
495 swf_ShapeSetCurve(t,s, C2*rx, 0, C1*rx, C1*ry);
496 swf_ShapeSetCurve(t,s, C1*rx, C1*ry, 0, C2*ry);
497 swf_ShapeSetCurve(t,s, 0, C2*ry, -C1*rx, C1*ry);
502 void dummycallback1(TAG*tag, int x, void*y)
507 void enumerateUsedIDs_styles(TAG * tag, void (*callback)(TAG*, int, void*), void*callback_data, int num, int morph);
509 static int parseFillStyleArray(TAG*tag, SHAPE2*shape)
514 int fillstylestart = shape->numfillstyles;
515 int linestylestart = shape->numlinestyles;
517 if(tag->id == ST_DEFINESHAPE)
519 else if(tag->id == ST_DEFINESHAPE2)
521 else if(tag->id == ST_DEFINESHAPE3)
523 else if(tag->id == ST_DEFINESHAPE4)
526 count = swf_GetU8(tag);
527 if(count == 0xff && num>1) // defineshape2,3 only
528 count = swf_GetU16(tag);
530 shape->numfillstyles += count;
531 if(shape->numfillstyles) {
532 shape->fillstyles = rfx_realloc(shape->fillstyles, sizeof(FILLSTYLE)*shape->numfillstyles);
534 for(t=fillstylestart;t<shape->numfillstyles;t++)
538 FILLSTYLE*dest = &shape->fillstyles[t];
539 type = swf_GetU8(tag); //type
540 shape->fillstyles[t].type = type;
544 swf_GetRGBA(tag, &dest->color);
546 swf_GetRGB(tag, &dest->color);
548 else if(type == 0x10 || type == 0x11 || type == 0x12 || type == 0x13)
550 /* linear/radial gradient fill */
551 swf_ResetReadBits(tag);
552 swf_GetMatrix(tag, &dest->m);
553 swf_ResetReadBits(tag);
554 swf_GetGradient(tag, &dest->gradient, num>=3?1:0);
558 else if(type == 0x40 || type == 0x41 || type == 0x42 || type == 0x43)
561 swf_ResetReadBits(tag);
562 dest->id_bitmap = swf_GetU16(tag); //id
563 swf_ResetReadBits(tag); //?
564 swf_GetMatrix(tag, &dest->m);
567 fprintf(stderr, "rfxswf:swftools.c Unknown fillstyle:0x%02x\n",type);
572 swf_ResetReadBits(tag);
573 count = swf_GetU8(tag); // line style array
575 count = swf_GetU16(tag);
577 shape->numlinestyles += count;
579 shape->linestyles = rfx_realloc(shape->linestyles, sizeof(LINESTYLE)*shape->numlinestyles);
580 /* TODO: should we start with 1 and insert a correct definition of the
581 "built in" linestyle 0? */
582 for(t=linestylestart;t<shape->numlinestyles;t++)
584 shape->linestyles[t].width = swf_GetU16(tag);
587 U16 flags = swf_GetU16(tag);
589 swf_GetU16(tag); // miter limit
591 fprintf(stderr, "Filled strokes parsing not yet supported\n");
597 swf_GetRGBA(tag, &shape->linestyles[t].color);
599 swf_GetRGB(tag, &shape->linestyles[t].color);
606 /* todo: merge this with swf_GetSimpleShape */
607 static SHAPELINE* swf_ParseShapeData(U8*data, int bits, int fillbits, int linebits, int version, SHAPE2*shape2)
610 SHAPELINE*lines = &_lines;
621 memset(tag, 0, sizeof(TAG));
623 tag->len = tag->memsize = (bits+7)/8;
625 tag->id = version==1?ST_DEFINESHAPE:(version==2?ST_DEFINESHAPE2:ST_DEFINESHAPE3);
630 flags = swf_GetBits(tag, 1);
631 if(!flags) { //style change
632 flags = swf_GetBits(tag, 5);
636 int n = swf_GetBits(tag, 5);
637 x = swf_GetSBits(tag, n); //x
638 y = swf_GetSBits(tag, n); //y
641 fill0 = swf_GetBits(tag, fillbits) + fillstyleadd;
643 fill1 = swf_GetBits(tag, fillbits) + fillstyleadd;
645 line = swf_GetBits(tag, linebits) + linestyleadd;
648 fprintf(stderr, "rfxswf: Error: Additional fillstyles not supported\n");fflush(stderr);
649 enumerateUsedIDs_styles(tag, dummycallback1, 0, version, 0);
651 linestyleadd = shape2->numlinestyles;
652 fillstyleadd = shape2->numfillstyles;
653 if(!parseFillStyleArray(tag, shape2))
656 fillbits = swf_GetBits(tag, 4);
657 linebits = swf_GetBits(tag, 4);
660 lines->next = (SHAPELINE*)rfx_alloc(sizeof(SHAPELINE));
662 lines->type = moveTo;
665 lines->sx = lines->sy = 0;
666 lines->fillstyle0 = fill0;
667 lines->fillstyle1 = fill1;
668 lines->linestyle = line;
672 flags = swf_GetBits(tag, 1);
673 if(flags) { //straight edge
674 int n = swf_GetBits(tag, 4) + 2;
675 if(swf_GetBits(tag, 1)) { //line flag
676 x += swf_GetSBits(tag, n); //delta x
677 y += swf_GetSBits(tag, n); //delta y
679 int v=swf_GetBits(tag, 1);
681 d = swf_GetSBits(tag, n); //vert/horz
685 lines->next = (SHAPELINE*)rfx_alloc(sizeof(SHAPELINE));
687 lines->type = lineTo;
690 lines->sx = lines->sy = 0;
691 lines->fillstyle0 = fill0;
692 lines->fillstyle1 = fill1;
693 lines->linestyle = line;
695 } else { //curved edge
696 int n = swf_GetBits(tag, 4) + 2;
698 x += swf_GetSBits(tag, n);
699 y += swf_GetSBits(tag, n);
702 x += swf_GetSBits(tag, n);
703 y += swf_GetSBits(tag, n);
705 lines->next = (SHAPELINE*)rfx_alloc(sizeof(SHAPELINE));
707 lines->type = splineTo;
712 lines->fillstyle0 = fill0;
713 lines->fillstyle1 = fill1;
714 lines->linestyle = line;
722 SRECT swf_GetShapeBoundingBox(SHAPE2*shape2)
725 SHAPELINE*l = shape2->lines;
728 r.xmin = r.ymin = SCOORD_MAX;
729 r.xmax = r.ymax = SCOORD_MIN;
734 t1 = shape2->linestyles[l->linestyle - 1].width*3/2;
739 if(l->type == lineTo || l->type == splineTo)
742 if(lastx - t1 < r.xmin) r.xmin = lastx - t1;
743 if(lasty - t1 < r.ymin) r.ymin = lasty - t1;
744 if(lastx + t1 > r.xmax) r.xmax = lastx + t1;
745 if(lasty + t1 > r.ymax) r.ymax = lasty + t1;
746 if(l->x - t1 < r.xmin) r.xmin = l->x - t1;
747 if(l->y - t1 < r.ymin) r.ymin = l->y - t1;
748 if(l->x + t1 > r.xmax) r.xmax = l->x + t1;
749 if(l->y + t1 > r.ymax) r.ymax = l->y + t1;
750 if(l->type == splineTo) {
751 if(l->sx - t1 < r.xmin) r.xmin = l->sx - t1;
752 if(l->sy - t1 < r.ymin) r.ymin = l->sy - t1;
753 if(l->sx + t1 > r.xmax) r.xmax = l->sx + t1;
754 if(l->sy + t1 > r.ymax) r.ymax = l->sy + t1;
761 if(!valid) memset(&r, 0, sizeof(SRECT));
765 void swf_Shape2Free(SHAPE2 * s)
767 SHAPELINE*line = s->lines;
770 SHAPELINE*next = line->next;
777 rfx_free(s->linestyles);
781 rfx_free(s->fillstyles);
790 SHAPE2* swf_Shape2Clone(SHAPE2 * s)
792 SHAPELINE*line = s->lines;
794 SHAPE2*s2 = rfx_alloc(sizeof(SHAPE2));
795 memcpy(s2,s,sizeof(SHAPE2));
796 s2->linestyles = rfx_alloc(sizeof(LINESTYLE)*s->numlinestyles);
797 memcpy(s2->linestyles, s->linestyles, sizeof(LINESTYLE)*s->numlinestyles);
798 s2->fillstyles = rfx_alloc(sizeof(FILLSTYLE)*s->numfillstyles);
799 memcpy(s2->fillstyles, s->fillstyles, sizeof(FILLSTYLE)*s->numfillstyles);
802 SHAPELINE*line2 = rfx_alloc(sizeof(SHAPELINE));
803 memcpy(line2, line, sizeof(SHAPELINE));
813 s2->bbox = rfx_alloc(sizeof(SRECT));
814 memcpy(s2->bbox, s->bbox, sizeof(SRECT));
819 SHAPE2* swf_ShapeToShape2(SHAPE*shape) {
821 SHAPE2*shape2 = (SHAPE2*)rfx_calloc(sizeof(SHAPE2));
823 shape2->numlinestyles = shape->linestyle.n;
824 if(shape2->numlinestyles) {
825 shape2->linestyles = (LINESTYLE*)rfx_alloc(sizeof(LINESTYLE)*shape->linestyle.n);
826 memcpy(shape2->linestyles, shape->linestyle.data, sizeof(LINESTYLE)*shape->linestyle.n);
829 shape2->numfillstyles = shape->fillstyle.n;
830 if(shape2->numfillstyles) {
831 shape2->fillstyles = (FILLSTYLE*)rfx_alloc(sizeof(FILLSTYLE)*shape->fillstyle.n);
832 memcpy(shape2->fillstyles, shape->fillstyle.data, sizeof(FILLSTYLE)*shape->fillstyle.n);
835 shape2->lines = swf_ParseShapeData(shape->data, shape->bitlen, shape->bits.fill, shape->bits.line, 1, 0);
840 void swf_ShapeSetBitmapRect(TAG*tag, U16 gfxid, int width, int height)
848 swf_ShapeNew(&shape);
849 rgb.b = rgb.g = rgb.r = 0xff;
851 ls = swf_ShapeAddLineStyle(shape,20,&rgb);
852 swf_GetMatrix(NULL,&m);
856 fs = swf_ShapeAddBitmapFillStyle(shape,&m,gfxid,0);
863 swf_SetShapeStyles(tag,shape);
864 swf_ShapeCountBits(shape,NULL,NULL);
865 swf_SetShapeBits(tag,shape);
867 swf_ShapeSetAll(tag,shape,0,0,lines?ls:0,fs,0);
869 swf_ShapeSetLine(tag,shape,width*20,0);
870 swf_ShapeSetLine(tag,shape,0,height*20);
871 swf_ShapeSetLine(tag,shape,-width*20,0);
872 swf_ShapeSetLine(tag,shape,0,-height*20);
873 swf_ShapeSetEnd(tag);
874 swf_ShapeFree(shape);
877 void swf_Shape2ToShape(SHAPE2*shape2, SHAPE*shape)
879 TAG*tag = swf_InsertTag(0,0);
881 int newx=0,newy=0,lastx=0,lasty=0,oldls=0,oldfs0=0,oldfs1=0;
883 memset(shape, 0, sizeof(SHAPE));
885 shape->linestyle.n = shape2->numlinestyles;
886 shape->linestyle.data = (LINESTYLE*)rfx_alloc(sizeof(LINESTYLE)*shape->linestyle.n);
887 memcpy(shape->linestyle.data, shape2->linestyles, sizeof(LINESTYLE)*shape->linestyle.n);
889 shape->fillstyle.n = shape2->numfillstyles;
890 shape->fillstyle.data = (FILLSTYLE*)rfx_alloc(sizeof(FILLSTYLE)*shape->fillstyle.n);
891 memcpy(shape->fillstyle.data, shape2->fillstyles, sizeof(FILLSTYLE)*shape->fillstyle.n);
893 swf_ShapeCountBits(shape,NULL,NULL);
898 int ls=0,fs0=0,fs1=0;
900 if(l->type != moveTo) {
901 if(oldls != l->linestyle) {oldls = ls = l->linestyle;if(!ls) ls=0x8000;}
902 if(oldfs0 != l->fillstyle0) {oldfs0 = fs0 = l->fillstyle0;if(!fs0) fs0=0x8000;}
903 if(oldfs1 != l->fillstyle1) {oldfs1 = fs1 = l->fillstyle1;if(!fs1) fs1=0x8000;}
905 if(ls || fs0 || fs1 || newx!=0x7fffffff || newy!=0x7fffffff) {
906 swf_ShapeSetAll(tag,shape,newx,newy,ls,fs0,fs1);
912 if(l->type == lineTo) {
913 swf_ShapeSetLine(tag,shape,l->x-lastx,l->y-lasty);
914 } else if(l->type == splineTo) {
915 swf_ShapeSetCurve(tag,shape, l->sx-lastx,l->sy-lasty, l->x-l->sx,l->y-l->sy);
917 if(l->type == moveTo) {
926 swf_ShapeSetEnd(tag);
927 shape->data = tag->data;
928 shape->bitlen = tag->len*8;
932 void swf_SetShape2(TAG*tag, SHAPE2*shape2)
935 swf_Shape2ToShape(shape2, &shape);
937 swf_SetRect(tag,shape2->bbox);
938 swf_SetShapeStyles(tag, &shape);
939 //swf_ShapeCountBits(&shape,NULL,NULL); // done in swf_Shape2ToShape()
940 swf_SetShapeBits(tag,&shape);
942 swf_SetBlock(tag, shape.data, (shape.bitlen+7)/8);
945 void swf_ParseDefineShape(TAG*tag, SHAPE2*shape)
952 if(tag->id == ST_DEFINESHAPE)
954 else if(tag->id == ST_DEFINESHAPE2)
956 else if(tag->id == ST_DEFINESHAPE3)
958 else if(tag->id == ST_DEFINESHAPE4)
961 fprintf(stderr, "parseDefineShape must be called with a shape tag");
963 swf_SetTagPos(tag, 0);
965 id = swf_GetU16(tag); //id
966 memset(shape, 0, sizeof(SHAPE2));
967 shape->bbox = rfx_alloc(sizeof(SRECT));
968 swf_GetRect(tag, shape->bbox);
971 swf_ResetReadBits(tag);
972 swf_GetRect(tag, &r2); // edge bounds
973 U8 flags = swf_GetU8(tag); // flags, &1: contains scaling stroke, &2: contains non-scaling stroke
976 if(!parseFillStyleArray(tag, shape)) {
980 swf_ResetReadBits(tag);
981 fill = (U16)swf_GetBits(tag,4);
982 line = (U16)swf_GetBits(tag,4);
984 shape->lines = swf_ParseShapeData(&tag->data[tag->pos], (tag->len - tag->pos)*8, fill, line,
985 tag->id == ST_DEFINESHAPE?1:(tag->id==ST_DEFINESHAPE2?2:3), shape);
990 static void free_lines(SHAPELINE* lines)
993 free_lines(lines->next);
997 void swf_RecodeShapeData(U8*data, int bitlen, int in_bits_fill, int in_bits_line,
998 U8**destdata, U32*destbitlen, int out_bits_fill, int out_bits_line)
1003 memset(&s2, 0, sizeof(s2));
1004 s2.lines = swf_ParseShapeData(data, bitlen, in_bits_fill, in_bits_line, 1, 0);
1005 s2.numfillstyles = out_bits_fill?1<<(out_bits_fill-1):0;
1006 s2.numlinestyles = out_bits_line?1<<(out_bits_line-1):0;
1007 s2.fillstyles = rfx_calloc(sizeof(FILLSTYLE)*s2.numfillstyles);
1008 s2.linestyles = rfx_calloc(sizeof(LINESTYLE)*s2.numlinestyles);
1012 if(line->fillstyle0 > s2.numfillstyles) line->fillstyle0 = 0;
1013 if(line->fillstyle1 > s2.numfillstyles) line->fillstyle1 = 0;
1014 if(line->linestyle > s2.numlinestyles) line->linestyle = 0;
1018 swf_Shape2ToShape(&s2,&s);
1020 free_lines(s2.lines);
1021 free(s2.fillstyles);
1022 free(s2.linestyles);
1023 free(s.fillstyle.data);
1024 free(s.linestyle.data);
1026 *destbitlen = s.bitlen;