-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCaKe.py
125 lines (118 loc) · 3.88 KB
/
CaKe.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
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
import sys
import fileinput
def emulate(instr, stack):
quotesToPush = []
instructions = []
for c in instr:
instructions.append(c)
while len(instructions) > 0:
c = instructions.pop(0)
runCommand(c, stack, instructions, quotesToPush)
print(str(stack).replace(',','').replace("'",''))
def runCommand(c, stack, instructions, quotesToPush):
if "quoteIndex" not in runCommand.__dict__:
runCommand.quoteIndex = 0
if runCommand.quoteIndex or c == '[':
if c == '[':
runCommand.quoteIndex += 1
stack.append(runCommand.quoteIndex) # use boolean becuase we don't have them in eck
elif c == ']':
# create a separate list of all the values up to the latest quote index
if runCommand.quoteIndex > 0:
values = stack[stack.index(runCommand.quoteIndex)+1:len(stack)]
del stack[stack.index(runCommand.quoteIndex):len(stack)]
stack.append(values)
runCommand.quoteIndex -= 1
else:
stack.append(c)
return
elif c == '@':
c = instructions.pop(0)
if c == '\\':
c = '\\' + instructions.pop(0)
stack.append(c)
elif c == '.':
toprint = stack.pop()
if toprint == '\\n':
print()
else:
print(toprint, end="")
elif c == '>':
stack.append(sys.stdin.read(1))
elif c == 'k':
# [B] [A] k == A
# executes the program on top of the stack
# but first removes the element below it
top = stack.pop()
stack.pop()
if isinstance(top, list):
for i in top[::-1]:
if isinstance(i, list):
quotesToPush.append(i)
instructions.insert(0, 's')
else:
instructions.insert(0, i)
else:
raise Exception("K expects quotation on top of stack.")
elif c == 'c':
# [B] [A] c == [[B] A] [A [B]]
# can be expressed as c == [cons] sip2 take
top = stack.pop()
below = stack.pop()
one = []
two = []
one.append(below)
for i in top:
one.append(i)
two.append(i)
two.append(below)
stack.append(one)
stack.append(two)
elif c == 's':
stack.append(quotesToPush.pop())
else:
stack.append(c)
### push combinator x: == x
##print(emulate('[]').replace(',','').replace("'",''))
##print(emulate('[k]').replace(',','').replace("'",''))
##print(emulate('[c]').replace(',','').replace("'",''))
##
### k: [[]] [[]] == []
##print(emulate('[[]][[]]k').replace(',','').replace("'",''))
##
### c: [[]] [[]] == [[[]] []] [[] [[]]]
##print(emulate('[[]][[]]c').replace(',','').replace("'",''))
##
### zap: [[]] ==
##print(emulate('[[]][]k').replace(',','').replace("'",''))
##
### dip: [[]] [[]] == [] [[]]
##print(emulate('[[]][[]]ck').replace(',','').replace("'",''))
##
### cons: [[]] [[]] == [[[]] []]
##print(emulate('[[]][[]]c[]k').replace(',','').replace("'",''))
##
### unit: [] == [[]]
##print(emulate('[][]c[]k').replace(',','').replace("'",''))
##
### i: [[]] == []
##print(emulate('[[]][[]]ckk').replace(',','').replace("'",''))
##
### dup: [] == [] []
##print(emulate('[][]cckck').replace(',','').replace("'",''))
##
### hello world:
##print(emulate('@\n@!@d@l@r@o@W@ @,@o@l@l@e@H..............').replace(',','').replace("'",''))
##
### print a single character of input:
##print(emulate('>.').replace(',','').replace("'",''))
##
### a simple infinite loop:
##print(emulate('[[]cckck@\n@!@d@l@r@o@W@ @,@o@l@l@e@H..............[[]]ckk][]cckck[[]]ckk').replace(',','').replace("'",''))
print("[CaKe]: ", end="")
line = sys.stdin.readline().strip('\n')
stack = []
while line != "quit":
emulate(line, stack)
print("[CaKe]: ", end="")
line = sys.stdin.readline().strip('\n')