-
Notifications
You must be signed in to change notification settings - Fork 0
/
teleport.js
404 lines (371 loc) · 14.4 KB
/
teleport.js
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
const prompt = require("prompt-sync")({ sigint: true });
const fs = require('fs');
async function main() {
let debug = false;
let maxLogHeight = 0;
try{
function error(line, lineI, reason) {
throw `ERROR Line ${lineI+1}: ${reason}\n${lineI + 1} |${line}`;
}
let path = process.argv[2];// || "./fibonaci.factory";
if (path == undefined) {
throw "ERROR: No file provided.";
}
let breakpoints = [];
for (let arg = 3; arg < process.argv.length; arg++) {
let argument = process.argv[arg];
if (argument == "--debug") {
debug = true;
}
else if (argument.startsWith("--break:")) {
breakpoints = argument.split(":")[1].split(",");
}
else
throw `ERROR: Invalid parameter ${argument}`;
}
let code = await new Promise((res)=>{
fs.readFile(path, 'utf8', (err, data) => {
if (err) {
console.error(err);
return;
}
res(data);
});
});
let debugCode = code;
let vars = [];
let tpIn = [];
let tpOut = [];
let starts = [];
let outLog = "";
let regex = /\/\/.*\n/g;
let breakpoint = true;
code = code.replace(/\r\n/g,"\n");
code += "\n"; // don't ask
code = code.replace(regex, "\n") //remove comments
let lines = code.split("\n");
for (let i = 0; i < lines.length; i++) {
let line = lines[i];
line = line.trim();
if (line == "")
continue;
if (line.startsWith("[")) {
let val = line.split("[")[1].split("]")[0];
if (val == '') {
error (line,i,"No value found inside square brackets.");
}
if (!line.includes("]")) {
error (line,i,"No closing bracket.");
}
val = val.replace("{","[").replace("}","]");
vars[i] = eval(val); //xd eval
}
else if (line.startsWith("!")) {
starts.push({line: i});
}
else if (line.startsWith("|")) { }
else if (line.startsWith("<")) { }
else if (line.startsWith("=")) { }
else if (line.startsWith("?")) { }
else {
error (line,i,"Invalid character.");
}
let arrowCount = 0
if (line.includes("->")) {
arrowCount++;
let tpName = line.split("#")[1];
if (tpName == undefined) {
error (line,i,"\"#\"---- symbol missing after ->.");
}
tpOut[i] = {name: tpName, value: undefined};
}
if (line.includes("<-")) {
arrowCount++;
let tpName = line.split("#")[1];
if (tpName == undefined) {
error (line,i,"\"#\" symbol missing after <-.");
}
tpIn[i] = {name: tpName, sendSignal: false};
}
if (line.includes("<<")) {
arrowCount++;
let tpName = line.split("#")[1];
if (tpName == undefined) {
error (line,i,"\"#\" symbol missing after <<.");
}
tpIn[i] = {name: tpName, sendSignal: true};
}
if (line.includes("#") && arrowCount == 0) {
error (line,i,"arrow missing before \"#\" symbol.");
}
if (arrowCount != 1 && arrowCount != 0) {
error (line,i,"too many arrows.");
}
}
function findTp(array, equals) {
for (const el of array) {
if (el != undefined && el.name == equals) {
return el;
}
}
return undefined;
}
function checkFunctions(line, i, val, prevVal) {
let convIn = prevVal;
if (line.startsWith("<print>")) {
if (debug)
outLog += `${val}\n`;
else
console.log(val);
}
if (line.startsWith("<input>")) {
if (typeof(val) != "string") {
error (line,i,"Variable is not a string");
}
return prompt(val);
}
if (line.startsWith("<at>")) {
if (typeof(prevVal) != "object") {
error (line,i,"Variable is not a table");
}
return prevVal[val];
}
if (line.startsWith("<set>")) {
if (typeof(prevVal) != "object") {
error (line,i,"Variable is not a table");
}
if (typeof(val) != "object")
{
let tab = JSON.parse(JSON.stringify(prevVal));
tab.push(val);
return tab;
}
else
{
if (!val || val.length != 2) {
error (line,i,"Wrong key value table for <set>");
}
let tab = JSON.parse(JSON.stringify(prevVal));
tab[val[0]] = val[1];
return tab;
}
}
if (line.startsWith("<add>")) {
return convIn + val;
}
if (line.startsWith("<sub>")) {
return convIn - val;
}
if (line.startsWith("<mul>")) {
return convIn * val;
}
if (line.startsWith("<div>")) {
if (val == 0) {
error (line,i,"Division by 0");
}
return convIn / val;
}
if (line.startsWith("<eq>")) {
return convIn == val;
}
if (line.startsWith("<neq>")) {
return convIn != val;
}
if (line.startsWith("<les>") || line.startsWith("<less>")) {
return convIn < val;
}
if (line.startsWith("<mor>") || line.startsWith("<more>")) {
return convIn > val;
}
if (line.startsWith("<lesq>") || line.startsWith("<lessq>")) {
return convIn <= val;
}
if (line.startsWith("<morq>") || line.startsWith("<moreq>")) {
return convIn >= val;
}
if (line.startsWith("<tonum>")) {
return parseFloat(val)
}
if (line.startsWith("<toarr>")) {
return Array.from(val);
}
if (line.startsWith("<tostr>")) {
if (typeof(val) == "object") {
let out = "";
for (const v of val) {
out += v
}
return out;
}
else
return toString(val);
}
}
function valBlockDebug(i, val) {
let debugLines = debugCode.split("\n");
debugLines[i] = debugLines[i].replace(/(?<=\[).*(?=\])/, val);
debugCode = debugLines.join("\n");
}
function doDebug(i,val,prevVal) {
let logAll = "";
if (breakpoints.includes(`${i + 1}`)) {
breakpoint = true;
}
if (val == undefined) {
val = "NULL";
}
if (prevVal == undefined) {
prevVal = "NULL";
}
if (tpIn[i] == undefined) {
prevVal = "NULL";
}
else if(!tpIn[i].sendSignal)
{
let tp = findTp(tpOut,tpIn[i].name);
if (tp) {
prevVal = tp.value;
}
}
logAll += outLog + "\n";
logAll += "-------------------\n";
let debugLines = debugCode.split("\n")
let start = i - 5
let end = i + 5;
for (let j = start; j <= end; j++) {
let max = Math.floor(Math.log10(debugLines.length) + 1);
if (j >= debugLines.length || j < 0) {
let line = "";
for (let l = 0; l <= max; l++) {
line = " " + line;
}
logAll += line + "\n";
continue;
}
let line = debugLines[j];
let here = Math.floor(Math.log10(j + 1) + 1);
line = line.replace(/\[(.*?)\]/,"\u001b[34m[\u001b[31m$1\u001b[34m]\u001b[0m")
if (j == i) {
line = "\u001b[31m>\u001b[0m" + line;
}
else {
line = " " + line;
}
for (let l = 0; l <= max - here; l++) {
line = " " + line;
}
line = "\u001b[1;33m" + (j + 1) + "\u001b[0m" + line;
line = line.replace(/(\#.+?)((\/\/)|$)/m,"\u001b[35m$1\u001b[0m$2")
line = line.replace(/(\<\-|\-\>|\<\<)/,"\u001b[36m$1\u001b[0m")
line = line.replace(/(\<.*?\>)/,"\u001b[34m$1\u001b[0m")
line = line.replace(/(?<a>.*?)(?<place>)(?<b>\/\/.*)/,"$<a>\u001b[3;32m$<b>\u001b[0m")
logAll += line + "\n"
}
logAll += "-------------------" + "\n";
logAll += `VALUE: ${val}` + "\n";
logAll += `SIDE VAL: ${prevVal}` + "\n";
logAll += "-------------------" + "\n";
logAll = "\033[0J" + logAll.replace("\n", "\n\033[0J");
//console.log("\033[2J") //Clear screen
console.log(logAll);
if (breakpoint) {
let p = prompt(`Enter - next line | C - continue | > `);
if (p == "c" || p == "C") {
breakpoint = false;
}
}
console.log("\033[0;0H"); // Go to first line
maxLogHeight = Math.max(maxLogHeight, logAll.split("\n").length);
}
function execute(lines, lineNum, val = undefined) {
let prevVal = undefined;
for (let i = lineNum; i < lines.length; i++) {
let line = lines[i];
line = line.trim();
if (line == "")
return;
if (line.startsWith("="))
val = undefined;
if (line.startsWith("?"))
{
if (val) {
if (tpOut[i] != undefined) {
tpOut[i].value = val;
let tp = findTp(tpIn,tpOut[i].name);
let l = tpIn.indexOf(tp);
if (tp != undefined) {
if (tp.sendSignal) {
execute(lines, l, val);
}
else {
error (line,i,"Cannot jump from Line ${i}. Use << instead of <-");
}
}
else {
error (line,i,`${tpOut[i].name} doesn't have an teleport in (<- / <<) with the same name`);
}
}
else {
error (line,i,"No conditional destination");
}
return;
}
else
continue;
}
if (vars[i] != undefined) {
if (val == undefined)
val = vars[i];
else
{
vars[i] = val;
if (debug) {
valBlockDebug(i, val);
}
}
}
if (debug) {
doDebug(i, val, prevVal);
}
if (tpOut[i] != undefined) {
tpOut[i].value = val;
let tp = findTp(tpIn,tpOut[i].name);
if (tp != undefined) {
let l = tpIn.indexOf(tp);
if (tp.sendSignal) {
execute(lines, l, val);
}
}
else
error (line,i,`${tpOut[i].name} doesn't have an teleport in (<- / <<) with the same name`);
}
prevVal = val;
if (tpIn[i] != undefined) {
if (!tpIn[i].sendSignal) {
let tp = findTp(tpOut,tpIn[i].name);
if (tp == undefined) {
error (line,i,`${tpIn[i].name} doesn't have an teleport out (->) with the same name`);
}
val = tp.value
}
}
let ret = checkFunctions(line, i, val, prevVal);
if (ret != undefined) {
val = ret;
}
}
}
if (starts.length == 0) {
console.error(`WARNING: No program start "!" found.`);
}
for (let st of starts) {
execute(lines, st.line);
}
} catch (error) {
console.error(error);
}
if (debug) {
console.log("\033["+maxLogHeight+";0H");
}
}
main();