added as3 data types
[swftools.git] / lib / rfxswf.c
1 /* vi: set sts=2 sw=2 :*/
2 /* rfxswf.c 
3
4    Library for creating and reading SWF files or parts of it.
5    There's a module directory which provides some extended functionality.
6    Most modules are included at the bottom of this file.
7
8    Part of the swftools package.
9
10    Copyright (c) 2000-2003 Rainer Böhme <rfxswf@reflex-studio.de>
11    Copyright (c) 2003 Matthias Kramm <kramm@quiss.org> 
12
13    This program is free software; you can redistribute it and/or modify
14    it under the terms of the GNU General Public License as published by
15    the Free Software Foundation; either version 2 of the License, or
16    (at your option) any later version.
17
18    This program is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21    GNU General Public License for more details.
22
23    You should have received a copy of the GNU General Public License
24    along with this program; if not, write to the Free Software
25    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
26
27 #include "mem.h"
28 #include "rfxswf.h"
29 #ifdef HAVE_ZLIB
30 #include <zlib.h>
31 #endif // HAVE_ZLIB
32
33 #ifndef RFXSWF_DISABLESOUND
34 #ifdef HAVE_LAME
35 #include "lame/lame.h"
36 #endif
37 #endif
38
39 #ifdef HAVE_TIME_H
40 #include <time.h>
41 #endif
42
43 #ifdef HAVE_IO_H
44 #include <io.h>
45 #endif
46
47 #include "./bitio.h"
48 #include "./MD5.h"
49
50 // internal constants
51
52 #define MALLOC_SIZE     128
53 #define INSERT_RFX_TAG
54
55 #define MEMSIZE(l) (((l/MALLOC_SIZE)+1)*MALLOC_SIZE)
56
57 // inline wrapper functions
58
59 TAG * swf_NextTag(TAG * t) { return t->next; }
60 TAG * swf_PrevTag(TAG * t) { return t->prev; }
61 U16   swf_GetTagID(TAG * t)    { return t->id; }
62 U32   swf_GetTagLen(TAG * t) { return t->len; }
63 U8*   swf_GetTagLenPtr(TAG * t) { return &(t->data[t->len]); }
64 U32   swf_GetTagPos(TAG * t)   { return t->pos; }
65
66 void swf_SetTagPos(TAG * t,U32 pos)
67 { swf_ResetReadBits(t);
68   if (pos<=t->len) t->pos = pos;
69   else { 
70 #ifdef DEBUG_RFXSWF
71     fprintf(stderr,"SetTagPos(%d) out of bounds: TagID = %i\n",pos, t->id);
72 #endif
73   }
74 }
75
76 char* swf_GetString(TAG*t)
77 {
78     int pos = t->pos;
79     while(t->pos < t->len && swf_GetU8(t));
80     /* make sure we always have a trailing zero byte */
81     if(t->pos == t->len) {
82       if(t->len == t->memsize) {
83         swf_ResetWriteBits(t);
84         swf_SetU8(t, 0);
85         t->len = t->pos;
86       }
87       t->data[t->len] = 0;
88     }
89     return (char*)&(t->data[pos]);
90 }
91
92 U8 swf_GetU8(TAG * t)
93 { swf_ResetReadBits(t);
94   #ifdef DEBUG_RFXSWF
95     if (t->pos>=t->len) 
96     { fprintf(stderr,"GetU8() out of bounds: TagID = %i\n",t->id);
97       *(int*)0=0;
98       return 0;
99     }
100   #endif
101   return t->data[t->pos++];
102 }
103
104 U16 swf_GetU16(TAG * t)
105 { U16 res;
106   swf_ResetReadBits(t);
107   #ifdef DEBUG_RFXSWF
108     if (t->pos>(t->len-2)) 
109     { fprintf(stderr,"GetU16() out of bounds: TagID = %i\n",t->id);
110       return 0;
111     }
112   #endif
113   res = t->data[t->pos] | (t->data[t->pos+1]<<8);
114   t->pos+=2;
115   return res;
116 }
117
118 U32 swf_GetU32(TAG * t)
119 { U32 res;
120   swf_ResetReadBits(t);
121   #ifdef DEBUG_RFXSWF
122     if (t->pos>(t->len-4)) 
123     { fprintf(stderr,"GetU32() out of bounds: TagID = %i\n",t->id);
124       return 0;
125     }
126   #endif
127   res = t->data[t->pos]        | (t->data[t->pos+1]<<8) | 
128        (t->data[t->pos+2]<<16) | (t->data[t->pos+3]<<24);
129   t->pos+=4;
130   return res;
131 }
132
133 int swf_GetBlock(TAG * t,U8 * b,int l)
134 // returns number of bytes written (<=l)
135 // b = NULL -> skip data
136 { swf_ResetReadBits(t);
137   if ((t->len-t->pos)<l) l=t->len-t->pos;
138   if (b && l) memcpy(b,&t->data[t->pos],l);
139   t->pos+=l;
140   return l;
141 }
142
143 int swf_SetBlock(TAG * t,const U8 * b,int l)
144 // Appends Block to the end of Tagdata, returns size
145 { U32 newlen = t->len + l;
146   swf_ResetWriteBits(t);
147   if (newlen>t->memsize)
148   { U32  newmem  = MEMSIZE(newlen);  
149     U8 * newdata = (U8*)(rfx_realloc(t->data,newmem));
150     t->memsize = newmem;
151     t->data    = newdata;
152   }
153   if (b) memcpy(&t->data[t->len],b,l);
154   else memset(&t->data[t->len],0x00,l);
155   t->len+=l;
156   return l;
157 }
158
159 int swf_SetU8(TAG * t,U8 v)
160 { swf_ResetWriteBits(t);
161   if ((t->len+1)>t->memsize) return (swf_SetBlock(t,&v,1)==1)?0:-1;
162   t->data[t->len++] = v;
163   return 0;
164 }
165
166 int swf_SetU16(TAG * t,U16 v)
167 { U8 a[2];
168   a[0] = v&0xff;
169   a[1] = v>>8;
170   
171   swf_ResetWriteBits(t);
172   if ((t->len+2)>t->memsize) return (swf_SetBlock(t,a,2)==2)?0:-1;
173   t->data[t->len++] = a[0];
174   t->data[t->len++] = a[1];
175   return 0;
176 }
177 void swf_SetS16(TAG * t,int v)
178 {
179     if(v>32767 || v<-32768) {
180         fprintf(stderr, "Warning: S16 overflow: %d\n", v);
181     }
182     swf_SetU16(t, (S16)v);
183 }
184
185 int swf_SetU32(TAG * t,U32 v)
186 { U8 a[4];
187   a[0] = v&0xff;        // to ensure correct handling of non-intel byteorder
188   a[1] = (v>>8)&0xff;
189   a[2] = (v>>16)&0xff;
190   a[3] = (v>>24)&0xff;
191   
192   swf_ResetWriteBits(t);
193   if ((t->len+4)>t->memsize) return (swf_SetBlock(t,a,4)==4)?0:-1;
194   t->data[t->len++] = a[0];
195   t->data[t->len++] = a[1];
196   t->data[t->len++] = a[2];
197   t->data[t->len++] = a[3];
198   return 0;
199 }
200
201 U32 swf_GetBits(TAG * t,int nbits)
202 { U32 res = 0;
203   if (!nbits) return 0;
204   if (!t->readBit) t->readBit = 0x80;
205   while (nbits)
206   { res<<=1;
207     if (t->data[t->pos]&t->readBit) res|=1;
208     t->readBit>>=1;
209     nbits--;
210     if (!t->readBit)
211     { if (nbits) t->readBit = 0x80;
212       #ifdef DEBUG_RFXSWF
213       if (t->pos>=t->len) 
214       { fprintf(stderr,"GetBits() out of bounds: TagID = %i\n",t->id);
215         return res;
216       }
217       #endif
218       t->pos++;
219     }
220   }
221   return res;
222 }
223
224 S32 swf_GetSBits(TAG * t,int nbits)
225 { U32 res = swf_GetBits(t,nbits);
226   if (res&(1<<(nbits-1))) res|=(0xffffffff<<nbits);  
227   return (S32)res;
228 }
229
230 U32 reader_GetBits(reader_t*reader, int nbits)
231 { return reader_readbits(reader, nbits);
232 }
233 S32 reader_GetSBits(reader_t*reader, int nbits)
234 { U32 res = reader_readbits(reader, nbits);
235   if (res&(1<<(nbits-1))) res|=(0xffffffff<<nbits);  
236   return (S32)res;
237 }
238
239 int swf_SetBits(TAG * t,U32 v,int nbits)
240 { U32 bm = 1<<(nbits-1);
241
242   while (nbits)
243   { if (!t->writeBit)
244     { if (FAILED(swf_SetU8(t,0))) return -1;
245       t->writeBit = 0x80;
246     }
247     if (v&bm) t->data[t->len-1] |= t->writeBit;
248     bm>>=1;
249     t->writeBit>>=1;
250     nbits--;
251   }
252   return 0;
253 }
254
255 // Advanced Data Access Functions
256
257 double swf_GetFixed(TAG * t)
258 {
259   U16 low =  swf_GetU16(t);
260   U16 high = swf_GetU16(t);
261   return high + low*(1/65536.0);
262 }
263 void swf_SetFixed(TAG * t, double f)
264 {
265   U16 fr = (U16)((f-(int)f)*65536);
266   swf_SetU16(t, fr);
267   swf_SetU16(t, (U16)f - (f<0 && fr!=0));
268 }
269 float swf_GetFixed8(TAG * t)
270 {
271   U8 low =  swf_GetU8(t);
272   U8 high = swf_GetU8(t);
273   return (float)(high + low*(1/256.0));
274 }
275 void swf_SetFixed8(TAG * t, float f)
276 {
277   U8 fr = (U8)((f-(int)f)*256);
278   swf_SetU8(t, fr);
279   swf_SetU8(t, (U8)f - (f<0 && fr!=0));
280 }
281 int swf_GetU30(TAG*tag)
282 {
283     U32 shift = 0;
284     U32 s = 0;
285     while(1) {
286         U8 b = swf_GetU8(tag);
287         s|=(b&127)<<shift;
288         shift+=7;
289         if(!(b&128))
290             break;
291     }
292     return s;
293 }
294 int swf_GetS30(TAG*tag)
295 {
296     U32 shift = 0;
297     U32 s = 0;
298     int nr=0;
299     while(1) {
300         U8 b = swf_GetU8(tag);
301         nr++;
302         s|=(b&127)<<shift;
303         shift+=7;
304         if(!(b&128)) {
305             if(b&64) {
306                 s|=0xffffffff<<shift;
307             }
308             break;
309         }
310     }
311     return s;
312 }
313 int swf_SetS30(TAG*tag, S32 s)
314 {
315     S32 neg = s<0?-1:0;
316     U8 sign = s<0?0x80:0;
317     int nr=0,pos=tag->len;
318     while(1) {
319         U8 val = s&0x7f;
320         U8 vsign = s&0x80;
321         s>>=7;
322         neg>>=7;
323         if(s==neg && vsign==sign) {
324             /* if the value we just wrote has the same sign as s
325                and all the remaining bits are equal to the sign of s
326                too, stop writing */
327             if(tag)
328               swf_SetU8(tag, val);
329             nr++;
330             break;
331         } else {
332             if(tag)
333               swf_SetU8(tag, 0x80 | val);
334             nr++;
335         }
336     };
337     return nr;
338
339 }
340 int swf_SetU30(TAG*tag, U32 u)
341 {
342     int nr = 0;
343     do {
344         if(tag)
345           swf_SetU8(tag, (u&~0x7f?0x80:0) | (u&0x7F));
346         u>>=7;
347         nr++;
348     } while(u);
349     return nr;
350 }
351 int swf_SetU30String(TAG*tag, const char*str)
352 {
353     int l = strlen(str);
354     int len=0;
355     len+=swf_SetU30(tag, l);
356     len+=l;
357     swf_SetBlock(tag, (void*)str, l);
358     return len;
359 }
360 double swf_GetD64(TAG*tag)
361 {
362     /* FIXME: this is not big-endian compatible */
363     double value = *(double*)&tag->data[tag->pos];
364     swf_GetU32(tag);
365     swf_GetU32(tag);
366     return value;
367 }
368 int swf_SetD64(TAG*tag, double v)
369 {
370     /* FIXME: this is not big-endian compatible */
371     swf_SetU32(tag, ((U32*)&v)[0]);
372     swf_SetU32(tag, ((U32*)&v)[1]);
373     return 8;
374 }
375 int swf_GetU24(TAG*tag)
376 {
377     int b1 = swf_GetU8(tag);
378     int b2 = swf_GetU8(tag);
379     int b3 = swf_GetU8(tag);
380     return b3<<16|b2<<8|b1;
381 }
382 int swf_GetS24(TAG*tag)
383 {
384     int b1 = swf_GetU8(tag);
385     int b2 = swf_GetU8(tag);
386     int b3 = swf_GetU8(tag);
387     if(b3&0x80) {
388         return -1-((b3<<16|b2<<8|b1)^0xffffff);
389     } else {
390         return b3<<16|b2<<8|b1;
391     }
392 }
393 int swf_SetU24(TAG*tag, U32 v)
394 {
395     if(tag) {
396         if(v&0xff000000)
397           fprintf(stderr, "Error: Overflow in swf_SetU24()\n");
398         swf_SetU8(tag, v);
399         swf_SetU8(tag, v>>8);
400         swf_SetU8(tag, v>>16);
401     }
402     return 3;
403 }
404 int swf_SetS24(TAG*tag, U32 v)
405 {
406     if(tag) {
407         if(!(v&0xff000000))
408           return swf_SetU24(tag, v);
409         if((v&0xff000000)!=0xff000000) {
410           fprintf(stderr, "Error: Overflow in swf_SetS24()\n");
411         }
412         swf_SetU8(tag, v);
413         swf_SetU8(tag, v>>8);
414         swf_SetU8(tag, v>>16);
415     }
416     return 3;
417 }
418
419
420 int swf_SetRGB(TAG * t,RGBA * col)
421 { if (!t) return -1;
422   if (col)
423   { swf_SetU8(t,col->r);
424     swf_SetU8(t,col->g);
425     swf_SetU8(t,col->b);
426   } else swf_SetBlock(t,NULL,3);
427   return 0;
428 }
429 void swf_GetRGB(TAG * t, RGBA * col)
430 {
431     RGBA dummy;
432     if(!col)
433         col = &dummy;
434     col->r = swf_GetU8(t);
435     col->g = swf_GetU8(t);
436     col->b = swf_GetU8(t);
437     col->a = 255;
438 }
439
440 int swf_SetRGBA(TAG * t,RGBA * col)
441 { if (!t) return -1;
442   if (col)
443   { swf_SetU8(t,col->r);
444     swf_SetU8(t,col->g);
445     swf_SetU8(t,col->b);
446     swf_SetU8(t,col->a);
447   } else swf_SetBlock(t,NULL,4);
448   return 0;
449 }
450 void swf_GetRGBA(TAG * t, RGBA * col)
451 {
452     RGBA dummy;
453     if(!col)
454         col = &dummy;
455     col->r = swf_GetU8(t);
456     col->g = swf_GetU8(t);
457     col->b = swf_GetU8(t);
458     col->a = swf_GetU8(t);
459 }
460
461 void swf_GetGradient(TAG * tag, GRADIENT * gradient, char alpha)
462 {
463     int t;
464     if(!tag) {
465       memset(gradient, 0, sizeof(GRADIENT));
466       return;
467     }
468     U8 num = swf_GetU8(tag) & 15;
469     if(gradient) {
470         gradient->num = num;
471         gradient->rgba = (RGBA*)rfx_calloc(sizeof(RGBA)*gradient->num);
472         gradient->ratios = (U8*)rfx_calloc(sizeof(gradient->ratios[0])*gradient->num);
473     }
474     for(t=0;t<num;t++)
475     {
476         U8 ratio = swf_GetU8(tag);
477         RGBA color;
478         if(!alpha)
479             swf_GetRGB(tag, &color);
480         else
481             swf_GetRGBA(tag, &color);
482         if(gradient) {
483           gradient->ratios[t] = ratio;
484           gradient->rgba[t] = color;
485         }
486     }
487 }
488
489 void swf_SetGradient(TAG * tag, GRADIENT * gradient, char alpha)
490 {
491     int t;
492     if(!tag) {
493       memset(gradient, 0, sizeof(GRADIENT));
494       return;
495     }
496     swf_SetU8(tag, gradient->num);
497     for(t=0; t<8 && t<gradient->num; t++)
498     {
499         swf_SetU8(tag, gradient->ratios[t]);
500         if(!alpha)
501             swf_SetRGB(tag, &gradient->rgba[t]);
502         else
503             swf_SetRGBA(tag, &gradient->rgba[t]);
504     }
505 }
506
507 void swf_FreeGradient(GRADIENT* gradient)
508 {
509   if(gradient->ratios)
510     rfx_free(gradient->ratios);
511   if(gradient->rgba)
512     rfx_free(gradient->rgba);
513   memset(gradient, 0, sizeof(GRADIENT));
514 }
515
516 int swf_CountUBits(U32 v,int nbits)
517 { int n = 32;
518   U32 m = 0x80000000;
519   if(v == 0x00000000) n = 0; 
520   else
521     while (!(v&m))
522     { n--;
523       m>>=1;
524     } 
525   return (n>nbits)?n:nbits;
526 }
527
528 int swf_CountBits(U32 v,int nbits)
529 { int n = 33;
530   U32 m = 0x80000000;
531   if (v&m)
532   { if(v == 0xffffffff) n = 1;
533     else 
534     while (v&m)
535     { n--;
536       m>>=1;
537     } 
538   }
539   else
540   { if(v == 0x00000000) n = 0; 
541     else
542     while (!(v&m))
543     { n--;
544       m>>=1;
545     } 
546   }
547   return (n>nbits)?n:nbits;
548 }
549
550 int swf_GetRect(TAG * t,SRECT * r)
551 { int nbits;
552   SRECT dummy;
553   if(!t) {r->xmin=r->xmax=r->ymin=r->ymax=0;return 0;}
554   if (!r) r = &dummy;
555   nbits = (int) swf_GetBits(t,5);
556   r->xmin = swf_GetSBits(t,nbits);
557   r->xmax = swf_GetSBits(t,nbits);
558   r->ymin = swf_GetSBits(t,nbits);
559   r->ymax = swf_GetSBits(t,nbits);
560   return 0;
561 }
562
563 int reader_GetRect(reader_t*reader,SRECT * r)
564 { int nbits;
565   SRECT dummy;
566   if (!r) r = &dummy;
567   nbits = (int) reader_GetBits(reader,5);
568   r->xmin = reader_GetSBits(reader,nbits);
569   r->xmax = reader_GetSBits(reader,nbits);
570   r->ymin = reader_GetSBits(reader,nbits);
571   r->ymax = reader_GetSBits(reader,nbits);
572   return 0;
573 }
574
575 int swf_SetRect(TAG * t,SRECT * r)
576 { int nbits;
577     
578   nbits = swf_CountBits(r->xmin,0);
579   nbits = swf_CountBits(r->xmax,nbits);
580   nbits = swf_CountBits(r->ymin,nbits);
581   nbits = swf_CountBits(r->ymax,nbits);
582   if(nbits>=32) {
583     fprintf(stderr, "rfxswf: Warning: num_bits overflow in swf_SetRect\n");
584     nbits=31;
585   }
586
587   swf_SetBits(t,nbits,5);
588   swf_SetBits(t,r->xmin,nbits);
589   swf_SetBits(t,r->xmax,nbits);
590   swf_SetBits(t,r->ymin,nbits);
591   swf_SetBits(t,r->ymax,nbits);
592
593   return 0;
594 }
595
596 SRECT swf_ClipRect(SRECT border, SRECT r)
597 {
598     if(r.xmax > border.xmax) r.xmax = border.xmax;
599     if(r.ymax > border.ymax) r.ymax = border.ymax;
600     if(r.xmax < border.xmin) r.xmax = border.xmin;
601     if(r.ymax < border.ymin) r.ymax = border.ymin;
602     
603     if(r.xmin > border.xmax) r.xmin = border.xmax;
604     if(r.ymin > border.ymax) r.ymin = border.ymax;
605     if(r.xmin < border.xmin) r.xmin = border.xmin;
606     if(r.ymin < border.ymin) r.ymin = border.ymin;
607     return r;
608 }
609
610 void swf_ExpandRect(SRECT*src, SPOINT add)
611 {
612     if((src->xmin | src->ymin | src->xmax | src->ymax)==0) {
613         src->xmin = add.x;
614         src->ymin = add.y;
615         src->xmax = add.x;
616         src->ymax = add.y;
617         if((add.x|add.y) == 0) src->xmax++; //make sure the bbox is not NULL anymore
618         return;
619     }
620     if(add.x < src->xmin)
621         src->xmin = add.x;
622     if(add.x > src->xmax)
623         src->xmax = add.x;
624     if(add.y < src->ymin)
625         src->ymin = add.y;
626     if(add.y > src->ymax)
627         src->ymax = add.y;
628 }
629 void swf_ExpandRect2(SRECT*src, SRECT*add)
630 {
631     if((add->xmin | add->ymin | add->xmax | add->ymax)==0)
632         return;
633     if((src->xmin | src->ymin | src->xmax | src->ymax)==0)
634         *src = *add;
635     if(add->xmin < src->xmin)
636         src->xmin = add->xmin;
637     if(add->ymin < src->ymin)
638         src->ymin = add->ymin;
639     if(add->xmax > src->xmax)
640         src->xmax = add->xmax;
641     if(add->ymax > src->ymax)
642         src->ymax = add->ymax;
643 }
644 void swf_ExpandRect3(SRECT*src, SPOINT center, int radius)
645 {
646     if((src->xmin | src->ymin | src->xmax | src->ymax)==0) {
647         src->xmin = center.x-radius;
648         src->ymin = center.y-radius;
649         src->xmax = center.x+radius;
650         src->ymax = center.y+radius;
651         if((center.x|center.y|radius) == 0) src->xmax++; //make sure the bbox is not NULL anymore
652         return;
653     }
654     if(center.x - radius < src->xmin)
655         src->xmin = center.x - radius;
656     if(center.x + radius > src->xmax)
657         src->xmax = center.x + radius;
658     if(center.y - radius < src->ymin)
659         src->ymin = center.y - radius;
660     if(center.y + radius > src->ymax)
661         src->ymax = center.y + radius;
662 }
663 SPOINT swf_TurnPoint(SPOINT p, MATRIX* m)
664 {
665     SPOINT r;
666     r.x = (int)(m->sx*(1/65536.0)*p.x + m->r1*(1/65536.0)*p.y + 0.5) + m->tx;
667     r.y = (int)(m->r0*(1/65536.0)*p.x + m->sy*(1/65536.0)*p.y + 0.5) + m->ty;
668     return r;
669 }
670 SRECT swf_TurnRect(SRECT r, MATRIX* m)
671 {
672     SRECT g;
673     SPOINT p1,p2,p3,p4,pp1,pp2,pp3,pp4;
674     if(!m)
675       return r;
676     p1.x = r.xmin;p1.y = r.ymin;
677     p2.x = r.xmax;p2.y = r.ymin;
678     p3.x = r.xmin;p3.y = r.ymax;
679     p4.x = r.xmax;p4.y = r.ymax;
680     pp1 = swf_TurnPoint(p1, m);
681     pp2 = swf_TurnPoint(p2, m);
682     pp3 = swf_TurnPoint(p3, m);
683     pp4 = swf_TurnPoint(p4, m);
684     g.xmin = g.xmax = pp1.x;
685     g.ymin = g.ymax = pp1.y;
686     swf_ExpandRect(&g, pp2);
687     swf_ExpandRect(&g, pp3);
688     swf_ExpandRect(&g, pp4);
689     return g;
690 }
691         
692
693 int swf_GetMatrix(TAG * t,MATRIX * m)
694 { MATRIX dummy;
695   int nbits;
696     
697   if (!m) m = &dummy;
698   
699   if (!t)
700   { m->sx = m->sy = 0x10000;
701     m->r0 = m->r1 = 0;
702     m->tx = m->ty = 0;
703     return -1;
704   }
705
706   swf_ResetReadBits(t);
707   
708   if (swf_GetBits(t,1))
709   { nbits = swf_GetBits(t,5);
710     m->sx = swf_GetSBits(t,nbits);
711     m->sy = swf_GetSBits(t,nbits);
712   }
713   else m->sx = m->sy = 0x10000;
714   
715   if (swf_GetBits(t,1))
716   { nbits = swf_GetBits(t,5);
717     m->r0 = swf_GetSBits(t,nbits);
718     m->r1 = swf_GetSBits(t,nbits);
719   }
720   else m->r0 = m->r1 = 0x0;
721
722   nbits = swf_GetBits(t,5);
723   m->tx = swf_GetSBits(t,nbits);
724   m->ty = swf_GetSBits(t,nbits);
725   
726   return 0;
727 }
728
729 int swf_SetMatrix(TAG * t,MATRIX * m)
730 { int nbits;
731   MATRIX ma;
732
733   if (!m)
734   { m = &ma;
735     ma.sx = ma.sy = 0x10000;
736     ma.r0 = ma.r1 = 0;
737     ma.tx = ma.ty = 0;
738   }
739
740   swf_ResetWriteBits(t);
741
742   if ((m->sx==0x10000)&&(m->sy==0x10000)) swf_SetBits(t,0,1);
743   else
744   { swf_SetBits(t,1,1);
745     nbits = swf_CountBits(m->sx,0);
746     nbits = swf_CountBits(m->sy,nbits);
747     if(nbits>=32) {
748         /* TODO: happens on AMD64 systems for normal values? */
749         fprintf(stderr,"rfxswf: Error: matrix values too large\n");
750         nbits = 31;
751     }
752     swf_SetBits(t,nbits,5);
753     swf_SetBits(t,m->sx,nbits);
754     swf_SetBits(t,m->sy,nbits);
755   }
756
757   if ((!m->r0)&&(!m->r1)) swf_SetBits(t,0,1);
758   else
759   { swf_SetBits(t,1,1);
760     nbits = swf_CountBits(m->r0,0);
761     nbits = swf_CountBits(m->r1,nbits);
762     if(nbits>=32) {
763         fprintf(stderr,"rfxswf: Error: matrix values too large\n");
764         nbits = 31;
765     }
766     swf_SetBits(t,nbits,5);
767     swf_SetBits(t,m->r0,nbits);
768     swf_SetBits(t,m->r1,nbits);
769   }
770
771   nbits = swf_CountBits(m->tx,0);
772   nbits = swf_CountBits(m->ty,nbits);
773   if(nbits>=32) {
774       fprintf(stderr,"rfxswf: Error: matrix values too large\n");
775       nbits = 31;
776   }
777   swf_SetBits(t,nbits,5);
778   swf_SetBits(t,m->tx,nbits);
779   swf_SetBits(t,m->ty,nbits);
780
781   return 0;
782 }
783
784 int swf_GetCXForm(TAG * t,CXFORM * cx,U8 alpha)
785 { CXFORM cxf;
786   int hasadd;
787   int hasmul;
788   int nbits;
789     
790   if (!cx) cx = &cxf;
791   
792   cx->a0 = cx->r0 = cx->g0 = cx->b0 = 256;
793   cx->a1 = cx->r1 = cx->g1 = cx->b1 = 0;
794
795   if (!t) return 0;
796   
797   swf_ResetReadBits(t);
798   hasadd = swf_GetBits(t,1);
799   hasmul = swf_GetBits(t,1);
800   nbits  = swf_GetBits(t,4);
801
802   if (hasmul)
803   { cx->r0 = (S16)swf_GetSBits(t,nbits);
804     cx->g0 = (S16)swf_GetSBits(t,nbits);
805     cx->b0 = (S16)swf_GetSBits(t,nbits);
806     if (alpha)
807       cx->a0 = (S16)swf_GetSBits(t,nbits);
808   }
809
810   if (hasadd)
811   { cx->r1 = (S16)swf_GetSBits(t,nbits);
812     cx->g1 = (S16)swf_GetSBits(t,nbits);
813     cx->b1 = (S16)swf_GetSBits(t,nbits);
814     if (alpha)
815       cx->a1 = (S16)swf_GetSBits(t,nbits);
816   }
817   
818   return 0;
819 }
820
821 int swf_SetCXForm(TAG * t,CXFORM * cx,U8 alpha)
822 { CXFORM cxf;
823   int hasadd;
824   int hasmul;
825   int nbits;
826     
827   if (!cx)
828   { cx = &cxf;
829     cx->a0 = cx->r0 = cx->g0 = cx->b0 = 256;
830     cx->a1 = cx->r1 = cx->g1 = cx->b1 = 0;
831   }
832
833   if (!alpha)
834   { cx->a0 = 256;
835     cx->a1 = 0;
836   }
837
838   nbits = 0;
839
840   hasmul = (cx->a0!=256)||(cx->r0!=256)||(cx->g0!=256)||(cx->b0!=256);
841   hasadd = cx->a1|cx->r1|cx->g1|cx->b1;
842
843   if (hasmul)
844   { if (alpha) nbits = swf_CountBits((S32)cx->a0,nbits);
845     nbits = swf_CountBits((S32)cx->r0,nbits);
846     nbits = swf_CountBits((S32)cx->g0,nbits);
847     nbits = swf_CountBits((S32)cx->b0,nbits);
848   }
849
850   if (hasadd)
851   { if (alpha) nbits = swf_CountBits((S32)cx->a1,nbits);
852     nbits = swf_CountBits((S32)cx->r1,nbits);
853     nbits = swf_CountBits((S32)cx->g1,nbits);
854     nbits = swf_CountBits((S32)cx->b1,nbits);
855   }
856   
857   swf_ResetWriteBits(t);
858   swf_SetBits(t,hasadd?1:0,1);
859   swf_SetBits(t,hasmul?1:0,1);
860   swf_SetBits(t,nbits,4);
861
862   if (hasmul)
863   { swf_SetBits(t,cx->r0,nbits);
864     swf_SetBits(t,cx->g0,nbits);
865     swf_SetBits(t,cx->b0,nbits);
866     if (alpha) swf_SetBits(t,cx->a0,nbits);
867   }
868
869   if (hasadd)
870   { swf_SetBits(t,cx->r1,nbits);
871     swf_SetBits(t,cx->g1,nbits);
872     swf_SetBits(t,cx->b1,nbits);
873     if (alpha) swf_SetBits(t,cx->a1,nbits);
874   }
875   
876   return 0;
877 }
878
879 //int swf_GetPoint(TAG * t,SPOINT * p) { return 0; }
880 //int swf_SetPoint(TAG * t,SPOINT * p) { return 0; }
881
882 void  swf_SetPassword(TAG * t, const char * password)
883 {
884     /* WARNING: crypt_md5 is not reentrant */
885     char salt[3];
886     char* md5string;
887
888 #if defined(HAVE_LRAND48) && defined(HAVE_SRAND48) && defined(HAVE_TIME_H) && defined(HAVE_TIME)
889     srand48(time(0));
890     salt[0] = "abcdefghijklmnopqrstuvwxyz0123456789"[lrand48()%36];
891     salt[1] = "abcdefghijklmnopqrstuvwxyz0123456789"[lrand48()%36];
892 #else
893     salt[0] = 'l';
894     salt[1] = '8';
895     fprintf(stderr, "rfxswf: Warning- no usable random generator found\n");
896     fprintf(stderr, "Your password will be vulnerable to dictionary attacks\n");
897 #endif
898     salt[2] = 0;
899     
900     md5string = crypt_md5(password, salt);
901
902     swf_SetU16(t,0);
903     swf_SetString(t, (U8*)md5string);
904
905
906 void swf_SetString(TAG*t, const char* s) 
907 {
908     if(!s) {
909         swf_SetU8(t, 0);
910     } else {
911         swf_SetBlock(t,s,strlen(s)+1);
912     }
913 }
914
915 int swf_VerifyPassword(TAG * t, const char * password)
916 {
917     char*md5string1, *md5string2;
918     char*x;
919     char*salt;
920     int n;
921
922     if(t->len >= 5 && t->pos==0 && 
923        t->data[0] == 0 &&
924        t->data[1] == 0) {
925       swf_GetU16(t);
926     } else {
927       printf("%d %d %d %d\n", t->len, t->pos, t->data[0], t->data[1]);
928     }
929
930     md5string1 = swf_GetString(t);
931
932     if(strncmp(md5string1, "$1$",3 )) {
933         fprintf(stderr, "rfxswf: no salt in pw string\n");
934         return 0;
935     }
936     x = strchr(md5string1+3, '$');
937     if(!x) {
938         fprintf(stderr, "rfxswf: invalid salt format in pw string\n");
939         return 0;
940     }
941     n = x-(md5string1+3);
942     salt = (char*)rfx_alloc(n+1);
943     memcpy(salt, md5string1+3, n);
944     salt[n] = 0;
945
946     md5string2 = crypt_md5(password, salt);
947     rfx_free(salt);
948     if(strcmp(md5string1, md5string2) != 0)
949         return 0;
950     return 1;
951 }
952
953 // Tag List Manipulating Functions
954
955 TAG * swf_InsertTag(TAG * after,U16 id)
956 { TAG * t;
957
958   t = (TAG *)rfx_calloc(sizeof(TAG));
959   t->id = id;
960   
961   if (after)
962   {
963     t->prev  = after;
964     t->next  = after->next;
965     after->next = t;
966     if (t->next) t->next->prev = t;
967   }
968   return t;
969 }
970
971 TAG * swf_InsertTagBefore(SWF* swf, TAG * before,U16 id)
972 { TAG * t;
973
974   t = (TAG *)rfx_calloc(sizeof(TAG));
975   t->id = id;
976   
977   if (before)
978   {
979     t->next  = before;
980     t->prev  = before->prev;
981     before->prev = t;
982     if (t->prev) t->prev->next = t;
983   }
984   if(swf && swf->firstTag == before) {
985     swf->firstTag = t;
986   }
987   return t;
988 }
989
990 void swf_ClearTag(TAG * t)
991 {
992   if (t->data) rfx_free(t->data);
993   t->data = 0;
994   t->pos = 0;
995   t->len = 0;
996   t->readBit = 0;
997   t->writeBit = 0;
998   t->memsize = 0;
999 }
1000
1001 void swf_ResetTag(TAG*tag, U16 id)
1002 {
1003     tag->len = tag->pos = tag->readBit = tag->writeBit = 0;
1004     tag->id = id;
1005 }
1006
1007 TAG* swf_CopyTag(TAG*tag, TAG*to_copy)
1008 {
1009     tag = swf_InsertTag(tag, to_copy->id);
1010     swf_SetBlock(tag, to_copy->data, to_copy->len);
1011     return tag;
1012 }
1013
1014 TAG* swf_DeleteTag(SWF*swf, TAG * t)
1015 {
1016   TAG*next = t->next;
1017
1018   if (swf && swf->firstTag==t) 
1019     swf->firstTag = t->next;
1020   if (t->prev) t->prev->next = t->next;
1021   if (t->next) t->next->prev = t->prev;
1022
1023   if (t->data) rfx_free(t->data);
1024   rfx_free(t);
1025   return next;
1026 }
1027
1028 TAG * swf_ReadTag(reader_t*reader, TAG * prev)
1029 { TAG * t;
1030   U16 raw;
1031   U32 len;
1032   int id;
1033
1034   if (reader->read(reader, &raw, 2) !=2 ) return NULL;
1035   raw = SWAP16(raw);
1036
1037   len = raw&0x3f;
1038   id  = raw>>6;
1039
1040   if (len==0x3f)
1041   {
1042       if (reader->read(reader, &len, 4) != 4) return NULL;
1043       len = SWAP32(len);
1044   }
1045
1046   if (id==ST_DEFINESPRITE) len = 2*sizeof(U16);
1047   // Sprite handling fix: Flatten sprite tree
1048
1049   t = (TAG *)rfx_calloc(sizeof(TAG));
1050   
1051   t->len = len;
1052   t->id  = id;
1053
1054   if (t->len)
1055   { t->data = (U8*)rfx_alloc(t->len);
1056     t->memsize = t->len;
1057     if (reader->read(reader, t->data, t->len) != t->len) {
1058       fprintf(stderr, "rfxswf: Warning: Short read (tagid %d). File truncated?\n", t->id);
1059       free(t->data);t->data=0;
1060       free(t);
1061       return NULL;
1062     }
1063   }
1064
1065   if (prev)
1066   {
1067     t->prev  = prev;
1068     prev->next = t;
1069   }
1070
1071   return t;
1072 }
1073
1074 int swf_DefineSprite_GetRealSize(TAG * t);
1075
1076 int swf_WriteTag2(writer_t*writer, TAG * t)
1077 // returns tag length in bytes (incl. Header), -1 = Error
1078 // writer = 0 -> no output
1079 { U16 raw[3];
1080   U32 len;
1081   int short_tag;
1082
1083   if (!t) return -1;
1084
1085   len = (t->id==ST_DEFINESPRITE)?swf_DefineSprite_GetRealSize(t):t->len;
1086
1087   short_tag = len<0x3f&&
1088     (t->id!=ST_DEFINEBITSLOSSLESS&&t->id!=ST_DEFINEBITSLOSSLESS2&&t->id!=ST_SOUNDSTREAMBLOCK&&
1089      t->id!=ST_DEFINEBITSJPEG&&t->id!=ST_DEFINEBITSJPEG2&&t->id!=ST_DEFINEBITSJPEG3);
1090
1091   if (writer)
1092   {
1093 #ifdef MEASURE
1094   int oldpos = writer->pos;
1095 #endif
1096     
1097     if (short_tag)
1098     { raw[0] = SWAP16(len|((t->id&0x3ff)<<6));
1099       if (writer->write(writer,raw,2)!=2)
1100       {
1101         #ifdef DEBUG_RFXSWF
1102           fprintf(stderr,"WriteTag() failed: Short Header.\n");
1103         #endif
1104         return -1;
1105       }
1106     }
1107     else
1108     {
1109       raw[0] = SWAP16((t->id<<6)|0x3f);
1110       if (writer->write(writer,raw,2)!=2)
1111       {
1112 #ifdef DEBUG_RFXSWF
1113           fprintf(stderr,"WriteTag() failed: Long Header (1).\n");
1114 #endif
1115           return -1;
1116       }
1117       
1118       len = SWAP32(len);
1119       if (writer->write(writer,&len,4)!=4)
1120       {
1121         #ifdef DEBUG_RFXSWF
1122           fprintf(stderr,"WriteTag() failed: Long Header (2).\n");
1123         #endif
1124         return -1;
1125       }
1126     }
1127     
1128     if (t->data)
1129     { if (writer->write(writer,t->data,t->len)!=t->len)
1130       {
1131         #ifdef DEBUG_RFXSWF
1132           fprintf(stderr,"WriteTag() failed: Data.\n");
1133         #endif
1134         return -1;
1135       }
1136     }
1137     #ifdef DEBUG_RFXSWF
1138       else if (t->len) fprintf(stderr,"WriteTag(): Tag Data Error, id=%i\n",t->id);
1139     #endif
1140
1141 #ifdef MEASURE
1142   writer->flush(writer);
1143   printf("TAG %s costs %d bytes\n", swf_TagGetName(t), writer->pos-oldpos);
1144 #endif
1145   }
1146
1147   return t->len+(short_tag?2:6);
1148 }
1149
1150 int swf_WriteTag(int handle, TAG * t)
1151 {
1152   writer_t writer;
1153   int len = 0;
1154   if(handle<0)
1155     return swf_WriteTag2(0, t);
1156   writer_init_filewriter(&writer, handle);
1157   len = swf_WriteTag2(&writer, t);
1158   writer.finish(&writer);
1159   return len;
1160 }
1161
1162 int swf_DefineSprite_GetRealSize(TAG * t)
1163 // Sprite Handling: Helper function to pack DefineSprite-Tag
1164 { U32 len = t->len;
1165   if(len>4) { // folded sprite
1166       return t->len;
1167   }
1168   do
1169   { t = swf_NextTag(t);
1170     if (t && t->id!=ST_DEFINESPRITE) len += swf_WriteTag(-1, t);
1171     else t = NULL;
1172   } while (t&&(t->id!=ST_END));
1173   return len;
1174 }
1175
1176 void swf_UnFoldSprite(TAG * t)
1177 {
1178   U16 id,tmp;
1179   U32 len;
1180   TAG*next = t;
1181   U16 spriteid,spriteframes;
1182   int level;
1183   if(t->id!=ST_DEFINESPRITE)
1184     return;
1185   if(t->len<=4) // not folded
1186     return;
1187
1188   swf_SetTagPos(t,0);
1189
1190   spriteid = swf_GetU16(t); //id
1191   spriteframes = swf_GetU16(t); //frames
1192
1193   level = 1;
1194
1195   while(1)
1196   {
1197     TAG*it = 0;
1198     tmp = swf_GetU16(t);
1199     len = tmp&0x3f;
1200     id  = tmp>>6;
1201     if(id == ST_END)
1202         level--;
1203     if(id == ST_DEFINESPRITE && len<=4)
1204         level++;
1205
1206     if (len==0x3f)
1207         len = swf_GetU32(t);
1208     it = swf_InsertTag(next, id);
1209     next = it;
1210     it->len = len;
1211     it->id  = id;
1212     if (it->len)
1213     { it->data = (U8*)rfx_alloc(it->len);
1214       it->memsize = it->len;
1215       swf_GetBlock(t, it->data, it->len);
1216     }
1217
1218     if(!level)
1219         break;
1220   }
1221   
1222   rfx_free(t->data); t->data = 0;
1223   t->memsize = t->len = t->pos = 0;
1224
1225   swf_SetU16(t, spriteid);
1226   swf_SetU16(t, spriteframes);
1227 }
1228
1229 void swf_FoldSprite(TAG * t)
1230 {
1231   TAG*sprtag=t,*tmp;
1232   U16 id,frames;
1233   int level;
1234   if(t->id!=ST_DEFINESPRITE)
1235       return;
1236   if(!t->len) {
1237       fprintf(stderr, "Error: Sprite has no ID!");
1238       return;
1239   }
1240   if(t->len>4) {
1241     /* sprite is already folded */
1242       return;
1243   }
1244
1245   t->pos = 0;
1246   id = swf_GetU16(t);
1247   rfx_free(t->data);
1248   t->len = t->pos = t->memsize = 0;
1249   t->data = 0;
1250
1251   frames = 0;
1252
1253   t = swf_NextTag(sprtag);
1254   level = 1;
1255
1256   do 
1257   { 
1258     if(t->id==ST_SHOWFRAME) frames++;
1259     if(t->id == ST_DEFINESPRITE && t->len<=4)
1260         level++;
1261     if(t->id == ST_END)
1262         level--;
1263     t = swf_NextTag(t);
1264   } while(t && level);
1265   if(level)
1266     fprintf(stderr, "rfxswf error: sprite doesn't end(1)\n");
1267
1268   swf_SetU16(sprtag, id);
1269   swf_SetU16(sprtag, frames);
1270
1271   t = swf_NextTag(sprtag);
1272   level = 1;
1273
1274   do
1275   { 
1276     if(t->len<0x3f&&
1277         (t->id!=ST_DEFINEBITSLOSSLESS&&t->id!=ST_DEFINEBITSLOSSLESS2&&t->id!=ST_SOUNDSTREAMBLOCK&&
1278          t->id!=ST_DEFINEBITSJPEG&&t->id!=ST_DEFINEBITSJPEG2&&t->id!=ST_DEFINEBITSJPEG3)
1279       ) {
1280         swf_SetU16(sprtag,t->len|(t->id<<6));
1281     } else {
1282         swf_SetU16(sprtag,0x3f|(t->id<<6));
1283         swf_SetU32(sprtag,t->len);
1284     }
1285     if(t->len)
1286         swf_SetBlock(sprtag,t->data, t->len);
1287     tmp = t;
1288     if(t->id == ST_DEFINESPRITE && t->len<=4)
1289         level++;
1290     if(t->id == ST_END)
1291         level--;
1292     t = swf_NextTag(t);
1293     swf_DeleteTag(0, tmp);
1294   } 
1295   while (t && level);
1296   if(level)
1297     fprintf(stderr, "rfxswf error: sprite doesn't end(2)\n");
1298
1299 //  sprtag->next = t;
1300 //  t->prev = sprtag;
1301 }
1302
1303 int swf_IsFolded(TAG * t)
1304 {
1305     return (t->id == ST_DEFINESPRITE && t->len>4);
1306 }
1307
1308 void swf_FoldAll(SWF*swf)
1309 {
1310     TAG*tag = swf->firstTag;
1311     //swf_DumpSWF(stdout, swf);
1312     while(tag) {
1313         if(tag->id == ST_DEFINESPRITE) {
1314             swf_FoldSprite(tag);
1315             //swf_DumpSWF(stdout, swf);
1316         }
1317         tag = swf_NextTag(tag);
1318     }
1319 }
1320
1321 void swf_UnFoldAll(SWF*swf)
1322 {
1323     TAG*tag = swf->firstTag;
1324     while(tag) {
1325         if(tag->id == ST_DEFINESPRITE)
1326             swf_UnFoldSprite(tag);
1327         tag = tag->next;
1328     }
1329 }
1330
1331 void swf_OptimizeTagOrder(SWF*swf)
1332 {
1333   TAG*tag,*next;
1334   TAG*level0;
1335   int level;
1336   int changes;
1337   swf_UnFoldAll(swf);
1338   /* at the moment, we don't actually do optimizing,
1339      only fixing of non-spec-conformant things like
1340      sprite tags */
1341
1342   do {
1343     changes = 0;
1344     level = 0;
1345     level0 = 0;
1346     tag = swf->firstTag;
1347     while(tag) {
1348       next = tag->next;
1349       if(tag->id == ST_DEFINESPRITE) {
1350         if(tag->len>4) {
1351           /* ??? all sprites are supposed to be unfolded */
1352           fprintf(stderr, "librfxswf error - internal error in OptimizeTagOrder/UnfoldAll\n");
1353         }
1354         level++;
1355         if(level==1) {
1356           level0 = tag;
1357           tag = next;
1358           continue;
1359         }
1360       }
1361       if(level>=1) {
1362         /* move non-sprite tags out of sprite */
1363         if(!swf_isAllowedSpriteTag(tag) || level>=2) {
1364           /* remove tag from current position */
1365           tag->prev->next = tag->next;
1366           if(tag->next)
1367             tag->next->prev = tag->prev;
1368
1369           /* insert before tag level0 */
1370           tag->next = level0;
1371           tag->prev = level0->prev;
1372           level0->prev = tag;
1373           if(tag->prev)
1374             tag->prev->next = tag;
1375           else
1376             swf->firstTag = tag;
1377           changes = 1;
1378         }
1379       }
1380       if(tag->id == ST_END) {
1381         level--;
1382       }
1383
1384       tag = next;
1385     }
1386   } while(changes);
1387 }
1388
1389 // Movie Functions
1390
1391 int swf_ReadSWF2(reader_t*reader, SWF * swf)   // Reads SWF to memory (malloc'ed), returns length or <0 if fails
1392 {     
1393   if (!swf) return -1;
1394   memset(swf,0x00,sizeof(SWF));
1395
1396   { char b[32];                         // read Header
1397     int len;
1398     TAG * t;
1399     TAG t1;
1400     reader_t zreader;
1401     
1402     if ((len = reader->read(reader ,b,8))<8) return -1;
1403
1404     if (b[0]!='F' && b[0]!='C') return -1;
1405     if (b[1]!='W') return -1;
1406     if (b[2]!='S') return -1;
1407     swf->fileVersion = b[3];
1408     swf->compressed  = (b[0]=='C')?1:0;
1409     swf->fileSize    = GET32(&b[4]);
1410     
1411     if(swf->compressed) {
1412         reader_init_zlibinflate(&zreader, reader);
1413         reader = &zreader;
1414     }
1415     swf->compressed = 0; // derive from version number from now on
1416
1417     reader_GetRect(reader, &swf->movieSize);
1418     reader->read(reader, &swf->frameRate, 2);
1419     swf->frameRate = SWAP16(swf->frameRate);
1420     reader->read(reader, &swf->frameCount, 2);
1421     swf->frameCount = SWAP16(swf->frameCount);
1422
1423     /* read tags and connect to list */
1424     t = &t1;
1425     while (t) {
1426       t = swf_ReadTag(reader,t);
1427       if(t && t->id == ST_FILEATTRIBUTES) {
1428         swf->fileAttributes = swf_GetU32(t);
1429         swf_ResetReadBits(t);
1430       }
1431     }
1432     swf->firstTag = t1.next;
1433     t1.next->prev = NULL;
1434   }
1435   
1436   return reader->pos;
1437 }
1438
1439 int swf_ReadSWF(int handle, SWF * swf)
1440 {
1441   reader_t reader;
1442   reader_init_filereader(&reader, handle);
1443   return swf_ReadSWF2(&reader, swf);
1444 }
1445
1446 int no_extra_tags = 0;
1447
1448 int WriteExtraTags(SWF*swf, writer_t*writer)
1449 {
1450     TAG*t = swf->firstTag;
1451     TAG* has_fileattributes=0;
1452     int has_scenedescription=0;
1453     int has_version_8_action=0;
1454     int has_version_9_action=0;
1455     int len = 0;
1456     while(t) {
1457         if(t->id == ST_FILEATTRIBUTES)
1458             has_fileattributes = t;
1459         if(t->id == ST_SCENEDESCRIPTION)
1460             has_scenedescription = 1;
1461         if(t->id == ST_DOABC) 
1462             has_version_9_action=1;
1463         /* FIXME: this doesn't yet find actionscript in buttons */
1464         if(t->id == ST_DOACTION || t->id == ST_DOINITACTION) 
1465             has_version_8_action=1;
1466         if(t->id == ST_PLACEOBJECT2 && t->len && (t->data[0]&0x80))
1467             has_version_8_action=1;
1468         t = t->next;
1469     }
1470     if(has_version_8_action && has_version_9_action) {
1471         fprintf(stderr, "Warning: File contains both flash 8 and flash 9 actionscript\n");
1472     }
1473
1474     if(swf->fileVersion >= 9) {
1475         if(!has_fileattributes) {
1476             U32 flags = swf->fileAttributes|0x08; // 16 = has symbolclass tag | 8 = actionscript3 | 1 = usenetwork
1477             if(has_version_8_action && !has_version_9_action)
1478                 flags &= ~0x08;
1479             TAG*fileattrib = swf_InsertTag(0, ST_FILEATTRIBUTES);
1480             swf_SetU32(fileattrib, flags);
1481             if(writer) {
1482                 if(swf_WriteTag2(writer, fileattrib)<0) 
1483                     return -1;
1484             } else {
1485                 len += swf_WriteTag(-1,fileattrib);
1486             }
1487             swf_DeleteTag(0, fileattrib);
1488         } else {
1489             if(swf_WriteTag2(writer, has_fileattributes)<0) 
1490                 return -1;
1491         }
1492         if(!has_scenedescription) {
1493             TAG*scene = swf_InsertTag(0, ST_SCENEDESCRIPTION);
1494             swf_SetU16(scene, 1);
1495             swf_SetString(scene, (U8*)"Scene 1");
1496             swf_SetU8(scene, 0);
1497             if(writer) {
1498                 if(swf_WriteTag2(writer, scene)<0) 
1499                     return -1;
1500             } else {
1501                 len += swf_WriteTag(-1,scene);
1502             }
1503             swf_DeleteTag(0, scene);
1504         }
1505     }
1506     return len;
1507 }
1508
1509 int  swf_WriteSWF2(writer_t*writer, SWF * swf)     // Writes SWF to file, returns length or <0 if fails
1510 { U32 len;
1511   TAG * t;
1512   int frameCount=0;
1513   writer_t zwriter;
1514   int fileSize = 0;
1515   int inSprite = 0;
1516   int ret;
1517   writer_t*original_writer = writer;
1518   int writer_lastpos = 0;
1519     
1520   if (!swf) return -1;
1521   if (!writer) return -1; // the caller should provide a nullwriter, not 0, for querying SWF size
1522
1523   if(original_writer) writer_lastpos = original_writer->pos;
1524
1525   // Count Frames + File Size
1526
1527   len = 0;
1528   t = swf->firstTag;
1529   frameCount = 0;
1530
1531   len += WriteExtraTags(swf, 0);
1532   while(t) {
1533       len += swf_WriteTag(-1,t);
1534       if(t->id == ST_DEFINESPRITE && !swf_IsFolded(t)) inSprite++;
1535       else if(t->id == ST_END && inSprite) inSprite--;
1536       else if(t->id == ST_END && !inSprite) {
1537         if(t->prev && t->prev->id!=ST_SHOWFRAME)
1538           frameCount++;
1539       }
1540       else if(t->id == ST_SHOWFRAME && !inSprite) frameCount++;
1541       t = swf_NextTag(t);
1542   }
1543   
1544   { TAG t1;
1545     char b[64],b4[4];
1546     U32 l;
1547
1548     memset(&t1,0x00,sizeof(TAG));
1549     t1.data    = (U8*)b;
1550     t1.memsize = 64;
1551     
1552     { // measure header file size
1553       TAG t2;
1554       char b2[64];
1555       memset(&t2,0x00,sizeof(TAG));
1556       t2.data    = (U8*)b2;
1557       t2.memsize = 64;
1558       swf_SetRect(&t2, &swf->movieSize);
1559       swf_SetU16(&t2, swf->frameRate);
1560       swf_SetU16(&t2, swf->frameCount);
1561       l = swf_GetTagLen(&t2)+8;
1562     }
1563     if(swf->compressed == 8) {
1564       l -= 8;
1565     }
1566
1567     fileSize = l+len;
1568     if(len) {// don't touch headers without tags
1569         swf->fileSize = fileSize;
1570         swf->frameCount = frameCount;
1571     }
1572
1573     if(swf->compressed != 8) {
1574     /* compressed flag set to 8 means "skip first 8 
1575        header bytes". This is necessary if the caller wants to
1576        create compressed SWFs himself .
1577        It also means that we don't initialize our own zlib
1578        writer, but assume the caller provided one.
1579      */
1580       if(swf->compressed==1 || (swf->compressed==0 && swf->fileVersion>=6)) {
1581         char*id = "CWS";
1582         writer->write(writer, id, 3);
1583       } else {
1584         char*id = "FWS";
1585         writer->write(writer, id, 3);
1586       }
1587
1588       writer->write(writer, &swf->fileVersion, 1);
1589       PUT32(b4, swf->fileSize);
1590       writer->write(writer, b4, 4);
1591       
1592       if(swf->compressed==1 || (swf->compressed==0 && swf->fileVersion>=6)) {
1593         writer_init_zlibdeflate(&zwriter, writer);
1594         writer = &zwriter;
1595       }
1596     }
1597
1598     swf_SetRect(&t1,&swf->movieSize);
1599     swf_SetU16(&t1,swf->frameRate);
1600     swf_SetU16(&t1,swf->frameCount);
1601
1602     ret = writer->write(writer,b,swf_GetTagLen(&t1));
1603     if (ret!=swf_GetTagLen(&t1))
1604     {
1605       #ifdef DEBUG_RFXSWF
1606         fprintf(stderr, "ret:%d\n",ret);
1607         perror("write:");
1608         fprintf(stderr,"WriteSWF() failed: Header.\n");
1609       #endif
1610       return -1;
1611     }
1612
1613     if(!no_extra_tags) {
1614         WriteExtraTags(swf, writer);
1615     }
1616     t = swf->firstTag;
1617
1618     while (t) { 
1619         if(no_extra_tags || t->id != ST_FILEATTRIBUTES) {
1620           if(swf_WriteTag2(writer, t)<0) 
1621             return -1;
1622         }
1623         t = t->next;
1624     }
1625     if(swf->compressed==1 || (swf->compressed==0 && swf->fileVersion>=6) || swf->compressed==8) {
1626       if(swf->compressed != 8) {
1627         zwriter.finish(&zwriter);
1628         return original_writer->pos - writer_lastpos;
1629       }
1630       return (int)fileSize;
1631     } else {
1632       return (int)fileSize;
1633     }
1634   }
1635 }
1636
1637 int  swf_WriteSWF(int handle, SWF * swf)     // Writes SWF to file, returns length or <0 if fails
1638 {
1639   writer_t writer;
1640   int len = 0;
1641   
1642   if(handle<0) {
1643     writer_init_nullwriter(&writer);
1644     len = swf_WriteSWF2(&writer, swf);
1645     return len;
1646   }
1647   writer_init_filewriter(&writer, handle);
1648   len = swf_WriteSWF2(&writer, swf);
1649   writer.finish(&writer);
1650   return len;
1651 }
1652
1653 int swf_WriteHeader2(writer_t*writer,SWF * swf)
1654 {
1655   SWF myswf;
1656   memcpy(&myswf,swf,sizeof(SWF));
1657   myswf.firstTag = 0;
1658   return swf_WriteSWF2(writer, &myswf);
1659 }
1660
1661 int swf_WriteHeader(int handle,SWF * swf)
1662 {
1663   SWF myswf;
1664   memcpy(&myswf,swf,sizeof(SWF));
1665   myswf.firstTag = 0;
1666   return swf_WriteSWF(handle, &myswf);
1667 }
1668
1669 int swf_WriteCGI(SWF * swf)
1670 { int len;
1671   char s[1024];
1672     
1673   len = swf_WriteSWF(-1,swf);
1674
1675   if (len<0) return -1;
1676
1677   sprintf(s,"Content-type: application/x-shockwave-flash\n"
1678             "Accept-Ranges: bytes\n"
1679             "Content-Length: %lu\n"
1680             "Expires: Thu, 13 Apr 2000 23:59:59 GMT\n"
1681             "\n",len);
1682             
1683   write(fileno(stdout),s,strlen(s));
1684   return swf_WriteSWF(fileno(stdout),swf);
1685 }
1686
1687 SWF* swf_CopySWF(SWF*swf)
1688 {
1689     SWF*nswf = (SWF*)rfx_alloc(sizeof(SWF));
1690     TAG*tag, *ntag;
1691     memcpy(nswf, swf, sizeof(SWF));
1692     nswf->firstTag = 0;
1693     tag = swf->firstTag;
1694     ntag = 0;
1695     while(tag) {
1696         ntag = swf_CopyTag(ntag, tag);
1697         if(!nswf->firstTag)
1698             nswf->firstTag = ntag;
1699         tag = tag->next;
1700     }
1701     return nswf;
1702 }
1703
1704 void swf_FreeTags(SWF * swf)                 // Frees all malloc'ed memory for tags
1705 { TAG * t = swf->firstTag;
1706
1707   while (t)
1708   { TAG * tnew = t->next;
1709     if (t->data) rfx_free(t->data);
1710     rfx_free(t);
1711     t = tnew;
1712   }
1713   swf->firstTag = 0;
1714 }
1715
1716 // include advanced functions
1717
1718 //#include "modules/swfdump.c"
1719 //#include "modules/swfshape.c"
1720 //#include "modules/swftext.c"
1721 //#include "modules/swffont.c"
1722 //#include "modules/swfobject.c"
1723 //#include "modules/swfbutton.c"
1724 //#include "modules/swftools.c"
1725 //#include "modules/swfcgi.c"
1726 //#include "modules/swfbits.c"
1727 //#include "modules/swfaction.c"
1728 //#include "modules/swfabc.c"
1729 //#include "modules/swfsound.c"
1730 //#include "modules/swfdraw.c"
1731 //#include "modules/swfrender.c"
1732 //#include "modules/swffilter.c"