2 main routine for swfcombine(1), a tool for merging .swf-files.
4 Part of the swftools package.
6 Copyright (c) 2001,2002,2003 Matthias Kramm <kramm@quiss.org>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
25 #include "../lib/rfxswf.h"
26 #include "../lib/args.h"
27 #include "../lib/log.h"
28 #include "../config.h"
58 struct config_t config;
60 char * master_filename = 0;
61 char * master_name = 0;
62 char * slave_filename[128];
63 char * slave_name[128];
66 float slave_scalex[128];
67 float slave_scaley[128];
68 char slave_isframe[128];
71 char * outputname = "output.swf";
73 int args_callback_option(char*name,char*val) {
79 else if(!strcmp(name,"l"))
84 else if (!strcmp(name, "o"))
89 else if (!strcmp(name, "v"))
94 else if (!strcmp(name, "a"))
99 else if (!strcmp(name, "A"))
101 config.alloctest = 1;
104 else if (!strcmp(name, "x"))
107 config.movex = (int)(x*20+0.5);
110 else if (!strcmp(name, "y"))
113 config.movey = (int)(y*20+0.5);
116 else if (!strcmp(name, "m"))
121 else if (!strcmp(name, "f"))
126 else if (!strcmp(name, "d"))
131 else if (!strcmp(name, "z"))
136 else if (!strcmp(name, "r"))
139 float rate = atof(val);
140 if ((rate < 1.0/256) ||(rate >= 256.0)) {
141 fprintf(stderr, "Error: You must specify a valid framerate between 1/256 and 255.\n");
144 config.framerate = (int)(rate*256);
147 else if (!strcmp(name, "X"))
149 config.sizex = atoi(val)*20;
153 else if (!strcmp(name, "Y"))
155 config.sizey = atoi(val)*20;
159 else if (!strcmp(name, "s"))
161 config.scalex = config.scaley = atoi(val)/100.0;
164 else if (!strcmp(name, "t") || !strcmp(name, "T"))
166 if(master_filename) {
167 fprintf(stderr, "error with arguments. Try --help.\n");
171 if(!strcmp(name,"T"))
173 master_filename = "__none__";
176 else if (!strcmp(name, "V"))
178 printf("swfcombine - part of %s %s\n", PACKAGE, VERSION);
183 fprintf(stderr, "Unknown option: -%s\n", name);
188 static struct options_t options[] = {
209 int args_callback_longoption(char*name,char*val) {
210 return args_long2shortoption(options, name, val);
213 int args_callback_command(char*name, char*val) {
214 char*myname = strdup(name);
216 filename = strchr(myname, '=');
221 // argument has no explicit name field. guess one from the file name
222 char*path = strrchr(myname, '/');
223 char*ext = strrchr(myname, '.');
224 if(!path) path = myname;
231 if(!master_filename) {
232 master_filename = filename;
233 master_name = myname;
234 config.mastermovex = config.movex;
235 config.mastermovey = config.movey;
236 config.masterscalex = config.scalex;
237 config.masterscaley = config.scaley;
238 config.movex = config.movey = 0;
239 config.scalex = config.scaley = 1.0;
241 msg("<verbose> slave entity %s (named \"%s\")\n", filename, myname);
243 slave_filename[numslaves] = filename;
244 slave_name[numslaves] = myname;
245 slave_movex[numslaves] = config.movex;
246 slave_movey[numslaves] = config.movey;
247 slave_scalex[numslaves] = config.scalex;
248 slave_scaley[numslaves] = config.scaley;
249 slave_isframe[numslaves] = config.isframe;
251 config.movex = config.movey = 0;
252 config.scalex = config.scaley = 1.0;
258 void args_callback_usage(char *name)
261 printf("Usage: %s [-rXYomlcv] [-f] masterfile [-xysf] [(name1|#id1)=]slavefile1 .. [-xysf] [(nameN|#idN)=]slavefileN\n", name);
262 printf("OR: %s [-rXYomv] --stack[1] [-xysf] [(name1|#id1)=]slavefile1 .. [-xysf] [(nameN|#idN)=]slavefileN\n", name);
263 printf("OR: %s [-rXYov] --cat [-xysf] [(name1|#id1)=]slavefile1 .. [-xysf] [(nameN|#idN)=]slavefileN\n", name);
264 printf("OR: %s [-rXYomlcv] --dummy [-xys] [file]\n", name);
266 printf("-o , --output <outputfile> explicitly specify output file. (otherwise, output.swf will be used)\n");
267 printf("-t , --stack place each slave in a seperate frame (no master movie)\n");
268 printf("-T , --stack1 place each slave in the first frame (no master movie)\n");
269 printf("-m , --merge Don't store the slaves in Sprites/MovieClips\n");
270 printf("-a , --cat concatenate all slave files (no master movie)\n");
271 printf("-l , --overlay Don't remove any master objects, only overlay new objects\n");
272 printf("-c , --clip Clip the slave objects by the corresponding master objects\n");
273 printf("-v , --verbose Be verbose. Use more than one -v for greater effect \n");
274 printf("-d , --dummy Don't require slave objects (for changing movie attributes)\n");
275 printf("-f , --frame The following identifier is a frame or framelabel, not an id or objectname\n");
276 printf("-x , --movex <xpos> x Adjust position of slave by <xpos> pixels\n");
277 printf("-y , --movey <ypos> y Adjust position of slave by <ypos> pixels\n");
278 printf("-s , --scale <scale> Adjust size of slave by <scale> percent (e.g. 100% = original size)\n");
279 printf("-r , --rate <fps> Set movie framerate to <fps> (frames/sec)\n");
280 printf("-X , --width <width> Force movie bbox width to <width> (default: use master width (not with -t))\n");
281 printf("-Y , --height <height> Force movie bbox height to <height> (default: use master height (not with -t))\n");
282 printf("-z , --zlib <zlib> Enable Flash 6 (MX) Zlib Compression\n");
286 static void makestackmaster(SWF*swf)
295 memset(&box, 0, sizeof(box));
297 /* scan all slaves for bounding box */
298 for(t=numslaves-1;t>=0;t--)
302 int fi=open(slave_filename[t],O_RDONLY|O_BINARY);
304 if(fi<0 || swf_ReadSWF(fi, &head)<0) {
305 msg("<fatal> Couldn't open/read %s.", slave_filename[t]);
309 msg("<verbose> File %s has bounding box %d:%d:%d:%d\n",
311 head.movieSize.xmin, head.movieSize.ymin,
312 head.movieSize.xmax, head.movieSize.ymax);
316 if(tag->id == ST_SETBACKGROUNDCOLOR && tag->len>=3) {
317 rgb.r = tag->data[0];
318 rgb.g = tag->data[1];
319 rgb.b = tag->data[2];
323 frameRate = head.frameRate;
324 if(head.fileVersion > fileversion)
325 fileversion = head.fileVersion;
327 box = head.movieSize;
329 if(head.movieSize.xmin < box.xmin)
330 box.xmin = head.movieSize.xmin;
331 if(head.movieSize.ymin < box.ymin)
332 box.ymin = head.movieSize.ymin;
333 if(head.movieSize.xmax > box.xmax)
334 box.xmax = head.movieSize.xmax;
335 if(head.movieSize.ymax > box.ymax)
336 box.ymax = head.movieSize.ymax;
338 msg("<verbose> New master bounding box is %d:%d:%d:%d\n",
344 memset(swf, 0, sizeof(SWF));
345 swf->fileVersion = fileversion;
346 swf->movieSize = box;
347 swf->frameRate = frameRate;
349 swf->firstTag = swf_InsertTag(0, ST_SETBACKGROUNDCOLOR);
351 swf_SetRGB(tag, &rgb);
353 for(t=0;t<numslaves;t++)
356 sprintf(buf, "Frame%02d", t);
357 slave_name[t] = strdup(buf);
359 tag = swf_InsertTag(tag, ST_DEFINESPRITE);
360 swf_SetU16(tag, t+1);
362 tag = swf_InsertTag(tag, ST_END);
363 tag = swf_InsertTag(tag, ST_PLACEOBJECT2);
364 swf_ObjectPlace(tag, t+1, 1+t,0,0, slave_name[t]);
366 if(!config.stack1 || t == numslaves-1) {
367 tag = swf_InsertTag(tag, ST_SHOWFRAME);
372 tag = swf_InsertTag(tag, ST_REMOVEOBJECT2);
373 swf_SetU16(tag, 1+t);
376 tag = swf_InsertTag(tag, ST_END);
377 msg("<verbose> temporary SWF created");
380 static char* slavename = 0;
381 static int slaveid = -1;
382 static int slaveframe = -1;
383 static char masterbitmap[65536];
384 static char depthbitmap[65536];
386 #define FLAGS_WRITEDEFINES 1
387 #define FLAGS_WRITENONDEFINES 2
388 #define FLAGS_WRITESPRITE 4
389 #define FLAGS_WRITESLAVE 8
391 int get_free_id(char*bitmap)
402 void jpeg_assert(SWF*master, SWF*slave)
404 /* TODO: if there's a jpegtable found, store it
405 and handle it together with the flash file
408 /* check that master and slave don't have both
409 jpegtables (which would be fatal) */
411 TAG *mpos=0, *spos=0;
414 mtag = master->firstTag;
415 stag = slave->firstTag;
418 if(mtag->id == ST_JPEGTABLES)
424 if(stag->id == ST_JPEGTABLES)
430 if(spos->len == mpos->len &&
431 !memcmp(spos->data, mpos->data, mpos->len))
433 // ok, both have jpegtables, but they're identical.
434 // delete one and don't throw an error
440 msg("<error> Master and slave have incompatible JPEGTABLES.");
444 TAG* write_sprite_defines(TAG*tag, SWF*sprite)
446 TAG*rtag = sprite->firstTag;
447 while(rtag && rtag->id!=ST_END) {
448 if(!swf_isAllowedSpriteTag(rtag)) {
449 msg("<debug> processing sprite tag %02x", tag->id);
450 if(swf_isDefiningTag(rtag))
452 msg("<debug> [sprite defs] write tag %02x (%d bytes in body)",
454 tag = swf_InsertTag(tag, rtag->id);
455 swf_SetBlock(tag, rtag->data, rtag->len);
457 else if(swf_isPseudoDefiningTag(rtag))
459 msg("<debug> [sprite defs] write tag %02x (%d bytes in body)",
461 tag = swf_InsertTag(tag, rtag->id);
462 swf_SetBlock(tag, rtag->data, rtag->len);
468 /* if we get here, jpeg_assert has already run,
469 ensuring this is the only one of it's kind,
470 so we may safely write it out */
471 tag = swf_InsertTag(tag, rtag->id);
472 swf_SetBlock(tag, rtag->data, rtag->len);
474 case ST_EXPORTASSETS:
475 msg("<debug> deliberately ignoring EXPORTASSETS tag");
477 case ST_ENABLEDEBUGGER:
478 msg("<debug> deliberately ignoring ENABLEDEBUGGER tag");
480 case ST_SETBACKGROUNDCOLOR:
481 msg("<debug> deliberately ignoring BACKGROUNDCOLOR tag");
486 msg("<notice> found tag %d. This is a Generator template, isn't it?", tag->id);
489 msg("<notice> funny tag: %d is neither defining nor sprite", tag->id);
498 void changedepth(TAG*tag, int add)
500 /* fucking byteorders */
501 if(tag->id == ST_PLACEOBJECT)
502 PUT16(&tag->data[2],GET16(&tag->data[2])+add);
503 if(tag->id == ST_PLACEOBJECT2)
504 PUT16(&tag->data[1],GET16(&tag->data[1])+add);
505 if(tag->id == ST_REMOVEOBJECT)
506 PUT16(&tag->data[2],GET16(&tag->data[2])+add);
507 if(tag->id == ST_REMOVEOBJECT2)
508 PUT16(&tag->data[0],GET16(&tag->data[0])+add);
511 void matrix_adjust(MATRIX*m, int movex, int movey, float scalex, float scaley, int scalepos)
513 m->sx = (int)(m->sx*scalex);
514 m->sy = (int)(m->sy*scaley);
515 m->r1 = (int)(m->r1*scalex);
516 m->r0 = (int)(m->r0*scaley);
525 void write_changepos(TAG*output, TAG*tag, int movex, int movey, float scalex, float scaley, int scalepos)
527 if(movex || movey || scalex != 1.0 || scaley != 1.0)
531 case ST_PLACEOBJECT2: {
534 swf_GetMatrix(0, &m);
538 flags = swf_GetU8(tag);
539 swf_SetU8(output, flags|4);
540 swf_SetU16(output, swf_GetU16(tag)); //depth
543 swf_SetU16(output, swf_GetU16(tag)); //id
547 swf_GetMatrix(tag, &m);
549 swf_GetMatrix(0, &m);
551 matrix_adjust(&m, movex, movey, scalex, scaley, scalepos);
552 swf_SetMatrix(output, &m);
554 if (tag->readBit) { tag->pos++; tag->readBit = 0; } //swf_ResetReadBits(tag);
556 swf_SetBlock(output, &tag->data[tag->pos], tag->len - tag->pos);
559 case ST_PLACEOBJECT: {
561 swf_SetU16(output, swf_GetU16(tag)); //id
562 swf_SetU16(output, swf_GetU16(tag)); //depth
564 swf_GetMatrix(tag, &m);
565 matrix_adjust(&m, movex, movey, scalex, scaley, scalepos);
566 swf_SetMatrix(output, &m);
568 if (tag->readBit) { tag->pos++; tag->readBit = 0; } //swf_ResetReadBits(tag);
570 swf_SetBlock(output, &tag->data[tag->pos], tag->len - tag->pos);
574 swf_SetBlock(output, tag->data, tag->len);
579 swf_SetBlock(output, tag->data, tag->len);
583 TAG* write_sprite(TAG*tag, SWF*sprite, int spriteid, int replaceddefine)
585 TAG* definespritetag;
589 definespritetag = tag = swf_InsertTag(tag, ST_DEFINESPRITE);
590 swf_SetU16(tag, spriteid);
591 swf_SetU16(tag, sprite->frameCount);
592 msg ("<notice> sprite id is %d", spriteid);
594 tmp = sprite->frameCount;
595 msg("<debug> %d frames to go",tmp);
598 tag = swf_InsertTag(tag, ST_PLACEOBJECT2);
599 swf_SetU8(tag, 2+64); //flags: character+clipdepth
600 swf_SetU16(tag, 0); //depth
601 swf_SetU16(tag, replaceddefine); //id
602 swf_SetU16(tag, 65535); //clipdepth
605 if(config.overlay && !config.isframe) {
606 tag = swf_InsertTag(tag, ST_PLACEOBJECT2);
607 swf_SetU8(tag, 2); //flags: character
608 swf_SetU16(tag, 1); //depth
609 swf_SetU16(tag, replaceddefine); //id
612 rtag = sprite->firstTag;
613 while(rtag && rtag->id!=ST_END)
615 if (swf_isAllowedSpriteTag(rtag)) {
617 msg("<debug> [sprite main] write tag %02x (%d bytes in body)",
618 rtag->id, rtag->len);
619 tag = swf_InsertTag(tag, rtag->id);
620 write_changepos(tag, rtag, config.movex, config.movey, config.scalex, config.scaley, 0);
622 changedepth(tag, +2);
624 if(tag->id == ST_SHOWFRAME)
627 msg("<debug> %d frames to go",tmp);
632 tag = swf_InsertTag(tag, ST_END);
636 static char tag_ok_for_slave(int id)
638 if(id == ST_SETBACKGROUNDCOLOR)
643 TAG* write_master(TAG*tag, SWF*master, SWF*slave, int spriteid, int replaceddefine, int flags)
648 int slavewritten = 0;
650 TAG* rtag = master->firstTag;
651 TAG* stag = slave->firstTag;
653 while(rtag && rtag->id!=ST_END)
655 if(rtag->id == ST_SHOWFRAME && outputslave)
657 while(stag && stag->id!=ST_END) {
658 if(stag->id == ST_SHOWFRAME) {
663 if(tag_ok_for_slave(stag->id)) {
664 tag = swf_InsertTag(tag, stag->id);
665 swf_SetBlock(tag, stag->data, stag->len);
670 if(rtag->id == ST_SHOWFRAME)
675 if(swf_isDefiningTag(rtag) && (flags&FLAGS_WRITEDEFINES))
677 msg("<debug> [master] write tag %02x (%d bytes in body)",
678 rtag->id, rtag->len);
679 if(swf_GetDefineID(rtag) == spriteid && !config.isframe)
683 tag = swf_InsertTag(tag, rtag->id);
684 swf_SetBlock(tag, rtag->data, rtag->len);
685 swf_SetDefineID(tag, replaceddefine);
687 /* don't write this tag */
688 msg("<verbose> replacing tag %d id %d with sprite", rtag->id
692 if(flags&FLAGS_WRITESPRITE)
694 tag = write_sprite_defines(tag, slave);
695 tag = write_sprite(tag, slave, spriteid, replaceddefine);
697 if(flags&FLAGS_WRITESLAVE)
702 tag = swf_InsertTag(tag, rtag->id);
703 swf_SetBlock(tag, rtag->data, rtag->len);
706 if(frame == slaveframe)
708 if(flags&FLAGS_WRITESLAVE) {
712 if((flags&FLAGS_WRITESPRITE) && !slavewritten)
714 int id = get_free_id(masterbitmap);
717 msg("<fatal> Can't combine --clip and --frame");
720 tag = write_sprite_defines(tag, slave);
721 tag = write_sprite(tag, slave, id, -1);
723 tag = swf_InsertTag(tag, ST_PLACEOBJECT2);
724 swf_SetU8(tag, 2); //flags: id
725 swf_SetU16(tag, depth);
731 if(!swf_isDefiningTag(rtag) && (flags&FLAGS_WRITENONDEFINES))
736 case ST_PLACEOBJECT2:
737 if(frame == slaveframe && !config.overlay)
739 case ST_REMOVEOBJECT:
740 /* place/removetags for the object we replaced
741 should be discarded, too, as the object to insert
744 if(spriteid>=0 && swf_GetPlaceID(rtag) == spriteid &&
745 !config.isframe && config.merge)
748 case ST_REMOVEOBJECT2:
752 msg("<debug> [master] write tag %02x (%d bytes in body)",
753 rtag->id, rtag->len);
754 tag = swf_InsertTag(tag, rtag->id);
755 write_changepos(tag, rtag, config.mastermovex, config.mastermovey, config.masterscalex, config.masterscaley, 1);
762 while(stag && stag->id!=ST_END)
764 if(tag_ok_for_slave(stag->id)) {
765 tag = swf_InsertTag(tag, stag->id);
766 swf_SetBlock(tag, stag->data, stag->len);
770 if(!slavewritten && config.isframe && (flags&(FLAGS_WRITESLAVE|FLAGS_WRITESPRITE)))
773 msg("<warning> Frame %d doesn't exist in file. No substitution will occur",
776 msg("<warning> Frame \"%s\" doesn't exist in file. No substitution will occur",
779 tag = swf_InsertTag(tag, ST_END);
783 void adjustheader(SWF*swf)
786 swf->frameRate = config.framerate;
787 if(config.hassizex) {
788 swf->movieSize.xmax =
789 swf->movieSize.xmin + config.sizex;
791 if(config.hassizey) {
792 swf->movieSize.ymax =
793 swf->movieSize.ymin + config.sizey;
797 void catcombine(SWF*master, char*slave_name, SWF*slave, SWF*newswf)
804 msg("<fatal> Can't combine --cat and --frame");
808 tag = master->firstTag;
811 if(swf_isDefiningTag(tag)) {
812 int defineid = swf_GetDefineID(tag);
813 msg("<debug> tagid %02x defines object %d", tag->id, defineid);
814 masterbitmap[defineid] = 1;
819 swf_Relocate(slave, masterbitmap);
820 jpeg_assert(master, slave);
822 memcpy(newswf, master, sizeof(SWF));
823 adjustheader(newswf);
825 tag = newswf->firstTag = swf_InsertTag(0, ST_REFLEX); // to be removed later
827 depths = malloc(65536);
829 msg("<fatal> Couldn't allocate %d bytes of memory", 65536);
832 memset(depths, 0, 65536);
833 mtag = master->firstTag;
834 while(mtag && mtag->id!=ST_END)
838 msg("<debug> [master] write tag %02x (%d bytes in body)",
839 mtag->id, mtag->len);
841 case ST_PLACEOBJECT2:
843 case ST_PLACEOBJECT: {
844 depth = swf_GetDepth(mtag);
848 case ST_REMOVEOBJECT: {
849 depth = swf_GetDepth(mtag);
853 case ST_REMOVEOBJECT2: {
854 depth = swf_GetDepth(mtag);
859 tag = swf_InsertTag(tag, mtag->id);
860 swf_SetBlock(tag, mtag->data, mtag->len);
870 tag = swf_InsertTag(tag, ST_REMOVEOBJECT2);
875 stag = slave->firstTag;
876 while(stag && stag->id!=ST_END)
878 msg("<debug> [slave] write tag %02x (%d bytes in body)",
879 stag->id, stag->len);
880 tag = swf_InsertTag(tag, stag->id);
881 swf_SetBlock(tag, stag->data, stag->len);
884 tag = swf_InsertTag(tag, ST_END);
886 tag = newswf->firstTag;
887 newswf->firstTag = newswf->firstTag->next; //remove temporary tag
891 void normalcombine(SWF*master, char*slave_name, SWF*slave, SWF*newswf)
894 int replaceddefine = -1;
897 TAG * tag = master->firstTag;
899 memset(depthbitmap, 0, sizeof(depthbitmap));
904 int depth = swf_GetDepth(tag);
906 depthbitmap[depth] = 1;
908 if(swf_isDefiningTag(tag)) {
909 int defineid = swf_GetDefineID(tag);
910 msg("<debug> tagid %02x defines object %d", tag->id, defineid);
911 masterbitmap[defineid] = 1;
913 if (!slavename && defineid==slaveid) {
916 msg("<notice> Slave file attached to object %d.", defineid);
919 } else if(tag->id == ST_PLACEOBJECT2) {
920 char * name = swf_GetName(tag);
921 int id = swf_GetPlaceID(tag);
924 msg("<verbose> tagid %02x places object %d named \"%s\"", tag->id, id, name);
926 msg("<verbose> tagid %02x places object %d (no name)", tag->id, id);
928 if (name && slavename && !strcmp(name,slavename)) {
931 msg("<notice> Slave file attached to named object %s (%d).", name, id);
934 } else if(tag->id == ST_SHOWFRAME) {
935 if(slaveframe>=0 && frame==slaveframe) {
936 msg("<notice> Slave file attached to frame %d.", frame);
939 } else if(tag->id == ST_FRAMELABEL) {
940 char * name = tag->data;
941 if(name && slavename && config.isframe && !strcmp(name, slavename)) {
943 msg("<notice> Slave file attached to frame %d (%s).", frame, name);
949 if (spriteid<0 && !config.isframe) {
951 if(strcmp(slavename,"!!dummy!!"))
952 msg("<warning> Didn't find anything named %s in file. No substitutions will occur.", slavename);
955 msg("<warning> Didn't find id %d in file. No substitutions will occur.", slaveid);
956 spriteid = get_free_id(masterbitmap);
959 swf_Relocate (slave, masterbitmap);
960 swf_RelocateDepth (slave, depthbitmap);
961 jpeg_assert(slave, master);
964 replaceddefine = get_free_id(masterbitmap);
968 memcpy(newswf, master, sizeof(SWF));
969 adjustheader(newswf);
971 newswf->firstTag = tag = swf_InsertTag(0, ST_REFLEX); // to be removed later
973 if (config.antistream) {
975 msg("<fatal> Can't combine --antistream and --merge");
977 tag = write_sprite_defines(tag, slave);
978 tag = write_sprite(tag, slave, spriteid, replaceddefine);
979 tag = write_master(tag, master, slave, spriteid, replaceddefine, FLAGS_WRITEDEFINES);
980 tag = write_master(tag, master, slave, spriteid, replaceddefine, FLAGS_WRITENONDEFINES);
983 tag = write_master(tag, master, slave, spriteid, replaceddefine,
984 FLAGS_WRITEDEFINES|FLAGS_WRITENONDEFINES| FLAGS_WRITESLAVE );
986 tag = write_master(tag, master, slave, spriteid, replaceddefine,
987 FLAGS_WRITEDEFINES|FLAGS_WRITENONDEFINES| FLAGS_WRITESPRITE );
990 tag = newswf->firstTag;
991 newswf->firstTag = newswf->firstTag->next; //remove temporary tag
995 void combine(SWF*master, char*slave_name, SWF*slave, SWF*newswf)
997 slavename = slave_name;
1001 swf_FoldAll(master);
1004 if(slavename[0] == '#')
1006 slaveid = atoi(&slavename[1]);
1013 if(slavename && slavename[0]!='#' && (sscanf(slavename, "%d", &tmp) ==
1014 strlen(slavename))) {
1015 /* if the name the slave should replace
1016 consists only of digits and the -f
1017 option is given, it probably is not
1018 a frame name but a frame number.
1025 slaveframe = slaveid;
1028 /* if id wasn't given as either #number or number,
1029 the name is a frame label. BTW: The user wouldn't necessarily have
1030 needed to supply the -f option in this case */
1034 msg("<debug> move x (%d)", config.movex);
1035 msg("<debug> move y (%d)", config.movey);
1036 msg("<debug> scale x (%f)", config.scalex);
1037 msg("<debug> scale y (%f)", config.scaley);
1038 msg("<debug> master move x (%d)", config.mastermovex);
1039 msg("<debug> master move y (%d)", config.mastermovey);
1040 msg("<debug> master scale x (%f)", config.masterscalex);
1041 msg("<debug> master scale y (%f)", config.masterscaley);
1042 msg("<debug> is frame (%d)", config.isframe);
1044 memset(masterbitmap, 0, sizeof(masterbitmap));
1047 return catcombine(master, slave_name, slave, newswf);
1049 return normalcombine(master, slave_name, slave, newswf);
1052 int main(int argn, char *argv[])
1061 config.antistream = 0;
1062 config.alloctest = 0;
1066 config.loglevel = 2;
1069 config.scalex = 1.0;
1070 config.scaley = 1.0;
1073 config.masterscalex = 1.0;
1074 config.masterscaley = 1.0;
1075 config.mastermovex = 0;
1076 config.mastermovey = 0;
1077 config.hassizex = 0;
1078 config.hassizey = 0;
1079 config.framerate = 0;
1085 processargs(argn, argv);
1086 initLog(0,-1,0,0,-1,config.loglevel);
1088 if(config.merge && config.cat) {
1089 msg("<error> Can't combine --cat and --merge");
1094 if(config.overlay) {
1095 msg("<error> Can't combine -l and -t");
1099 msg("<error> Can't combine -c and -t");
1102 msg("<verbose> (stacking) %d files found\n", numslaves);
1104 makestackmaster(&master);
1108 msg("<verbose> master entity %s (named \"%s\")\n", master_filename, master_name);
1109 fi = open(master_filename, O_RDONLY|O_BINARY);
1111 msg("<fatal> Failed to open %s\n", master_filename);
1114 ret = swf_ReadSWF(fi, &master);
1116 msg("<fatal> Failed to read from %s\n", master_filename);
1119 msg("<debug> Read %d bytes from masterfile\n", ret);
1123 for(t=0;t<numslaves;t++) {
1124 msg("<verbose> slave entity(%d) %s (%s \"%s\")\n", t+1, slave_filename[t],
1125 slave_isframe[t]?"frame":"object", slave_name[t]);
1132 msg("<error> --dummy (-d) implies there are zero slave objects. You supplied %d.", numslaves);
1136 slave_filename[0] = "!!dummy!!";
1137 slave_name[0] = "!!dummy!!";
1138 slave_isframe[0] = 0;
1141 if (config.alloctest)
1143 char*bitmap = malloc(sizeof(char)*65536);
1144 memset(bitmap, 0, 65536*sizeof(char));
1145 memset(bitmap, 1, 101*sizeof(char));
1146 swf_Relocate(&master, bitmap);
1149 // makestackmaster(&newswf);
1156 msg("<error> You must have at least two objects.");
1158 msg("<error> You must have at least one slave entity.");
1161 for(t = 0; t < numslaves; t++)
1163 config.movex = slave_movex[t];
1164 config.movey = slave_movey[t];
1165 config.scalex = slave_scalex[t];
1166 config.scaley = slave_scaley[t];
1167 config.isframe = slave_isframe[t];
1169 msg("<notice> Combine [%s]%s and [%s]%s", master_name, master_filename,
1170 slave_name[t], slave_filename[t]);
1174 fi = open(slave_filename[t], O_RDONLY|O_BINARY);
1176 msg("<fatal> Failed to open %s\n", slave_filename[t]);
1179 ret = swf_ReadSWF(fi, &slave);
1181 msg("<fatal> Failed to read from %s\n", slave_filename[t]);
1184 msg("<debug> Read %d bytes from slavefile\n", ret);
1189 memset(&slave, 0, sizeof(slave));
1190 slave.firstTag = swf_InsertTag(0, ST_END);
1191 slave.frameRate = 0;
1192 slave.fileVersion = 4;
1193 slave.frameCount = 0;
1196 combine(&master, slave_name[t], &slave, &newswf);
1201 fi = open(outputname, O_BINARY|O_RDWR|O_TRUNC|O_CREAT, 0777);
1204 swf_WriteSWC(fi, &newswf);
1206 newswf.compressed = 0;
1207 swf_WriteSWF(fi, &newswf);