as3: improved dependency handling
[swftools.git] / lib / as3 / main.c
1 /* main.c
2
3    Flash ActionScript 3.0 compiler
4
5    Part of the swftools package.
6
7    Copyright (c) 2008 Matthias Kramm <kramm@quiss.org>
8  
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
22
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include <unistd.h>
26 #include <memory.h>
27 #include "../rfxswf.h"
28 #include "../os.h"
29 #include "files.h"
30 #include "common.h"
31 #include "tokenizer.h"
32 #include "parser.tab.h"
33 #include "parser.h"
34 #include "compiler.h"
35 #include "import.h"
36
37 void test_lexer(char*filename)
38 {
39     char*fullfilename = find_file(filename, 1);
40     enter_file(filename, fullfilename, 0);
41     FILE*fi = fopen(fullfilename, "rb");
42     as3_file_input(fi);
43     while(1) {
44         int token = as3_lex();
45         if(token==T_EOF)
46             break;
47         if(token>=32 && token<256) {
48             printf("'%c'\n", token);
49         } else {
50             printf("%s\n", token2string(token, a3_lval));
51         }
52     }
53 }
54
55 extern int a3_debug;
56 int main(int argn, char*argv[])
57 {
58     char*filename = 0;
59     char buf[512];
60     
61     if(argn<=1) {
62         fprintf(stderr, "please supply a filename\n");
63         exit(1);
64     }
65     filename=argv[argn-1];
66
67     //a3_debug = 1; //if bison was called with -t
68    
69     as3_add_include_dir(getcwd(buf, 512));
70
71     registry_init();
72
73     int t=0;
74     char*mainclass = 0;
75     for(t=1;t<argn-1;t++) {
76         if(!strcmp(argv[t], "-lex")) {
77             test_lexer(filename);
78             return 0;
79         }
80         if(!strcmp(argv[t], "-M")) {
81             mainclass = argv[++t];
82         }
83         if(!strcmp(argv[t], "-v")) {
84             as3_verbosity++;
85         }
86         if(!strcmp(argv[t], "-q")) {
87             as3_verbosity--;
88         }
89         if(!strcmp(argv[t], "-D")) {
90             char*c = argv[t+1];
91             if(!strstr(c, "::"))
92                 printf("Error: compile definition must contain \"::\"\n");
93             as3_set_define(c);
94         }
95         if(!strcmp(argv[t], "-R")) {
96             as3_set_option("recurse","1");
97         }
98         if(!strcmp(argv[t], "-I")) {
99             as3_add_include_dir(argv[++t]);
100         }
101         if(!strcmp(argv[t], "-l")) {
102             as3_import_file(argv[++t]);
103         }
104     }
105
106     //extern int avm2_debug;
107     //avm2_debug = 1;
108
109     //memfile_t*m = memfile_open(filename);
110     //as3_parse_bytearray(filename, m->data, m->len);
111     //memfile_close(m);
112     if(!strcmp(filename, ".")) {
113         as3_parse_directory(".");
114     } else {
115         as3_parse_file(filename);
116     }
117
118     void*code = as3_getcode();
119
120     SWF swf;
121     memset(&swf, 0, sizeof(swf));
122     swf.fileVersion = 9;
123     swf.frameRate = 0x2500;
124     swf.movieSize.xmin = swf.movieSize.ymin = 0;
125     swf.movieSize.xmax = 20*20;
126     swf.movieSize.ymax = 10*20;
127     TAG*tag = swf.firstTag = swf_InsertTag(0, ST_DOABC);
128     swf_WriteABC(tag, code);
129
130     if(!mainclass)
131         mainclass = as3_getglobalclass();
132
133     if(mainclass) {
134         tag = swf_InsertTag(tag, ST_SYMBOLCLASS);
135         swf_SetU16(tag, 1);
136         swf_SetU16(tag, 0);
137         swf_SetString(tag, mainclass);
138     } else {
139         printf("Warning: no global public MovieClip subclass\n");
140     }
141
142     tag = swf_InsertTag(tag, ST_SHOWFRAME);
143     tag = swf_InsertTag(tag, ST_END);
144
145     swf_FreeABC(code);
146
147     int f = open("abc.swf",O_RDWR|O_CREAT|O_TRUNC|O_BINARY,0644);
148     swf_WriteSWF(f,&swf);
149     close(f);
150
151     swf_FreeTags(&swf);
152
153     return 0;
154 }