sencha-lang/Sencha-lang/main.cpp

123 lines
2.7 KiB
C++
Raw Normal View History

#include <iostream>
#include <string>
#include "Token.h"
#include "Lexer.h"
#include "Parser.h"
#include "Tests/TestLexer.h"
using namespace std;
void test_lexer()
{
string test_line = "def i; bulb; i + 3; string banan; banan = \"banan and other stuff\"; string kaboom(num how_many_times) { def z; }";
string test_line2 = "def how_many_trees = 1; how_many_trees + 3 == 2; num cut_tree( num how_many) {return how_many -1; != <=}";
Lexer lexer;
vector<Token> tokens = lexer.parse_line(test_line);
for(int i=0; i< tokens.size(); i++)
{
cout << tokens[i].get_value() << " type: " << tokens[i].get_type() << endl;
}
tokens = lexer.parse_line(test_line2);
}
void test_parser()
{
vector<string> lines;
lines.push_back("def i; bulb; i + 3; string banan = \"kartofel\"; banan = \"banan\"; string kaboom(num how_many_times) { def z; }");
lines.push_back("num pun");
lines.push_back("def how_many_trees = 1; how_many_trees + 3 == 2; num cut_tree(num how_many) {return how_many -1}");
Lexer lexer;
vector<Token> tokens;
for(int i=0; i<lines.size(); i++)
{
tokens = lexer.parse_line(lines[i]);
2012-11-08 20:16:00 +00:00
Parser parser;
parser.add_tokens(tokens);
parser.interpret();
cout << "<<<Parsing number: " << i << " >>>" << endl;
cout << "Instructions: " << endl ;
cout << lines[i] << endl << endl;
cout << parser.report_message;
cout << parser.error_message << endl;
}
}
int how_depth_change(vector<Token> tokens)
{
int change = 0;
for (int i = 0; i < tokens.size(); i++)
{
if(tokens[i].value == "{") change++;
else if(tokens[i].value == "}") change--;
}
return change;
}
string compute_indentation(int depth_level)
{
string indent = "";
for(int i=0; i< depth_level; i++)
{
indent += " ";
}
return indent;
}
2012-11-08 20:16:00 +00:00
void interactive()
{
Lexer lexer;
2012-11-08 20:16:00 +00:00
Parser parser;
vector<Token> tokens;
2012-11-08 20:16:00 +00:00
string input;
int level_of_depth = 0;
string indentation = "";
2012-11-05 13:17:38 +00:00
while(true)
{
2012-11-08 20:16:00 +00:00
cout << ">> " + indentation;
getline(cin, input);
2012-11-05 13:17:38 +00:00
if(input == "quit()") break;
tokens = lexer.parse_line(input);
level_of_depth += how_depth_change(tokens);
indentation = compute_indentation(level_of_depth);
2012-11-08 20:16:00 +00:00
parser.add_tokens(tokens);
if(level_of_depth == 0) {
2012-11-08 20:16:00 +00:00
parser.interpret();
cout << parser.report_message << endl;
2012-11-08 20:16:00 +00:00
cout << parser.error_message << endl;
cout << parser.show_tokens() << endl;
cout << "My tree:\n";
//cout << parser.program->debug();
parser.program->execute();
cout << "Tadah!" << endl;
2012-11-08 20:16:00 +00:00
}
}
}
int main()
{
2012-11-08 20:16:00 +00:00
cout << "Sencha-lang interpreter, version 0.02" << endl;
2012-11-04 13:26:36 +00:00
TestLexer test_l;
//test_l.run_tests();
2012-11-04 13:26:36 +00:00
//test_parser();
//test_lexer();
interactive();
return 0;
}