token2string now takes 2 parameters
[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
34 void test_lexer()
35 {
36     while(1) {
37         int token = avm2_lex();
38         if(token==T_EOF)
39             break;
40         if(token>=32 && token<256) {
41             printf("'%c'\n", token);
42         } else {
43             printf("%s\n", token2string(token, avm2_lval));
44         }
45     }
46 }
47
48 int main(int argn, char*argv[])
49 {
50     char*filename = 0;
51     char buf[512];
52     
53     if(argn<=1) {
54         fprintf(stderr, "please supply a filename\n");
55         exit(1);
56     }
57     filename=argv[1];
58     
59     registry_init();
60     
61     add_include_dir(getcwd(buf, 512));
62     char*fullfilename = enter_file(filename, 0);
63
64     FILE*fi = fopen(fullfilename, "rb");
65     if(!fi) {
66         perror(fullfilename);
67         return 1;
68     }
69     initialize_state();
70     avm2_set_in(fi);
71
72     if(argn>2 && !strcmp(argv[2], "-lex")) {
73         test_lexer();
74         return 0;
75     }
76     avm2_parse();
77     void*code = finalize_state();
78
79     SWF swf;
80     memset(&swf, 0, sizeof(swf));
81     swf.fileVersion = 9;
82     swf.frameRate = 0x2500;
83     swf.movieSize.xmin = swf.movieSize.ymin = 0;
84     swf.movieSize.xmax = 1024*20;
85     swf.movieSize.ymax = 768*20;
86     TAG*tag = swf.firstTag = swf_InsertTag(0, ST_DOABC);
87     swf_WriteABC(tag, code);
88
89     if(globalclass) {
90         tag = swf_InsertTag(tag, ST_SYMBOLCLASS);
91         swf_SetU16(tag, 1);
92         swf_SetU16(tag, 0);
93         swf_SetString(tag, globalclass);
94     } else {
95         printf("Warning: no global public MovieClip subclass\n");
96     }
97
98     tag = swf_InsertTag(tag, ST_SHOWFRAME);
99     tag = swf_InsertTag(tag, ST_END);
100
101     swf_FreeABC(code);
102
103     int f = open("abc.swf",O_RDWR|O_CREAT|O_TRUNC|O_BINARY,0644);
104     swf_WriteSWF(f,&swf);
105     close(f);
106
107     return 0;
108 }