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 16 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 void 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)
524 count = swf_GetU8(tag);
525 if(count == 0xff && num>1) // defineshape2,3 only
526 count = swf_GetU16(tag);
528 shape->numfillstyles += count;
529 if(shape->numfillstyles) {
530 shape->fillstyles = rfx_realloc(shape->fillstyles, sizeof(FILLSTYLE)*shape->numfillstyles);
532 for(t=fillstylestart;t<shape->numfillstyles;t++)
536 FILLSTYLE*dest = &shape->fillstyles[t];
537 type = swf_GetU8(tag); //type
538 shape->fillstyles[t].type = type;
542 swf_GetRGBA(tag, &dest->color);
544 swf_GetRGB(tag, &dest->color);
546 else if(type == 0x10 || type == 0x12)
548 /* linear/radial gradient fill */
549 swf_ResetReadBits(tag);
550 swf_GetMatrix(tag, &dest->m);
551 swf_ResetReadBits(tag);
552 swf_GetGradient(tag, &dest->gradient, num>=3?1:0);
554 else if(type == 0x40 || type == 0x41)
557 swf_ResetReadBits(tag);
558 dest->id_bitmap = swf_GetU16(tag); //id
559 swf_ResetReadBits(tag); //?
560 swf_GetMatrix(tag, &dest->m);
563 fprintf(stderr, "rfxswf:swftools.c Unknown fillstyle:0x%02x\n",type);
568 swf_ResetReadBits(tag);
569 count = swf_GetU8(tag); // line style array
571 count = swf_GetU16(tag);
573 shape->numlinestyles += count;
575 shape->linestyles = rfx_realloc(shape->linestyles, sizeof(LINESTYLE)*shape->numlinestyles);
576 /* TODO: should we start with 1 and insert a correct definition of the
577 "built in" linestyle 0? */
578 for(t=linestylestart;t<shape->numlinestyles;t++)
580 shape->linestyles[t].width = swf_GetU16(tag);
582 swf_GetRGBA(tag, &shape->linestyles[t].color);
584 swf_GetRGB(tag, &shape->linestyles[t].color);
591 /* todo: merge this with swf_GetSimpleShape */
592 static SHAPELINE* swf_ParseShapeData(U8*data, int bits, int fillbits, int linebits, int version, SHAPE2*shape2)
595 SHAPELINE*lines = &_lines;
606 memset(tag, 0, sizeof(TAG));
608 tag->len = tag->memsize = (bits+7)/8;
610 tag->id = version==1?ST_DEFINESHAPE:(version==2?ST_DEFINESHAPE2:ST_DEFINESHAPE3);
615 flags = swf_GetBits(tag, 1);
616 if(!flags) { //style change
617 flags = swf_GetBits(tag, 5);
621 int n = swf_GetBits(tag, 5);
622 x = swf_GetSBits(tag, n); //x
623 y = swf_GetSBits(tag, n); //y
626 fill0 = swf_GetBits(tag, fillbits) + fillstyleadd;
628 fill1 = swf_GetBits(tag, fillbits) + fillstyleadd;
630 line = swf_GetBits(tag, linebits) + linestyleadd;
633 fprintf(stderr, "rfxswf: Error: Additional fillstyles not supported\n");fflush(stderr);
634 enumerateUsedIDs_styles(tag, dummycallback1, 0, version, 0);
636 linestyleadd = shape2->numlinestyles;
637 fillstyleadd = shape2->numfillstyles;
638 parseFillStyleArray(tag, shape2);
640 fillbits = swf_GetBits(tag, 4);
641 linebits = swf_GetBits(tag, 4);
644 lines->next = (SHAPELINE*)rfx_alloc(sizeof(SHAPELINE));
646 lines->type = moveTo;
649 lines->sx = lines->sy = 0;
650 lines->fillstyle0 = fill0;
651 lines->fillstyle1 = fill1;
652 lines->linestyle = line;
656 flags = swf_GetBits(tag, 1);
657 if(flags) { //straight edge
658 int n = swf_GetBits(tag, 4) + 2;
659 if(swf_GetBits(tag, 1)) { //line flag
660 x += swf_GetSBits(tag, n); //delta x
661 y += swf_GetSBits(tag, n); //delta y
663 int v=swf_GetBits(tag, 1);
665 d = swf_GetSBits(tag, n); //vert/horz
669 lines->next = (SHAPELINE*)rfx_alloc(sizeof(SHAPELINE));
671 lines->type = lineTo;
674 lines->sx = lines->sy = 0;
675 lines->fillstyle0 = fill0;
676 lines->fillstyle1 = fill1;
677 lines->linestyle = line;
679 } else { //curved edge
680 int n = swf_GetBits(tag, 4) + 2;
682 x += swf_GetSBits(tag, n);
683 y += swf_GetSBits(tag, n);
686 x += swf_GetSBits(tag, n);
687 y += swf_GetSBits(tag, n);
689 lines->next = (SHAPELINE*)rfx_alloc(sizeof(SHAPELINE));
691 lines->type = splineTo;
696 lines->fillstyle0 = fill0;
697 lines->fillstyle1 = fill1;
698 lines->linestyle = line;
706 SRECT swf_GetShapeBoundingBox(SHAPE2*shape2)
709 SHAPELINE*l = shape2->lines;
712 r.xmin = r.ymin = SCOORD_MAX;
713 r.xmax = r.ymax = SCOORD_MIN;
718 t1 = shape2->linestyles[l->linestyle - 1].width*3/2;
723 if(l->type == lineTo || l->type == splineTo)
726 if(lastx - t1 < r.xmin) r.xmin = lastx - t1;
727 if(lasty - t1 < r.ymin) r.ymin = lasty - t1;
728 if(lastx + t1 > r.xmax) r.xmax = lastx + t1;
729 if(lasty + t1 > r.ymax) r.ymax = lasty + t1;
730 if(l->x - t1 < r.xmin) r.xmin = l->x - t1;
731 if(l->y - t1 < r.ymin) r.ymin = l->y - t1;
732 if(l->x + t1 > r.xmax) r.xmax = l->x + t1;
733 if(l->y + t1 > r.ymax) r.ymax = l->y + t1;
734 if(l->type == splineTo) {
735 if(l->sx - t1 < r.xmin) r.xmin = l->sx - t1;
736 if(l->sy - t1 < r.ymin) r.ymin = l->sy - t1;
737 if(l->sx + t1 > r.xmax) r.xmax = l->sx + t1;
738 if(l->sy + t1 > r.ymax) r.ymax = l->sy + t1;
745 if(!valid) memset(&r, 0, sizeof(SRECT));
749 void swf_Shape2Free(SHAPE2 * s)
751 SHAPELINE*line = s->lines;
754 SHAPELINE*next = line->next;
761 rfx_free(s->linestyles);
765 rfx_free(s->fillstyles);
774 SHAPE2* swf_Shape2Clone(SHAPE2 * s)
776 SHAPELINE*line = s->lines;
778 SHAPE2*s2 = rfx_alloc(sizeof(SHAPE2));
779 memcpy(s2,s,sizeof(SHAPE2));
780 s2->linestyles = rfx_alloc(sizeof(LINESTYLE)*s->numlinestyles);
781 memcpy(s2->linestyles, s->linestyles, sizeof(LINESTYLE)*s->numlinestyles);
782 s2->fillstyles = rfx_alloc(sizeof(FILLSTYLE)*s->numfillstyles);
783 memcpy(s2->fillstyles, s->fillstyles, sizeof(FILLSTYLE)*s->numfillstyles);
786 SHAPELINE*line2 = rfx_alloc(sizeof(SHAPELINE));
787 memcpy(line2, line, sizeof(SHAPELINE));
797 s2->bbox = rfx_alloc(sizeof(SRECT));
798 memcpy(s2->bbox, s->bbox, sizeof(SRECT));
803 SHAPE2* swf_ShapeToShape2(SHAPE*shape) {
805 SHAPE2*shape2 = (SHAPE2*)rfx_calloc(sizeof(SHAPE2));
807 shape2->numlinestyles = shape->linestyle.n;
808 if(shape2->numlinestyles) {
809 shape2->linestyles = (LINESTYLE*)rfx_alloc(sizeof(LINESTYLE)*shape->linestyle.n);
810 memcpy(shape2->linestyles, shape->linestyle.data, sizeof(LINESTYLE)*shape->linestyle.n);
813 shape2->numfillstyles = shape->fillstyle.n;
814 if(shape2->numfillstyles) {
815 shape2->fillstyles = (FILLSTYLE*)rfx_alloc(sizeof(FILLSTYLE)*shape->fillstyle.n);
816 memcpy(shape2->fillstyles, shape->fillstyle.data, sizeof(FILLSTYLE)*shape->fillstyle.n);
819 shape2->lines = swf_ParseShapeData(shape->data, shape->bitlen, shape->bits.fill, shape->bits.line, 1, 0);
824 void swf_ShapeSetBitmapRect(TAG*tag, U16 gfxid, int width, int height)
832 swf_ShapeNew(&shape);
833 rgb.b = rgb.g = rgb.r = 0xff;
835 ls = swf_ShapeAddLineStyle(shape,20,&rgb);
836 swf_GetMatrix(NULL,&m);
840 fs = swf_ShapeAddBitmapFillStyle(shape,&m,gfxid,0);
847 swf_SetShapeStyles(tag,shape);
848 swf_ShapeCountBits(shape,NULL,NULL);
849 swf_SetShapeBits(tag,shape);
851 swf_ShapeSetAll(tag,shape,0,0,lines?ls:0,fs,0);
853 swf_ShapeSetLine(tag,shape,width*20,0);
854 swf_ShapeSetLine(tag,shape,0,height*20);
855 swf_ShapeSetLine(tag,shape,-width*20,0);
856 swf_ShapeSetLine(tag,shape,0,-height*20);
857 swf_ShapeSetEnd(tag);
858 swf_ShapeFree(shape);
861 void swf_Shape2ToShape(SHAPE2*shape2, SHAPE*shape)
863 TAG*tag = swf_InsertTag(0,0);
865 int newx=0,newy=0,lastx=0,lasty=0,oldls=0,oldfs0=0,oldfs1=0;
867 memset(shape, 0, sizeof(SHAPE));
869 shape->linestyle.n = shape2->numlinestyles;
870 shape->linestyle.data = (LINESTYLE*)rfx_alloc(sizeof(LINESTYLE)*shape->linestyle.n);
871 memcpy(shape->linestyle.data, shape2->linestyles, sizeof(LINESTYLE)*shape->linestyle.n);
873 shape->fillstyle.n = shape2->numfillstyles;
874 shape->fillstyle.data = (FILLSTYLE*)rfx_alloc(sizeof(FILLSTYLE)*shape->fillstyle.n);
875 memcpy(shape->fillstyle.data, shape2->fillstyles, sizeof(FILLSTYLE)*shape->fillstyle.n);
877 swf_ShapeCountBits(shape,NULL,NULL);
882 int ls=0,fs0=0,fs1=0;
884 if(l->type != moveTo) {
885 if(oldls != l->linestyle) {oldls = ls = l->linestyle;if(!ls) ls=0x8000;}
886 if(oldfs0 != l->fillstyle0) {oldfs0 = fs0 = l->fillstyle0;if(!fs0) fs0=0x8000;}
887 if(oldfs1 != l->fillstyle1) {oldfs1 = fs1 = l->fillstyle1;if(!fs1) fs1=0x8000;}
889 if(ls || fs0 || fs1 || newx!=0x7fffffff || newy!=0x7fffffff) {
890 swf_ShapeSetAll(tag,shape,newx,newy,ls,fs0,fs1);
896 if(l->type == lineTo) {
897 swf_ShapeSetLine(tag,shape,l->x-lastx,l->y-lasty);
898 } else if(l->type == splineTo) {
899 swf_ShapeSetCurve(tag,shape, l->sx-lastx,l->sy-lasty, l->x-l->sx,l->y-l->sy);
901 if(l->type == moveTo) {
910 swf_ShapeSetEnd(tag);
911 shape->data = tag->data;
912 shape->bitlen = tag->len*8;
915 void swf_SetShape2(TAG*tag, SHAPE2*shape2)
918 swf_Shape2ToShape(shape2, &shape);
920 swf_SetRect(tag,shape2->bbox);
921 swf_SetShapeStyles(tag, &shape);
922 //swf_ShapeCountBits(&shape,NULL,NULL); // done in swf_Shape2ToShape()
923 swf_SetShapeBits(tag,&shape);
925 swf_SetBlock(tag, shape.data, (shape.bitlen+7)/8);
928 void swf_ParseDefineShape(TAG*tag, SHAPE2*shape)
935 if(tag->id == ST_DEFINESHAPE)
937 else if(tag->id == ST_DEFINESHAPE2)
939 else if(tag->id == ST_DEFINESHAPE3)
942 fprintf(stderr, "parseDefineShape must be called with a shape tag");
944 swf_SetTagPos(tag, 0);
946 id = swf_GetU16(tag); //id
947 memset(shape, 0, sizeof(SHAPE2));
948 shape->bbox = rfx_alloc(sizeof(SRECT));
949 swf_GetRect(tag, shape->bbox);
951 parseFillStyleArray(tag, shape);
953 swf_ResetReadBits(tag);
954 fill = (U16)swf_GetBits(tag,4);
955 line = (U16)swf_GetBits(tag,4);
957 shape->lines = swf_ParseShapeData(&tag->data[tag->pos], (tag->len - tag->pos)*8, fill, line,
958 tag->id == ST_DEFINESHAPE?1:(tag->id==ST_DEFINESHAPE2?2:3), shape);
963 void swf_RecodeShapeData(U8*data, int bitlen, int in_bits_fill, int in_bits_line,
964 U8**destdata, U32*destbitlen, int out_bits_fill, int out_bits_line)
969 memset(&s2, 0, sizeof(s2));
970 s2.lines = swf_ParseShapeData(data, bitlen, in_bits_fill, in_bits_line, 1, 0);
971 s2.numfillstyles = out_bits_fill?1<<(out_bits_fill-1):0;
972 s2.numlinestyles = out_bits_line?1<<(out_bits_line-1):0;
973 s2.fillstyles = rfx_calloc(sizeof(FILLSTYLE)*s2.numfillstyles);
974 s2.linestyles = rfx_calloc(sizeof(LINESTYLE)*s2.numlinestyles);
978 if(line->fillstyle0 > s2.numfillstyles) line->fillstyle0 = 0;
979 if(line->fillstyle1 > s2.numfillstyles) line->fillstyle1 = 0;
980 if(line->linestyle > s2.numlinestyles) line->linestyle = 0;
984 swf_Shape2ToShape(&s2,&s);
988 free(s.fillstyle.data);
989 free(s.linestyle.data);
991 *destbitlen = s.bitlen;