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
|
#!/usr/bin/env perl
# Macro preprocessor for brainfuck
use Modern::Perl;
my %macros = (
INPUT => <<END,
Get ASCII number convert to integer and store in current cell
==== ==== ====
cont digi num
==== ==== ====
+
[
- cont=0
>,
======SUB10======
----------
[ not 10
<+> cont=1
=====SUB38======
----------
----------
----------
--------
>
=====MUL10=======
[>+>+<<-]>>[<<+>>-]< dup
>>>+++++++++
[
<<<
[>+>+<<-]>>[<<+>>-]< dup
[<<+>>-]
>>-
]
<<<[-]<
======RMOVE1======
<
[>+<-]
]
<
]
>>[<<+>>-]<<
END
OUTPUT => <<END,
Output number in current cell
[>+<-]>
[
======DUP======
[>+>+<<-]>>[<<+>>-]<
======MOD10====
>+++++++++<
[
>>>+<< bool= 1
[>+>[-]<<-] bool= ten==0
>[<+>-] ten = tmp
>[<<++++++++++>>-] if ten=0 ten=10
<<- dec ten
<- dec num
]
+++++++++ num=9
>[<->-]< dec num by ten
=======RROT======
[>+<-]
< [>+<-]
< [>+<-]
>>>[<<<+>>>-]
<
=======DIV10========
>+++++++++<
[
>>>+<< bool= 1
[>+>[-]<<-] bool= ten==0
>[<+>-] ten = tmp
>[<<++++++++++>>>+<-] if ten=0 ten=10 inc div
<<- dec ten
<- dec num
]
>>>>[<<<<+>>>>-]<<<< copy div to num
>[-]< clear ten
=======INC1=========
<+>
]
<
[
=======MOVER=========
[>+<-]
=======ADD48========
+++++++[<+++++++>-]<->
=======PUTC=======
<.[-]>
======MOVEL2========
>[<<+>>-]<
<-
]
>++++[<++++++++>-]<.[-]
END
DUP1R => "[>+>+<<-]>>[<<+>>-]<<", # duplicate a cell right
DUP2R => "[>>+>+<<<-]>>>[<<<+>>>-]<<<", # duplicate a cell 2 right
DUP3R => "[>>>+>+<<<<-]>>>>[<<<<+>>>>-]<<<<", # duplicate a cell 3 right
DUP4R => "[>>>>+>+<<<<<-]>>>>>[<<<<<+>>>>>-]<<<<<", # duplicate a cell 4 right
MOVE1L => "<[-]>[-<+>]", # move a cell left
MOVE2L => "<<[-]>>[-<<+>>]", # move a cell 2 right
MOVE3L => "<<<[-]>>>[-<<<+>>>]", # move a cell 3 right
MOVE4L => "<<<<[-]>>>>[-<<<<+>>>>]", # move a cell 4 right
PLUS => <<END,
== add x=x(plus)y ( *x y temp0 )
>>[-]
<[<+>>+<-]
>[<+>-]
[-]<[-]<
== ( *x(plus)y )
END
DIVMOD => <<END,
== divmod ( *n d )
[->[->+>>]>[<<+>>[-<+>]>+>>]<<<<<]>[>>>]>[[-<+>]>+>>]<<<<<
== ( 0 (divisor minus mod) mod div )
>>>[-<<<+>>>]<<< move div to first cell
>[-]>[-<+>]<< move mod to second cell
== ( *div mod )
END
MULT => <<END,
== mult x=x*y ( *x y temp0 temp1 )
>>[-] temp0=0
>[-] temp1=0
<<<[>>>+<<<-]
>>>[<<[<+>>+<-]>[<+>-]
>-]
[-]<[-]<[-]<
== ( *x*y )
END
);
sub expand_macro {
my($name) = @_;
my $text = $macros{$name} // '';
$text =~ s/[^-+<>\[\],.#]//g;
return $text;
}
my $out = '';
while (<>) {
s/\@(\w+)/ expand_macro($1) /ge;
s/[^-+<>\[\],.#]//g;
$out .= $_;
}
while ($out ne '') {
say substr($out, 0, 64);
substr($out, 0, 64) = '';
}
|