-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrainf.rb
More file actions
84 lines (80 loc) · 1.66 KB
/
brainf.rb
File metadata and controls
84 lines (80 loc) · 1.66 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
def forward(src, srcIx)
depth = 1
while depth > 0
srcIx += 1
if (srcIx >= src.length)
puts "Out of Bounds"
exit(1)
end
case src[srcIx]
when '['
depth += 1
when ']'
depth -= 1
end
end
return srcIx
end
def backward(src, srcIx)
depth = 1
while depth > 0
srcIx -= 1
if (srcIx < 0)
puts "Out of Bounds"
exit(1)
end
case src[srcIx]
when ']'
depth += 1
when '['
depth -= 1
end
end
return srcIx
end
def brainf(src)
srcIx = 0
memIx = 0
mem = Array.new(30000) { 0 }
while srcIx < src.length
case src[srcIx]
when '+'
mem[memIx] += 1
if mem[memIx] == 256
mem[memIx] = 0
end
when '-'
mem[memIx] -= 1
if mem[memIx] == -1
mem[memIx] = 255
end
when '>'
memIx = memIx + 1
if memIx == 30000
memIx = 0
end
when '<'
memIx = memIx - 1
if memIx == -1
memIx = 29999
end
when '['
if mem[memIx] == 0
srcIx = forward(src, srcIx)
end
when ']'
if mem[memIx] != 0
srcIx = backward(src, srcIx)
end
when '.'
print mem[memIx].chr
STDOUT.flush
when ','
mem[memIx] = STDIN.getc.ord
end
srcIx = srcIx + 1
end
puts
end
file = File.read(ARGV[0])
brainf(file)