-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.cpp
More file actions
265 lines (222 loc) · 7.91 KB
/
Copy pathfunctions.cpp
File metadata and controls
265 lines (222 loc) · 7.91 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
#include <iostream>
#include <fstream>
using namespace std;
static char line[30000];
string getInput() {
string source;
char choice;
string path;
bool input = false;
cout << "HELLO AND WELCOME TO THE BRAINF*CK INTERPRETER & TRANSLATOR!" << endl << endl;
cout << "Do you want to upload source code from the file? Y/N" << endl;
cin >> choice;
while (!input) {
if (choice == 'Y') {
cout << endl << "Specify the path tp the file or enter '*' to compile default file (Fibonacci numbers): "
<< endl;
cin >> path;
if (path == "*") path = "input.txt";
ifstream in(path);
string inputFromFile((istreambuf_iterator<char>(in)),
istreambuf_iterator<char>());
source = inputFromFile;
cout << endl << endl << "SOURCE CODE: " << endl << endl;
cout << source << endl << endl;
input = true;
} else if (choice == 'N') {
cout << endl << "Enter your own code: " << endl;
cin >> source;
input = true;
} else {
cout << "Choose between Y or N" << endl;
cin >> choice;
}
}
return source;
}
void interpreter(string source) {
cout << endl << "OUTPUT: " << endl << endl;
unsigned int pointer = 0;
int nesting = 0;
for (int i = 0; i < source.size(); i++) {
switch (source[i]) {
case '>':
pointer++;
break;
case '<':
pointer--;
break;
case '+':
line[pointer]++;
break;
case '-':
line[pointer]--;
break;
case '.':
cout << line[pointer];
break;
case ',':
cin >> line[pointer];
break;
case '[':
nesting = 1;
if (line[pointer] == 0)
while (nesting > 0) {
i++;
if (source[i] == '[') nesting++;
else if (source[i] == ']') nesting--;
}
break;
case ']':
nesting = 1;
if (line[pointer] != 0)
while (nesting > 0) {
i--;
if (source[i] == '[') nesting--;
else if (source[i] == ']') nesting++;
}
break;
default:
break;
}
}
}
void translator(string source) {
cout << endl << endl << endl << "TRANSLATED: " << endl << endl;
ofstream outputFile;
outputFile.open("translated.cpp");
int nest = 1;
int num = 0, num2 = 0;
string output = "";
cout
<< "#include <iostream>\n#include <fstream>\n\nusing namespace std;\n\nint main() {\n\n char line[30000] = { 0 };\n int ptr = 0;\n\n";
outputFile
<< "#include <iostream>\n#include <fstream>\n\nusing namespace std;\n\nint main() {\n\n char line[30000] = { 0 };\n int ptr = 0;\n\n";
for (int i = 0; i < source.size(); i++) {
switch (source[i]) {
case '>':
num = 0;
num2++;
if (i < source.size() - 1 && source[i + 1] != '>') {
for (int j = 0; j < nest; j++) {
cout << " ";
outputFile << " ";
}
if (num2 == 1) {
cout << "ptr++;\n";
outputFile << "ptr++;\n";
} else {
cout << "ptr += " << num2 << ";\n";
outputFile << "ptr += " << num2 << ";\n";
}
}
break;
case '<':
num = 0;
num2--;
if (i < source.size() - 1 && source[i + 1] != '<') {
for (int j = 0; j < nest; j++) {
cout << " ";
outputFile << " ";
}
if (num2 == -1) {
cout << "ptr--;\n";
outputFile << "ptr--;\n";
} else {
cout << "ptr -= " << abs(num2) << ";\n";
outputFile << "ptr -= " << abs(num2) << ";\n";
}
}
break;
case '+':
num2 = 0;
num++;
if (i < source.size() - 1 && source[i + 1] != '+') {
for (int j = 0; j < nest; j++) {
cout << " ";
outputFile << " ";
}
if (num == 1) {
cout << "line[ptr]++;\n";
outputFile << "line[ptr]++;\n";
} else {
cout << "line[ptr] += " << num << ";\n";
outputFile << "line[ptr] += " << num << ";\n";
}
}
break;
case '-':
num2 = 0;
num--;
if (i < source.size() - 1 && source[i + 1] != '-') {
for (int j = 0; j < nest; j++) {
cout << " ";
outputFile << " ";
}
if (abs(num) == 1) {
cout << "line[ptr]--;\n";
outputFile << "line[ptr]--;\n";
} else {
cout << "line[ptr] -= " << abs(num) << ";\n";
outputFile << "line[ptr] -= " << abs(num) << ";\n";
}
}
break;
case '.':
num2 = 0;
num = 0;
for (int j = 0; j < nest; j++) {
cout << " ";
outputFile << " ";
}
cout << "cout << line[ptr];\n";
outputFile << "cout << line[ptr];\n";
break;
case ',':
num2 = 0;
num = 0;
for (int j = 0; j < nest; j++) {
cout << " ";
outputFile << " ";
}
cout << "cin >> line[ptr];\n";
outputFile << "cin >> line[ptr];\n";
break;
case '[':
num2 = 0;
num = 0;
for (int j = 0; j < nest; j++) {
cout << " ";
outputFile << " ";
}
//cout << "for(int i" << nest << " = line[ptr]; i" << nest << " > 0; i" << nest << "--) {\n";
cout << "while (line[ptr] > 0) {\n";
outputFile << "while (line[ptr] > 0) {\n";
nest++;
break;
case ']':
num2 = 0;
num = 0;
for (int j = 1; j < nest; j++) {
cout << " ";
outputFile << " ";
}
cout << "}\n\n";
outputFile << "}\n\n";
nest--;
break;
default:
num = 0;
num2 = 0;
break;
}
}
cout << "}";
outputFile << "}";
cout << "\n\nTranslated code can be found in the file 'translated.cpp'\n\n";
}
void controller() {
string source = getInput();
interpreter(source);
translator(source);
}