-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
56 lines (52 loc) · 1.36 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//#include "mingw.thread.h"
#include <iostream>
#include <typeinfo>
#include "Nodes/Node.h"
#include "Objects/Arendelle.h"
#include "Objects/Screen.h"
#include "Parser/parser.hpp"
//#include <thread>
//typedef struct yy_buffer_state * YY_BUFFER_STATE;
//extern YY_BUFFER_STATE yy_scan_string(char * str);
//extern void yy_delete_buffer(YY_BUFFER_STATE buffer);
//extern yy_buffer_state;
//typedef yy_buffer_state *YY_BUFFER_STATE;
extern NBlock* programBlock;
extern int yyparse();
extern int yyerror(const char* str);
extern FILE* yyin;
int main(int argc, char **argv)
{
Arendelle* arendelle = new Arendelle();
if(argv[1] == NULL)
{
yyerror("No input file!");
return 0;
}
printf("Reading From File: %s \n",argv[1]);
FILE* file;
file = fopen(argv[1],"r");
if(file == NULL)
{
yyerror("File Not Found!");
return 0;
}
arendelle->setWorkingDir(argv[1]);
arendelle->initStoredSpaces();
arendelle->initFunctions();
yyin = file;
//char string[] = "p";
//YY_BUFFER_STATE buffer = yy_scan_string(string);
std::thread renderer = arendelle->spawnRenderer();
//renderer.join();
yyparse();
//yy_delete_buffer(buffer);
if(programBlock->statements.size()!=0)
programBlock->codeGen(arendelle);
std::cout<<"_______________________"<<std::endl<<std::endl;
//arendelle->getScreen()->prettyPrint();
//std::cout<<std::endl;
//arendelle->render();
renderer.join();
return 0;
}