implemented conditional compilation
[swftools.git] / src / as3compile.c
1 /* as3compile.c
2    Compiles ActionScript 3.0 (.as) files into .swf files.
3
4    Part of the swftools package.
5
6    Copyright (c) 2008/2009 Matthias Kramm <kramm@quiss.org>
7
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.
12
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.
17
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 */
21
22 #include <stdlib.h>
23 #include <stdio.h>
24 #include <string.h>
25 #include <errno.h>
26 #include <unistd.h>
27 #include "../lib/rfxswf.h"
28 #include "../lib/args.h"
29 #include "../lib/q.h"
30 #include "../lib/os.h"
31
32 static char * filename = 0;
33 static char * outputname = 0;
34 static int override_outputname = 0;
35 static int do_cgi = 0;
36 static double framerate = 25.0;
37 static double width = 400;
38 static double height = 300;
39 static int flashversion = 9;
40 static int verbose = 1;
41 static char local_with_networking = 0;
42 static char local_with_filesystem = 0;
43
44 static struct options_t options[] = {
45 {"h", "help"},
46 {"V", "version"},
47 {"v", "verbose"},
48 {"q", "quiet"},
49 {"C", "cgi"},
50 {"D", "define"},
51 {"X", "width"},
52 {"Y", "height"},
53 {"r", "rate"},
54 {"l", "library"},
55 {"I", "include"},
56 {"T", "flashversion"},
57 {"R", "recurse"},
58 {"o", "output"},
59 {0,0}
60 };
61
62 int args_callback_option(char*name,char*val)
63 {
64     if(!strcmp(name, "V")) {
65         printf("swfc - part of %s %s\n", PACKAGE, VERSION);
66         exit(0);
67     }
68     else if(!strcmp(name, "o")) {
69         outputname = val;
70         override_outputname = 1;
71         return 1;
72     }
73     else if(!strcmp(name, "r")) {
74         framerate = atof(val);
75         return 1;
76     }
77     else if(!strcmp(name, "v")) {
78         verbose++;
79         return 0;
80     }
81     else if(!strcmp(name, "q")) {
82         verbose--;
83         return 0;
84     }
85     else if(!strcmp(name, "X")) {
86         width = atof(val);
87         return 1;
88     }
89     else if(!strcmp(name, "Y")) {
90         height = atof(val);
91         return 1;
92     }
93     else if(!strcmp(name, "T")) {
94         flashversion = atoi(val);
95         return 1;
96     }
97     else if(!strcmp(name, "C")) {
98         do_cgi = 1;
99         return 0;
100     }
101     else if(!strcmp(name, "l")) {
102         as3_import_file(val);
103         return 1;
104     }
105     else if(!strcmp(name, "I")) {
106         as3_add_include_dir(val);
107         return 1;
108     }
109     else if(!strcmp(name, "R")) {
110         as3_set_option("recurse","1");
111         return 0;
112     }
113     else if(!strcmp(name, "D")) {
114         as3_set_define(val);
115         return 1;
116     }
117     else if (!strcmp(name, "N"))
118     {
119         local_with_networking = 1;
120         return 0;
121     }
122     else if (!strcmp(name, "L"))
123     {
124         local_with_filesystem = 1;
125         return 0;
126     }
127     else {
128         printf("Unknown option: -%s\n", name);
129         exit(1);
130     }
131     return 0;
132 }
133 int args_callback_longoption(char*name,char*val)
134 {
135     return args_long2shortoption(options, name, val);
136 }
137 void args_callback_usage(char *name)
138 {
139     printf("\n");
140     printf("Usage: %s file.as [-o file.swf] \n", name);
141     printf("\n");
142     printf("-h , --help                    Print short help message and exit\n");
143     printf("-V , --version                 Print version info and exit\n");
144     printf("-v , --verbose                 Increase verbosity\n");
145     printf("-q , --quiet                   Decrease verbosity\n");
146     printf("-C , --cgi                     Output to stdout (for use in CGI environments)\n");
147     printf("-X , --width                   Set target SWF width\n");
148     printf("-Y , --height                  Set target SWF width\n");
149     printf("-r , --rate                    Set target SWF framerate\n");
150     printf("-l , --library <file>          Include library file <file>\n");
151     printf("-I , --include <dir>           Add include dir <dir>\n");
152     printf("-T , --flashversion <num>      Set target SWF flash version to <num>.\n");
153     printf("-o , --output <filename>       Set output file to <filename>.\n");
154     printf("\n");
155 }
156 int args_callback_command(char*name,char*val)
157 {
158     if(filename) {
159         fprintf(stderr, "Only one file allowed. You supplied at least two. (%s and %s)\n",
160                  filename, name);
161     }
162     filename = name;
163     return 0;
164 }
165
166 void writeSWF(SWF*swf)
167 {
168     int fi = -1;
169     if(do_cgi || !strcmp(filename, "-"))
170         fi = fileno(stdout);
171     else
172         fi = open(outputname, O_WRONLY|O_CREAT|O_TRUNC|O_BINARY, 0644);
173     if(fi<0) {
174         fprintf(stderr, "couldn't create output file %s\n", filename);
175         exit(1);
176     }
177     if(do_cgi) {
178         if(swf_WriteCGI(swf)<0) {
179             fprintf(stderr, "WriteCGI failed.\n");
180             exit(1);
181         }
182     } else {
183         if(swf_WriteSWF(fi, swf)<0) {
184             fprintf(stderr, "WriteSWF() failed.\n");
185             exit(1);
186         }
187     }
188 }
189
190 int main (int argc,char ** argv)
191 {
192     char buf[512];
193     char*currentdir = getcwd(buf, 512);
194     if(!currentdir) {
195         as3_warning("Could not determine the current directory");
196     } else {
197         as3_add_include_dir(currentdir);
198     }
199     registry_init();
200
201     int t;
202     processargs(argc, argv);
203     as3_setverbosity(verbose);
204
205     if(!filename) {
206         args_callback_usage(argv[0]);
207         exit(1);
208     }
209     if(!outputname) {
210         outputname = stripFilename(filename, ".swf");
211         //as3_warning("output name not given, writing to %s", outputname);
212     }
213
214     as3_parse_file(filename);
215     void*code = as3_getcode();
216
217     SWF swf;
218     memset(&swf, 0, sizeof(swf));
219     swf.fileVersion = flashversion;
220     swf.frameRate = framerate*0x100;
221     swf.movieSize.xmin = 0;
222     swf.movieSize.ymin = 0;
223     swf.movieSize.xmax = width*20;
224     swf.movieSize.ymax = height*20;
225     TAG*tag = swf.firstTag = swf_InsertTag(0, ST_DOABC);
226     swf_WriteABC(tag, code);
227
228     if(as3_getglobalclass()) {
229         tag = swf_InsertTag(tag, ST_SYMBOLCLASS);
230         swf_SetU16(tag, 1);
231         swf_SetU16(tag, 0);
232         swf_SetString(tag, as3_getglobalclass());
233     } else {
234         as3_warning("no global public MovieClip subclass");
235     }
236     
237     as3_destroy();
238
239     tag = swf_InsertTag(tag, ST_SHOWFRAME);
240     tag = swf_InsertTag(tag, ST_END);
241
242     swf_FreeABC(code);
243     
244     if(local_with_filesystem)
245         swf.fileAttributes &= ~FILEATTRIBUTE_USENETWORK;
246     if(local_with_networking)
247         swf.fileAttributes |= FILEATTRIBUTE_USENETWORK;
248
249     writeSWF(&swf);
250     swf_FreeTags(&swf);
251
252     return 0;
253 }
254