-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrainFkInterpreter.py
78 lines (69 loc) · 2.24 KB
/
BrainFkInterpreter.py
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
import sys
if(len(sys.argv) == 1):
print("Run error: No source file")
sys.exit()
inputFile = sys.argv[1]
with open(inputFile, "r") as f:
src = "".join([line.strip() for line in f])
MEMORY_LEN = 1000
memory = [0 for x in range(0, MEMORY_LEN)]
masterPtr = 0
langChars = ['+', '-', '<', '>', '.', '?', ',', '[', ']']
class inputStream:
def __init__(self):
self.buffer = ""
def nextChar(self):
if(self.buffer == ""):
self.buffer = input()
if(self.buffer == ""):
return '\0'
nextChar = self.buffer[0]
self.buffer = self.buffer[1:]
return nextChar
iStream = inputStream()
def parse(src):
global memory, masterPtr, MEMORY_LEN, iStream
i = 0
while i < len(src):
if src[i] not in langChars:
i += 1
continue
try:
if(src[i] == '+'):
memory[masterPtr] += 1
elif(src[i] == '-'):
memory[masterPtr] -= 1
elif(src[i] == '<'):
if(masterPtr == 0):
raise ValueError("You tried to go too far back my friend")
masterPtr -= 1
elif(src[i] == '>'):
if(masterPtr == MEMORY_LEN-1):
raise ValueError("That's as far as it goes")
masterPtr += 1
elif(src[i] == '.'):
print(chr(memory[masterPtr]), end='')
elif(src[i] == '?'):
print(memory[masterPtr], end='')
elif(src[i] == ','):
memory[masterPtr] = ord(iStream.nextChar())
elif(src[i] == '['):
i += 1
loopBody = ""
childLoops = 0
while(src[i] != ']' or childLoops != 0):
if(src[i] == '['):
childLoops += 1
if(src[i] == ']'):
childLoops -= 1
loopBody += src[i]
i += 1
while(memory[masterPtr]):
if not parse(loopBody):
return False
except ValueError as ve:
print("Value Error: " + str(ve))
return False
i += 1
return True
parse(src)