rudimentary param support
[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 "tokenizer.h"
31 #include "parser.tab.h"
32 #include "parser.h"
33 #include "compiler.h"
34
35 void test_lexer(char*filename)
36 {
37     char*fullfilename = enter_file(filename, 0);
38     FILE*fi = fopen(fullfilename, "rb");
39     as3_set_in(fi);
40     while(1) {
41         int token = as3_lex();
42         if(token==T_EOF)
43             break;
44         if(token>=32 && token<256) {
45             printf("'%c'\n", token);
46         } else {
47             printf("%s\n", token2string(token, a3_lval));
48         }
49     }
50 }
51
52 int main(int argn, char*argv[])
53 {
54     char*filename = 0;
55     char buf[512];
56     
57     if(argn<=1) {
58         fprintf(stderr, "please supply a filename\n");
59         exit(1);
60     }
61     filename=argv[argn-1];
62    
63     int t=0;
64     for(t=1;t<argn-1;t++) {
65         if(!strcmp(argv[t], "-lex")) {
66             test_lexer(filename);
67             return 0;
68         }
69         if(!strcmp(argv[t], "-v")) {
70             as3_verbosity++;
71         }
72     }
73
74     //extern int avm2_debug;
75     //avm2_debug = 1;
76     
77     as3_add_include_dir(getcwd(buf, 512));
78     as3_parse_file(filename);
79     void*code = as3_getcode();
80
81     SWF swf;
82     memset(&swf, 0, sizeof(swf));
83     swf.fileVersion = 9;
84     swf.frameRate = 0x2500;
85     swf.movieSize.xmin = swf.movieSize.ymin = 0;
86     swf.movieSize.xmax = 20*20;
87     swf.movieSize.ymax = 10*20;
88     TAG*tag = swf.firstTag = swf_InsertTag(0, ST_DOABC);
89     swf_WriteABC(tag, code);
90
91     if(as3_getglobalclass()) {
92         tag = swf_InsertTag(tag, ST_SYMBOLCLASS);
93         swf_SetU16(tag, 1);
94         swf_SetU16(tag, 0);
95         swf_SetString(tag, as3_getglobalclass());
96     } else {
97         printf("Warning: no global public MovieClip subclass\n");
98     }
99
100     tag = swf_InsertTag(tag, ST_SHOWFRAME);
101     tag = swf_InsertTag(tag, ST_END);
102
103     swf_FreeABC(code);
104
105     int f = open("abc.swf",O_RDWR|O_CREAT|O_TRUNC|O_BINARY,0644);
106     swf_WriteSWF(f,&swf);
107     close(f);
108
109     swf_FreeTags(&swf);
110
111     return 0;
112 }